*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --theme-color: #379A7E;
    --van-picker-confirm-action-color:#379A7E;
}
body{
    background: #f4f4f4;
    max-width: 640px;
    margin: auto;
}
input:disabled {
    background: transparent !important;
}
a{
    text-decoration: none;
}
.flex1,
.flex_1 {
  flex: 1;
}
.w100{
    width: 100%;
}
.h100{
    height: 100%;
}
.ellipsis1{
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ellipsis2{
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*flex*/
.flex-wrap {
  flex-wrap: wrap;
}

.flex {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.align-items_flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.align-items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-items_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.container {
  width: 92%;
  margin: auto;
}

.flex-direction_column{
    flex-direction: column;
}

.login-container {
    width: 92%;
    max-width: 400px;
    background: #fff;
    padding: 0 25px;
    margin: 6vh auto;
}

.login-container .logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.login-container .logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.login-container .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-container .app-name {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.login-container .login-tabs {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 25px;
}

.login-container .tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    color: #666;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
}

.login-container .tab.active {
    color: var(--theme-color);
    font-weight: 500;
}

.login-container .tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--theme-color);
    border-radius: 3px 3px 0 0;
}

.login-container .login-form {
    display: none;
}

.login-container .login-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-container .form-group {
    width: 100%;
}

.login-container .form-label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: #555;
}

.login-container .form-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.login-container .form-input:focus {
    border-color: var(--theme-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 117, 252, 0.1);
}

.login-container .code-group {
    display: flex;
    gap: 10px;
}

.login-container .code-input {
    flex: 1;
}

.login-container .send-code-btn {
    padding: 10px 20px;
    background: #f4f4f4;
    color: var(--theme-color);
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.login-container .send-code-btn:active {
    background: #e1ffe3;
}

.login-container .login-btn {
    width: 100%;
    padding: 14px 0;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 20px;
}

.login-container .login-btn:active {
    opacity: 0.9;
}

.login-container .forgot-password {
    text-align: center;
    margin-top: 15px;
}

.login-container .forgot-password a {
    color: var(--theme-color);
    text-decoration: none;
    font-size: 14px;
}

.login-container .third-party-login {
    margin-top: 30px;
    text-align: center;
    position: relative;
}

.login-container .third-party-login::before {
    content: '或';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 14px;
}

.login-container .third-party-login::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #eaeaea;
    z-index: -1;
}

.login-container .third-party-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.login-container .third-party-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.login-container .third-party-btn:active {
    background: #f9f9f9;
    transform: scale(0.95);
}

.login-container .third-party-btn i {
    font-size: 24px;
}

.login-container .agreement {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.login-container .agreement a {
    color: var(--theme-color);
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .login-container {
        padding: 0 20px;
    }
    
    .login-container .logo {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .login-container .app-name {
        font-size: 22px;
    }
}

.header-container{
    height: 50px;
    background: #38393E;
    position: sticky;
    top:0;
    z-index: 10;
    color:#fff;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
}
.header-container .mid-title{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    color:#fff;
    font-size: 16px;
    transform: translate(-50%,-50%);
}
.header-container .btn{
    width: 50px;
    height: 50px;
}
.header-container .btn svg{
    width: 25px;
    height: 25px;
}

.footer-container{
    position: fixed;
    width: 100%;
    height: 60px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    bottom: 0;
    max-width: 640px;
}
.footer-container .item .icon{
    margin-bottom: 4px;
}
.footer-container .item .icon .van-icon{
    font-size: 25px;
}
.footer-container .item .icon img{
    height: 25px;
}
.footer-container .item .icon .default,
.footer-container .item.active .icon .hover{
    display: block;
}
.footer-container .item .icon .hover,
.footer-container .item.active .icon .default{
    display: none;
}

.footer-container .item .t{
    color:#999;
    font-size: 14px;
}
.footer-container .item.active .vant-icon,
.footer-container .item.active .t{
    color:var(--theme-color);
}


/* index */
.index_top {
  position: relative;
  padding-bottom: 10px;
  overflow: hidden;
}
.index_top .index_top_img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.index_top .navbar{
  width: 100%;
}
.index_top .van-nav-bar{
  background: transparent;
}
.index_top  .van-nav-bar__left{
  width: 24%;
  padding-left: 4%;
}
.index_top .logo image{
  height: 20px;
}
.index-search .van-search{
  padding: 0;
}
.index_top .location{
  column-gap: 4px;
  max-width: 75px;
  line-height: 1;
}
.index_top .location .van-icon{
  transform: rotate(90deg);
}
.index_top .location .t{
  font-size: 14px;
}
.index-search .van-search__content{
  background: #f4f4f4;
}
.index-search .kf{
  font-size: 11px;
  color:#999;
  margin-left: 15px;
}

.index-tab-nav{
  padding-bottom: 10px;
  padding-top: 10px;
  column-gap: 10px;
}
.index-tab-nav .item{
  padding: 4px 10px;
  position: relative;
  font-size: 14px;
  color:#666;
  border: 1px solid #fff;
  border-radius: 4px;
}
.index-tab-nav .item.active{
  color:var(--theme-color);
  border-color:var(--theme-color);
}


.xtgg-bg {
    background: #fff;
    padding-top: 10px;
}

.xtgg {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 2em;
    background: #f9f9f9;
    margin-bottom: 10px;
}

.xtgg .xtgg_tt {
    margin-right: 15px;
}

.xtgg .xtgg_tt .h2 {
    font-size: 17px;
    font-weight: bold;
    color: #161616;
}

.xtgg .xtgg_tt .h2:nth-child(1) {
    color: var(--theme-color);
}

.xtgg .title {
    line-height: 20px;
    color: #161616;
    font-size: 14px;
}

.xtgg .span {
    background: #E1E7FD;
    color: var(--theme-color);
    font-size: 10px;
    margin-right: 5px;
    padding: 4px 4px;
    border-radius: 2px;
    line-height: 1;
}

.xtgg .van-notice-bar {
    background: transparent;
    color: #161616;
    padding: 0;
    height: 20px;
    line-height: 20px;
}
.index-nav {
    background: #fff;
    padding: 10px 4% 15px;
}

.index-nav .item {
    flex: 1;
    text-align: center;
}

.index-nav .item .t {
    font-size: 14px;
}

.index-nav .item .icon img {
    height: 35px;
}


.card-list {
    row-gap: 15px;
    margin-top: 15px;
}

.card-list .card {
    background: linear-gradient(to bottom, #E5FCF2, #fff 30%);
    border-radius: 10px;
    padding: 15px;
}

.card-list .card .thumb {
    width: 95px;
    margin-right: 13px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.card-list .card .thumb .image {
    width: 100%;
    padding-bottom: 120%;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.card-list .card .thumb .image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.card-list .card .thumb .zt {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, .5);
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
    padding: 5px 0;
}

.card-list .card .price {
    color: #ff6600;
    font-size: 18px;
    line-height: 1;
    column-gap: 2px;
}

.card-list .card .price .unit {
    font-size: 11px;
}

.card-list .card .thumb .static {
    width: 100%;
    border-radius: 2em;
    color: var(--theme-color);
    font-size: 12px;
    text-align: center;
    line-height: 23px;
}

.card-list .card .name {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-list .card .name .smrzimg {
    height: 17px;
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.card-list .card .name .zp-type {
    font-weight: normal;
    font-size: 9px;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    display: inline-block;
    border-radius: 4px;
    padding: 3px 3px;
    margin-left: 3px;
    line-height: 1;
    position: relative;
    top: -2px;
}

.card-list .card .zl {
    column-gap: 10px;
    font-size: 13px;
}

.card-list .card .zl .star {
    column-gap: 3px;
    color: #f60;
}

.card-list .card .yfw {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

.card-list .card .location {
    font-size: 13px;
    column-gap: 2px;
}

.card-list .card .location .van-icon {
    color: var(--theme-color);
}

.card-list .card .btn {
    background: var(--theme-color);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    height: 29px;
    border-radius: 4px;
    padding: 0 10px;
}

.card-list .card .tags {
    font-size: 10px;
    color: var(--theme-color);
    column-gap: 5px;
    row-gap: 5px;
    margin-top: 5px;
    margin-bottom: 4px;
}

.card-list .card .tags .tag {
    padding: 4px 5px;
    line-height: 1;
    border-radius: 4px;
    background: #E8F7F2;
}

.card .likes {
    margin-top: 5px;
    color: #999;
    font-size: 14px;
}

.card .likes .i {
    column-gap: 5px;
}



.dsfss {
    background: #fff;
}

.dsfss .ssx {
    width: calc(100vw / 3);
    font-size: 13px;
    box-sizing: border-box;
    color: var(--dropdown-menu-title-text-color, #323233);
    line-height: var(--dropdown-menu-title-line-height, 18px);
    max-width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
    column-gap: 4px;
}

.ssx-icon {
    transform: rotate(90deg);
}

.dsfss .van-dropdown-menu__bar {
    box-shadow: none !important;
    height: 43px;
}

.dsfss .van_group {
    max-height: 45vh;
    overflow-y: scroll;
}

.dropdown-current,
.dsfss .van-dropdown-menu__title--active {
    color: #f00 !important;
}

.check .van-cell__title {
    color: #f00;
}

.dsfss .van-dropdown-menu__title {
    font-size: 13px !important;
}

.dsfss .custom-icon {
    display: none;
}

.dsfss .check .custom-icon {
    display: block;
}

.dsfss .van-dropdown-menu__title--active {
    color: #f60 !important;
}


.tjzj-title {
    width: calc(100vw / 3);
    font-size: 16px;
    position: relative;
    height: 43px;
}

.tjzj-title .c {
    color: var(--theme-color);
}

.tjzj-title .icon {
    height: 35px;
    position: absolute;
    bottom: 0;
    left: calc(50% + 10px);
    transform: translateX(-50%);
}

.tjzj-title .van-icon {
    margin-right: 2px;
}

/* 个人中心 */
.personal_top .van-nav-bar {
    background: none;
}

.profile_top_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.navbar .van-nav-bar {
    background: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.van-hairline--bottom:after {
    display: none;
}

.navbar .van-nav-bar__title {
    color: #000;
}

.personal_top {
    padding: 12vh 4% 6vh;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #B8F8E0, #f4f4f4);
    position: relative;
    z-index: 1;
}

.personal_top .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    position: relative;
}

.personal_top .avatar image {
    height: 100%;
    width: 100%;
}

.personal_top .avatar .xg {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 9px;
    color: #fff;
    padding-top: 2px;
    padding-bottom: 3px;
    background: rgba(0, 0, 0, .4);
}

.personal_top .right {
    flex: 1;
    width: 100%;
}

.personal_top .right .nickname {
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.personal_top .right .nickname .sf {
    display: inline-block;
    font-size: 11px;
    background: var(--theme-color);
    color: #000;
    font-weight: normal;
    border-radius: 2em;
    height: 20px;
    line-height: 20px;
    padding: 0 7px;
    margin-left: 4px;
    position: relative;
    top: -3px;
}

.personal_top .right .tel {
    color: #999;
    font-size: 13px;
    margin-top: 4px;
}

.personal_top .right_bom {
    font-size: 12px;
    margin-top: 3px;
}

.personal_top .rigt_mid {
    position: relative;
    width: 90%;
    height: 7.5px;
    border-radius: 10px;
    background: #e5e5e5;
    overflow: hidden;
}

.personal_top .rigt_mid progress {
    width: 100%;
}

.personal_top .rigt_mid .jdt {
    width: 70%;
    height: 7px;
    background: #000;
    border-radius: 10px 0 0 10px;
}

.personal_top .right_bom .money {
    font-size: 11px;
    margin-left: 10px;
    color: #E3C03E;
    font-weight: bold;
}

.personal_top .tgmewm {
    font-size: 11px;
    text-align: center;
}

.user-money {
    position: relative;
    margin-top: -25px;
    z-index: 1;
    column-gap: 10px;
}

.user-money .yhq-main {
    padding: 12px 12px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
}

.cx-main {
    padding: 12px 0;
    background: linear-gradient(to bottom, #E5FCF2, #fff 40%);
    border-radius: 10px;
    width: 35%;
    text-align: center;
    box-sizing: border-box;
}

.yhq-main-header {
    margin-bottom: 15px;
    font-size: 15px;
    column-gap: 5px;
    line-height: 1;
}

.yhq-main-header .num {
    font-size: 20px;
}

.yhq-card {
    border-radius: 10px;
    padding: 6px 8px;
    column-gap: 12px;
    background: linear-gradient(to right, #FFF5EB, #FFF5EB);
}

.yhq-card img {
    height: 35px;
}

.yhq-card .t {
    font-size: 14px;
    color: #666;
}

.cx-main .title {
    font-size: 12px;
    color: #666;
}

.cx-main .num {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 15px;
}

.cx-main .num.on::before {
    content: '￥';
    font-size: 14px;
}

.cx-main .btn {
    border-radius: 2em;
    width: 80%;
    background: linear-gradient(to right, #21B96E, #11B88D);
    color: #fff;
    font-size: 13px;
    line-height: 30px;
}

.user-option {
    padding: 0 0;
    background: #fff;
    margin: 12px auto;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.user-option .item {
    height: 50px;
    column-gap: 6px;
    font-size: 15px;
}

.user-option .item img {
    height: 19px;
}

.user-option .item:not(:last-child) {
    border-right: 1px solid #f4f4f4;
}



.big-title {
    font-style: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.big-title .more {
    font-weight: normal;
    font-size: 14px;
    color: #999;
}

.profile_bom {
    padding: 15px 15px;
    background: #fff;
    margin: 12px auto;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.profile_bom_list {
    row-gap: 20px;
}

.profile_bom_list.big-icon .item .icon .van-icon {
    font-size: 28px;
}

.profile_bom_list.big-icon .item {
    width: 20%;
}

.profile_bom .item {
    width: 25%;
    color: #000;
    box-sizing: border-box;
    row-gap: 5px;
}

.profile_bom .item .icon .van-icon {
    font-size: 28px;
}

.profile_bom .p {
    font-size: 14px;
}

/* 导航栏 */
.diyheader {
    background: #fff;
    z-index: 9;
}

.diyheader.blackTheme .van-nav-bar,
.diyheader.blackTheme {
    background: transparent;
}

.diyheader .home {
    font-size: 18px;
    color: #333;
    width: 40px;
    text-align: center;
}

.diyheader .left_capsule {
    text-align: center;
    position: relative;
}

.diyheader .left_capsule .van-icon{
    color: #000;
    font-size: 18px;
}
.diyheader .left_capsule .item {
    padding: 0 10px;
}

.diyheader .van-nav-bar__left {
    padding-left: 0;
}

.diyheader .van-nav-bar__right {
    left: 36px;
    right: auto;
}

.diyheader .van-nav-bar__title {
    font-size: 16px;
}

.diyheader.blackTheme .van-nav-bar__title,
.diyheader.blackTheme .left_capsule .van-icon,
.diyheader.blackTheme .home {
    color: #fff;
}
/* 入驻 */
.form-page-bg {
    position: relative;
    background: #fff;
    z-index: 1;
    border-radius: 20px 20px;
    margin-top: -40px;
    overflow: hidden;
}



.form-page-top {
    position: relative;
}

.form-page-top .diyheader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.detail_footer .footer {
    width: 92%;
    height: 90px;
    background: #fff;
    z-index: 99;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0 4% 0 4%;
    column-gap: 15px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-sizing: content-box;
}

.detail_footer .footer .link {
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, #35FB9C, #373892);
    font-size: 15px;
    border-radius: 2em;
    height: 40px;
    line-height: 40px;
    font-weight: normal;
    margin: 5px auto 0;
}



.agree {
    margin-top: 10px;
    font-size: 14px;
}
.agree a{
    color: var(--theme-color);
}
.up-grzp {
    margin-top: 12px;
}


.rz-status {
    background: #fff;
    padding: 15px 15px 0;
    font-size: 15px;
}

.rz-status .bt {
    margin-right: 15px;
    color: #333;
}

/* 审核中 */
.rz-status .status.c001 {
    color: #09f;
}

/* 已通过 */
.rz-status .status.c002 {
    color: var(--theme-color);
}

/* 未通过 */
.rz-status .status.c003 {
    color: #f00;
}

.rz-status .sbyy {
    margin-top: 10px;
    font-size: 13px;
    background: #fff2f2;
    color: #f00;
    border-radius: 10px;
    padding: 10px;
}

.rz-header {
    padding: 20px 6% 10px;
}

.rz-header .bigtitle {
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 4px;
}

.rz-header .xy {
    font-size: 14px;
    color: #999;
}

.rz-header .xy .c {
    display: inline-block;
    color: #36BC99;
}

.rz-header .icon {
    margin-right: 10px;
}

.rz-header .status {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.rz-header .status.c001 {
    color: #36BC99;
}

.rz-header .status.c002 {
    color: #09f;
}

.rz-header .status.c003 {
    color: #373892;
}

.rz-header .time {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.rz-header .sbyy {
    color: #f00;
    font-size: 13px;
}

.item-info {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
    position: relative;
    margin-bottom: -7px;
}

.van-uploader__preview-delete,
.van-uploader__preview-delete:after {
    height: 18px !important;
    width: 18px !important;
}

.van-uploader__preview-delete .van-icon {
    font-size: 18px;
}

.disabled,
.disabled .input {
    filter: grayscale(100%) !important;
    color: #999;
}


.form_jsmf {
    border-radius: 15px;
    padding: 5px 15px;
    background: #fff;
    position: relative;
    margin-top: 0;
}

.form_jsmf .item {
    padding: 15px 10px;
    font-size: 15px;
    column-gap: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.form_jsmf .item .t {
    font-size: 16px;
}

.form_jsmf .item .input {
    text-align: right;
    border: none;
}

.up_sfz {
    margin-top: 10px;
}

.up_sfz .up_sfz_img {
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: none;
    box-shadow: none;
}

.up_sfz .up_sfz_img .image {
    width: 100%;
}

.up_sfz .up_sfz_img .image img {
    width: 80%;
}

.up_sfz .up_sfz_img .bt {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    font-weight: normal;
}
/* 优惠券 */
.yhq-radio {
    font-size: 14px;
    margin: 15px auto;
}

.radio .van-radio__label {
    padding-left: 7.5px;
}

.coupon_list .item {
    background: #fff;
    margin-bottom: 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.coupon_list .item .left {
    width: 32%;
    height: 130px;
    color: #fff;
    background: linear-gradient(to right bottom, #f90, #FE3A42);
}

.coupon_list .item .left .price {
    font-size: 12px;
    color: #fff;
}

.coupon_list .item .left .price .num {
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
}

.coupon_list .item .left .t {
    font-size: 12px;
    margin-top: 7.5px;
}

.coupon_list .item .right {
    padding: 0 15px;
}

.coupon_list .item .right .title {
    font-weight: bold;
    font-size: 15px;
}

.coupon_list .item .right .title .static {
    font-weight: normal;
    font-size: 12px;
    position: relative;
    display: inline-block;
    border-radius: 4px;
    padding: 3px 5px;
    line-height: 1;
    color: #fff;
    top: -1px;
    margin-right: 2px;
}

.coupon_list .item .right .title .static.c001 {
    background: #aaa;
}

.coupon_list .item .right .title .static.c002 {
    background: #f7b24a;
}

.coupon_list .item .right .time {
    font-size: 12px;
    color: #999;
    margin: 7px 0;
}

.coupon_list .item .right .ad {
    font-size: 12px;
    color: #999;
}

.coupon_list .item.c001 .left {
    background: #aaa;
}

.coupon_list .item.c001::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .6);
    top: 0;
    left: 0;
}

.coupon_list .item .ljsy {
    border-radius: 2em;
    color: #fff;
    background: linear-gradient(to right, #f90, #FE3A42);
    font-size: 13px;
    line-height: 1;
    padding: 6px 13px;
}
/* 会员卡 */
.tx_main {
    margin-top: 12px;
    border-radius: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tx_main_bg {
    display: block;
}

.tx_main_container {
    color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 25px 0 25px 30px;
    z-index: 1;
}

.tx_main .t {
    font-size: 14px;
    color: #000;
    color: #fff;
    margin-bottom: 15px;
}

.tx_main .num {
    font-size: 30px;
    margin-top: 4px;
    color: #fff;
    line-height: 1;
}

.tx_main .sqtx {
    border-radius: 2em;
    background: #fff;
    color: #F37342;
    font-size: 12px;
    padding: 8px 20px;
    position: relative;
    z-index: 1;
    margin-left: 20px;
    top: -2px;
    display: block;
}
.hyk-list .item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.hyk-list .item .t {
    font-size: 15px;
}

.hyk-list .item .info {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.hyk-list .item .num.c001 {
    color: red;
}

.hyk-list .item .num.c002 {
    color: green;
}
.hyk-list .item .zhye{
  font-size: 12px;
  color:#999;
}
.fxyj_top {
    padding: 15px 4% 0;
    font-size: 14px;
}

.fxyj_top .left .van-icon {
    transform: rotate(90deg);
    margin-left: 5px;
    color: #ccc;
    font-size: 13px;
}

.fxyj_top .left {
    color: #999;
}

.fxyj_top .leiji .num {
    color: #f60;
}

.fxyj_top .h2 {
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.fxyj_top .h2::before {
    content: '';
    width: 5px;
    height: 17px;
    border-radius: 2em;
    background: linear-gradient(to bottom, #f90, #f60);
    margin-right: 6px;
}


/* 充值弹窗 */
.recharge-popup {
    padding: 20px;
}

.recharge-popup .popbg_img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.recharge-popup .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.recharge-popup .subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.recharge-popup .amount-section {
    margin-bottom: 20px;
}

.recharge-popup .section-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.recharge-popup .agree {
    margin-bottom: 10px;
}

.amount-options {
    row-gap: 10px;
    column-gap: 10px;
}

.amount-options .amount-option {
    width: calc((100% - 20px) / 3);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 8px;
    text-align: center;
    transition: all 0.2s;
    box-sizing: border-box;
    height: 60px;
}

.amount-option.selected {
    border-color: var(--theme-color);
    background-color: #f0fff2;
}

.amount-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.amount-bonus {
    font-size: 12px;
    color: #f60;
}

.custom-amount {
    margin-top: 15px;
    width: 100%;
    padding: 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    column-gap: 5px;
    height: 50px;
    font-weight: bold;
}

.custom-amount .dw {
    font-size: 18px;
}

.custom-input:focus {
    border-color: var(--theme-color);
}

.recharge-popup .submit-btn {
    width: 100%;
    padding: 12px 0;
    background-color: var(--theme-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.submit-btn.disabled {
    background-color: #cccccc;
}