| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | @import "./head.scss";.add-box {    width: 100vw;    padding-left: 30rpx;    padding-top: 20rpx;    box-sizing: border-box;    background-color: #fff;    margin-bottom: 20rpx;    .detail {        width: 100%;        border-bottom: 1px solid #DDDDDD;        padding-bottom: 20rpx;        .label {            line-height: 42rpx;            font-size: 30rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #333333;            padding-right: 30rpx;            .tag {                display: inline-block;                width: 112rpx;                height: 40rpx;                text-align: center;                background: #E7EEFF;                border-radius: 4rpx;                font-size: 24rpx;                font-family: PingFang SC-Regular, PingFang SC;                color: #3874F6;                margin-right: 10rpx;            }        }        .detail-add {            font-size: 24rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #333333;            margin-top: 20rpx;        }        .principal {            font-size: 24rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #333333;            margin-top: 20rpx;        }    }    .editor {        display: flex;        justify-content: space-between;        align-items: center;        width: 100%;        height: 80rpx;        .radio {            font-size: 24rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #666666;            margin-left: -10rpx;        }        .icon-but {            padding-right: 30rpx;            navigator {                display: inline-block;                width: 60rpx;                height: 60rpx;                line-height: 60rpx;                text-align: center;                margin-left: 30rpx;                width: 32px;                color: #707070;            }        }    }}
 |