1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .high-seas-container .nav {
- height: 100%;
- background: #fff;
- width: 100%;
- display: flex;
- align-items: center;
- }
- .high-seas-container .nav .nav-city {
- height: 50rpx;
- max-width: 160rpx;
- min-width: 120rpx;
- border-radius: 50rpx;
- border: 1px solid #08979c;
- margin-left: 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- margin-bottom: 4rpx;
- }
- .high-seas-container .nav .nav-city .city-icon {
- margin-left: 10rpx;
- margin-top: 4rpx;
- }
- .high-seas-container .nav .nav-city .city-icon .uni-icons {
- color: #08979c !important;
- }
- .high-seas-container .nav .nav-city .city-name {
- color: #08979c;
- font-size: 24rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- padding: 0 20rpx 0 6rpx;
- }
- .high-seas-container .nav .nav-search {
- flex: 1;
- width: 0;
- border: 1px solid #d9d9d9;
- line-height: 1;
- padding-left: 30rpx;
- color: #8c8c8c;
- margin: 0 20rpx;
- box-sizing: border-box;
- margin-bottom: 4rpx;
- font-weight: 200;
- height: 64rpx;
- border-radius: 64rpx;
- line-height: 60rpx;
- }
- .high-seas-container .nav .wx-operation {
- margin-right: 8px;
- margin-bottom: 4rpx;
- }
- .high-seas-container .house-list {
- padding: 30rpx;
- }
|