123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /* pages/ucenter/car/car.wxss */
- page{
- background-color: #F5F5F5;
- height:100vh;
- overflow: hidden;
- }
- .nocar .t1{
- width: 100%;
- margin-top: 70rpx;
- text-align: center;
- font-size: 36rpx;
- }
- .nocar .t2{
- width: 100%;
- margin-top: 16rpx;
- text-align: center;
- font-size: 24rpx;
- color:#aaaaaa;
- }
- .nocar .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: 40rpx 135rpx 0 135rpx;
- }
- .hascar{
- width: 100%;
- height:100vh;
- }
- .hascar .carView{
- height:100%;
- width:100%;
- }
- .hascar .context{
- height: calc(100vh - 200rpx);
- overflow: hidden;
- }
- .hascar .carView{
- width: calc(100% - 40rpx);
- margin:20rpx 20rpx;
- height: 140rpx;
- background-color: #FFF;
- border-radius: 10rpx;
- font-size: 36rpx;
- line-height: 36rpx;
- position: relative;
- overflow: hidden;
- }
- .hascar .carView .title{
- position: absolute;
- padding: 20rpx 20rpx;
- top: 0;
- left: 0;
- }
- .hascar .carView image{
- position: absolute;
- padding: 0rpx 10rpx;
- bottom: 0;
- right: 0;
- width: 60rpx;
- height: 60rpx;
- }
- .hascar .carView .def{
- position: absolute;
- top: 0;
- right: 0;
- width:60rpx;
- height:36rpx;
- color:#FFF;
- background-color: #21ADFF;
- font-size:18rpx;
- text-align: center;
- line-height: 36rpx;
- }
- .selectpopup_bg{
- height:100vh;
- width: 100%;
- position: absolute;
- top: 0;
- }
- .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: 50rpx auto;
- }
- .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;
- }
|