12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .container {
- margin: 0rpx 30rpx;
- width: calc(100% - 60rpx);
- /* height: calc(100vh - 40rpx); */
- padding: 0 0;
- }
- .notice, .reasons, .feedback {
- padding: 20rpx;
- background: #fff;
- width: 100%;
- margin-bottom: 20rpx;
- border-radius: 16rpx;
- }
- .notice view, .reasons view {
- font-size: 28rpx;
- color: #333;
- margin-bottom: 10rpx;
- }
- .title {
- font-size: 36rpx !important;
- margin-bottom: 20rpx !important;
- }
- .checkbox-item {
- display: flex;
- align-items: center;
- margin-bottom: 10rpx;
- }
- .checkbox-item checkbox {
- margin-right: 10rpx;
- }
- .feedback textarea {
- width: 100%;
- height: 120rpx;
- font-size: 28rpx;
- color: #333;
- border: none;
- outline: none;
- resize: none;
- }
- .confirm-button {
- width: 100% !important;
- height: 80rpx;
- background-color: #1890ff;
- color: #fff;
- font-size: 32rpx;
- border: none;
- border-radius: 40rpx;
- }
|