| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | /* nova-lesson/pages/lesson-detail/write-comment/index.wxss */.write_info {    .write_top {        display: flex;        align-items: center;        justify-content: space-between;        padding: 20rpx;        background: #f9f9f9;        .cencle {}        .submit {            color: #8d8f8e;        }    }    .rate_info {        text-align: center;        margin-top: 30rpx;        .choose {            margin-top: 20rpx;            color: #8d8f8e;            font-size: 24rpx;        }    }    .textarea {        width: 85%;        margin: 30rpx auto;        background: #ececec;        border-radius: 12rpx;        padding: 20rpx;        height: 400rpx;    }    .c_logo {        width: 94%;        margin: 20rpx 3%;        .label {            margin-bottom: 10rpx;        }    }}
 |