| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | .box {    width: 100vw;    padding: 20rpx 30rpx;    background-color: #fff;    box-sizing: border-box;    .title {        font-size: 28rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #333333;        text {            color: #FF3B30;            margin-right: 8rpx;        }    }    .content {        width: 690rpx;        height: 200rpx;        background: #FFFFFF;        border-radius: 8rpx;        opacity: 1;        border: 2rpx solid #CCCCCC;        margin-top: 20rpx;        box-sizing: border-box;        padding: 20rpx;        textarea {            width: 100%;            height: 100%;        }    }}.footer {    display: flex;    align-items: center;    justify-content: flex-end;    position: fixed;    width: 100vw;    height: 130rpx;    background: #FFFFFF;    box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);    bottom: 0;    .custom {        width: 156rpx;        height: 90rpx;        background: #3874F6;        border-radius: 8rpx;        font-size: 28rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #FFFFFF;        margin-right: 30rpx;    }}
 |