yangan
13 小时以前 a28d0135ee42809b2c5863609da37155d3ecba5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
    /* 大型设备(大台式电脑,1201px 起)*/
      @media screen and (min-width: 1201px) {
    
        }
 
        /* 中型设备(台式电脑,992px 起) */
        @media screen and (min-width: 991px) and (max-width: 1200px) {
            //首页登录样式
            .logo {
                font-size: 64rpx!important;
            }
            .list-call{
                height: 100rpx!important;
                ::v-deep     .u-input__content__field-wrapper__field{
                    height: 50rpx!important;
                }
              ::v-deep  .uni-input-input{
                    font-size: 30rpx!important;
                }
           
            }
            .loginBtn{
                .u-button{
                    height: 70rpx!important;
                }
                .u-button__text{
                    font-size: 25rpx!important;
                }
            }
            .utils-block{
                font-size: 27rpx!important;
            }
            .copyright{
                font-size: 30rpx!important;
            }
 
            /*库管样式---->*/
            .self-deliver_text{
                font-size: 20rpx!important;
            }
            .top-tag {
                width: 45%!important;
                margin-left: 55%!important;
                span{
                    font-size: 20rpx!important;
                }
            }
            .self-deliver{
                .u-button__text{
                    font-size: 20rpx!important;
                }
                .self-deliver_btn{
 
                   ::v-deep  .u-button {
                        height: 40rpx!important;
                    }
                }
               
            }
    
        }
 
 
        /* 小型设备(平板电脑,768px 起) */
        @media screen and (min-width: 768px) and (max-width: 990px) {
            .logo {
                font-size: 54rpx!important;
            }
            .list-call{
                ::v-deep     .u-input__content__field-wrapper__field{
                    height: 40rpx!important;
                }
                height: 75rpx!important;
                ::v-deep     .uni-input-input{
                    font-size: 25rpx!important;
                }
               
            }
            .loginBtn{
                .u-button{
                    height: 50rpx!important;
                }
                .u-button__text{
                    font-size: 25rpx!important;
                }
              
            }
            .utils-block{
                font-size: 25rpx!important;
            }
            .copyright{
                font-size: 20rpx!important;
            }
            /*库管样式---->*/
            .self-deliver_text{
                font-size: 20rpx!important;
            }
            .top-tag {
                width: 45%!important;
                margin-left: 80%!important;
                span{
                    font-size: 20rpx!important;
                }
            }
            .self-deliver{
                .u-button__text{
                    font-size: 20rpx!important;
                }
                .self-deliver_btn{
 
                   ::v-deep  .u-button {
                        height: 30rpx!important;
                    }
                }
               
            }
            .table {
                th{
                    font-size: 20rpx!important;
                }
                td{
                    font-size: 20rpx!important;
                }
                .u-button__text{
                    font-size: 18rpx!important;
                }
               
            }
            .third-line {
                .u-tag {
                    .u-tag__text{
                        font-size: 20rpx!important;
                    }
                   
                }
            }
            
        }
 
            /* 超小设备(调试,小于 768px)*/
            @media only screen and  (min-width: 500px) and (max-width: 768px)) {
                .top-tag {
                    width: 55%!important;
                    margin-left: 70%!important;
                    span{
                        font-size: 20rpx!important;
                    }
                }
 
            }
 
        /* 超小设备(手机,小于 768px)*/
        @media only screen and (max-width: 400px) {
            .top-tag {
                width: 55%!important;
                margin-left: 50%!important;
                span{
                    font-size: 20rpx!important;
                }
            }
        
        }