        /* 成为会员弹窗样式 */
        .payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            height: fit-content;
            background: white;
            border-radius: 10px;
            width: 700px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            animation: modalFadeIn 0.3s ease;
            overflow: hidden;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: #E8F0F8;
        }

        .modal-title {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
        }

        .close-btn:hover {
            color: #666;
        }

        .modal-body {
            padding: 24px;
        }

        .membership-section {
            display: flex;
        }

        .order-info {}

        .order-info-text {
            background-color: #f3f5f5;
            border-radius: 10px;
            padding: 23px 40px;
            font-size: 16px;
            margin: 0 0 35px 0;
        }

        .order-info-price {
            display: flex;
            justify-content: end;
            font-size: 14px;
            align-items: baseline;
            margin: 25px 0 25px 0;
        }

        .order-info-price b {
            color: #f26213;
            font-size: 24px;
            font-weight: bold;
            margin: 0 5px 0 0;
        }

        .section-label {
            font-size: 16px;
            color: #333;
            width: 200px;
            height: 131px;
            background-color: #f3f5f5;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            padding: 20px 0;
            margin: 0 17px 16px 0;
        }

        .required {
            color: #e1002a;
            font-weight: bold;
        }

        .info-link {
            color: #144a73;
            text-decoration: none;
            margin-left: auto;
        }

        .info-link:hover {
            text-decoration: underline;
        }

        .membership-options {
            margin-bottom: 24px;
            flex: 1;
        }

        .option-row {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .option-row:last-child {
            margin-bottom: 0;
        }

        .membership-option {
            width: 135px;
            padding: 14px 0;
            border: 1px solid #8fb4d4;
            border-radius: 6px;
            background: white;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000000;
        }

        .membership-option:hover {
            border: 1px solid #ff5c5b;
        }

        .membership-option.selected {
            border: 1px solid #ff5c5b;
        }

        .membership-option .duration {
            font-size: 14px;
            margin: 0 10px 0 0;
        }

        .membership-option .price {
            font-size: 20px;
            font-weight: 600;
        }

        .check-icon {
            position: absolute;
            top: 8px;
            right: 8px;
            color: #ff4d4f;
            font-size: 12px;
            font-weight: bold;
        }

        .divider {
            height: 1px;
            background-color: #e8e8e8;
            margin: 0 0 24px 0;
        }

        .payment-section .label {
            margin: 0 0 20px 0;
            font-size: 16px;
        }

        .payment-options {
            display: flex;
            gap: 35px;
        }

        .payment-option {
            border: 1px solid #e8e8e8;
            border-radius: 5px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 74px;
            width: 200px;
        }

        .payment-option:hover {
            border-color: #1890ff;
        }

        .payment-option.selected {
            border-color: #1890ff;
            background-color: #f0f8ff;
            box-shadow: 0px 0px 10px 0px rgba(102, 129, 200, 0.33);
        }

        .modal-footer {
            padding: 20px 24px 40px 24px;
            display: flex;
            gap: 19px;
            justify-content: center;
        }

        .btn {
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            width: 120px;
            height: 44px;
            margin: 0;
        }

        .btn-primary {
            background-image: linear-gradient(180deg,
                    #1c5579 0%,
                    #002e62 100%);
            color: white;
        }

        .btn-secondary {
            background-image: linear-gradient(180deg,
                    #f4f4f4 0%,
                    #e2e2e2 100%);
            color: #565656;
        }

        /*微信扫描支付*/
        .WeChat_scan_mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: 0.5;
            filter: alpha(opacity=50);
            display: none;
            z-index: 99;
        }

        .WeChat_scan_box {
            position: absolute;
            display: none;
            width: 330px;
            height: 385px;
            padding: 15px;
            border: 1px solid #ccc;
            background: #ececec;
            text-align: center;
            z-index: 999;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -o-border-radius: 4px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .WeChat_scan_top .title {
            font-size: 16px;
            font-weight: 700;
            text-align: left;
        }

        .WeChat_scan_top .close_btn img {
            position: absolute;
            right: 15px;
            top: 15px;
        }

        .WeChat_scan_top .close_btn img {
            transition: all ease-out .3s;
            -webkit-transition: all ease-out .3s;
            -moz-transition: all ease-out .3s;
            -o-transition: all ease-out .3s;
        }

        .WeChat_scan_top .close_btn:hover img {
            /* transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -o-transform: rotate(180deg); */
        }

        .WeChat_scan_middle {
            padding: 20px;
        }

        .WeChat_scan_middle img {
            width: 240px;
        }

        .WeChat_scan_bottom p {
            color: #999;
        }

        .WeChat_scan_bottom strong {
            display: inline-block;
            margin: 10px 0;
            color: #f00;
            font-size: 20px;
            font-weight: 700;
        }