123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .row {
- display: flex;
- -webkit-box-align: center;
- align-items: center;
- position: relative;
- padding: 0 30rpx;
- height: 110rpx;
- background: #fff;
- }
- .row .tit {
- flex-shrink: 0;
- width: 120rpx;
- }
- .row .input,.row .tit {
- font-size: 30rpx;
- color: #303133;
- }
- .row .input {
- -webkit-box-flex: 1;
- flex: 1;
- }
- .row .iconlocation {
- font-size: 36rpx;
- color: #909399;
- }
- .content,page {
- background: #f8f8f8;
- height: 100%;
- }
- .swiper-box {
- height: 750rpx;
- }
- .navbar {
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0,0,0,.06);
- z-index: 10;
- }
- .navbar,.navbar .nav-item {
- display: flex;
- position: relative;
- }
- .navbar .nav-item {
- -webkit-box-flex: 1;
- flex: 1;
- -webkit-box-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- color: #303133;
- }
- .navbar .nav-item.current {
- color: #5dbc7c;
- }
- .navbar .nav-item.current:after {
- content: "";
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid #5dbc7c;
- }
- .add-btn {
- display: flex;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- width: 690rpx;
- height: 80rpx;
- margin: 30rpx auto 0;
- font-size: 32rpx;
- border-radius: 10rpx;
- }
- .add-btn.up {
- background-color: #5dbc7c;
- color: #fff;
- }
|