123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .main {
- float: left;
- width: 100%;
- height: 100%;
- background-color: #f6f6f6;
- }
- .main .one {
- position: fixed;
- z-index: 9999;
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- background-color: #409eff;
- color: #ffffff;
- text-align: center;
- }
- .main .two {
- position: absolute;
- top: 80rpx;
- width: 100%;
- }
- .main .two .forminput {
- float: left;
- width: 94%;
- margin: 0 20rpx;
- border-bottom: 1px solid #ccc;
- }
- .main .two .forminput .label {
- float: left;
- width: 30%;
- font-size: 30rpx;
- height: 80rpx;
- line-height: 80rpx;
- }
- .main .two .forminput input {
- float: left;
- width: 70%;
- padding: 18rpx 0;
- text-align: right;
- }
- .main .two .forminput .tip {
- float: left;
- width: 100%;
- padding: 10rpx 0;
- font-size: 20rpx;
- color: #ff0000;
- }
- .main .two .formData {
- float: left;
- width: 94%;
- margin: 0 20rpx;
- border-bottom: 1px solid #ccc;
- }
- .main .two .formData .label {
- float: left;
- width: 30%;
- font-size: 30rpx;
- height: 80rpx;
- line-height: 80rpx;
- }
- .main .two .formData .createTime {
- float: right;
- width: 70%;
- text-align: right;
- font-size: 30rpx;
- height: 80rpx;
- line-height: 80rpx;
- color: #666;
- }
- .main .two .save {
- float: left;
- width: 94%;
- margin: 40rpx 20rpx 0 20rpx;
- }
- .main .two .save button {
- border-radius: 50rpx;
- background-color: #ff0000;
- color: #ffffff;
- }
|