12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* pages/signup.wxss */
- page{
- padding: 30rpx;
- }
- .item{
- padding: 30rpx 0 0rpx;
- padding-left: 140rpx;
- position: relative;
- }
- .item label{
- position: absolute;
- left: 0;
- top: 30rpx;
- line-height: 64rpx;
- font-weight: 500;
- }
- .tags{
- position: relative;
- }
- .tags>text{
- display: inline-block;
- /* width: 160rpx; */
- border: 1px solid #E0E0E0;
- text-align: center;
- line-height: 64rpx;
- border-radius: 32rpx;
- font-size: 30rpx;
- margin-bottom: 16rpx;
- margin-right: 16rpx;
- padding: 0 30rpx;
- }
- .tags .act{
- border: 1px solid #FFEFEB;
- background: #FFEFEB;
- color: #D94B24;
- }
- .date-picker{
- line-height: 64rpx;
- }
- .date-picker text{
- color: #666;
- font-size: 30rpx;
- }
- .tags input,.picker{
- border: 1px solid #E0E0E0;
- width: 100%;
- height: 88rpx;
- padding: 0 24rpx;
- box-sizing: border-box;
- position: relative;
- top: -5rpx;
- font-size: 30rpx;
- border-radius: 8rpx;
- line-height: 88rpx;
- }
- .yzm{
- display: flex;
- justify-content: space-between;
- }
- .yzm input{
- width: 58%;
- }
- .yzm view{
- width: 40%;
- height: 88rpx;
- color: #D94B24;
- line-height: 88rpx;
- border: 1px solid #D94B24;
- border-radius: 8rpx;
- font-size: 30rpx;
- text-align: center;
- }
- .yzm .disabled{
- color: #999;
- border-color: #999;
- }
- .picker image{
- float: right;
- margin-top: 30rpx;
- }
- button:not([size='mini']){
- background: #D94B24;
- color: #fff;
- width: 100% !important;
- margin-top: 100rpx;
- height: 88rpx;
- line-height: 88rpx;
- padding: 0;
- font-size: 32rpx;
- border-radius: 8rpx;
- }
|