123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- /* pages/ucenter/car/bindCar.wxss */
- page{
- background-color: #F5F5F5;
- }
- .card{
- width: calc(100% - 100rpx);
- margin: 10rpx;
- height: 540rpx;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- padding: 20rpx 40rpx;
- }
- .card .t1{
- font-size: 32rpx;
- margin: 10rpx 0;
- }
- .card .t2{
- font-size: 24rpx;
- color:#aaaaaa;
- }
- .input_view input {
- width: calc(100% - 122rpx);
- display: inline-block;
- font-size: 34rpx;
- height: 88rppx;
- line-height: 88rpx;
- min-height: 88rpx;
- padding-left: 30rpx;
- color: #434343;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- }
- .input_view .placeholder {
- color: #999999;
- font-size: 34rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- }
- .input_view{
- box-shadow: 0rpx 0rpx 10rpx #dedede;
- border-radius: 10rpx;
- margin-top: 40rpx;
- margin-bottom: 20rpx;
- height: 88rpx;
- }
- .login_button {
- width: calc(100% - 270rpx);
- font-size: 32rpx;
- /* margin: 0rpx 32rpx; */
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #fff;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #00a8dc;
- border-radius: 40rpx;
- height: 80rpx;
- border: none;
- margin: 125rpx 135rpx 0 135rpx;
- }
- .login_button_disable {
- width: calc(100% - 270rpx);
- font-size: 32rpx;
- /* margin: 0rpx 32rpx; */
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #fff;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #c9c9c9;
- border-radius: 40rpx;
- height: 80rpx;
- border: none;
- margin: 125rpx 135rpx 0 135rpx;
- }
- .login_button.button-hover {
- background-color: #36a9a6;
- }
- .radio{
- line-height: 15px;
- height: 30rpx;
- display: flex;
- }
- .radio image{
- width: 26rpx;
- height: 26rpx;
- margin-right:10rpx;
- }
- .radio text{
- line-height: 24rpx;
- font-size: 24rpx;
- }
|