12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* pages/welfareMall/feedback/feedback.wxss */
- .feedback{
- width: 750rpx;
- height: auto;
- padding-bottom: 119rpx;
- background: #F7F7F7;
- }
- /* 垂直方向布局,水平居中 **/
- .flex-column{
- display: flex;
- flex-flow: column nowrap;
- align-items: center;
- justify-content: left;
- }
- /* 水平方向布局,垂直居中 **/
- .flex-row{
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: center;
- }
- textarea{
- width: 659rpx;
- height: 320rpx;
- background: #FFFFFF;
- border: 1rpx solid #3E3E3E;
- border-radius: 10rpx;
- }
- .suggest_text-num{
- align-items: flex-end;
- }
- .feedback-exp{
- width: 659rpx;
- height: 120rpx;
- justify-content: space-between;
- }
- .feedback-explain{
- width: 350rpx;
- height: 40rpx;
- font-size: 24rpx;
- font-weight: 500;
- color: #444444;
- }
|