64 lines
896 B
Plaintext
64 lines
896 B
Plaintext
page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.title {
|
|
width: 100%;
|
|
padding: 50rpx 55rpx 24rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.title>view:first-of-type {
|
|
color: #252535;
|
|
width: 100%;
|
|
height: 48rpx;
|
|
font-size: 48rpx;
|
|
font-weight: bold;
|
|
line-height: 48rpx;
|
|
margin-bottom: 60rpx;
|
|
}
|
|
|
|
.title>view:last-of-type {
|
|
color: #B6B6B6;
|
|
width: 100%;
|
|
height: 30rpx;
|
|
font-size: 30rpx;
|
|
line-height: 30rpx;
|
|
}
|
|
|
|
.wifi {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
padding: 0 55rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.content>view {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
margin: 30rpx 0;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.content>view>view:nth-of-type(1) {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
margin-right: 24rpx;
|
|
}
|
|
|
|
.content>view>view:nth-of-type(2) {
|
|
color: #252535;
|
|
flex: 1;
|
|
width: 0;
|
|
height: 80rpx;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
line-height: 80rpx;
|
|
} |