| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | .ann-box {    display: flex;    width: 630rpx;    overflow: hidden;    margin: 0 auto;    font-family: PingFang SC-Regular, PingFang SC;    .image-box {        position: relative;        width: 160rpx;        height: 120rpx;        margin-right: 20rpx;        .image {            position: absolute;            top: 0;            left: 0;        }    }    .mian {        width: 448rpx;        height: 122rpx;        .title {            display: flex;            height: 40rpx;            align-items: flex-end;            .tag {                display: inline-block;                margin-right: 10rpx;                font-size: 20rpx;                font-family: PingFangSC-Regular-, PingFangSC-Regular;            }            text {                flex: 1;                font-size: 28rpx;                font-family: PingFang SC-Medium, PingFang SC;                font-weight: 500;                color: #333333;            }        }        .explain {            font-size: 24rpx;            color: #666666;            margin-top: 10rpx;        }        .incidental {            height: 28rpx;            display: flex;            align-items: center;            justify-content: space-between;            font-family: PingFang SC-Regular, PingFang SC;            margin-top: 10rpx;            font-size: 20rpx;            color: #999999;            .incidental_r {                display: flex;                .iconfont{                    margin-right: 10rpx;                    font-size: 24rpx !important;                }            }        }    }}
 |