     /* 全局基础变量 统一配色 还原原图 */
     :root {
         --mainText: #222222;
         --accent: #a85937;
         --cardBg: #F8F7F4;
         --borderClr: #d9d4cd;
         --grayText: #606060;
         --white: #ffffff;
         --transition: all 0.3s ease;
     }

     * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         font-family: Inter, system-ui, PingFang SC, sans-serif;
     }

     body {
         background-color: var(--page);
         color: var(--mainText);
         min-height: 100vh;
     }

     .container {
         max-width: 1200px;
         margin: 0 auto;
         padding: 56px 16px;
         margin-top: 80px;
         margin-top: calc(80px + var(--notif-offset, 0px));
     }

     @media (min-width: 640px) {
         .container {
             padding: 56px 24px;
         }
     }

     @media (min-width: 1024px) {
         .container {
             padding: 56px 32px;
         }
     }

     /* 标题样式 */
     .page-title {
         font-weight: 300;
         line-height: 1.3;
         /* font-size: 60px; */
         font-size: clamp(38px, 5.2vw, 60px);
         margin-bottom: 40px;
         font-family: var(--display-font);
     }

     .title-accent {
         color: var(--accent);
         font-family: var(--display-font);
     }

     /* 标签切换按钮组 */
     .tab-controller {
         display: flex;
         flex-wrap: wrap;
         gap: 10px;
         background: var(--cardBg);
         padding: 7px;
         border-radius: 10px;
         width: fit-content;
         box-shadow: 0px 2px 2px 0px #00000040;
         border: 1px solid #969592;
     }

     .tab-btn {
         padding: 0 16px;
         font-size: 16px;
         display: flex;
         align-items: center;
         gap: 10px;
         cursor: pointer;
         color: var(--mainText);
         height: 36px;
     }

     .tab-btn.active {
         background: var(--white);
         border-radius: 10px;
         border: 1px solid #C1BDB4;
     }

     .tag-label {
         font-size: 8px;
         background: var(--accent);
         color: var(--white);
         padding: 3px 10px;
         border-radius: 999px;
     }


     /* 套餐面板容器 */
     .tab-panel {
         display: none;
         margin-bottom: 64px;
     }

     .tab-panel.show {
         display: block;
     }

     .package-grid {
         display: grid;
         gap: 24px;
     }

     @media (min-width: 640px) {
         .package-grid {
             grid-template-columns: repeat(2, 1fr);
         }
     }

     @media (min-width: 1024px) {
         .package-grid {
             grid-template-columns: repeat(4, 1fr);
         }
     }

     /* 套餐卡片样式 */
     .package-card {
         border-radius: 12px;
         padding: 20px;
         display: flex;
         flex-direction: column;
         background: var(--cardBg);
         border: 1px solid #444444;
         box-shadow: 0px 4px 4px 0px #00000040;
     }

     .card-head {
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .card-head h3 {
         font-family: var(--display-font);
         font-weight: 300;
         font-size: 25px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
     }

     .card-tag-wrap {
         display: flex;
         align-items: center;
         gap: 8px;
     }

     .card-tag {
         border-radius: 10px;
         opacity: 1;
         font-family: Inter;
         font-weight: 500;
         font-size: 10px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #FCFCFC;
         background: #A45433;
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 3px 9px;
         flex-shrink: 0;
     }

     .card-hot-icon {
         width: 8px;
         height: 10px;
     }

     .card-team-tag {
         padding: 3px 9px;
         border-radius: 10px;
         opacity: 1;
         border-width: 0.5px;
         font-family: Inter;
         font-weight: 500;
         font-size: 10px;
         line-height: 100%;
         letter-spacing: 0%;
         text-align: center;
         vertical-align: middle;
         color: #444444;
         border: 0.5px solid #444444;
     }

     .card-desc {
         font-family: Inter;
         font-weight: 500;
         font-size: 10px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #969592;
         margin: 8px 0;
     }

     .price-wrap {
         margin-bottom: 16px;
     }

     .price-line {
         display: flex;
         align-items: center;
         gap: 8px;
     }

     .price-line-right {
         display: flex;
         align-items: center;
         flex-direction: column;
         gap: 4px;
     }

     .price-num {
         font-family: Inter;
         font-weight: 500;
         font-size: 40px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .old-price {
         font-family: Inter;
         font-weight: 500;
         font-size: 12px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         text-decoration: line-through;
         color: #CFCFCF;
     }

     .price-unit {
         font-family: Inter;
         font-weight: 500;
         font-size: 12px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #969592;
     }

     .price-tip {
         margin-top: 8px;
         font-family: Inter;
         font-weight: 500;
         font-size: 10px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #969592;
     }

     .point-row {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 8px;
         font-size: 12px;
         margin-bottom: 20px;
     }

     .point-item {
         height: 62px;
         border-radius: 10px;
         padding: 20px 6px;
         gap: 8px;
         opacity: 1;
         border-width: 0.5px;
         background: #FFFFFF;
         border: 0.5px solid #C1BDB4;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         font-family: Inter;
         font-weight: 400;
         font-size: 12px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #969592;
     }

     .point-content {
         display: flex;
         align-items: flex-end;
         gap: 6px;
     }

     .point-content span {
         font-family: Inter;
         font-weight: 500;
         font-size: 14px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: top;
         color: #444444;
     }

     .order-btn {
         width: 100%;
         border: none;
         cursor: pointer;
         margin-bottom: 24px;
         transition: var(--transition);
         height: 28px;
         border-radius: 5px;
         opacity: 1;
         background: #333333;
         font-family: Inter;
         font-weight: 500;
         font-size: 14px;
         vertical-align: middle;
         color: #FFFFFF;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .order-btn:hover {
         opacity: 0.9;
     }

     .list-block {
         gap: 13px;
         display: flex;
         flex-direction: column;
     }

     .list-item {
         display: flex;
         align-items: center;
         gap: 8px;
         font-family: Inter;
         font-weight: 400;
         font-size: 15px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .list-item .dui-icon {
         width: 9.375px;
         height: 6.25px;
     }

     .list-item .hot-icon {
         width: 9px;
         height: 12px;
     }

     .list-title {
         margin-bottom: 8px;
         font-family: Inter;
         font-weight: 400;
         font-size: 12px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .list-block-1 {
         font-size: 12px;
         padding-bottom: 16px;
         margin-bottom: 16px;
         gap: 5px;
         display: flex;
         flex-direction: column;
         border-bottom: 0.5px solid #C1BDB4;
     }

     .list-item-1 {
         display: flex;
         align-items: center;
         gap: 8px;
         font-family: Inter;
         font-weight: 400;
         font-size: 10px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         height: 13px;
         color: #969592;
     }

     .list-item-1 .dui-icon {
         width: 8px;
         height: 8px;
     }

     .list-item-1 .hot-icon {
         width: 9px;
         height: 12px;
     }

     /* 企业版容器 */
     .enterprise-wrap {
         border-radius: 20px;
         padding: 32px;
         background: #f9f8f7;
         border: 1px solid #444444;
         box-shadow: 0px 4px 4px 0px #00000040;
     }

     .enterprise-desc {
         font-family: var(--display-font);
         font-weight: 300;
         font-size: 25px;
         line-height: 40px;
         letter-spacing: 0%;
         vertical-align: middle;
         max-width: 878px;
         margin-bottom: 30px;
         opacity: 1;
         color: #444444;
     }

     .enterprise-content {
         display: grid;
         gap: 24px;
     }

     @media (min-width: 768px) {
         .enterprise-content {
             grid-template-columns: 1fr 2fr;
             align-items: center;
         }
     }

     .enterprise-rights {
         height: 362px;
         border-radius: 20px;
         border-width: 1px;
         padding: 24px;
         background: #FFFFFF;
         border: 1px solid #C1BDB4;
     }

     .enterprise-title {
         font-family: Inter;
         font-weight: 400;
         font-size: 20px;
         line-height: 60px;
         letter-spacing: 0%;
         vertical-align: middle;
     }

     .enterprise-img-box {
         position: relative;
         object-fit: cover;
         height: 362px;
         border-radius: 20px;
         border-width: 1px;
         border: 1px solid #C1BDB4;
         background: #FFFFFF;
     }

     .enterprise-img {
         width: 100%;
         border-radius: 20px;
         height: 100%;
     }

     .contact-biz-btn {
         position: absolute;
         left: 50%;
         transform: translateX(-50%);
         font-size: 14px;
         cursor: pointer;
         transition: var(--transition);
         width: 140px;
         height: 36px;
         top: 160px;
         border-radius: 10px;
         opacity: 1;
         border-width: 0.5px;
         background: #EDEDEDA6;
         border: 0.5px solid #444444;
         font-family: Inter;
         font-weight: 400;
         font-size: 18px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .contact-biz-btn:hover {
         background: #f0f0f0;
     }

     /* 积分说明区块 */
     .desc-block {
         margin-bottom: 64px;
     }

     .desc-text {
         max-width: 668px;
         opacity: 1;
         font-family: var(--display-font);
         font-weight: 300;
         font-size: 18px;
         line-height: 25px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .desc-text-p {
         max-width: 348px;
     }

     .desc-title {
         /* font-size: 50px; */
         font-family: var(--display-font);
         /* font-size: clamp(2rem, 3.125rem, 3.125rem); */
         font-size: clamp(30px, 4.8vw, 50px);
         font-weight: 300;
         margin: 20px 0;
         line-height: 60px;
         height: 66px;
         color: #444444;
     }

     /* FAQ 问答区域 */
     .faq-title {
         margin-bottom: 32px;
         font-family: var(--display-font);
         font-weight: 300;
         /* font-size: 50px; */
         /* font-size: clamp(2rem, 3.125rem, 3.125rem); */
         font-size: clamp(30px, 4.8vw, 50px);
         line-height: 60px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .faq-list {
         display: flex;
         flex-direction: column;
         gap: 16px;
         margin-bottom: 48px;
     }

     .faq-item {
         border-radius: 15px;
         box-shadow: 0px 2px 2px 0px #00000040;
         background: #F9F8F7;
     }

     .faq-item summary {
         width: 100%;
         text-align: left;
         padding: 16px;
         display: flex;
         justify-content: space-between;
         align-items: center;
         background: transparent;
         border: none;
         cursor: pointer;
         font-family: Inter;
         font-weight: 500;
         font-size: 18px;
         line-height: 100%;
         letter-spacing: 0%;
         vertical-align: middle;
         transition: background-color 0.2s ease;
         color: #444444;
     }

     .faq-item summary::-webkit-details-marker {
         display: none;
     }

     .faq-item summary::after {
         content: "";
         width: 10px;
         height: 10px;
         border-right: 2px solid #999;
         border-bottom: 2px solid #999;
         transform: rotate(45deg);
         flex-shrink: 0;
         margin-left: 16px;
         transition: transform 0.3s ease;
         margin-top: -5px;
     }

     .faq-item[open] summary::after {
         transform: rotate(-135deg);
         margin-top: 5px;
     }

     .faq-icon {
         color: var(--grayText);
         transition: var(--transition);
     }

     .faq-answer {
         max-height: 0;
         overflow: hidden;
         padding: 0 16px;
         font-size: 12px;
         color: var(--grayText);
         line-height: 1.6;
         transition: max-height 0.3s ease;
     }

     .faq-answer-inner {
         padding-bottom: 16px;
         display: flex;
         flex-direction: column;
         gap: 12px;
     }

     .faq-answer-item {
         display: block;
     }

     .faq-strong-title {
         font-family: Inter;
         font-weight: 400;
         font-style: Regular;
         font-size: 15px;
         line-height: 18px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .faq-text-span {
         font-family: Inter;
         font-weight: 300;
         font-style: Light;
         font-size: 15px;
         line-height: 18px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     /* 商务表单页面 切换显示 */
     .biz-form-page {
         display: none;
         margin-bottom: 64px;
         max-width: 727px;
         margin: 0 auto;
     }

     .biz-form-page.show {
         display: block;
     }

     .biz-page-title {
         margin-bottom: 12px;
         font-family: var(--display-font);
         font-weight: 300;
         font-size: 50px;
         line-height: 60px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #444444;
     }

     .biz-page-tip {
         margin-bottom: 20px;
         font-family: var(--display-font);
         font-weight: 300;
         font-size: 20px;
         line-height: 60px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #000000;
     }

     .biz-form-wrap {
         margin: 0 auto;
         padding: 32px;
         max-width: 727px;
         height: 707px;
         border-radius: 20px;
         opacity: 1;
         border-width: 1px;
         background: #F8F6F1;
         border: 1px solid #444444;
         box-shadow: 0px 4px 4px 0px #00000040;
     }

     .form-row {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 16px;
         margin-bottom: 16px;
     }

     .form-full {
         margin-bottom: 16px;
     }

     .form-label {
         display: block;
         font-family: Inter;
         font-weight: 300;
         font-size: 15px;
         letter-spacing: 0%;
         color: #444444;
         height: 28px;
     }

     .form-input,
     .form-textarea {
         width: 100%;
         border: 1px solid var(--borderClr);
         background: var(--white);
         padding: 8px 12px;
         border-radius: 4px;
         font-size: 14px;
     }

     .form-textarea {
         height: 108px;
         resize: none;
     }

     /* 统一聚焦样式 */
     .form-input:focus,
     .form-textarea:focus {
         outline: none;
         border-color: var(--accent);
         box-shadow: 0 0 0 2px rgba(168, 89, 55, 0.15);
     }

     .form-btn-group {
         display: flex;
         justify-content: flex-end;
         gap: 12px;
         margin-top: 24px;
     }

     .btn-cancel {
         background: transparent;
         padding: 8px 20px;
         cursor: pointer;
         max-width: 71px;
         height: 40px;
         border-radius: 8px;
         padding-top: 6px;
         padding-right: 17px;
         padding-bottom: 6px;
         padding-left: 17px;
         opacity: 1;
         border-width: 1px;
         border: 1px solid #444444;
         font-family: Inter;
         font-weight: 300;
         font-size: 15px;
         letter-spacing: 0%;
         text-align: center;
         vertical-align: middle;
         color: #444444;
     }

     .btn-submit {
         border: none;
         padding: 8px 20px;
         cursor: pointer;
         max-width: 106px;
         height: 40px;
         border-radius: 8px;
         opacity: 1;
         font-family: Inter;
         font-weight: 300;
         font-size: 15px;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #FFFFFF;
         background: #333333;
     }



     /* 支付弹窗样式 */
     .pay-modal-overlay {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.5);
         display: none;
         align-items: center;
         justify-content: center;
         z-index: 9999;
         backdrop-filter: blur(4px);
     }

     .pay-modal-overlay.active {
         display: flex;
     }

     .pay-modal {
         border-radius: 20px;
         max-width: 1160px;
         width: 90%;
         box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
         position: relative;
         animation: modalFadeIn 0.25s ease;
         display: flex;
         align-items: center;
         height: 727px;
         overflow-y: auto;
     }

     .pay-modal-left-con {
         flex: 1;
         background: var(--page);
         width: 100%;
         height: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .pay-modal-right-con {
         flex: 1;
         background: #fff;
         width: 100%;
         height: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .pay-modal-left {
         flex: 1;
         margin: 0 80px 40px;
     }

     .pay-modal-left-title {
         display: flex;
         align-items: center;
         gap: 16px;
         margin-bottom: 50px;
     }

     .pay-modal-left-back {
         width: 24px;
         height: 24px;
         cursor: pointer;
     }

     .pay-modal-left-logo {
         width: 170px;
         height: 45px;
     }

     .pay-modal-left-desc {
         font-family: Inter;
         font-weight: 300;
         font-size: 15px;
         letter-spacing: 0%;
     }

     .mb-55 {
         margin-bottom: 55px;
     }

     .pay-modal-left-price {
         font-family: Inter;
         font-weight: 400;
         font-size: 50px;
         letter-spacing: 0%;
         vertical-align: middle;
         margin-bottom: 40px;
     }

     .pay-modal-left-item {
         display: flex;
         align-items: center;
         justify-content: space-between;
         border-top: 0.5px solid #C1BDB4;
         height: 40px;
     }

     .pay-modal-left-item-label {
         font-family: Inter;
         font-weight: 300;
         font-size: 15px;
     }

     .pay-modal-left-item-value {
         font-family: Inter;
         font-weight: 300;
         font-size: 20px;
         letter-spacing: 0%;
     }



     .pay-modal-right {
         flex: 1;
         margin: 0 80px 40px;
         max-width: 348px;
     }

     @keyframes modalFadeIn {
         from {
             opacity: 0;
             transform: scale(0.92) translateY(20px);
         }

         to {
             opacity: 1;
             transform: scale(1) translateY(0);
         }
     }

     .pay-modal-title {
         margin-bottom: 8px;
         font-family: Inter;
         font-weight: 400;
         font-size: 20px;
         vertical-align: middle;
     }

     .pay-modal-sub {
         display: flex;
         align-items: center;
         margin-bottom: 30px;
         font-family: Inter;
         font-weight: 300;
         font-size: 11px;
     }

     .pay-modal-sub img {
         width: 12px;
         height: 12px;
         margin-right: 4px;
     }

     .pay-methods {
         display: flex;
         gap: 16px;
         justify-content: center;
         margin-bottom: 24px;
         flex-wrap: wrap;
     }

     .pay-method-item {
         cursor: pointer;
         height: 76px;
         border-radius: 15px;
         border-width: 1px;
         display: flex;
         align-items: center;
         border: 1px solid #969592;
         justify-content: space-around;
         flex: 1;
         flex-wrap: wrap;
     }

     .pay-method-item:hover {
         border-color: #ccc;
         background: #f5f5f5;
     }

     /* hover 时，内部的文字与图片同时放大 1.2 倍 */
     .pay-method-item img,
     .pay-method-item span {
         transition: transform 0.2s ease-in-out;
         transform-origin: center center;
     }

     .pay-method-item:hover img,
     .pay-method-item:hover span {
         transform: scale(1.2);
     }

     .pay-method-item.selected {
         box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
         /* border-color: #d7976a;
         background-color: #fdf3ec; */
         border: 1.5px solid #444444;
     }

     .pay-method-item img {
         width: 36px;
         height: 36px;
     }

     .pay-method-item span {
         font-family: Inter;
         font-weight: 400;
         font-size: 15px;
         flex-shrink: 0;
         width: 60px;
     }

     /* ============================================================ */
     /* 微信支付 / 支付宝支付 弹窗                                  */
     /* ============================================================ */
     .pay-qr-modal {
         position: fixed;
         inset: 0;
         background: rgba(0, 0, 0, 0.5);
         display: none;
         align-items: center;
         justify-content: center;
         z-index: 9999;
     }

     .pay-qr-modal.active {
         display: flex;
     }

     .pay-qr-content {
         background: #fff;
         border-radius: 20px;
         width: 500px;
         height: 600px;
         max-width: 90vw;
         padding: 24px 32px;
         box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
         display: flex;
         flex-direction: column;
         gap: 16px;
     }

     .pay-qr-modal-wide .pay-qr-content {
         width: 90vw;
         height: 90vh;
     }

     .pay-qr-header {
         display: flex;
         align-items: center;
         justify-content: space-between;
         font-family: Inter;
         font-weight: 400;
         font-size: 15px;
         line-height: 15px;
         letter-spacing: 0%;
         text-align: center;
         vertical-align: middle;
         color: #444444;
     }

     .pay-qr-header img {
         width: 24px;
         height: 24px;
     }

     .pay-qr-header span {
         display: flex;
         align-items: center;
         gap: 20px;
     }

     .pay-qr-close {
         background: transparent;
         border: none;
         font-size: 24px;
         line-height: 1;
         cursor: pointer;
         color: #999;
         padding: 0 4px;
     }

     .pay-qr-close:hover {
         color: #222;
     }

     .pay-qr-amount {
         font-family: Inter;
         font-weight: 300;
         font-size: 15px;
         line-height: 15px;
         letter-spacing: 0%;
         color: #444444;
     }

     .pay-qr-amount span {
         font-size: 20px;
     }

     .lines {
         width: 100%;
         height: 0.5px;
         background-color: #C1BDB4;
         margin: 40px 0 20px;
     }

     .pay-qr-body {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .pay-qr-body.alipay-body {
         height: 100%;
     }

     .pay-qr-canvas-wrap {
         width: 240px;
         height: 240px;
         display: flex;
         align-items: center;
         justify-content: center;
         border: 1px solid #eee;
         padding: 8px;
     }

     .pay-qr-canvas-wrap img,
     .pay-qr-canvas-wrap canvas {
         width: 100%;
         height: 100%;
     }

     .pay-qr-hint {
         font-size: 14px;
         color: #666;
         text-align: center;
         margin: 30px 0;
     }

     .pay-qr-status {
         text-align: center;
         padding: 12px 0;
     }

     .pay-qr-status-text {
         font-size: 18px;
         font-weight: 600;
         margin-bottom: 6px;
     }

     .pay-qr-status-text.success {
         color: #4caf50;
     }

     .pay-qr-status-text.error {
         color: #f44336;
     }

     .pay-qr-status-countdown {
         font-size: 13px;
         color: #999;
     }

     .pay-form-group {
         margin-bottom: 16px;
     }

     .pay-form-group label {
         display: block;
         font-size: 14px;
         font-weight: 500;
         color: #555;
         margin-bottom: 4px;
     }

     .pay-form-group input {
         width: 100%;
         padding: 10px 14px;
         border: 1px solid #ddd;
         border-radius: 10px;
         font-size: 15px;
         outline: none;
         transition: border-color 0.2s;
         box-sizing: border-box;
     }

     .pay-form-group input:focus {
         border-color: #333;
     }

     .pay-modal-actions {
         display: flex;
         gap: 12px;
         margin-top: 40px;
     }

     .pay-modal-actions .btn-pay-confirm {
         flex: 1;
         color: #fff;
         background: #444444;
         border: 1px solid #444444;
         font-family: Inter;
         font-weight: 400;
         font-size: 18px;
         line-height: 15px;
         text-align: center;
         max-width: 348px;
         height: 41px;
         border-radius: 10px;
         border-width: 1px;
         cursor: pointer;
         transition: background 0.2s, transform 0.1s;
     }

     .pay-modal-actions .btn-pay-confirm:hover {
         background: #333;
     }

     .pay-modal-actions .btn-pay-confirm:active {
         transform: scale(0.96);
     }

     .pay-error-msg {
         color: #dc3545;
         font-size: 13px;
         margin-top: 4px;
         display: none;
         text-align: center;
     }

     .pay-error-msg.show {
         display: block;
     }

     @media (max-width: 768px) {
         .pay-modal {
             flex-direction: column;
             height: 80vh;
         }

         .pay-modal-left {
             width: 70%;
             margin: 30px;
         }

         .pay-modal-right {
             width: 70%;
             margin: 30px;
         }

         .pay-methods {
             gap: 10px;
         }

         .pay-method-item {
             padding: 12px 4px;
         }

         .pay-method-item img {
             width: 36px;
             height: 36px;
         }
     }

     .tab-controller-wrap {
         display: flex;
         align-items: center;
         gap: 20px;
         margin-bottom: 44px;
     }

     .tooltip-icon {
         width: 24px;
         height: 24px;
         cursor: pointer;
     }

     /* ===== 悬浮气泡：hover tooltip 图标时出现 ===== */
     .tooltip-wrap {
         position: relative;
         display: inline-flex;
         align-items: center;
     }

     .tooltip-bubble {
         position: absolute;
         top: 50%;
         left: calc(100% + 12px);
         transform: translateY(-50%) scale(0.95);
         transform-origin: left center;
         min-width: 125px;
         padding: 12px 16px;
         background: #f8f7f4;
         font-family: Inter;
         font-weight: 300;
         font-size: 12px;
         color: #444444;
         border-radius: 10px;
         border: 0.5px solid #C1BDB4;
         white-space: nowrap;
         opacity: 0;
         visibility: hidden;
         pointer-events: none;
         transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
         z-index: 100;
     }

     /* 气泡左侧的小三角箭头 */
     /* .tooltip-bubble::before {
         content: '';
         position: absolute;
         top: 50%;
         right: 100%;
         transform: translateY(-50%);
         border-width: 6px 7px 6px 0;
         border-style: solid;
         border-color: transparent #F8F6F1 transparent transparent;
     } */

     .tooltip-bubble-text {
         text-align: left;
     }

     /* hover 图标 → 显示气泡 */
     .tooltip-wrap:hover .tooltip-bubble,
     .tooltip-wrap:focus-within .tooltip-bubble {
         opacity: 1;
         visibility: visible;
         transform: translateY(-50%) scale(1);
     }

     /* 顶部分隔条（个人 | 团队）：仅 ≥1024px（4列一行）时显示，4 个卡片保持一行 */
     .line-container {
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 20px;
         margin-bottom: 18px;
     }

     .line-left,
     .line-right {
         color: #969592;
         flex: 1;
         text-align: center;
         font-family: Inter;
         font-weight: 400;
         font-size: 20px;
         vertical-align: middle;
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 30px;
     }

     .line-divider {
         height: 0.5px;
         background-color: #969592;
         flex: 1;
     }

     /* 分组标题（个人/团队）：跨整行，始终位于对应分组首张卡片上方，随网格列数自动换行定位 */
     /* 仅 <1024px 时显示（此时顶部分隔条隐藏，标签跟随卡片组移动） */
     .group-label {
         grid-column: 1 / -1;
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 30px;
         margin: 8px 0 4px;
         font-family: Inter;
         font-weight: 400;
         font-size: 20px;
         color: #969592;
     }

     .group-label::before,
     .group-label::after {
         content: "";
         flex: 1;
         height: 0.5px;
         background-color: #969592;
     }

     .group-label-personal {
         color: #969592;
     }

     .group-label-personal::before,
     .group-label-personal::after {
         background-color: #969592;
     }

     .group-label-team {
         color: #969592;
     }

     .group-label-team::before,
     .group-label-team::after {
         background-color: #969592;
     }

     /* ≥1024px：4 列一行，使用顶部分隔条，隐藏网格内分组标题 */
     @media (min-width: 1024px) {
         .group-label {
             display: none;
         }
     }

     /* <1024px：2 列 / 1 列换行，隐藏顶部分隔条，使用网格内跟随卡片的分组标题 */
     @media (max-width: 1023px) {
         .line-container {
             display: none;
         }
     }