57 lines
953 B
Plaintext
57 lines
953 B
Plaintext
@charset "UTF-8";
|
|
/* 行为相关颜色 */
|
|
/* 文字基本颜色 */
|
|
/* 背景颜色 */
|
|
/* 边框颜色 */
|
|
/* 尺寸变量 */
|
|
/* 文字尺寸 */
|
|
/* 图片尺寸 */
|
|
/* Border Radius */
|
|
/* 水平间距 */
|
|
/* 垂直间距 */
|
|
/* 透明度 */
|
|
/* 文章场景相关 */
|
|
.container {
|
|
background: #f7f8fa;
|
|
padding: 30rpx;
|
|
}
|
|
.operations {
|
|
background-color: #fff;
|
|
border-radius: 10rpx;
|
|
padding: 20rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
.operations .b1 {
|
|
background-color: #fffaf0;
|
|
}
|
|
.operations .b2 {
|
|
background-color: #f5f8ff;
|
|
}
|
|
.operations .b3 {
|
|
background-color: #f3fafa;
|
|
}
|
|
.operations .item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
padding: 15rpx 20rpx;
|
|
margin: 0 10rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
.operations .item .t1 {
|
|
font-size: 30rpx;
|
|
color: #44413b;
|
|
font-weight: bold;
|
|
}
|
|
.operations .item .t2 {
|
|
font-size: 24rpx;
|
|
color: #bbc3c3;
|
|
}
|
|
.title {
|
|
padding: 20rpx 0;
|
|
font-size: 35rpx;
|
|
color: #44413b;
|
|
font-weight: bold;
|
|
}
|
|
|