blob: 355df4c0f8c462e9a3900d669af2a1691f1b186e [file] [log] [blame]
qiaoweif044a742019-07-10 16:04:20 +08001body {
2 background: #F1F4F4;
3}
4
5.mainbg {
6 background: #03a9f4;
7}
8
9.lightbg {
10 background: #54C8FF;
11}
12
13.tab-bottom button.active::after {
14 background-color: transparent;
15}
16
17.maincolor {
18 color: #03a9f4;
19}
20
21.qrscanner {
22 width: 100%;
23 background: transparent none !important;
24 padding-top: 52px;
25}
26
27.qrscanner-area {
28 height: 100mm;
29 background: url(../img/scanner.svg) no-repeat center center;
30 background-size: contain;
31}
32
33.through-line {
34 left: 20%;
35 width: 60%;
36 height: 2px;
37 background: red;
38 position: absolute;
39 animation: myfirst 2s linear infinite alternate;
40}
qiaowei9579db42020-04-14 13:08:35 +080041.mainmeun-div{
42 height: 100%;
43 flex-direction: row;justify-content: center;
44 align-items: center;display: flex!important;
45 font-size: 20px;
46}
qiaowei66edadb2020-04-20 16:51:56 +080047.meun-img{
48 width:80px;
49 height: 80px;
50}
51@media only screen and (max-height: 700px) {
52 .meun-img{
53 width:80px;
54 height: 80px;
55 }
56}
57@media only screen and (min-height: 701px) {
58 .meun-img{
59 width:90px;
60 height: 90px;
61 }
62}
63
qiaoweif044a742019-07-10 16:04:20 +080064
65@keyframes myfirst {
66 0% {
67 background: #03a9f4;
68 top: 180px;
69 }
70
71 25% {
72 background: #03a9f4;
73 top: 215px;
74 }
75
76 50% {
77 background: #03a9f4;
78 top: 250px;
79 }
80
81 75% {
82 background: #03a9f4;
83 top: 285px;
84 }
85
86 100% {
87 background: #03a9f4;
88 top: 320px;
89 }
90}
91
92.button-bottom {
93 width: 128px;
94 position: absolute;
95 left: 50%;
96 bottom: 80px;
97 margin-left: -64px;
98}
99
100.icon-camera {
101 float: left;
102}
103
104.vcodedisabled {
105 color: #999 !important;
106}
107
108.login-top {
109 height: 200px;
110 background: #03a9f4;
111 color: #fff;
112 font-size: 36px;
113 display: flex;
114 flex-direction: row;
115 justify-content: center;
116 align-items: center;
117}
118
119.weui-toast_content {
120 color: #fff;
121}
122
123.center-in {
124 flex-direction: row;
125 justify-content: center;
126 align-items: center;
127 display: flex;
128}
129
130.top-title {
131 color: #fff;
132 font-size: 20px !important;
133 margin-top: 5px;
134}
135
136.user-info {
137 width: 150%;
138 position: relative;
139 left: -25%;
140 padding-left: 25%;
141 border-bottom-left-radius: 50%;
142 border-bottom-right-radius: 50%;
143 padding-bottom: 1.5rem;
144}
145
146.text-white {
147 color: #ffffff !important;
148}
149
150.text-light {
151 color: #999 !important;
152}
153
154.bg-white {
155 background-color: #ffffff;
156}
157.demos-header {
158 padding: 20px 0;
159 background-color: #03a9f4;
160}
161.demos-title {
162 text-align: center;
163 font-size: 40px;
164 color: #fff;
165 font-weight: 400;
166 margin: 0 15%;
167}
168.detail-title{
169 text-align: center;
170 font-size: 16px;
171 color: #fff;
172}