/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    background-color: #f8f8f8;
    color: #333;
    font-family: -apple-system-font, "Helvetica Neue", sans-serif;
    line-height: 1.6;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: #FFFFFF;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 800px;
}

.list .page__hd{
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    opacity: 1;
    width: 100%;
    height: 4rem;
    background: #2FCCAD;
    text-align: center;
    flex: 1;
    overflow: hidden;
}

.record-page .page__hd .header-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    position: relative;
}

.record-page .page__hd .back-btn {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.record-page .page__hd .back-icon {
    width: 24px;
    height: 24px;
}

.record-page .page__hd .header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
}

.record-page .page__hd .header-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.record-page .page__hd .header-title span {
    font-family: 'Alibaba PuHuiTi', sans-serif;
}

@font-face {
    font-family: 'Alimama FangYuanTi VF';
    src: url('./font/AlimamaFangYuanTiVF/AlimamaFangYuanTiVF-Thin.woff2') format('woff2'),
    url('./font/AlimamaFangYuanTiVF/AlimamaFangYuanTiVF-Thin.woff') format('woff'),
    url('./font/AlimamaFangYuanTiVF/AlimamaFangYuanTiVF-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alimama FangYuanTi VF';
    src: url('./font/AlimamaFangYuanTiVF/AlimamaFangYuanTiVF-Thin.woff2') format('woff2'),
    url('./font/AlimamaFangYuanTiVF/AlimamaFangYuanTiVF-Thin.woff') format('woff'),
    url('./font/AlimamaFangYuanTiVF/AlimamaFangYuanTiVF-Thin.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('./font/AlibabaPuHuiTi-3-65-Medium/AlibabaPuHuiTi-3-65-Medium.woff2') format('woff2'),
    url('./font/AlibabaPuHuiTi-3-65-Medium/AlibabaPuHuiTi-3-65-Medium.woff') format('woff'),
    url('./font/AlibabaPuHuiTi-3-65-Medium/AlibabaPuHuiTi-3-65-Medium.ttf') format('truetype'),
    url('./font/AlibabaPuHuiTi-3-65-Medium/AlibabaPuHuiTi-3-65-Medium.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 页面通用样式 */
.page {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    background-color: #f8f8f8;
}

.page__hd {
    padding: 40px 40px 20px;
    text-align: center;
    flex: 3;
    position: relative;
    overflow: hidden;
}

.page__bd {
    padding: 0 15px 20px;
    flex: 1;
}

.record-page .page__bd {
    margin-top: 4rem;
    padding-top: 15px;
    margin-bottom: 4rem;
}

/* 筛选栏样式 */
.record-page .filter-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 15px;
}

.record-page .filter-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333333;
    padding: 5px 10px;
    background-color: #F8F8F8;
    border-radius: 4px;
}

.record-page .filter-text {
    margin-right: 5px;
}

.record-page .filter-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #999999;
}

/* 记录列表样式 */
.record-page .record-list {
    margin-bottom: 15px;
}

.record-page .record-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 14px;
    /* margin: 0 10px 15px; */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
}

.record-page .record-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F5F5F5;
}

.record-page .record-order {
    font-size: 14px;
    color: #333333;
}

.record-page .record-amount {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    font-family: 'Alibaba PuHuiTi', sans-serif;
    text-align: right;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.record-page .recharge-label {
    font-size: 16px;
    font-weight: normal;
    color: #333333;
}

.record-page .quantity-value {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-right: auto;
    margin-left: 5px;
}

.record-page .amount-value {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}

.record-page .record-info {
    display: flex;
    flex-direction: column;
}

.record-page .record-row {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.record-page .record-label {
    width: 80px;
    font-size: 14px;
    color: #999999;
}

.record-page .record-value {
    flex: 1;
    font-size: 14px;
    color: #333333;
}

.record-page .record-amount {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    font-family: 'Alibaba PuHuiTi', sans-serif;
    margin: 15px 0;
}

.record-page .record-time {
    font-size: 0.8rem;
    color: #999999;
    margin-left: auto;
}

.record-page .record-status {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    margin-left: auto;
}

.record-page .status-success {
    color: #2FCCAD;
    background-color: rgba(47, 204, 173, 0.1);
}

.record-page .status-pending {
    color: #FF9900;
    background-color: rgba(255, 153, 0, 0.1);
}

.record-page .status-failed {
    color: #FF3B30;
    background-color: rgba(255, 59, 48, 0.1);
}

/* 空状态样式 */
.record-page .record-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.record-page .empty-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.record-page .empty-text {
    font-size: 16px;
    color: #999999;
}

/* 加载更多样式 */
.record-page .loading-more,
.record-page .load-end {
    text-align: center;
    padding: 15px 0;
    color: #999999;
    font-size: 14px;
}

.record-page .loading-text,
.record-page .end-text {
    margin-left: 5px;
}

.page__ft {
    /*padding: 15px;*/
    text-align: center;
    /*flex: 0 0 auto;*/
    height: 6.32rem
}

/* 登录页面样式 */
.login-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: url('./images/login_bg.png') no-repeat;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .page__hd .logo-container {
        margin-top: 100px;
        width: 130px;
        height: 95px;
    }

    .page__hd .left_title_1,
    .page__hd .left_title_2 {
        font-size: 24px;
    }

    .login-page .weui-btn-area {
        bottom: 120px;
        width: 90%;
    }

    .page__hd .right_show {
        width: 120px;
        height: 60px;
        right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .page__hd .logo-container {
        margin-top: 80px;
        width: 110px;
        height: 80px;
        left: 20px;
    }

    .page__hd .left_title_1,
    .page__hd .left_title_2 {
        font-size: 22px;
        left: 20px;
    }

    .login-page .weui-btn-area {
        bottom: 100px;
        width: 90%;
    }

    .login-page #wechatLogin {
        font-size: 16px;
        padding: 10px 0;
    }

    .page__hd .right_show {
        width: 100px;
        height: 50px;
        right: 15px;
    }
}

.page__hd .logo-container {
    position: relative;
    left: 40px;
    margin-top: 100px;
    width: 150px;
    height: 110px;
    opacity: 1;
    display: block;
    z-index: 10;
}

.page__hd .left_title_1 {
    position: relative;
    left: 40px;
    margin-top: 20px;
    width: 200px;
    height: 40px;
    opacity: 1;
    font-family: Alimama FangYuanTi VF, sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 40px;
    letter-spacing: 0;
    font-feature-settings: "kern" on;
    color: #333333;
    text-align: left;
}

.page__hd .left_title_2 {
    position: relative;
    left: 40px;
    width: 200px;
    height: 40px;
    opacity: 1;
    font-family: Alimama FangYuanTi VF, sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 40px;
    letter-spacing: 0;
    font-feature-settings: "kern" on;
    color: #333333;
    text-align: left;
}

.page__hd .right_show {
    position: absolute;
    right: 21px;
    top: 473px;
    width: 140px;
    height: 70px;
    opacity: 1;
    background: url('./images/fubus.png') no-repeat;
    background-size: contain;
}

.login-page .weui-btn-area {
    width: 85%;
    margin: 0 auto;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
}

.login-page #wechatLogin {
    font-family: 'Alibaba PuHuiTi', sans-serif;
    font-weight: normal;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    background-color: #3E3A39;
    width: 333px;
    border-radius: 50px;
    font-size: 18px;
    padding: 12px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-tips {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

.login-tips a {
    color: #333;
    text-decoration: none;
}

.copyright {
    font-size: 12px;
    color: #999;
    text-align: center;
    bottom: 20px;
    width: 100%;
}

.login-page .page__hd {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0;
    position: relative;
}

.login-page .page__bd {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-page .page__ft {
    margin-top: auto;
}

/* 功能页面样式 */
.function-page {
    padding: 15px;
}

.function-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.function-item__icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.function-item__content {
    flex: 1;
}

.function-item__title {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.function-item__desc {
    font-size: 14px;
    color: #999;
}

.feature-svg {
    width: 40px;
    height: 40px;
}

/* 扫码开门页面 */
.scan-page {
    background-color: #f8f8f8;
}

.scan-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scan-icon {
    margin: 20px 0;
}

.scan-svg {
    width: 80px;
    height: 80px;
}

.scan-animation {
    width: 250px;
    height: 250px;
    margin: 20px 0;
    position: relative;
}

.scan-box {
    width: 100%;
    height: 100%;
    border: 2px solid #09BB07;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #09BB07;
    top: 0;
    left: 0;
    animation: scanAnimation 2s linear infinite;
}

@keyframes scanAnimation {
    0% {
        top: 0;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0;
    }
}

.scan-tips {
    font-size: 16px;
    color: #666;
    margin: 20px 0;
    text-align: center;
}

/* 充值页面 */
.recharge-page {
    background-color: #F9F9F9;
}

.recharge-page .page__hd {
    padding: 40px 40px 0;
    flex: 0.4;
}

.recharge-page .page__bd {
    padding: 0 40px 70px;
}

.recharge-page .balance-info {
    width: 100%;
    height: 160px;
    background-color: #2FCCAD;
    border-radius: 12px;
    padding: 20px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.recharge-page .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.recharge-page .user-id {
    font-size: 18px;
    color: #FFFFFF;
    text-align: left;
    font-family: 'Alimama FangYuanTi VF', sans-serif;
}

.recharge-page .balance-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.recharge-page .balance-label {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.recharge-page .balance-amount {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    font-family: 'Alimama FangYuanTi VF', sans-serif;
}

.recharge-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}

.package-item {
    width: 48%;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #EEEEEE;
    transition: all 0.3s;
}

.package-item.active {
    background-color: #2FCCAD;
    border: 1px solid #2FCCAD;
}

.package-item.active .package-amount {
    color: #FFFFFF;
}

.package-amount {
    font-size: 1.5rem;
    font-weight: 100;
    line-height: 1.5rem;
    letter-spacing: normal;
    color: #000000;
    margin-bottom: 5px;
    font-family: 'Alimama FangYuanTi VF', sans-serif;
}

.custom-item .package-amount {
    font-family: 'Alimama PuHuiTi VF', sans-serif;
    font-size: 0.94rem;
    font-weight: normal;
    line-height: 0.69rem;
    letter-spacing: normal;
    color: #C4C4C4;
}

.package-desc {
    font-size: 12px;
    color: #999999;
    display: none;
}

.custom-amount-box {
    margin: 15px 0;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 10px;
}

.section-title {
    font-size: 16px;
    color: #333333;
    margin: 15px 0;
    font-weight: bold;
}

.button-area {
    margin-top: 30px;
}

.button-area .weui-btn {
    margin-bottom: 15px;
}

.recharge-option {
    width: 30%;
    height: 80px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.recharge-option.active {
    border-color: #1aad19;
    color: #1aad19;
}

.recharge-option.active:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%231aad19' d='M10,0 C4.5,0 0,4.5 0,10 C0,15.5 4.5,20 10,20 C15.5,20 20,15.5 20,10 C20,4.5 15.5,0 10,0 Z M8,15 L3,10 L4.5,8.5 L8,12 L15.5,4.5 L17,6 L8,15 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

.recharge-option__amount {
    font-size: 18px;
    font-weight: bold;
}

.recharge-option__desc {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.recharge-page #payBtn {
    font-family: 'Alibaba PuHuiTi', sans-serif;
    font-weight: normal;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    background-color: #3E3A39;
    width: 333px;
    border-radius: 50px;
    font-size: 18px;
    padding: 12px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 成功页面样式 */
.success-page {
    background-color: #f8f8f8;
    text-align: center;
    padding: 20px;
}

.success-icon {
    margin: 30px auto;
    width: 80px;
    height: 80px;
}

.icon-success {
    width: 100%;
    height: 100%;
}

.success-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.success-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.success-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-label {
    color: #666;
}

.info-value {
    color: #333;
    font-weight: bold;
}

.success-actions {
    margin: 30px 0;
}

/* 充值记录页面样式 */
.record-page {
    background-color: #f8f8f8;
}



.record-filter {
    background-color: #fff;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.record-list {
    padding: 0;
}

.record-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.record-top,
.record-middle,
.record-bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.record-time {
    color: #666;
    font-size: 14px;
}

.record-status {
    font-weight: bold;
}

.record-status.success {
    color: #09BB07;
}

.record-status.failed {
    color: #F43530;
}

.record-amount {
    font-size: 18px;
    font-weight: bold;
    color: #09BB07;
}

.record-order,
.record-payment {
    font-size: 12px;
    color: #999;
}

.record-empty {
    text-align: center;
    padding: 50px 0;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.empty-text {
    color: #999;
}

/* 响应式调整 */
@media screen and (max-width: 320px) {
    .page__hd {
        padding: 30px 20px 15px;
    }

    .left_title_1,
    .left_title_2 {
        font-size: 18px;
    }

    .function-item__title {
        font-size: 15px;
    }

    .recharge-option {
        height: 70px;
    }

    .recharge-option__amount {
        font-size: 16px;
    }
}

@media screen and (min-width: 375px) {
    .page__hd {
        padding: 50px 40px 25px;
    }

    .left_title_1,
    .left_title_2 {
        font-size: 22px;
    }
}



/* 首页样式 */
.home-page {
    background-color: #F9F9F9;
}

.home-page .page__hd {
    padding: 10px 40px 0;
    text-align: center;
    flex: 1.35;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page__hd .top-card {
    position: relative;
    width: 100%;
    min-height: 125px;
    border-radius: 0.75rem;
    opacity: 1;
    /*margin-bottom:5px; */
}

.home-page .user-info {
    background: #2FCCAD;
}

.home-page .nickname {
    min-width: 280px;
    height: 1.69rem;
    font-family: Alimama FangYuanTi VF, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.44rem;
    letter-spacing: normal;
    color: #EBFFFB;
    position: relative;
    top: 1rem;
    text-align: left;
    left: 1rem;
}

.home-page .logo {
    width: 11.99rem;
    height: 1.47rem;
    background: url("./images/home_page_logo.png") no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.home-page .free_cups {
    background: #F4FFFD;
    box-sizing: border-box;
    border: 0.06rem solid #C4C4C4;
}

.home-page .free_cups .container-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0;
}

.home-page .free_cups .left-container,
.home-page .free_cups .right-container {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-page .free_cups .divider {
    width: 0;
    height: 5.15rem;
    border: 0.06rem solid #D8D8D8;
    margin: 0 1rem;
}

.home-page .free_cups .cup-count-label {
    font-size: 1rem;
    color: #2FCCAD;
    margin-bottom: 0.5rem;
}

.home-page .free_cups .cup-count-value {
    font-family: Alimama FangYuanTi VF, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25rem;
    letter-spacing: normal;
    color: #0C7D75;
}

.home-page .free_cups .scan-code-img {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.5rem;
}

.home-page .free_cups .scan-text {
    font-size: 1rem;
    color: #333333;
}

.home-page .balance {
    background: #FFFFFF;
    box-sizing: border-box;
    border: 0.06rem solid #C4C4C4;
}

.home-page .balance .container-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0;
}

.home-page .balance .left-container,
.home-page .balance .right-container {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-page .balance .divider {
    width: 0;
    height: 5.15rem;
    border: 0.06rem solid #D8D8D8;
    margin: 0 1rem;
}

.home-page .balance .balance-label {
    font-size: 1rem;
    color: #2FCCAD;
    margin-bottom: 0.5rem;
}

.home-page .balance .balance-value {
    font-family: Alimama FangYuanTi VF, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25rem;
    letter-spacing: normal;
    color: #0C7D75;
}

.home-page .balance .balance-img {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.5rem;
}

.home-page .balance .balance-text {
    font-size: 1rem;
    color: #333333;
}


.home-page .line {
    height: 0;
    border: 0.06rem solid #C4C4C4;
    margin: 0.75rem 4rem;
}

.home-page .page__bd {
    padding: 0 40px 70px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

/* 底部导航栏样式 */
.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 6.32rem;
    background-color: #FFFFFF;
    border-top: 1px solid #EEEEEE;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    height: 100%;
    cursor: pointer;
    padding-top: 0.6rem;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.nav-text {
    font-size: 12px;
    color: #444444;
}

.nav-item.active .nav-text {
    color: #2FCCAD;
}

/* 扫码开门按钮特殊样式 */
.scan-door-icon {
    position: relative;
    /*background: #2FCCAD;*/
    /*border-radius: 50%;*/
    width: 100%;
    height: auto;
    margin: -38% auto 0;
    /*box-shadow: 0 4px 12px rgba(47, 204, 173, 0.3);*/
    /*border: 3px solid #FFFFFF;*/
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.home-page .card {
    height: 4.12rem;
    border-radius: 0.75rem;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 0.06rem solid #C4C4C4;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.home-page .order-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-page .card-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.home-page .half-width {
    width: calc(50% - 0.375rem);
    margin-bottom: 0;
}

.home-page .coupon-card {
    width: 100%;
}

.home-page .coupon-card .container-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.home-page .card-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.home-page .coupon-card .card-content {
    justify-content: space-between;
}

.home-page .card-text {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
}

.home-page .card-value {
    font-family: Alimama FangYuanTi VF, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25rem;
    letter-spacing: normal;
    color: #0C7D75;
    margin-left: 0.5rem;
}

.home-page .card-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.75rem;
    color: #2FCCAD;
}

.home-page .order-card .card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2FCCAD;
}

.home-page .card-action {
    color: #2FCCAD;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.home-page .coupon-card .left-container,
.home-page .coupon-card .right-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.75rem 1rem;
}

.home-page .coupon-card .left-container {
    flex: 1;
}

.home-page .coupon-card .right-container {
    flex: 1;
    justify-content: flex-end;
}

.home-page .coupon-card .divider {
    width: 0;
    height: 1.5rem;
    border-left: 0.06rem solid #C4C4C4;
    margin: 0 0.5rem;
}

.home-page .coupon-card .arrow-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.3rem;
}

