123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- /* pages/reservation/reservation.wxss */
- page{
- margin: 20rpx;
- display: flex;
- flex-direction: column;
- }
- .charging_text_title {
- height: 105rpx;
- width: 100%;
- display: flex;
- margin-bottom: 20rpx;
- }
- .charging_text_title1 {
- width: 100%;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .charging {
- width: 62rpx;
- height: 62rpx;
- margin: 30rpx 30rpx 30rpx 0;
- flex-shrink: 0;
- overflow: hidden;
- }
- .charging image {
- width: 62rpx;
- height: 62rpx;
- }
- text {
- margin: 0 0 18rpx 0;
- display: block;
- font-size: 26rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #231400;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 30rpx;
- height: 30rpx;
- min-height: 30rpx;
- }
- text.bold {
- font-weight: bold;
- line-height: 34rpx;
- height: 34rpx;
- min-height: 34rpx;
- margin-top: 28rpx;
- margin-bottom: 8rpx;
- display: block;
- font-size: 30rpx;
- }
- text.inline {
- display: inline-block;
- color: #575757;
- margin-top:18rpx;
- margin-bottom: 0;
- }
- .h1 {
- margin: 0rpx 0rpx 24rpx 0rpx;
- font-size: 24rpx;
- line-height: 28rpx;
- height: 28rpx;
- min-height: 28rpx;
- color: #a3a3a3;
- }
- .select_card{
- width: calc(100% - 40rpx);
- height: 200rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- }
- .select_card .card{
- width: 160rpx;
- height: 200rpx;
- border-radius: 10rpx;
- border: 1rpx solid #bbbbbb;
- color: #bbbbbb;
- }
- .select_card .card .title{
- width: 100%;
- text-align: center;
- margin-top: 30rpx;
- }
- .select_card .card image{
- width: 70rpx;
- height: 70rpx;
- margin: 0 45rpx;
- margin-top: 30rpx;
- }
- .select_card .card.active{
- background-color: #1990fd ;
- color: #FFFFFF;
- }
- .title2{
- color: #E99D42;
- margin-top: 20rpx;
- font-size: 32rpx;
- }
- .title2_sub{
- color: #F06C6C;
- margin-top: 10rpx;
- font-size: 22rpx;
- width: calc(100% - 20rpx)
- }
- .title2_line{
- width: calc(100% - 40rpx);
- height: 4rpx;
- background-color: #BBBBBB;
- margin-top: 10rpx;
- }
- .scrollView{
- width: calc(100% - 40rpx);
- height: calc(100vh - 700rpx);
- }
- .scrollView .card{
- width: 100;
- border-bottom: #BBBBBB solid 1px;
- height: 80rpx;
- font-size: 30rpx;
- line-height: 80rpx;
- }
- .noList{
- font-size: 32rpx;
- color: #AAAAAA ;
- width: calc(100% - 40rpx);
- margin: 40rpx 0 ;
- text-align: center;
- height: calc(100vh - 600rpx);
- }
- .login_button_err {
- width: calc(100% );
- color: #F06C6C;
- font-size: 22rpx;
- text-align: center;
- }
- .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: 25rpx 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: 25rpx 135rpx 0 135rpx;
- }
- .login_button.button-hover {
- background-color: #36a9a6;
- }
|