70 lines
1.2 KiB
Plaintext
70 lines
1.2 KiB
Plaintext
.replaceNetwork {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
padding: 24rpx 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.header {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
padding: 30rpx 40rpx;
|
|
box-sizing: border-box;
|
|
border-radius: 16rpx;
|
|
margin-bottom: 24rpx;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.header>view:nth-of-type(1) {
|
|
flex: 1;
|
|
}
|
|
|
|
.header>view:nth-of-type(1)>view:nth-of-type(1) {
|
|
color: #252535;
|
|
height: 32rpx;
|
|
font-weight: bold;
|
|
font-size: 32rpx;
|
|
line-height: 32rpx;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.header>view:nth-of-type(1)>view:nth-of-type(2) {
|
|
color: #808080;
|
|
height: 26rpx;
|
|
font-size: 26rpx;
|
|
line-height: 26rpx;
|
|
}
|
|
|
|
.header>view:nth-of-type(2) {
|
|
height: 28rpx;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
.header>view:nth-of-type(2)>view:nth-of-type(1) {
|
|
width: 12rpx;
|
|
height: 12rpx;
|
|
border-radius: 50%;
|
|
margin-right: 14rpx;
|
|
}
|
|
|
|
.header>view:nth-of-type(2)>view:nth-of-type(2) {
|
|
height: 28rpx;
|
|
font-weight: bold;
|
|
font-size: 28rpx;
|
|
line-height: 28rpx;
|
|
}
|
|
|
|
|
|
.section {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
border-radius: 16rpx;
|
|
background-color: #ffffff;
|
|
}
|