123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page,
- .content {
- background: #f8f6f6;
- height: 100%;
- }
- .navbar {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- position: relative;
- z-index: 10;
- }
- .navbar .nav-item {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- color: #303133;
- position: relative;
- }
- .navbar .nav-item.current {
- color: #bc253a;
- }
- .navbar .nav-item.current:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid #bc253a;
- }
- .swiper-box {
- height: calc(100% - 40px);
- }
- .swiper-box .tab-content {
- padding: 25rpx 0px;
- font-size: 28rpx;
- color: #1b1b1b;
- }
- .row {
- border-radius: 15rpx;
- margin: 0 25rpx;
- margin-bottom: 25rpx;
- height: 200rpx;
- overflow: hidden;
- background-color: #ffffff;
- }
- .row .list-interval {
- border: 1px dashed #ebeef5;
- height: 100%;
- }
- .row .list-interval .top,
- .row .list-interval .bottom {
- border-radius: 100rpx;
- width: 30rpx;
- height: 30rpx;
- position: absolute;
- background-color: #f8f6f6;
- right: -15rpx;
- }
- .row .list-interval .top {
- top: -18rpx;
- }
- .row .list-interval .bottom {
- bottom: -18rpx;
- }
- .row .list-money {
- height: 100%;
- }
- .row .list-money image {
- height: 100%;
- width: 20rpx;
- }
- .row .list-money .list-money-text {
- width: 220rpx;
- padding: 0 25rpx;
- text-align: center;
- color: #909399;
- }
- .row .list-money .list-money-text .tit {
- padding: 15rpx 0rpx;
- font-size: 55rpx;
- font-weight: bold;
- }
- .row .list-money .list-money-text .tit.action {
- color: #fc4141;
- }
- .row .list-money .list-money-text .price {
- padding-bottom: 25rpx;
- }
- .row .row_list_right {
- -webkit-box-flex: 1;
- -webkit-flex-grow: 1;
- flex-grow: 1;
- padding-left: 25rpx;
- line-height: 1;
- }
- .row .row_list_right .right_time {
- color: #909399;
- font-size: 24rpx;
- }
- .row .row_list_right .right_use {
- margin: 15rpx 0;
- padding: 10rpx;
- width: 140rpx;
- text_align: center;
- border-radius: 50rpx;
- color: #fff;
- font-size: 20rpx;
- }
- .row .row_list_right .right_use.action {
- background-color: #fc4141;
- }
- .row .row_list_right .right_use.noAction {
- background-color: #999999;
- }
- .row .row_list_right .right_top {
- margin: 15rpx 0;
- font-size: 32rpx;
- height: 50rpx;
- color: #909399;
- }
- .row .row_list_right .right_top .right_name {
- font-weight: bold;
- }
- .row .row_list_right .right_top .right_title {
- font-weight: bold;
- }
- .row .row_list_right .right_top .right_title.action {
- color: #606266;
- }
- .row .iconlocation {
- font-size: 36rpx;
- color: #909399;
- }
- .uni-load-more {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- height: 80rpx;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- }
|