/* 主容器 */
.auth-container {
    width: 850px;
    margin: 0 auto;
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(107, 207, 127, 0.08); */
    overflow: hidden;
}

/* 头部样式 */
.auth-header {
    font-size: 20px;
    font-weight: 600;
}

/* 通用区块样式 */
.auth-section {
    padding: 32px;
    margin-bottom: 10px;
    background: #fff;
}

.auth-section:last-child {
    border-bottom: none;
}

/* 区块标题 */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #49B863;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    content: "";
    width: 4px;
    height: 18px;
    background: #49B863;
    border-radius: 2px;
}

/* 产品列表网格 */
.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 产品卡片 */
.product-card {
    background: #fff;
    border: 1px solid #F0F5F2;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(107, 207, 127, 0.08);
}

/* 卡片顶部 */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

/* 版本信息 */
.card-version {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.update-date {
    color: #999;
}

/* 产品价格样式 */
.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-amount {
    font-size: 21px;
    font-weight: 700;
    color: #FF6B6B;
}

.price-unit {
    font-size: 14px;
    color: #ff6b6b;
    margin-left: 2px;
    font-weight: 700;
}

.price-period {
    font-size: 12px;
    color: #666;
    background: #F5F9F7;
    padding: 2px 8px;
    border-radius: 4px;
}

.mi-user-ratify-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.mi-user-ratify-tag {
    background-color: #67c23a;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
}

/* 产品描述 */
.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    flex-shrink: 0;
}

/* 通用按钮样式 */
.auth-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #49B863;
    color: #fff;
}

.btn-primary:hover {
    background: #3AA853;
    box-shadow: 0 2px 8px rgba(73, 184, 99, 0.2);
}

.btn-text {
    background: transparent;
    color: #49B863;
    padding: 0;
}

.btn-text:hover {
    color: #3AA853;
}

/* 卡片底部按钮 */
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.open-btn {
    width: 100%;
    padding: 10px 0;
    margin: 8px 0;
}

/* 折叠面板样式 */
.collapse-panel {
    margin-bottom: 20px;
}

/* 修改：.collapse-header 改为 justify-content: flex-start */
.collapse-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* 售后联系样式 - 独立区块 */
.after-sales {
    background: linear-gradient(135deg, #F9FBFA, #E8F5E9);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #DDF0E2;
}

.after-sales-title {
    font-size: 18px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.after-sales-title i {
    font-size: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #F0F5F2;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #49B863;
    box-shadow: 0 2px 8px rgba(73, 184, 99, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #E8F5E9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49B863;
    font-size: 18px;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* 授权保密内容样式 */
.security-content {
    line-height: 1.8;
    color: #666;
}

.security-list {
    margin: 20px 0;
    padding-left: 20px;
}

.security-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.security-warning {
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.security-warning-title {
    font-weight: 600;
    color: #EF6C00;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 购买内容折叠面板样式 */
.purchase-content {
    line-height: 1.8;
    color: #666;
}

.purchase-list {
    margin: 20px 0;
    padding-left: 20px;
}

.purchase-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.purchase-benefits {
    background: #E8F5E9;
    border-left: 4px solid #49B863;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.purchase-benefits-title {
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Element UI 弹窗样式定制（核心：强制覆盖） */
.auth-dialog .el-dialog {
    border-radius: 12px;
}

.auth-dialog .el-dialog__header {
    border-bottom: 1px solid #F0F5F2;
    padding: 16px 20px;
}

.auth-dialog .el-dialog__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.auth-dialog .el-dialog__body {
    padding: 24px 20px;
}

.auth-dialog .el-tabs__active-bar {
    background: #49B863;
    height: 2px;
}

.auth-dialog .el-tabs__item.is-active {
    color: #49B863;
    font-weight: 500;
}

.auth-dialog .el-button--primary {
    background: #49B863;
    border-color: #49B863;
    border-radius: 8px;
}

.auth-dialog .el-button--primary:hover {
    background: #3AA853;
    border-color: #3AA853;
}

.auth-dialog .el-input__inner {
    border-radius: 8px;
    border: 1px solid #F0F5F2;
}

.auth-dialog .el-input__inner:focus {
    border-color: #49B863;
    box-shadow: 0 0 0 2px rgba(73, 184, 99, 0.1);
}

/* 域名管理样式 */
.domain-add {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: stretch;
}

.domain-input {
    flex: 1;
}

/* 域名修改次数信息 */
.domain-limit-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: #F9FBFA;
    border-radius: 6px;
}

/* 状态标签样式 */
.status-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-normal {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-expired {
    background: #FFEBEE;
    color: #C62828;
}

.status-pending {
    background: #FFF3E0;
    color: #EF6C00;
}

/* 账户信息样式 */
.account-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.account-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-label {
    font-size: 14px;
    color: #999;
}

.account-value {
    font-size: 15px;
    font-weight: 500;
}

/* 账户信息头部样式 */
.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.account-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-title::before {
    content: "";
    width: 4px;
    height: 16px;
    background: #49B863;
    border-radius: 2px;
}

/* 空列表提示 */
.empty-domain {
    text-align: center;
    padding: 40px 0;
    color: #999;
}

/* 域名表格样式 */
.domain-table {
    width: 100%;
    border-collapse: collapse;
}

.domain-table th {
    background-color: #F9FBFA;
    color: #666;
    font-weight: 500;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #F0F5F2;
}

.domain-table td {
    padding: 16px;
    border-bottom: 1px solid #F5F9F7;
}

.domain-table tr:hover {
    background-color: #F9FBFA;
}

.domain-table tr:last-child td {
    border-bottom: none;
}

.domain-name {
    font-weight: 500;
    color: #333;
}

.domain-time {
    color: #666;
    font-size: 13px;
}

.domain-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* 产品下载样式 - 重新设计为一列布局 */
.download-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #F0F5F2;
    transition: all 0.3s ease;
    gap: 20px;
}

.download-item:hover {
    border-color: #6BCF7F;
    box-shadow: 0 4px 12px rgba(73, 184, 99, 0.1);
}

.download-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #49B863;
    font-size: 32px;
}

.download-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.download-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.download-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-icon {
    color: #49B863;
    font-size: 12px;
}

/* 修改：download-actions 去除 flex-direction，改为水平排列 */
.download-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.download-btn {
    background: linear-gradient(135deg, #6BCF7F, #49B863);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.download-btn:hover {
    background: linear-gradient(135deg, #5ABF6F, #3AA853);
    box-shadow: 0 2px 8px rgba(73, 184, 99, 0.2);
}

.detail-btn {
    background: #F5F9F7;
    color: #49B863;
    border: 1px solid #F0F5F2;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-btn:hover {
    background: #E8F5E9;
    border-color: #DDF0E2;
}

/* 域名授权中的授权信息样式 - 重新设计 */
.domain-auth-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.domain-auth-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-auth-title::before {
    content: "";
    width: 4px;
    height: 16px;
    background: #49B863;
    border-radius: 2px;
}

.domain-info-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.domain-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
}

.domain-info-label {
    font-size: 13px;
    color: #666;
}

.domain-info-value {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* 订单信息表格样式 */
.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.order-table th {
    background-color: #67c23a;
    color: #fff;
    font-weight: 500;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #F0F5F2;
}

.order-table td {
    padding: 16px;
    border-bottom: 1px solid #F5F9F7;
}

.order-table tr:hover {
    background-color: #F9FBFA;
}

.order-table tr:last-child td {
    border-bottom: none;
}

.order-id {
    font-weight: 500;
    color: #333;
}

.order-product {
    font-weight: 500;
    color: #49B863;
}

.order-version {
    font-weight: 500;
    color: #666;
    font-size: 12px;
}

.order-amount {
    font-weight: 600;
    color: #FF6B6B;
}

.order-time {
    color: #666;
    font-size: 13px;
}

.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.order-completed {
    background: #E8F5E9;
    color: #2E7D32;
}

.order-pending {
    background: #FFF3E0;
    color: #EF6C00;
}

.order-canceled {
    background: #FFEBEE;
    color: #C62828;
}

/* 弹窗宽度 */
.el-dialog.mi-auth-dialog {
    width: 900px;
}

.mi-auth-dialog .el-dialog__body {
    margin: 0px 15px;
}

/* ========== 新增：美化弹窗TAB标签样式 ========== */
.mi-auth-dialog .el-tabs {
    margin-bottom: 10px;
}

/* TAB容器背景 */
.mi-auth-dialog .el-tabs--card>.el-tabs__header {
    background-color: #f5f7fa;
    padding: 3px;
    border-radius: 5px;
    border: none;
}

/* TAB标签样式 */
.mi-auth-dialog .el-tabs--card>.el-tabs__header .el-tabs__nav {
    border: none;
}

/* 普通TAB标签 */
.mi-auth-dialog .el-tabs--card>.el-tabs__header .el-tabs__item {
    background-color: #f5f7fa;
    border: none;
    border-radius: 8px;
    margin: 5px;
    padding: 5px 10px;
    height: auto;
    line-height: 1.5;
    font-size: 14px;
}

.mi-auth-dialog .el-tabs--card>.el-tabs__header .el-tabs__item:hover {
    background-color: #ffffff;
    color: #49B863;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* 激活的TAB标签 */
.mi-auth-dialog .el-tabs--card>.el-tabs__header .el-tabs__item.is-active {
    background-color: #ffffff;
    color: #49B863;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* 去除底部边框 */
.mi-auth-dialog .el-tabs--card>.el-tabs__header .el-tabs__nav-wrap::after {
    display: none;
}

/* TAB内容区域 */
.mi-auth-dialog .el-tabs--card>.el-tabs__content {
    padding: 10px;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
}

/* 产品列表骨架屏容器 */
.mi-product-skeleton-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 骨架屏卡片基础样式 */
.mi-product-skeleton-card {
    background: #fff;
    border: 1px solid #F0F5F2;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

/* 骨架屏加载动画（核心） */
.mi-product-skeleton-loading {
    background: linear-gradient(90deg,
            rgba(240, 245, 242, 0.5) 0%,
            rgba(220, 230, 225, 0.8) 50%,
            rgba(240, 245, 242, 0.5) 100%);
    background-size: 200% 100%;
    animation: mi-product-skeleton-shine 1.5s infinite;
    border-radius: 4px;
}

@keyframes mi-product-skeleton-shine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 顶部区域骨架屏 */
.mi-product-skeleton-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.mi-product-skeleton-name {
    width: 80px;
    height: 20px;
}

.mi-product-skeleton-btn {
    width: 40px;
    height: 20px;
}

/* 版本信息骨架屏 */
.mi-product-skeleton-version {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mi-product-skeleton-version-text {
    width: 100px;
    height: 14px;
}

.mi-product-skeleton-date {
    width: 60px;
    height: 14px;
}

/* 价格区域骨架屏 */
.mi-product-skeleton-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mi-product-skeleton-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.mi-product-skeleton-price-amount {
    width: 70px;
    height: 51px;
}

.mi-product-skeleton-price-unit {
    width: 30px;
    height: 16px;
}

.mi-product-skeleton-price-period {
    width: 60px;
    height: 16px;
}

/* 标签区域骨架屏 */
.mi-product-skeleton-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.mi-product-skeleton-tag {
    width: 60px;
    height: 20px;
    border-radius: 10px;
}

/* 描述区域骨架屏 */
.mi-product-skeleton-desc {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mi-product-skeleton-desc-line {
    width: 100%;
    height: 16px;
}

.mi-product-skeleton-desc-line:nth-child(2) {
    width: 80%;
}

/* 开通按钮骨架屏 */
.mi-product-skeleton-open-btn {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    margin: 8px 0;
}

/* 底部按钮区域骨架屏 */
.mi-product-skeleton-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.mi-product-skeleton-bottom-btn {
    width: 60px;
    height: 20px;
}

/*
 *-------------------------------------------------------------------------------
 * 第二版
 * 
 *-------------------------------------------------------------------------------
*/
/* .custom-page-product .single-column-container{
    background-color: #ffffff00!important;
}
.custom-page-product .mi-nav-menu-link,.custom-page-product .miyu-dropdown-menu .el-dropdown-link,.custom-page-product .el-menu-item i, .mi-nav-other i,.custom-page-product .mi-nav-other i{
    color: #fff!important;
} */
#mi-product {
    margin-bottom: 20px;
}

:root {
    --primary-green: #10B981;
    --secondary-green: #34D399;
    --light-green: #D1FAE5;
    --accent-green: #2DD4BF;
    --gold-gradient: linear-gradient(135deg, #FBBF24, #F59E0B);
    --discount-red: #EF4444;
    --red-accent: #F87171;
    --gradient-start: rgba(16, 185, 129, 0.9);
    --gradient-end: rgba(52, 211, 153, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --shadow-soft: 0 10px 40px rgba(16, 185, 129, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    padding: 0px;
    position: relative;
    overflow-x: hidden;
    background-color: #3333330f;
}

.mi-product-container {
    max-width: 1250px;
    margin: 40px auto;
    position: relative;
}

.mi-product-mi {
    position: relative;
    overflow: hidden;
    background: radial-gradient(#bb552975 23%, rgb(247 197 86 / 0%) 67% 100%) 385px -24px, radial-gradient(#984cbe00 30%, rgb(179 105 248 / 0%) 67% 100%) 122px -120px, radial-gradient(#661cac00 15%, rgb(134 219 252 / 0%) 50% 100%) -620px 0, radial-gradient(#ff009900 25%, rgb(132 215 247 / 0%) 50% 100%) 520px -250px, #c50b6a00;
    padding: 10px;
}

/* 现代化玻璃态卡片设计 */
.mi-product-card {
    background: var(--glass-bg);
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

/* 重新设计的第一部分 - 左侧幻灯，右侧内容 */
.mi-product-header {
    display: flex;
    flex-wrap: wrap;
    padding: 83px 30px 0px;
    border-radius: 28px 28px 0 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* 左侧幻灯区域 - 普通Swiper轮播 */
.mi-product-screenshot-section {
    width: 61%;
    position: relative;
    z-index: 1;
    margin-right: 27px;
}

.mi-product-swiper-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
    /* background: #fff; */
}

.mi-product-swiper {
    width: 100%;
    height: 310px;
    position: relative;
}

.mi-product-swiper-slide-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.mi-product-swiper-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.swiper-slide-active .mi-product-swiper-slide-img {
    transform: scale(1.05);
}

/* 导航按钮样式 */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
}

.swiper-button-prev-custom {
    left: 15px;
}

.swiper-button-next-custom {
    right: 15px;
}

.mi-product-swiper-container:hover .swiper-button-prev-custom,
.mi-product-swiper-container:hover .swiper-button-next-custom {
    opacity: 1;
}


/* 指示器样式 */
.swiper-pagination-custom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 98% !important;
    display: flex;
    justify-content: right;
    z-index: 10;
}

.swiper-pagination-bullet-custom {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.swiper-pagination-bullet-active {
    width: 30px;
}

.swiper-pagination-bullet-custom-active {
    background: var(--primary-green);
    width: 25px;
}

/* 右侧内容区域 */
.mi-product-basic-info {
    width: calc(100% - 60% - 50px);
    min-width: 300px;
    position: relative;
    z-index: 1;
    margin-top: -35px;
}

.mi-product-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
    letter-spacing: 0.12em;
    color: #ffff;
}

.mi-product-tagline {
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-left: 12px;
    line-height: 1.5;
    color: #ffff;
}

/* 价格容器 */
.mi-product-price-container {
    display: flex;
    flex-direction: column;
    padding: 0px 10px;
    gap: 5px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* 添加两个变动的背景元素 */
.mi-product-env::before,
.mi-product-env::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--red-accent), #FB923C);
    border-radius: 0 0 0 100%;
    z-index: 0;
    opacity: 0.9;
}

.mi-product-env::before {
    animation: pulseLarge 3s ease-in-out infinite alternate;
}

.mi-product-env::after {
    width: 80px;
    height: 80px;
    animation: pulseSmall 3s ease-in-out infinite alternate;
}

@keyframes pulseLarge {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes pulseSmall {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.mi-product-price-badge {
    display: flex;
    align-items: end;
    position: relative;
    z-index: 1;
}

.mi-product-feature-hdst {
    color: #f56c6c;
    font-weight: 700;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.mi-product-price-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.mi-product-price-new span {
    font-size: 20px;
    margin-right: 5px;
}

.mi-product-price-old {
    font-size: 24px;
    color: #fff;

    margin-left: 12px;
    line-height: 1;
    font-weight: 700;
    position: relative;
}

.mi-product-price-old::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: rotate(8deg);
    transform-origin: center;
    text-decoration: none;
    background: linear-gradient(135deg, #f56c6c, #f56c6c);
}

.mi-product-discount-badge {
    background: linear-gradient(135deg, var(--discount-red), var(--red-accent));
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    position: absolute;
    left: 140px;
    top: 10px;
}

/* 授权管理区域 */
.mi-product-license-management {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    margin: 10px 0;
    box-shadow: var(--shadow-soft);
}

.mi-product-license-management h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.mi-product-license-management h3 i {
    font-size: 1.1rem;
    color: var(--primary-green);
}

.mi-product-license-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.mi-product-license-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.mi-product-license-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.1);
}

.mi-product-license-item i {
    color: var(--accent-green);
}

.mi-product-license-price {
    font-weight: 700;
    color: var(--primary-green);
}

/* 小标题区域美化 */
.mi-product-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.mi-product-feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 10px;
    border-radius: 5px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mi-product-feature-tag i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.mi-product-feature-tag span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* 价格容器内的购买按钮美化 - 统一内边距 */
.mi-product-price-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.mi-product-price-actionsx {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.mi-product-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.mi-product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mi-product-btn:hover::before {
    left: 100%;
}

.mi-product-btn-primary {
    background: #F5222D;
    color: #ffff;
    /* box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3); */
}

.mi-btn-disabled {
    background-color: #d4edda;
    color: #28a745;
}

.mi-product-btn-auth {
    background-color: #28a745;
    color: #fff;
}

.mi-product-btn-secondary {
    border: 1px solid #ffff;
    color: var(--primary-green);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.1);
}


.mi-product-env {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.mi-product-env h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.mi-product-env h3 i {
    font-size: 1.1rem;
    color: var(--primary-green);
}

.mi-product-env-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
}

.mi-product-env-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 5px 10px;
    background: white;
    border-radius: 8px;
    transition: var(--transition-smooth);
    margin: 5px;
    font-weight: 500;
}

.mi-product-env-item:hover {
    background: white;
    transform: translateX(5px);
}

.mi-product-env-item i {
    color: var(--accent-green);
}

/* 第二部分：摘要和描述美化 */
.mi-product-description {
    padding: 10px 25px;
}

.mi-product-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    transition: all 0.1s ease-in;
}

.mi-product-section-title:hover::after {
    width: 60px;
    transition: all 0.1s ease-in;
}

.mi-product-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-green));
    border-radius: 3px;
    transition: all 0.1s ease-in;
}

.mi-product-abstract {
    padding: 0 25px;
    overflow: hidden;
}

.mi-product-abstract p {
    font-size: 1rem;
    line-height: 2;
    color: #6B7280;
    text-indent: 2em;
}

.mi-product-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.mi-product-detail-card {
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.mi-product-detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mi-product-detail-card h3 i {
    color: var(--accent-green);
}

/* 第三部分：功能展示美化 */
.mi-product-features {
    padding: 0px 30px;
    background-color: #fff;
}

.mi-product-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.mi-product-feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 18px;
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid #c0c4cc3b;
}

.mi-product-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    color: white;
    background: linear-gradient(135deg, #67c23a, #67c23a);
    /* box-shadow: 0 1px 6px #f56c6c; */
    position: absolute;
    right: 25px;
    top: 10px;
}

.mi-product-feature-icon i {
    font-size: 30px;
}

.mi-product-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
}

.mi-product-feature-desc {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* 第四部分：主题截图轮播美化 - 黑色紧凑设计 */
.mi-product-screenshots {
    padding: 40px 30px;
}

.mi-product-screenshot-swiper-container {
    position: relative;
    padding: 8px;
    background: #0F172A;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mi-product-screenshot-swiper {
    width: 100%;
    height: 500px;
    position: relative;
}

/* 美化的截图幻灯卡片设计 */
.mi-product-screenshot-slide-frame {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(0deg) scale(0.9);
    transition: var(--transition-smooth);
}

.swiper-slide-active .mi-product-screenshot-slide-frame {
    transform: perspective(1000px) rotateY(0deg) scale(1);
    z-index: 2;
}

.swiper-slide-prev .mi-product-screenshot-slide-frame,
.swiper-slide-next .mi-product-screenshot-slide-frame {
    transform: perspective(1000px) rotateY(-5deg) scale(0.85);
    opacity: 0.8;
}

.mi-product-screenshot-slide-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.mi-product-screenshot-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 黑色背景Screenshot Swiper导航按钮样式 */
.screenshot-swiper-button-prev-custom,
.screenshot-swiper-button-next-custom {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F172A;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
}

.screenshot-swiper-button-prev-custom {
    left: 10px;
}

.screenshot-swiper-button-next-custom {
    right: 10px;
}

.mi-product-screenshot-swiper-container:hover .screenshot-swiper-button-prev-custom,
.mi-product-screenshot-swiper-container:hover .screenshot-swiper-button-next-custom {
    opacity: 1;
}

.screenshot-swiper-button-prev-custom:hover,
.screenshot-swiper-button-next-custom:hover {

    color: #0F172A;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

/* 黑色背景Screenshot Swiper指示器样式 */
.screenshot-swiper-pagination-custom {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0;
    z-index: 10;
}

.screenshot-swiper-pagination-bullet-custom {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.screenshot-swiper-pagination-custom .swiper-pagination-bullet-active {
    color: #fff;
    width: 30px;
}

/* 第五部分：售后支持美化 */
.mi-product-support {
    padding: 40px 30px;
    background: linear-gradient(135deg, #F0FDF9 0%, #E6FCF5 100%);
}

.mi-product-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.mi-product-contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.mi-product-contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.2);
}

.mi-product-contact-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.mi-product-contact-desc {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* 第六部分：购买与服务美化 */
.mi-product-purchase {
    padding: 40px 30px;
}

.mi-product-collapse-container {
    width: 100%;
    margin: 25px auto 0;
}

.mi-product-collapse-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

.el-collapse {
    border: none;
}

.el-collapse-item__header {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.el-collapse-item__wrap {
    background: rgba(255, 255, 255, 0.6);
    border: none;
}

.el-collapse-item__content {
    padding: 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.mi-product-tk {
    color: #f56c6c;
    font-weight: 900;
}

@media (max-width: 768px) {
    #mi-product {
        margin: 10px;
    }

    .mi-product-header {
        padding: 30px 10px 0 10px;
    }
    .mi-product-container{
        width: 100%;
        margin: 40px auto 10px;
    }
    .mi-product-mi {
        padding: 10px 0;
    }
    .mi-product-screenshot-section{
        width: 100%;
    }
    .mi-product-basic-info{
        width: 100%;
        margin-top: 0;
    }
    .mi-product-description,
    .mi-product-features,
    .mi-product-screenshots,
    .mi-product-support,
    .mi-product-purchase {
        padding: 10px 0px;
    }
    .mi-product-abstract{
        padding: 0;
    }
    .mi-product-title {
        font-size: 2.2rem;
    }

    .mi-product-swiper {
        height: 150px;
    }

    .mi-product-screenshot-swiper {
        height: 150px;
    }

    .mi-product-env-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .screenshot-swiper-button-prev-custom,
    .screenshot-swiper-button-next-custom {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .mi-product-abstract p,.mi-product-feature-desc{

    font-size: 0.85rem;
    }
    .el-dialog.mi-auth-dialog {
        width: 350px;
    }

    .mi-auth-dialog .el-tabs--card>.el-tabs__header .el-tabs__nav {
        display: flex;
        flex-flow: wrap;
        align-items: stretch;
    }
    .mi-product-env-item{
        padding: 0;
        margin: 2px;
    }
    .download-item {
        display: block;
    }

    .download-img {
        display: none;
    }
    .download-desc{
        margin-bottom: 10px;
    }
.download-meta{
    display: none;
}
    .domain-table th:last-child,
    .domain-table td:last-child,.order-table th:last-child,
    .order-table td:last-child  {
        display: none;
    }

    .domain-table th:nth-child(2),
    .domain-table td:nth-child(2),.order-table th:nth-child(1),.order-table th:nth-child(3),.order-table th:nth-child(4),.order-table td:nth-child(1),.order-table td:nth-child(3),.order-table td:nth-child(4) {
        display: none;

    }
    .mi-product-feature-card{
        padding: 0px 10px;
        border-radius: 5px;
    }
    .mi-product-feature-icon{
        width: 35px;
    height: 35px;
    }
    .mi-product-feature-icon i {
        font-size: 16px;
    }
    .mi-product-feature-grid{
        gap: 5px;
    margin-top: 5px;
    }
    
}


#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    z-index: 0;
}

#particles-js canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/*
 *-------------------------------------------------------------------------------
 * 下载-图文-视频 支付弹窗
 *-------------------------------------------------------------------------------
*/
.mi-newpaybody {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    background-color: #f5f7fa;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mi-newpaydemo-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.mi-newpaydemo-title {
    color: #5a5e66;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
}

.mi-newpayopen-btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    background-color: #409eff;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.mi-newpayopen-btn:hover {
    background-color: #66b1ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
}

/* 自定义弹窗样式 */
.mi-newpaypayment-dialog .el-dialog {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 340px !important;
    /* 弹窗宽度调整为340px */
}

.mi-newpaypayment-dialog .el-dialog__header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.mi-newpaypayment-dialog .el-dialog__title {
    font-size: 18px;
    color: #303133;
    font-weight: 500;
}

.mi-newpaypayment-dialog .el-dialog__body {
    padding: 15px 10px 20px;
    /* 调整内边距 */
}

/* 资源信息卡片样式 - 重新设计，增强视觉吸引力 */
.mi-newpayresource-card {
    display: flex;
    padding: 6px 9px;
    background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    border: none;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.mi-newpayresource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.mi-newpayresource-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 18px;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: rotate(5deg);
    transition: all 0.4s ease;
}

.mi-newpayresource-card:hover .mi-newpayresource-image {
    transform: rotate(0deg) scale(1.05);
    border-color: white;
}

.mi-newpayresource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mi-newpayresource-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    /* 用于确保文本截断生效 */
}

.mi-newpayresource-title {
    font-size: 16px;
    color: white;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mi-newpayresource-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mi-newpayresource-left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mi-newpayresource-attribute {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2ecc71;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mi-newpayresource-price {
    font-size: 24px;
    color: #ffeb3b;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.mi-newpayresource-price::after {
    content: '限时特价';
    position: absolute;
    bottom: 0px;
    right: -52px;
    font-size: 10px;
    color: #ffeb3b;
    background-color: rgba(25, 25, 25, 0.8);
    padding: 2px 6px;
    font-weight: 500;
}

/* 奖励信息样式 */
.mi-newpayreward-info {
    background: linear-gradient(135deg, #fdfcfb 0%, #f5e6d3 100%);
    border-radius: 10px;
    padding: 8px 5px;
    margin-bottom: 10px;
    text-align: center;
    border: 2px solid #ffc107;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.mi-newpayreward-info::before {
    content: '✨';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 16px;
    animation: mi-newpaysparkle 2s infinite;
}

.mi-newpayreward-info::after {
    content: '✨';
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 16px;
    animation: mi-newpaysparkle 2s infinite 0.5s;
}

@keyframes mi-newpaysparkle {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.mi-newpayreward-text {
    font-size: 13px;
    color: #d84315;
    font-weight: 600;
}

.mi-newpayreward-emoji {
    font-size: 16px;
    animation: mi-newpaybounce 1.5s infinite;
}

@keyframes mi-newpaybounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* 支付方式TAB样式 - 间距调整 */
.mi-newpaypayment-tabs {
    background-color: #f1f3f5;
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.mi-newpaypayment-tab {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    color: #495057;
    transition: all 0.3s;
    margin: 0 2px;
    flex: 1;
    max-width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mi-newpaypayment-tab:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.mi-newpaypayment-tab.active {
    background-color: white;
    color: #409eff;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* 支付图标样式 */
.mi-newpaypayment-icon {
    font-size: 14px;
}

.mi-newpaywechat-icon {
    color: #09bb07;
}

.mi-newpayalipay-icon {
    color: #1296db;
}

.mi-newpaybalance-icon {
    color: #faad14;
}

/* 二维码区域样式 - 已优化 */
.mi-newpayqrcode-area {
    padding: 15px 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mi-newpayqrcode-container {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    padding: 5px;
}

.mi-newpayqrcode-img-wrap {
    width: 130px;
    height: 130px;
}

/* 二维码四角边框标记 */
.mi-newpayqrcode-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 3px solid #409eff;
}

.mi-newpayqrcode-corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 6px;
}

.mi-newpayqrcode-corner-tr {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 6px;
}

.mi-newpayqrcode-corner-bl {
    bottom: 0px;
    left: -3px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 6px;
}

.mi-newpayqrcode-corner-br {
    bottom: 0px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 6px;
}

.mi-newpayqrcode-placeholder {
    color: #adb5bd;
    font-size: 13px;
}

/* 二维码刷新区域 - 修改为直接显示 */
.mi-newpayqrcode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* 直接显示，不再是0 */
}

.mi-newpayqrcode-loading p {
    font-size: 12px;
}

.mi-newpayrefresh-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    font-size: 20px;
    color: #409eff;
}

.mi-newpayrefresh-icon:hover {
    transform: rotate(90deg);
}

.mi-newpayrefresh-icon:active {
    transform: rotate(180deg);
}

.mi-newpayqrcode-instruction {
    color: #6c757d;
    font-size: 12px;
    margin-top: 5px;
}

.mi-newpaytime-countdown {
    color: #ff4d4f;
    font-weight: 600;
}

/* 余额支付区域样式 */
.mi-newpaybalance-payment-area {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.mi-newpaybalance-info {
    margin-bottom: 10px;
}

.mi-newpaybalance-text {
    font-size: 14px;
    color: #495057;
}

.mi-newpaybalance-amount {
    color: #fa5247;
    font-weight: 600;
}

.mi-newpaybalance-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.mi-newpayrecharge-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #409eff 0%, #66b1ff 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(64, 158, 255, 0.2);
}

.mi-newpaynewpay-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #67c23a 0%, #85ce61 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(103, 194, 58, 0.2);
}

.mi-newpaynewpay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(103, 194, 58, 0.3);
}

.mi-newpayinstructions {
    color: #6c757d;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    margin-top: 10px;
}