123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- body:before {
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- opacity: .5;
- z-index: -1;
- content: "";
- position: fixed;
- background-image: linear-gradient(135deg, #ffee58 18%, #2196f3 100%);
- }
- /* 页面样式 */
- .layui-tab-item .layui-input{
- height: 30px;
- }
- .header{
- height: 50px;
- }
- .header .logo>div{line-height: 55px;padding: 0 16px;}
- .header .logo img{
- width: 45px;
- cursor: pointer;
- -webkit-animation: spin 60s linear 1s 5 alternate;
- animation: spin 60s linear infinite;
- }
- @keyframes spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- .header h1{
- font-weight: bold;
- line-height: 55px;
- background-image: -webkit-linear-gradient(left, #1e9fff, #E6D205 25%, #1e9fff 50%, #E6D205 75%, #1e9fff);
- /*background-image: -webkit-linear-gradient(left, #7320a1, #f86161 25%, #7320a1 50%, #f86161 75%, #7320a1);*/
- -webkit-text-fill-color: transparent;
- -webkit-background-clip: text;
- -webkit-background-size: 200% 100%;
- -webkit-animation: masked-animation 4s infinite linear;
- }
- @-webkit-keyframes masked-animation {
- 0% { background-position: 0 0;}
- 100% {background-position: -100% 0;}
- }
- .tabTips{
- display: inline-block;
- vertical-align: middle;
- }
- .layui-field-box{
- padding: 5px 15px;
- }
- .layui-form-radio{
- margin: 0;
- padding-right:0px;
- }
- .tabGroup{
- line-height: 30px;
- }
- .tabRadio{
- margin: 0 !important;
- line-height: 30px;
- }
- .tabInline{
- width:50px;
- margin: 0 10px;
- }
- .layui-form-checkbox{
- margin: 0 !important;
- }
- .tabCheckBox{
- display: inline-block;
- padding: 2px 10px;
- line-height: 25px;
- width: 580px;
- vertical-align: top;
- }
- .tabCheckBox3{
- display: inline-block;
- padding: 2px 10px;
- line-height: 25px;
- width: 730px;
- vertical-align: top;
- }
- .layui-form-checkbox[lay-skin=primary]{
- padding-left: 22px;
- }
- .layui-tab-content{
- height: 590px;
- background: #fff;
- }
- .layui-tab-item{
- height: 272px;
- }
- .layui-disabled{
- background: #eee;
- font-size: 20px;
- color: #1E9FFF !important;
- padding: 0;
- text-align: center;
- }
- .layui-elem-field{
- padding-top: 15px;
- }
- .layui-elem-field .layui-field-box{
- display: flex;
- }
- .layui-elem-field .layui-inline{
- margin: 0px 3px;
- }
- .layui-elem-field button{
- margin: 0 4px;
- }
- .fieldTips{
- display: inline-block;
- vertical-align: middle;
- /*width: 133px;*/
- white-space: nowrap;
- line-height: 39px;
- }
- .layui-badge{
- position: absolute;
- left: 0;
- top: -18px;
- right: 0;
- background-color: #1e9fff!important;
- }
- .layui-badge-dot{
- vertical-align: middle;
- }
- .layui-elem-field .layui-block{
- padding: 0 15px 10px 15px;
- }
- .layui-elem-field .layui-block h3{
- line-height: 26px;
- color: #1E9FFF;
- }
- .layui-form-radio>i:hover, .layui-form-radioed>i,.layui-anim-scaleSpring{
- color: #1E9FFF !important;
- }
- .layui-form-checked[lay-skin=primary] i{
- border-color: #1E9FFF !important;
- background-color: #1E9FFF !important;
- }
- /* scroll */
- ::-webkit-scrollbar {
- width: 8px;
- }
- ::-webkit-scrollbar-track {
- background-color:#f3f3f3;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius:2em;
- }
- ::-webkit-scrollbar-thumb {
- background-color:#c0c0c0;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius:2em;
- }
- a[title="站长统计"]{
- position: fixed;
- bottom: 0;
- z-index: -1;
- right: 0;
- color: #00000000;
- }
|