    /* 全局样式 - 与首页保持一致 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    }
    
    body {
        background-color: #f5f7fa;
        color: #333;
        line-height: 1.6;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    /* 头部样式 - 与首页保持一致 */
    header {
        background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
        color: white;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    header h1 {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    header div {
        display: flex;
        gap: 1.5rem;
    }
    
    header div a {
        color: white;
        font-weight: 500;
        transition: opacity 0.3s;
        padding: 0.5rem;
        border-radius: 4px;
    }
    
    header div a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    /* 主内容区域 */
    .main-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
    }
    
    /* 订单确认容器 */
    .order-confirm {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 3rem;
        max-width: 800px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .order-confirm::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #1e88e5, #4CAF50);
    }
    
    .order-confirm h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        color: #2c3e50;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .order-confirm h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #1e88e5, #4CAF50);
    }
    
    .order-confirm h2 i {
        margin-right: 10px;
        color: #4CAF50;
    }
    
    .wallet-pay {
    padding: 12px 0px;
    }

    .wallet-select {
        display: flex;
        justify-content: space-between;
        padding-bottom: 5px;
    }

    .wallet-pay span {
        font-size: 13px;
        color: #718096;
    }
        
    #wallet-span {
      display: block;
      height: 20px;
    }

    /* 订单信息 */
    .order-info {
        background: #f8fafc;
        border-radius: 10px;
        padding: 2rem 2rem 0rem 2rem;
        margin: 2rem 0;
        border: 1px solid #eef2f7;
    }
    
    .info-item {
        display: flex;
        justify-content: space-between;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eef2f7;
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
    
    .info-label {
        font-weight: 600;
        color: #4a5568;
        align-items: center;
    }
    
    .info-label i {
        margin-right: 10px;
        color: #1e88e5;
        width: 20px;
        text-align: center;
    }
    
    
    .info-value.highlight {
        color: #e74c3c;
        font-weight: 700;
        font-size: 1.1rem;
    }
    
    /* 按钮区域 */
    .button-group {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    
    .pay-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s;
        cursor: pointer;
        border: none;
        min-width: 300px;
        text-align: center;
    }
    
    .pay-now {
        background: linear-gradient(135deg, #1e88e5, #4CAF50);
        color: white;
        box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
    }
    
    .pay-now:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(30, 136, 229, 0.6);
    }
    
    .pay-now:active {
        transform: translateY(1px);
    }

    .disabled {
        pointer-events: none;
        cursor: not-allowed;
        opacity: 0.6;
    }
    
    #backmodify {
        color: #666;
        font-size: 1rem;
        transition: all 0.3s;
        cursor: pointer;
        background: #eee;
        padding: 0.5rem 2rem;
        border-radius: 50px;
        border: 2px solid #ececec;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    #backmodify:hover {
        background: #f5f7fa;
        border-color: #1e88e5;
        color: #1e88e5;
    }
    
    
    /* 安全提示 */
    .security-tip {
        background: #e3f2fd;
        border-radius: 10px;
        padding: 1.5rem;
        margin-top: 2rem;
        border-left: 4px solid #1e88e5;
        color: #e74c3c;
    }
    
    .security-tip h3 {
        display: flex;
        align-items: center;
        /*color: #2c3e50;*/
        margin-bottom: 1rem;
    }
    
    .security-tip h3 i {
        margin-right: 10px;
        /*color: #1e88e5;*/
    }
    
    .security-tip p {
        /*color: #4a5568;*/
        line-height: 1.7;
    }
    
    /* 页脚 */
    footer {
        background: linear-gradient(135deg, #207cca 0%, #1e5799 100%);
        color: white;
        text-align: center;
        padding: 1.5rem;
        margin-top: auto;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }
    
    .footer-links a {
        color: #a0aec0;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: white;
    }
    
    .copyright {
        color: #a0aec0;
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
    
    /* 动画 */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        header {
            flex-direction: column;
            text-align: center;
            padding: 1rem;
        }
        
        header div {
            margin-top: 0.5rem;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .order-confirm {
            padding: 2rem 1.5rem;
        }
        
        .order-confirm h2 {
            font-size: 1.5rem;
        }
        
        /*.info-item {*/
        /*    flex-direction: column;*/
        /*    gap: 0.3rem;*/
        /*}*/
        
        /*.info-label {*/
        /*    width: 100%;*/
        /*}*/
        
        .button-group {
            flex-direction: column;
            gap: 1rem;
        }
        
        .pay-btn {
            width: 100%;
        }
    }
    
    @media (max-width: 480px) {
        .order-confirm {
            padding: 1.5rem;
        }
        
        .order-info {
            padding: 1rem 1rem 0.7rem 1rem;
        }
    }