59 lines
897 B
Plaintext
59 lines
897 B
Plaintext
page {
|
|
background: #fff;
|
|
color: #1f2a37;
|
|
font-size: 28rpx;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16rpx 16rpx 40rpx 16rpx;
|
|
}
|
|
|
|
.card {
|
|
background: #ffffff;
|
|
border-radius: 20rpx;
|
|
box-shadow: 0 10rpx 30rpx rgba(15, 23, 42, 0.06);
|
|
padding: 24rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: #1677ff;
|
|
color: #ffffff;
|
|
border: none;
|
|
border-radius: 16rpx;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: #edf2ff;
|
|
color: #1f2a37;
|
|
border: none;
|
|
border-radius: 16rpx;
|
|
}
|
|
|
|
.mono {
|
|
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
}
|