1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/leaveDetail/leaveDetail.wxss */
- .view-box{
- width: 700rpx;
- padding: 25rpx;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
-
- }
- .view-box view{
- font-size: 36rpx;
- height: 110rpx;
- line-height: 110rpx;
- border-bottom: 1px solid #eee;
- }
- .title{
- width: 40%;
- }
- .value{
- width: 60%;
- text-align: right;
- }
- .textarea-box{
- width: 100%;
- height: 400rpx !important;
- line-height: 40rpx;
- }
- .textarea-box textarea{
- width: 650rpx;
- height: 300rpx;
- background: #f1f1f1;
- padding: 25rpx;
- margin: 25rpx 0;
- border-radius: 20rpx;
- }
- .red-view{
- color: #cc6031;
- }
- .submit-view{
- position: fixed;
- bottom: 100rpx;
- width: 400rpx;
- height: 100rpx;
- line-height: 100rpx;
- background: #cc6031;
- color: #FFF;
- text-align: center;
- left: 50%;
- margin-left: -200rpx;
- border-radius: 50rpx;
- font-size: 36rpx;
- }
|