.static-package-page {
    max-width: 2560px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

.static-package-page>.static-package-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.static-package-page>.static-package-content>.package-page-title {
    text-align: center;

    &>div {
        margin: auto;
        width: auto;
        border-radius: 32px 32px 32px 32px;
        /* border: 1px solid #EEEEEE; */
        margin-top: 24px;
        display: flex;
        align-items: center;
        column-gap: 8px;
        row-gap: 8px;
        /* background: #FFFFFF; */
        background: rgba(83, 41, 252, 0.1);
        padding: 8px 10px;
        display: inline-block;

        img {
            width: 16px;
            height: 16px;
        }

        span {
            font-weight: 500;
            font-size: 14px;
            color: #5329FC;
        }
    }

    &>h1 {
        font-weight: bold;
        font-size: 40px;
        color: #333333;
        margin-top: 16px;
    }

    &>p {
        font-weight: 400;
        font-size: 16px;
        color: #666666;
        margin-top: 16px;
    }
}

.static-package-page>.static-package-content>.package-page-content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 18px;
    column-gap: 18px;
    margin-top: 30px;

    &>.package-content-left {
        width: 1020px;
        /* max-width: 1020px; */
        /* width: 100%; */

        &>.package-content-discount {
            width: 100%;
            height: 112px;
            border-radius: 8px 8px 8px 8px;
            border: 1px solid #EEEEEE;
            overflow: hidden;

            &>.discount-head {
                display: flex;
                flex-wrap: wrap;

                .discount-head-item {
                    box-sizing: border-box;
                    width: 20%;
                    min-width: 50px;
                    height: 56px;
                    text-align: center;
                    line-height: 56px;
                    background-color: #EEEEEE;
                    font-weight: 500;
                    font-size: 16px;
                    color: #333333;
                    border: 1px solid #E5E5E5;
                }
            }

            &>.discount-contetn {
                display: flex;

                &>.discount-contetn-item {
                    box-sizing: border-box;
                    width: 20%;
                    min-width: 50px;
                    height: 56px;
                    text-align: center;
                    line-height: 56px;
                    font-weight: 500;
                    font-size: 16px;
                    color: #666666;
                    border: 1px solid #E5E5E5;
                }
            }
        }

        &>.package-content-package {
            width: 100%;
            height: 750px;
            box-sizing: border-box;
            background: #FFFFFF;
            border-radius: 8px 8px 8px 8px;
            border: 1px solid #EEEEEE;
            margin-top: 20px;
            box-sizing: border-box;
            padding: 20px;

            &>.package-region-tebs {
                width: 100%;
                display: flex;
                background: #F9F9F9;
                border-radius: 4px 4px 4px 4px;
                border: 1px solid #EEEEEE;
                box-sizing: border-box;
                padding: 2px;

                &>.region-tebs-item {
                    width: 163px;
                    height: 32px;
                    text-align: center;
                    line-height: 34px;
                    box-sizing: border-box;
                    font-weight: 400;
                    font-size: 16px;
                    color: #666666;
                    transition: all 0.3;
                    overflow: hidden;
                }

                &>.region-tebs-item:hover {
                    background: rgba(86, 41, 255, 0.08);
                    border-radius: 4px 4px 4px 4px;
                    color: #5329FC;
                }

                &>.active {
                    background: #5329FC;
                    border-radius: 4px 4px 4px 4px;
                    color: #FFFFFF;
                }

                &>.active:hover {
                    background: #5329FC;
                    border-radius: 4px 4px 4px 4px;
                    color: #FFFFFF;
                }
            }

            &>.package-region {
                height: 660px;
                overflow: auto;
                /* 启用滚动功能 */
                -ms-overflow-style: none;
                /* 适用于 Internet Explorer 和旧版 Edge */
                scrollbar-width: none;

                /* 适用于 Firefox */
                &>.region-item {
                    margin-top: 20px;

                    &>p {
                        font-weight: 500;
                        font-size: 16px;
                        color: #333333;
                    }

                    &>div {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: space-between;
                        margin-top: 12px;
                        column-gap: 12px;
                        row-gap: 12px;

                        &>.region-package-item {
                            width: 480px;
                            height: 64px;
                            display: flex;
                            justify-content: space-between;
                            box-sizing: border-box;
                            padding: 12px;
                            align-items: center;
                            background: #F9F9F9;
                            border-radius: 7px 7px 7px 7px;
                            border: 1px solid #EEEEEE;
                            cursor: pointer;

                            &>.country {
                                display: flex;
                                column-gap: 8px;
                                row-gap: 8px;
                                align-items: center;

                                .country-logp {
                                    width: 40px;
                                    height: 40px;
                                    border-radius: 20px 20px 20px 20px;
                                    background-color: #000000;
                                }

                                &>span {
                                    font-weight: 400;
                                    font-size: 16px;
                                    color: #666666;
                                }
                            }

                            &>.country-package {
                                &>span {
                                    font-weight: bold;
                                    font-size: 16px;
                                    color: #666666;
                                }
                            }
                        }
                    }

                }

            }

            &>.no-desire {
                text-align: center;
                font-weight: 400;
                font-size: 12px;
                color: #828282;
                margin-top: 10px;

                &>span {

                    &>a {
                        color: #7E5FFD;
                        text-decoration: underline;
                    }
                }

            }

        }
    }

    &>.package-content-right {
        width: 400px;
        height: 886px;
        background: #FFFFFF;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid #EEEEEE;
        box-sizing: border-box;
        padding: 20px;

        &>p {
            font-weight: 500;
            font-size: 16px;
            color: #333333;
        }

        &>.date-type {
            display: flex;
            margin-top: 16px;
            width: 100%;
            background: #F9F9F9;
            border-radius: 4px 4px 4px 4px;
            border: 1px solid #EEEEEE;
            box-sizing: border-box;
            padding: 2px;

            &>.date-type-item {
                width: 120px;
                height: 32px;
                text-align: center;
                line-height: 34px;
                box-sizing: border-box;
                font-weight: 400;
                font-size: 16px;
                color: #666666;
                transition: all 0.3;

            }

            &>.active {
                background: #5329FC;
                border-radius: 4px 4px 4px 4px;
                color: #FFFFFF;
            }
        }

        &>.change-package-list-title {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            font-weight: 500;
            font-size: 16px;
            color: #333333;
            margin-top: 20px;

            &>.empty {
                font-weight: 400;
                font-size: 16px;
                /* color: red; */
                color: #666666;
                cursor: pointer;
            }
        }

        &>.change-package-list {
            width: 100%;
            height: 442px;
            overflow: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
            background-color: #FAFAFA;
            border-radius: 8px;
            box-sizing: border-box;
            padding: 8px;

            .dayType-title {
                margin: 6px 0;
                font-size: 18px;
                font-weight: bold;
                color: #333333;
            }

            &>.change-package-list-item {
                width: 100%;
                box-sizing: border-box;
                display: flex;
                justify-content: space-between;
                align-items: center;
                line-height: 21px;
                font-weight: 400;
                font-size: 16px;
                color: #666666;
                border-bottom: 1px solid #E5E5E5;
                padding: 10px 0;

                &>.package-list-item-country {
                    width: 20%;
                    display: flex;
                    align-items: center;
                    column-gap: 6px;
                    row-gap: 6px;
                }

                &>.package-list-item-price {
                    width: 20%;
                    text-align: right;
                }

                &>.package-list-item-cost {
                    width: 20%;
                    position: relative;
                    text-align: center;
                    max-width: 80px;
                    /* text-decoration: line-through;
                    text-underline-offset: -0.2em; */
                }

                &>.package-list-item-cost::after {
                    border-top: 1px solid #000;
                    position: absolute;
                    content: "";
                    right: 0;
                    top: 48%;
                    left: 0;
                }

                &>.package-list-item-number {
                    width: 36%;
                    display: flex;
                    align-items: center;
                    column-gap: 4px;
                    row-gap: 4px;

                    &>input {
                        width: 50px;
                        height: 33px;
                        border: 1px solid #DCDCDC;
                        border-radius: 3px 3px 3px 3px;
                        box-sizing: border-box;
                        padding: 5px;
                        text-align: center;
                    }

                    &>div {
                        background: #FFFFFF;
                        border-radius: 3px 3px 3px 3px;
                        border: 1px solid #DCDCDC;
                        padding: 5px;
                        cursor: pointer;

                        &>img {
                            height: 14px;
                            width: 14px;
                        }
                    }
                }
            }

            &>.change-package-list-item:last-child {
                border: none;
            }
        }

        &>.change-package-total-item {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;

            &>.total-item-left {
                display: flex;
                align-items: center;
                font-weight: 400;
                font-size: 16px;
                color: #666666;

                span {
                    background: url('/static/common/package/img/discount.png') no-repeat center center;
                    background-size: 100% 100%;
                    /* padding: 6px;
                    padding-left: 14px; */
                    padding: 2px;
                    width: 58px;
                    height: 28px;
                    line-height: 28px;
                    text-align: right;
                    font-weight: 600;
                    font-size: 16px;
                    color: #5329FC;
                }
            }

            &>.total-item-right {
                font-weight: bold;
                font-size: 16px;
                color: #333333;

            }
        }

        &>a {
            display: inline-block;
            width: calc(100% - 10px);
            /* box-sizing: border-box; */
            padding: 5px;
            height: 38px;
            text-align: center;
            background: #5329FC;
            border-radius: 10px;
            color: #FFFFFF;
            margin-top: 20px;
            background-clip: content-box;
            line-height: 38px;
            /* box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.25); */
        }

        &>a:hover {
            padding: 0px;
            border: 5px solid rgba(83, 41, 252, 0.2);
            box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
            background: linear-gradient(180deg, #5329FC 0%, #311896 100%);
            background-clip: content-box;
        }
    }
}

.static-package-page>.static-package-content>.package-illustrate {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background: linear-gradient(102deg, #101010 0%, #19234B 50%, #2E6A8A 100%);
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.4);
    border-radius: 16px 16px 16px 16px;
    border: 7px solid #101010;
    margin-top: 23px;

    &>div {
        text-align: center;
        background: url('/static/common/package/img/Group\ 1171275822@2x.png') no-repeat;
        background-size: 100% 100%;

        &>.package-illustrate-content {
            &>p {
                text-align: center;
                font-size: 18px;
                color: #FFFFFF;
                font-weight: 500;
                margin-top: 40px;
            }

            &>.illustrate-content {

                width: 680px;
                max-width: 100%;
                margin: auto;
                display: flex;
                flex-wrap: wrap;
                column-gap: 18px;
                row-gap: 18px;
                justify-content: space-between;
                margin-top: 40px;

                &>.illustrate-content-item {
                    width: 200px;
                    display: flex;
                    align-items: center;
                    column-gap: 8px;
                    row-gap: 8px;
                    font-weight: 400;
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.6);

                    &>img {
                        width: 16px;
                        height: 16px;
                    }
                }
            }

            &>.package-contact-button {
                display: inline-block;
                text-align: center;
                background-color: #FFFFFF;
                /* border: 5px solid rgba(0, 0, 0, 0); */
                /* padding: 10px 30px; */
                color: #333333;
                border-radius: 10px;
                font-weight: 700;
                font-size: 16px;
                margin: 50px;
                cursor: pointer;
                padding: 5px;
                /* box-sizing: border-box; */
                width: 150px;
                height: 38px;
                line-height: 38px;

            }

            &>.package-contact-button:hover {
                color: #000000;
                padding: 0px;
                background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
                box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
                border: 5px solid rgba(255, 255, 255, 0.4);
                background-clip: content-box;
                /* border: 4px solid rgba(0, 0, 0, 0.2); */
                /* padding: 0px;
                border: 5px solid rgba(83, 41, 252, 0.2);
                box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
                background: linear-gradient(180deg, #5329FC 0%, #311896 100%);
                background-clip: content-box; */
            }
        }
    }
}

.unlimited-bandwidth-title {
    max-width: 1440px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #EEEEEE;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
    column-gap: 30px;
    row-gap: 30px;

    .bandwidth-title-left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .bandwidth-title-right {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 30px;

        .title-box {
            display: flex;
            flex-direction: column;
            column-gap: 20px;
            row-gap: 20px;
        }

        .title-item {
            display: flex;
            width: 350px;
            align-items: center;
            column-gap: 8px;
            row-gap: 8px;
            font-size: 14px;
            color: #333333;
        }
    }
}

.black-button {
    &>a {
        width: 100%;
        display: inline-block;
        text-align: center;
        line-height: 44px;
        font-size: 15px;
        color: #FFFFFF;
        height: 44px;
        background: #000000;
        border-radius: 4px 4px 4px 4px;
        transition: all 0.3;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.faq-list-cont {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 54px;
    margin-top: 100px;
    background: #fff;
    padding: 100px 20px;
    text-align: left;
}

.faq-list-cont>h2 {
    font-weight: bold;
    font-size: 40px;
    color: #000000;
    line-height: 48px;
    text-align: center
}

.faq-list-cont>.faq-list {
    border-bottom: 1px solid #CCCCCC;
    padding: 14px 0;
    cursor: pointer;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto
}

.faq-list-cont>.faq-list.on>div:nth-of-type(1)>span {
    transform: rotate(180deg)
}

.faq-list-cont>.faq-list>div:nth-of-type(1) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

.faq-list-cont>.faq-list>div:nth-of-type(1)>p {
    font-weight: bold;
    font-size: 20px;
    color: #09162E;
    line-height: 24px
}

.faq-list-cont>.faq-list>div:nth-of-type(1)>span {
    width: 48px;
    height: 48px;
    background: url(../img/faq_select.png) no-repeat center center;
    background-size: cover;
    cursor: pointer
}

.faq-list-cont>.faq-list>div.faq-answer {
    display: none;
    font-size: 16px;
    color: rgba(3, 0, 87, 0.4);
    line-height: 22px
}

@media screen and (max-width: 1440px) {
    .static-package-page {
        box-sizing: border-box;
        padding: 80px 20px;
    }

    .static-package-page>.static-package-content>.package-page-content>.package-content-left {
        width: 100%;
    }

    .static-package-page>.static-package-content>.package-page-content>.package-content-right {

        width: 100%;

        &>.date-type {
            justify-content: center;

            &>.date-type-item {
                width: 33%;
            }
        }
    }

    .static-package-page>.static-package-content>.package-page-content>.package-content-left>.package-content-package>.package-region>.region-item>div>.region-package-item {
        width: 100%;
    }

    .faq-list-cont>.faq-list>div:nth-of-type(1)>span {
        width: 30px;
        height: 30px;
    }
}