/* 页面主体样式 */
body {
    background-color: #f5f7fa;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 导航区域样式 */
header {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    padding: 20px 0;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 商品卡片样式 */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card-header {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    color: white;
    padding: 15px 20px;
}

.product-card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
        margin: 0;
}

/* 新的页面结构：分为两个主要版块 */
    .product-detail-section {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* 商品介绍部分 - 新增样式 */
.product-description-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

/* 为商品描述添加视觉分隔符 */
.description-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.description-header h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    margin: 0;
}

.description-header h5 svg {
    margin-right: 8px;
}

/* 商品描述内容区域 */
.product-full-description {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.product-full-description img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
        border-radius: 4px;
}

/* 滚动条样式优化 */
.product-full-description::-webkit-scrollbar {
    width: 6px;
}

.product-full-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.product-full-description::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.product-full-description::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 商品价格与库存显示区域 */
.product-detail-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
        display: flex;
        align-items: center;
    color: #4776E6;
}

.product-detail-title svg {
    margin-right: 8px;
}

.product-price-stock {
        display: flex;
        align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 15px;
        background-color: #f8f9fa;
    border-radius: 8px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5252;
}

.product-stock {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stock-available {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stock-unavailable {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* 表单区域样式 */
.form-section {
    margin-top: 20px;
}

.form-label {
    font-size: 0.95rem;
    color: #495057;
}

/* 移动端邮箱输入框 */
    #email-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    background-color: #fff;
    margin-bottom: 0.5rem;
}

.email-icon {
    margin-right: 10px;
    color: #6c757d;
}

#email-mobile {
        border: none;
        width: 100%;
        padding: 0;
    outline: none;
}

/* 数量选择器 */
.quantity-selector {
        display: flex;
        align-items: center;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
        width: 100%;
}

.quantity-btn {
        border: none;
    background: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #4776E6;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
}

.quantity-input {
        border: none;
    text-align: center;
    width: 60%;
    padding: 0.375rem 0;
    font-size: 1rem;
    outline: none;
}

/* 验证码区域 */
    .captcha-wrapper {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .captcha-image {
    height: 40px;
}

    .refresh-captcha {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.refresh-captcha svg {
    margin-right: 5px;
}

/* 支付方式样式 - 旧样式 */
.payment-methods {
    margin-top: 10px;
}

.payment-methods .form-check {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #efefef;
    transition: all 0.2s ease;
}

.payment-methods .form-check:hover,
.payment-methods .form-check-input:checked + .form-check-label {
    background-color: rgba(71, 118, 230, 0.05);
    border-color: rgba(71, 118, 230, 0.2);
}

.payment-methods .form-check-input:checked + .form-check-label {
    font-weight: 500;
}

/* 支付方式按钮组 - 新样式 */
.payment-methods-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: flex-start;
}

.payment-method-item {
    position: relative;
    flex: 0 0 auto;
}

.payment-method-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
}

.payment-method-label {
    display: block;
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 110px;
    text-align: center;
}

.payment-method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-method-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.payment-method-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.payment-gateway-name {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.2;
}

.payment-method-input:checked + .payment-method-label {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1));
    border-color: rgba(71, 118, 230, 0.5);
    box-shadow: 0 2px 6px rgba(71, 118, 230, 0.1);
    transform: translateY(-2px);
}

.payment-method-input:checked + .payment-method-label .payment-method-name {
    color: #4776E6;
}

.payment-method-input:focus + .payment-method-label {
    outline: 2px solid rgba(71, 118, 230, 0.3);
    outline-offset: 1px;
}

.payment-method-item:hover .payment-method-label {
    border-color: rgba(71, 118, 230, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* 图标样式调整 */
.payment-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

/* 支付图标特定样式 */
.alipay-icon-wrapper {
    background-color: rgba(0, 160, 233, 0.1);
}

.wxpay-icon-wrapper {
    background-color: rgba(9, 187, 7, 0.1);
}

.qqpay-icon-wrapper {
    background-color: rgba(18, 183, 245, 0.1);
}

/* 购买按钮 */
.btn-buy {
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
        border: none;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(71, 118, 230, 0.3);
}

/* 订单成功提示 */
.order-success-tip {
    background-color: #f1f9f7;
    border-left: 4px solid #28a745;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.order-success-tip h4 {
    color: #28a745;
    font-size: 1.2rem;
    margin-bottom: 5px;
        display: flex;
        align-items: center;
}

.order-success-tip p {
    margin-bottom: 0;
    color: #495057;
}

/* 支付区域 */
.payment-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4776E6, #8E54E9);
}

.payment-amount {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fb;
    border-radius: 10px;
}

.amount-label {
    font-size: 1rem;
    color: #6c757d;
    margin-right: 10px;
}

.amount-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ff5252;
    text-shadow: 0 1px 2px rgba(255, 82, 82, 0.1);
}

.qrcode-image-wrapper {
    display: inline-block;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    margin: 15px auto;
    max-width: 230px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qrcode-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.qrcode-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* 倒计时区域 - 修复抖动问题 */
.countdown-area {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(145deg, #fff9db, #fff5c0);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.countdown-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    animation: countdown-glow 2s ease-in-out infinite alternate;
    background-size: 200% 100%;
}

@keyframes countdown-glow {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.timer-info {
    color: #a17d12;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.countdown-timer {
    color: #856404;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px; /* 固定高度防止抖动 */
}

.countdown-timer #countdown-timer {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d97706;
    margin: 0 5px;
    display: inline-block;
    min-width: 40px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
    
/* 状态检查区域 - 修复抖动问题 */
.check-status-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eef0f2;
    min-height: 54px; /* 固定最小高度防止抖动 */
}

.check-status-info {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
    min-height: 22px; /* 固定最小高度防止抖动 */
}

.spinner-grow {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 8px;
    animation: spinner-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0; /* 防止被压缩 */
}

@keyframes spinner-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.check-status-text {
    margin-right: 5px;
    font-weight: 500;
    min-width: 60px; /* 固定最小宽度防止抖动 */
}

.check-count {
    font-size: 0.8rem;
    color: #adb5bd;
    margin-left: 5px;
}

.manual-check-btn {
    border: none;
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(71, 118, 230, 0.2);
    min-width: 90px; /* 固定最小宽度防止抖动 */
    justify-content: center;
}

.manual-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(71, 118, 230, 0.3);
    background: linear-gradient(135deg, #5282e8 0%, #9965eb 100%);
}

.manual-check-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(71, 118, 230, 0.2);
}

.h5-payment-btn {
    margin: 20px 0;
}

.h5-payment-btn .btn {
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(71, 118, 230, 0.3);
}

.h5-payment-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(71, 118, 230, 0.4);
}

.h5-payment-btn .btn:active {
    transform: translateY(1px);
}

.h5-payment-btn .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: translateX(-100%);
}

.h5-payment-btn .btn:hover::after {
    animation: btn-shine 1.2s ease;
}

@keyframes btn-shine {
    100% {
        transform: translateX(100%);
    }
}

/* 状态指示器样式优化 */
.check-success {
    color: #28a745;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.check-success::before {
    content: "✓";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    font-size: 12px;
    flex-shrink: 0; /* 防止被压缩 */
}

.check-failure {
    color: #dc3545;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.check-failure::before {
    content: "×";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    font-size: 12px;
    flex-shrink: 0; /* 防止被压缩 */
}

.check-pending {
    color: #ffc107;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.check-pending::before {
    content: "⟳";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    font-size: 12px;
    flex-shrink: 0; /* 防止被压缩 */
    animation: rotate-spin 1.5s linear infinite;
}

@keyframes rotate-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 订单状态区域 - 专为移动端优化 */
.system-check-status {
    background: #f2f6ff;
    border-radius: 15px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.system-check-text {
    font-size: 0.95rem;
    color: #5273c0;
    font-weight: 500;
}

.order-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.order-status-badge {
    background: linear-gradient(135deg, #ffb700, #ff8b00);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(255, 183, 0, 0.2);
}

.order-status-badge.success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.2);
}

.order-status-badge.waiting {
    background: linear-gradient(135deg, #ffb700, #ff8b00);
    box-shadow: 0 2px 5px rgba(255, 183, 0, 0.2);
}

.order-status-badge.failed {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.2);
}

.order-count-indicator {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.manual-check-button {
    background: #5d86ff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(93, 134, 255, 0.3);
    transition: all 0.2s ease;
}

.manual-check-button:hover {
    background: #4776E6;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(93, 134, 255, 0.4);
}

.manual-check-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(93, 134, 255, 0.3);
}

/* 这是我们需要替换的样式，用于修复页面上的系统自动检查状态区域 */
/* 系统自动检查状态区域 */
.check-status-box {
    background: #f2f6ff;
    border-radius: 15px;
    padding: 2px 10px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.check-status-left {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.check-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    flex-shrink: 0;
}

.check-status-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-status-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.check-status-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(255, 183, 0, 0.15);
}

.check-count-display {
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 5px;
    color: rgba(0, 0, 0, 0.5);
}

.check-status-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-check-button {
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 8px rgba(99, 102, 241, 0.3);
    transition: all 0.2s ease;
}

.manual-check-button:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(99, 102, 241, 0.4);
}

.manual-check-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(99, 102, 241, 0.3);
}

/* 响应式调整 */
@media (max-width: 767px) {
    .product-card-header {
        padding: 12px 15px;
    }
    
    .product-card-header h2 {
        font-size: 1.3rem;
    }
    
    .product-detail-section,
    .product-description-section {
        padding: 15px;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .payment-methods-group {
        justify-content: space-between;
        gap: 8px;
    }
    
    .payment-method-label {
        padding: 6px 10px;
        min-width: 90px;
    }
    
    .payment-method-name {
        font-size: 0.85rem;
    }
    
    .payment-gateway-name {
        font-size: 0.7rem;
    }
    
    .payment-icon-wrapper {
        width: 30px;
        height: 30px;
    }
    
    .btn-buy {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .amount-value {
        font-size: 1.5rem;
    }
    
    .order-info-title, 
    .product-detail-title {
        font-size: 1.1rem;
    }
    
    .order-info-item {
        font-size: 0.9rem;
    }
    
    /* 添加一些视觉提示，表明商品描述区域可滚动 */
    .product-description-section {
        position: relative;
    }
    
    .product-description-section::before {
        content: "⇣ 下滑查看更多 ⇣";
        display: block;
        text-align: center;
        padding: 5px 0;
        margin-bottom: 10px;
        font-size: 0.8rem;
        color: #8E54E9;
        background-color: rgba(142, 84, 233, 0.05);
        border-radius: 20px;
    }
    
    /* 移动端支付框优化 */
    .payment-box {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .countdown-area {
        padding: 12px;
        margin: 15px 0;
    }
    
    .manual-check-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 80px;
    }
    
    /* 移动端二维码优化 */
    .qrcode-image-wrapper {
        padding: 10px;
        border-width: 1px;
        margin: 12px auto;
    }
    
    /* 移动端状态指示器优化 */
    .check-status-area {
        padding: 10px 12px;
        min-height: 50px;
    }
    
    .check-status-text {
        min-width: 50px;
    }
    
    /* 移动端订单状态样式 */
    .system-check-status {
        padding: 12px;
        margin: 12px 0;
    }
    
    .system-check-text {
        font-size: 0.85rem;
    }
    
    .order-status-badge {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    /* 系统自动检查状态移动端优化 */
    .check-status-box {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 10px;
    }
    
    .check-status-left {
        justify-content: space-between;
        width: 100%;
    }
    
    .check-status-right {
        justify-content: flex-end;
        width: 100%;
    }
    
    .check-status-text {
        font-size: 0.9rem;
    }
    
    .check-status-badge {
        padding: 3px 8px;
        font-size: 0.8rem;
    }
    
    .manual-check-button {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* 移动设备优化 */
@media (max-width: 576px) {
    .product-description-section {
        padding: 15px;
    }
    
    .product-full-description {
        max-height: 400px;
    }
    
    .payment-box {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .countdown-area {
        padding: 10px;
    }
    
    .manual-check-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .amount-value {
        font-size: 1.4rem;
    }
    
    .payment-amount {
        padding: 8px;
        margin-bottom: 15px;
    }
    
    .h5-payment-btn .btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .check-status-box {
        padding: 10px;
    }
    
    .check-status-text {
        font-size: 0.85rem;
    }
    
    .check-status-badge {
        padding: 2px 6px;
        font-size: 0.75rem;
    }
    
    .check-status-icon,
    .check-status-info {
        gap: 5px;
    }
    
    .manual-check-button {
        font-size: 0.8rem;
        padding: 5px 10px;
        border-radius: 10px;
    }
}

/* 脉冲效果 */
.pulse-effect {
    animation: pulse-animation 0.5s ease-out;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(71, 118, 230, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(71, 118, 230, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(71, 118, 230, 0);
    }
}