﻿
@media screen and (min-width: 751px) {

    .mod_link {
        display: none;
    }

    .num_wrapper {
        margin-top: 40px;
    }

    /* 列表 */
    .broadband-box {
        margin-top: -1px;
        background: #fff;
    }

    .broadband-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .broadband {
    }

    .broadband-image {
        background: #E7E7E7;
        width: 100%;
        height: 228px;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
    }

        .broadband-image img {
            width: 100%;
            height: auto;
        }

    .broadband-info {
        background: #FFFFFF;
        border-radius: 0px 0px 8px 8px;
        border: 1px solid #E7E7E7;
        padding: 10px 10px 16px;
        color: #101010;
    }

    .broadband-title {
        font-size: 16px;
        text-align: center;
        margin-bottom: 2px;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .broadband-desc {
        font-size: 12px;
        line-height: 18px;
        color: #666;
        margin-bottom: 8px;
    }

    .broadband-sales {
        font-size: 12px;
        color: #666;
        margin-bottom: 4px;
    }

    .broadband-price {
        font-size: 12px;
        text-align: center;
    }

        .broadband-price .price-num {
            font-size: 20px;
            color: #FF1D1D;
        }

    .broadband_btn_box {
        width: 208px;
        height: 36px;
        font-size: 14px;
        display: flex;
        border-radius: 4px;
        overflow: hidden;
        margin-top: 8px;
        cursor: pointer;
    }

        .broadband_btn_box .subscribe_btn {
            width: 50%;
            height: 100%;
            line-height: 36px;
            text-align: center;
            color: #fff;
            box-sizing: border-box;
            background: linear-gradient(to right, #39A5FF, #2582FF);
        }

        .broadband_btn_box .detail_btn {
            width: 50%;
            height: 100%;
            line-height: 34px;
            box-sizing: border-box;
            background: #fff;
            color: #1D74FF;
            border: 1px solid #39A5FF;
            border-radius: 4px 0px 0px 4px;
            text-align: center;
        }

    .clearfix:after, .clearfix:before {
        display: table;
        content: "";
        clear: both;
    }

    /* 分页 */
    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 44px;
        background: #fff;
        font-size: 14px;
        color: #101010;
        padding: 30px 0;
        margin: 0;
    }

        .pagination .pagination_nums {
            height: 40px;
            display: flex;
            align-items: center;
            column-gap: 8px;
        }

        .pagination .page_up, .page_down {
            width: 69px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #F2F5F8;
            border-radius: 6px;
            cursor: pointer;
        }

        .pagination .page_item {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #F2F5F8;
            border-radius: 6px;
            cursor: pointer;
        }

        .pagination .current {
            background: #0282DD;
            color: #fff;
        }

    .skip_page {
        height: 40px;
        display: flex;
        align-items: center;
    }

        .skip_page .skip_page_input {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #F2F5F8;
            border-radius: 6px;
            margin: 0 8px;
            border: none;
        }

    .skip_page_btn {
        width: 70px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: linear-gradient(to right, #39A5FF, #2582FF);
        border-radius: 6px;
        font-size: 14px;
        color: #FFFFFF;
        margin-left: 14px;
        cursor: pointer;
    }

    /* 提交完成 */
    .success_box {
        width: 100%;
        margin-bottom: 140px;
        text-align: center;
    }

    .kdSuccess_icon {
        width: 120px;
        height: 150px;
        margin: 18px auto 20px;
        display: block;
    }

    .success_title {
        font-weight: bold;
        font-size: 20px;
        color: #37D852;
        margin-bottom: 12px;
    }

    .success_text {
        font-size: 14px;
        color: #333333;
    }
}

@media screen and (max-width: 750px) {
    
    .advanced_search_wrapper {
        max-width: 75rem;
    }

    .advanced_table_th {
        padding-left: 2rem;
        width: 16rem;
    }

    .advanced_table_td {
        line-height: 8.8rem;
    }

        .advanced_table_td a {
            margin: 0;
        }

    .num_wrapper {
        margin: 0 !important;
    }

    .num_cont_left {
        background: #fff !important;
    }

    .broadband-list {
        padding: 4rem 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .broadband {
        overflow: hidden;
    }

    .broadband-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        background: #E7E7E7;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
    }

        .broadband-image img {
            width: 100%;
            height: 100%;
        }

    .broadband-info {
        background: #FFFFFF;
        border-radius: 0px 0px 8px 8px;
        border: 1px solid #E7E7E7;
        border-top: none;
        margin-top: -1px;
        padding: 2rem 2rem 2rem;
        color: #101010;
    }

    .broadband-title {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 0.4rem;
        max-width: 40rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .broadband-price {
        font-size: 2.4rem;
        text-align: center;
    }

        .broadband-price .price-num {
            font-size: 4rem;
            color: #FF1D1D;
        }

    .broadband_btn_box {
        width: 100%;
        height: 7.2rem;
        font-size: 2.8rem;
        display: flex;
        border-radius: 4px;
        overflow: hidden;
        margin-top: 8px;
        cursor: pointer;
    }

        .broadband_btn_box .subscribe_btn {
            width: 50%;
            height: 100%;
            line-height: 7.2rem;
            text-align: center;
            color: #fff;
            box-sizing: border-box;
            background: linear-gradient(to right, #39A5FF, #2582FF);
        }

        .broadband_btn_box .detail_btn {
            width: 50%;
            height: 100%;
            line-height: 6.8rem;
            box-sizing: border-box;
            background: #fff;
            color: #1D74FF;
            border: 1px solid #39A5FF;
            border-radius: 4px 0px 0px 4px;
            text-align: center;
        }


    /* 分页 */
    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 44px;
        background: #fff;
        font-size: 14px;
        color: #101010;
        padding: 1rem 0 5rem;
        margin: 0;
    }

        .pagination .pagination_nums {
            height: 40px;
            display: flex;
            align-items: center;
            column-gap: 8px;
        }

        .pagination .page_up, .page_down {
            width: 69px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #F2F5F8;
            border-radius: 6px;
            cursor: pointer;
        }

        .pagination .page_item {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #F2F5F8;
            border-radius: 6px;
            cursor: pointer;
        }

        .pagination .current {
            background: #0282DD;
            color: #fff;
        }

    .skip_page {
        display: none
    }


    /* 提交完成 */
    .success_box {
        width: 100%;
        padding-top: 10rem;
        margin-bottom: 140px;
        text-align: center;
    }

    .kdSuccess_icon {
        width: 120px;
        height: 150px;
        margin: 18px auto 20px;
        display: block;
    }

    .success_title {
        font-weight: bold;
        font-size: 20px;
        color: #37D852;
        margin-bottom: 12px;
    }

    .success_text {
        font-size: 14px;
        color: #333333;
    }

}