﻿/* 套餐页面专用样式 */
.HttpBannerBox {
    background: linear-gradient(135deg, #1a2a6c, #2c3e50);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.HttpBannerText {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

    .HttpBannerText h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

/* 面包屑导航 */
.wherebg {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.whereBox {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

    .whereBox a {
        color: #3498db;
        text-decoration: none;
    }

        .whereBox a:hover {
            text-decoration: underline;
        }

/* 套餐容器 */
.Http_TcBox {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

    .Http_TcBox ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
        gap: 30px;
        list-style: none;
        padding: 0;
    }

/* 套餐卡片样式 */
.Http_TcType {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    position: relative;
}

    .Http_TcType:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

.TcType_Box {
    padding: 25px;
}

.HTTP_TCBt {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.Http_TCPrice {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #7f8c8d;
}

    .Http_TCPrice span {
        font-size: 1.5rem;
        color: #e74c3c;
    }

    .Http_TCPrice label.total {
        font-size: 2.2rem;
        font-weight: 700;
        color: #e74c3c;
        margin: 0 3px;
    }

/* 表单元素样式 */
.HTTP_item {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.HTTP_Num, .HTTP_Time, .HTTP_BuyTime {
    margin-bottom: 20px;
}

.HTTP_NumSel, .HTTP_TimeSel {
    display: flex;
    align-items: center;
}

.TC_Num {
    width: 36px;
    height: 36px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

    .TC_Num:hover {
        background: #2980b9;
    }

.TC_Num_Text {
    width: 100px;
    height: 36px;
    margin: 0 8px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
}

.IPTime_Select {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 1rem;
    color: #333;
}

/* 单选按钮样式 */
.radioBox {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.richradio {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
}

    .richradio.on {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }

    .richradio:hover:not(.on) {
        background: #ecf0f1;
    }

/* 购买按钮 */
.HTTP_Buy {
    display: block;
    width: 100%;
    padding: 14px;
    background: #2ecc71;
    color: white;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin: 30px 0 20px;
    border: none;
}

    .HTTP_Buy:hover {
        background: #27ae60;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    }

/* 套餐特性列表 */
.HTTP_Nr {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

    .HTTP_Nr ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0;
        padding: 0;
    }

    .HTTP_Nr li {
        padding: 8px 0;
        font-size: 0.95rem;
        color: #34495e;
        border-bottom: 1px dashed #ecf0f1;
        display: flex;
        align-items: center;
    }

        .HTTP_Nr li:last-child {
            border-bottom: none;
        }

        .HTTP_Nr li:before {
            content: "✓";
            color: #2ecc71;
            margin-right: 10px;
            font-weight: bold;
        }

/* 支付弹窗样式 */
#backlayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.PayBuy_Box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    z-index: 9999;
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.xufei {
    padding: 25px;
    position: relative;
}

.xufei_Bt {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.xufei_Text {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.zhifuBox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.zhifu_Type {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .zhifu_Type.on {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }

    .zhifu_Type:hover:not(.on) {
        background: #ecf0f1;
    }

.xufei_Price {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 0;
}

.xufei_Buy {
    display: block;
    width: 100%;
    padding: 14px;
    background: #2ecc71;
    color: white;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    border: none;
}

    .xufei_Buy:hover {
        background: #27ae60;
    }

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

    .close:before, .close:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #7f8c8d;
    }

    .close:before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .close:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .close:hover:before, .close:hover:after {
        background: #e74c3c;
    }

/* 响应式设计 */
@media (max-width: 992px) {
    .Http_TcBox ul {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }

    .HttpBannerText h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .Http_TcBox ul {
        grid-template-columns: 1fr;
    }
