12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* pages/suggestions/suggestions.wxss */
- .suggestions {
- padding-top: 22rpx;
- font-size: 28rpx;
- border-top: 1rpx solid #eee;
- }
- .suggestions .tip {
- color: #aaadba;
- }
- .suggestions .label {
- color: #686b78;
- }
- .suggestions .label::before {
- content: "*";
- width: 22rpx;
- height: 40rpx;
- color: #fa6400;
- font-size: 28rpx;
- }
- .suggestions input {
- height: 80rpx;
- border-bottom: 1rpx solid #cfd2d5;
- margin-bottom: 38rpx;
- padding: 0 22rpx;
- }
- .suggestions textarea {
- width: calc(100% - 44rpx);
- height: 284rpx;
- border: 1rpx solid #cfd2d5;
- border-radius: 4rpx;
- margin-top: 18rpx;
- padding: 22rpx;
- margin-bottom: 198rpx;
- }
|