| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /* pages/upload/upload.wxss */
- page{
- padding:0 32rpx 32rpx;
- }
- .label{
- font-size: 28rpx;
- font-weight: 500;
- margin: 32rpx 0 16rpx;
- }
- input,.picker{
- height: 88rpx;
- background: #F4F6F8;
- border-radius: 16rpx;
- padding: 0 20rpx;
- font-size: 28rpx;
- max-width: 100%;
- border: 1px solid #EEEEEE;
- }
- picker{
- width: 30%;
- }
- .picker{
- line-height: 88rpx;
- }
- .info{
- display: flex;
- margin-bottom: 15rpx;
- justify-content: space-between;
- }
- .info input{
- width: 30%;
- display: inline-block;
- }
- .info text{
- display: inline-block;
- line-height: 88rpx;
- vertical-align: top;
- }
- .add{
- background: #FF5151;
- width: 28%;
- /* display: inline-block; */
- color: #fff;
- font-size: 28rpx;
- border-radius: 16rpx;
- line-height: 88rpx;
- text-align: center;
- vertical-align: top;
- }
- .openmarket{
- height: 88rpx;
- background: #F4F6F8;
- border-radius: 16rpx;
- padding: 0 20rpx;
- font-size: 28rpx;
- border: 1px solid #EEEEEE;
- margin: 16rpx 0;
- line-height: 88rpx;
- }
- .openmarket switch{
- float: right;
- position: relative;
- top: -4rpx;
- }
- .tips{
- margin-top: 32rpx;
- }
- .tips text{
- display: block;
- color: #666;
- font-size: 24rpx;
- line-height: 40rpx;
- }
- form button:not([size='mini']){
- background: #FF5151;
- color: #fff;
- width: 80%;
- height: 88rpx;
- line-height: 88rpx;
- padding: 0;
- font-size: 32rpx;
- border-radius: 16rpx;
- margin-top: 50rpx;
- }
- .upload{
- width: 220rpx;
- }
|