108 lines
1.8 KiB
Plaintext
108 lines
1.8 KiB
Plaintext
@charset "UTF-8";
|
|
/* 行为相关颜色 */
|
|
/* 文字基本颜色 */
|
|
/* 背景颜色 */
|
|
/* 边框颜色 */
|
|
/* 尺寸变量 */
|
|
/* 文字尺寸 */
|
|
/* 图片尺寸 */
|
|
/* Border Radius */
|
|
/* 水平间距 */
|
|
/* 垂直间距 */
|
|
/* 透明度 */
|
|
/* 文章场景相关 */
|
|
.banner image {
|
|
width: 100%;
|
|
}
|
|
.type-change {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-top: 10rpx;
|
|
}
|
|
.type-change .item {
|
|
width: 325rpx;
|
|
padding: 30rpx;
|
|
border-radius: 20rpx;
|
|
position: relative;
|
|
color: #373737;
|
|
background-color: #fff;
|
|
}
|
|
.type-change .item.active {
|
|
background-color: #007aff;
|
|
}
|
|
.type-change .item.active .t1 {
|
|
color: #fff;
|
|
}
|
|
.type-change .item.active .t2 {
|
|
color: #a5bbf9;
|
|
}
|
|
.type-change .item:last-child {
|
|
margin-left: 20rpx;
|
|
}
|
|
.type-change .item .t1 {
|
|
font-size: 35rpx;
|
|
font-weight: bold;
|
|
}
|
|
.type-change .item .t2 {
|
|
font-size: 25rpx;
|
|
color: #7a7a7a;
|
|
}
|
|
.tasks {
|
|
padding-top: 20rpx;
|
|
}
|
|
.task {
|
|
background-color: #fff;
|
|
padding: 30rpx;
|
|
border-radius: 20rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.task .logo {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
.task .red {
|
|
font-size: 45rpx;
|
|
font-weight: bold;
|
|
color: #ee2e25;
|
|
margin-top: 20rpx;
|
|
}
|
|
.task .basis {
|
|
color: #bebebe;
|
|
font-size: 28rpx;
|
|
padding-top: 3rpx;
|
|
}
|
|
.task .status {
|
|
font-size: 26rpx;
|
|
color: #7e7e7e;
|
|
}
|
|
.task .c-btn {
|
|
background-color: #007aff;
|
|
color: #fff;
|
|
border-radius: 50rpx;
|
|
padding: 10rpx 25rpx;
|
|
font-size: 28rpx;
|
|
margin-top: 30rpx;
|
|
}
|
|
.task .tag {
|
|
background-color: #f5f5f5;
|
|
color: #7e7e7e;
|
|
font-size: 26rpx;
|
|
padding: 8rpx 15rpx;
|
|
margin: 20rpx 0;
|
|
margin-right: 20rpx;
|
|
border-radius: 5rpx;
|
|
}
|
|
.task .amount {
|
|
font-size: 45rpx;
|
|
font-weight: bold;
|
|
color: #343434;
|
|
padding-top: 5rpx;
|
|
}
|
|
.task .amount-txt {
|
|
color: #bebebe;
|
|
font-size: 28rpx;
|
|
padding-top: 5rpx;
|
|
}
|
|
|