blob: b23e33c151248e86de058135c5d26e1b825d343a [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}
41
42@keyframes myfirst {
43 0% {
44 background: #03a9f4;
45 top: 180px;
46 }
47
48 25% {
49 background: #03a9f4;
50 top: 215px;
51 }
52
53 50% {
54 background: #03a9f4;
55 top: 250px;
56 }
57
58 75% {
59 background: #03a9f4;
60 top: 285px;
61 }
62
63 100% {
64 background: #03a9f4;
65 top: 320px;
66 }
67}
68
69.button-bottom {
70 width: 128px;
71 position: absolute;
72 left: 50%;
73 bottom: 80px;
74 margin-left: -64px;
75}
76
77.icon-camera {
78 float: left;
79}
80
81.vcodedisabled {
82 color: #999 !important;
83}
84
85.login-top {
86 height: 200px;
87 background: #03a9f4;
88 color: #fff;
89 font-size: 36px;
90 display: flex;
91 flex-direction: row;
92 justify-content: center;
93 align-items: center;
94}
95
96.weui-toast_content {
97 color: #fff;
98}
99
100.center-in {
101 flex-direction: row;
102 justify-content: center;
103 align-items: center;
104 display: flex;
105}
106
107.top-title {
108 color: #fff;
109 font-size: 20px !important;
110 margin-top: 5px;
111}
112
113.user-info {
114 width: 150%;
115 position: relative;
116 left: -25%;
117 padding-left: 25%;
118 border-bottom-left-radius: 50%;
119 border-bottom-right-radius: 50%;
120 padding-bottom: 1.5rem;
121}
122
123.text-white {
124 color: #ffffff !important;
125}
126
127.text-light {
128 color: #999 !important;
129}
130
131.bg-white {
132 background-color: #ffffff;
133}
134.demos-header {
135 padding: 20px 0;
136 background-color: #03a9f4;
137}
138.demos-title {
139 text-align: center;
140 font-size: 40px;
141 color: #fff;
142 font-weight: 400;
143 margin: 0 15%;
144}
145.detail-title{
146 text-align: center;
147 font-size: 16px;
148 color: #fff;
149}