Blame view

pages/login/login.scss 2.63 KB
4dfe89e4   monkeyhouyi   初始化
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
163
164
165
166
167
  .page{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #FFFFFF;
  }
  .logo{
    height: 240rpx;
    padding: 0 6%;
    position: relative;
    z-index: 0;
    top: 140rpx;
    image{
      width: 120rpx;
      height: 120rpx;
    }
  }
  .login-title {
  	position: relative;
  	z-index: 1;
  	padding: 0 6%;
  	.login-title-big {
  		font-size: 50rpx;
  		font-weight: bold;
  		letter-spacing: 10rpx;
  	}
  	.login-title-small {
  		font-size: 30rpx;
  		color: #9BA2B0;
  		margin-top: 10rpx;
  	}
  }
  /* 填写 */
  .input-info{
    padding: 0 6%;
    margin: 80rpx 0 40rpx 0;
    .info{
      display: flex;
      align-items:center;
      justify-content: space-between;
      width: 100%;
      height: 100rpx;
  	background-color: #F2F4F6;
  	border-radius: 20rpx;
  	margin-bottom: 40rpx;
  	padding: 0 30rpx 0 40rpx;
      input{
        width: 70%;
        height: 100%;
        font-size: 26rpx;
        color: #222222;
      }
  	.info-icon {
  		image {
  			width: 28rpx;
  			height: 28rpx;
  			margin-right: 20rpx;
  		}
  	}
      .more{
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 32%;
        height: 100%;
        .iconfont{
          font-size: 34rpx;
        }
        .mo{
          font-size: 26rpx;
          padding-left: 20rpx;
          // margin-left: 10rpx;
          border-left: 2rpx solid #ccc;
        }
      }
    }
  }
  .check-box {
  	display: flex;
  	margin: 20rpx 6%;
  	.check{
  	 	display: flex;
  	 	align-items: center;
  	 	text{
  	 		font-size: 38rpx;
  	 		color: #959595;
  	 	}
  	 	.action{
  	 		color: #89B8FF;
  	 	}
  	 }
  }
  /* 按钮 */
  .btn-info{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    .btn{
      display: flex;
      align-items: center;
      justify-content: center;
      width: 88%;
      height: 90rpx;
      background-color:#3f9b6a;
      border-radius: 10rpx;
      color: #FFFFFF;
      font-size: 32rpx;
    }
  }
  /* 操作 */
  .operation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    margin: 40rpx 0;
    text{
      font-size: 28rpx;
      color: #555555;
    }
  }
  
  /* 其他 */
  .other-ways{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80rpx;
    margin-top: 100rpx;
    text{
      font-size: 28rpx;
      color: #999999;
    }
  }
  .other-ways::after{
    content: "";
    width: 36%;
    height: 2rpx;
    background-color: #EEEEEE;
  }
  .other-ways::before{
    content: "";
    width: 36%;
    height: 2rpx;
    background-color: #EEEEEE;
  }
  /* 登录方式 */
  .login-way{
  	position: absolute;
  	bottom: 0;
    width: 100%;
    height: 200rpx;
    .way{
      width: 50%;
      height: 100%;
  	margin: 0 auto;
      image{
        width: 535rpx;
        height: 180rpx;
      }
    }
  }