12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .hotelList {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- padding: 24rpx 32rpx;
- }
- .hotleLeft {
- width: 214rpx;
- height: 152rpx;
- background-color: #007AFF;
- }
- .hotelright {
- padding-left: 16rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- width: 100%;
- }
- .searchType .input-view {
- width: 85%;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- background-color: #e7e7e7;
- height: 30px;
- border-radius: 15px;
- padding: 0 4%;
- -webkit-flex-wrap: nowrap;
- flex-wrap: nowrap;
- margin: 7px 0;
- line-height: 30px;
- margin: 24rpx auto;
- }
- .searchType .input-view .uni-icon {
- line-height: 30px !important;
- }
- .searchType .input-view .input {
- height: 30px;
- line-height: 30px;
- width: 94%;
- padding: 0 3%;
- }
|