123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- .list-box {
- display: flex;
- width: 100vw;
- height: 125rpx;
- background-color: #fff;
- border-bottom: 1rpx solid #dddddd;
- padding: 0 30rpx;
- box-sizing: border-box;
- .circle {
- width: 64rpx;
- height: 64rpx;
- line-height: 64rpx;
- text-align: center;
- background-color: #3874F6;
- border-radius: 50%;
- overflow: hidden;
- color: #fff;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- margin: 18rpx 20rpx 0 0;
- flex-shrink: 0;
- }
- .content {
- flex: 1;
- .title {
- display: flex;
- height: 48rpx;
- color: #000000;
- margin-top: 14rpx;
- .line-1 {
- max-width: 450rpx;
- line-height: 48rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular,
- PingFang SC;
- margin-right: 20rpx;
- }
- }
- .time {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 6rpx;
- }
- }
- .right {
- flex-shrink: 0;
- display: flex;
- align-items: center;
- }
- }
- .total {
- width: 100vw;
- height: 56rpx;
- line-height: 56rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- }
- /* 概况数据展示 */
- .data-display {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- width: 100vw;
- height: 290rpx;
- background-color: #fff;
- .item {
- width: 33.33%;
- height: 100rpx;
- margin-top: 30rpx;
- text-align: center;
- .label {
- height: 34rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- }
- .nubmer {
- height: 50rpx;
- line-height: 50rpx;
- font-size: 36rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- margin-top: 14rpx;
- }
- }
- }
|