| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | /* 头部 */.header {    width: 750rpx;    padding: 30rpx;    background-color: #ffffff;    box-sizing: border-box;    .title {        font-size: 30rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #333333;    }    .display-data {        display: flex;        justify-content: space-between;        width: 100%;        height: 28rpx;        line-height: 28rpx;        margin-top: 20rpx;        font-size: 20rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #999999;        text {            margin-right: 20rpx;        }        text:last-child {            margin-right: 0rpx;        }    }    .explain {        font-size: 28rpx;        font-family: PingFang SC-Regular, PingFang SC;        font-weight: 400;        color: #666666;        margin-top: 30rpx;    }}/* 吸底 */.footer {    position: fixed;    width: 750rpx;    background-color: #ffffff;    text-align: center;    padding: 20rpx 0;    bottom: 0;    &-button {        width: 500rpx;        height: 90rpx;        border-radius: 45rpx !important;        font-size: 28rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #FFFFFF;    }}
 |