84 lines
1.2 KiB
Plaintext
84 lines
1.2 KiB
Plaintext
![]() |
.container {
|
||
|
min-height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
padding-bottom: 120rpx;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
width: 86%;
|
||
|
margin: 0 auto;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
font-size: 48rpx;
|
||
|
color: #01aaf7;
|
||
|
}
|
||
|
|
||
|
.title image {
|
||
|
width: 152rpx;
|
||
|
height: 152rpx;
|
||
|
margin-bottom: 16rpx;
|
||
|
}
|
||
|
|
||
|
.box {
|
||
|
width: 86vw;
|
||
|
margin: 36rpx auto;
|
||
|
}
|
||
|
|
||
|
.box label {
|
||
|
display: block;
|
||
|
margin-top: 16rpx;
|
||
|
font-size: 32rpx;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
margin: 16rpx 0;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.box .row .iconfont {
|
||
|
margin-left: 24rpx;
|
||
|
font-size: 36rpx;
|
||
|
}
|
||
|
|
||
|
.button-item {
|
||
|
margin: 0 16rpx 16rpx 0;
|
||
|
padding: 10rpx 20rpx;
|
||
|
border: 1rpx solid #AAA;
|
||
|
border-radius: 8rpx;
|
||
|
font-size: 32rpx;
|
||
|
color: #AAA;
|
||
|
}
|
||
|
|
||
|
.button-item.active {
|
||
|
border-color: #01aaf7;
|
||
|
color: #01aaf7;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
width: 90rpx;
|
||
|
padding: 4rpx 12rpx;
|
||
|
border: 1rpx solid #01aaf7;
|
||
|
border-radius: 8rpx;
|
||
|
color: #01aaf7;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
margin-top: 36rpx;
|
||
|
width: 100% !important;
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
|
||
|
.primary {
|
||
|
background-color: #01aaf7;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.success {
|
||
|
background-color: #40ba54;
|
||
|
color: white;
|
||
|
}
|