| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /* components/condition-screening/condition-screening.wxss */
- .head {
- display: flex;
- height: 87rpx;
- width: 100%;
- color: #666;
- font-size: 28rpx;
- flex: 1 0 auto;
- align-items: center;
- background-color: #fff;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 99;
- }
- .head .map {
- display: flex;
- white-space: nowrap;
- flex-grow: 1;
- justify-content: center;
- height: 40rpx;
- align-items: center;
- }
- .head .map .location {
- display: flex;
- align-items: center;
- width: 20rpx;
- height: 24rpx;
- padding-right: 10rpx;
- }
- .map-image {
- width: 10rpx;
- height: 8rpx;
- margin-left: 15rpx;
- }
- /* .map .location image {
- width: 100%;
- height: 100%;
- } */
- .head .salay,
- .head .settlement {
- display: flex;
- flex-grow: 1;
- white-space: nowrap;
- height: 40rpx;
- justify-content: center;
- align-items: center;
- }
- .salay .salayname {
- padding-right: 10rpx;
- }
- .salay .arrow {
- display: flex;
- width: 10rpx;
- height: 8rpx;
- align-items: center;
- }
- .salay .arrow .arrow-image {
- width: 12rpx;
- height: 24rpx;
- }
- .salay .active {
- color: #0177ff;
- }
- .settlement-image {
- width: 10rpx;
- height: 8rpx;
- margin-left: 15rpx;
- }
- /* 结算方式 */
- .scrolled {
- position: fixed;
- top: 87rpx;
- left: 0;
- }
- .settlementMethod {
- display: flex;
- display: -webkit-flex;
- flex-wrap: wrap;
- align-items: center;
- /* justify-content: space-between; */
- width: 100%;
- padding: 15rpx 30rpx;
- box-sizing: border-box;
- z-index: 999;
- background-color: #fff;
- box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.06);
- }
- .settlementMethod .settleme {
- width: 160rpx;
- min-height: 66rpx;
- color: #333;
- font-size: 26rpx;
- border-radius: 10rpx;
- box-sizing: border-box;
- background: #eee;
- margin-right: 17rpx;
- margin-bottom: 15rpx;
- padding: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .settlementMethod .settleme:nth-child(4n) {
- margin-right: 0;
- }
- .settlementMethod .active {
- background-color: #0177FF;
- color: #fff;
- }
|