12345678910111213141516171819202122232425262728 |
- /* pages/createFile/createFile.wxss */
- .createfile-content {
- width: 100%;
- height: 100%;
- background-color: #f7f7f7;
- }
- .main-content {
- width: 690rpx;
- min-height: 100rpx;
- margin: 0 auto;
- }
- .form {
- width: 100%;
- min-height: 500rpx;
- background-color: #fff;
- }
- .form-item {
- width: 100%;
- height: 94rpx;
- border-bottom: 1rpx solid #E4E4E4;
- }
- .label {
- width: 100rpx;
- height: 100%;
- font-size: 26rpx;
- font-weight: 400;
- color: #333333;
- }
|