123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- page{
- background: #f5f5f5;
- }
- .form{
- width: 690rpx;
- margin: 0 auto;
- background: #fff;
- display: flex;
- flex-direction: column;
- /* margin-top: 20rpx; */
- padding: 30rpx 0rpx 40rpx 0rpx;
- border-radius: 10rpx;
- }
- .input{
- display: flex;
- height: 60rpx;
- /* justify-content: center; */
- margin-top: 30rpx;
- padding: 0rpx 40rpx;
- line-height: 60rpx;
- }
- .input view{
- font-size: 30rpx;
- color:#333;
- }
- .input input{
- height: 60rpx;
- border:1rpx solid #999;
- border-radius: 14rpx;
- padding:0rpx 20rpx;
- width: 370rpx;
- font-size: 30rpx;
- }
- .input-name{
- width: 160rpx;
- display: flex;
- justify-content: space-between;
- }
- .picker{
- height: 60rpx;
- border:1rpx solid #999;
- border-radius: 14rpx;
- padding-left: 20rpx;
- width: 388rpx;
- line-height: 60rpx;
- }
- .weui-input{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .weui-input image{
- width: 26rpx;
- height: 14rpx;
- margin-right: 54rpx;
- }
- .code{
- width: 170rpx;
- height: 60rpx;
- margin-left: 20rpx;
- background: #6282f4;
- border-radius: 20rpx;
- color: #fff;
- font-size: 26rpx;
- }
- .textarea{
- display: flex;
- /* justify-content: center; */
- margin-top: 30rpx;
- padding: 0rpx 40rpx;
- }
- .textarea .input-name{
- font-size: 30rpx;
- color:#333;
- }
- textarea{
- border:1rpx solid #999;
- border-radius: 14rpx;
- /* margin-left: 6rpx; */
- padding: 10rpx 20rpx;
- height: 150rpx;
- width: 370rpx;
- }
- .bottom{
- position: fixed;
- left: 0;
- right: 0;
- margin:0 auto;
- bottom: 60rpx;
- display: flex;
- }
- .next{
- width: 100%;
- height: 90rpx;
- background: #6282f4;
- color: #fff;
- border-radius: 10rpx;
- margin: 20rpx;
- }
|