67 lines
1.1 KiB
Plaintext
67 lines
1.1 KiB
Plaintext
@charset "UTF-8";
|
|
/* 行为相关颜色 */
|
|
/* 文字基本颜色 */
|
|
/* 背景颜色 */
|
|
/* 边框颜色 */
|
|
/* 尺寸变量 */
|
|
/* 文字尺寸 */
|
|
/* 图片尺寸 */
|
|
/* Border Radius */
|
|
/* 水平间距 */
|
|
/* 垂直间距 */
|
|
/* 透明度 */
|
|
/* 文章场景相关 */
|
|
.box {
|
|
border-radius: 20rpx;
|
|
background-color: #fff;
|
|
color: #7a797a;
|
|
font-size: 30rpx;
|
|
overflow: hidden;
|
|
}
|
|
.box .income {
|
|
padding: 40rpx;
|
|
}
|
|
.box .number {
|
|
color: #363636;
|
|
font-size: 45rpx;
|
|
font-weight: bold;
|
|
}
|
|
.box .range {
|
|
border-top: 1rpx solid #f6f6f6;
|
|
}
|
|
.box .three-row {
|
|
padding-bottom: 20rpx;
|
|
}
|
|
.table {
|
|
padding-top: 20rpx;
|
|
}
|
|
.table-line {
|
|
width: calc(100vw - 40rpx);
|
|
color: #a6a6a6;
|
|
font-size: 28rpx;
|
|
background-color: #fff;
|
|
padding: 10rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.table-line view {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.table-line view:first-child {
|
|
width: 13%;
|
|
}
|
|
.table-line view:nth-child(2) {
|
|
width: 25%;
|
|
}
|
|
.table-line view:nth-child(3) {
|
|
width: 37%;
|
|
}
|
|
.table-line view:nth-child(4) {
|
|
width: 25%;
|
|
}
|
|
.box .u-cell:last-child .u-line {
|
|
display: none !important;
|
|
}
|
|
|