/* 头部 */
.cdn-header {
    display: flex;
    gap: 32px;
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 32px;
    z-index: 99999;
}

.cdn-title {
    width: 286px;
}

.cdn-title-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cdn-title-text {
    font-size: 26px;
}

.cdn-title-text-mobile {
    font-size: 24px;
    text-align: center;
    padding: 40px 0 26px 0;
}

.cdn-filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 16px;
}

.cdn-filter select {
    width: 100%;
    height: 44px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    appearance: none;
    background-image: url(../images/icon-down-gray.png);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

.cdn-filter select option::before {
    min-height: 40px;
}

.cdn-list {
    flex: 1;
    display: flex;
    gap: 32px;
}

.cdn-list-item {
    width: 100%;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;

    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.2s ease-in-out;
    -moz-transition: All 0.2s ease-in-out;
    -o-transition: All 0.2s ease-in-out;
}

.cdn-item-header {
    height: 48px;
    line-height: 48px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    padding: 0 18px;
}

.cdn-item-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cdn-item-price {
    font-size: 24px;
    font-weight: 600;
    color: #232323;
}

.cdn-item-des {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #5F5F5F;
}

.cdn-item-button {
    display: block;
    width: auto;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
}

.cdn-list-item.style1 .cdn-item-header {
    background: url(../images/card-bg1.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.cdn-list-item.style2 .cdn-item-header {
    background: url(../images/card-bg2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.cdn-list-item.style3 .cdn-item-header {
    background: url(../images/card-bg3.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.cdn-list-item.style4 .cdn-item-header {
    background: url(../images/card-bg4.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}


.cdn-list-item.style1 .cdn-item-button {
    border: 1px solid #2A2A2A;
    color: #2A2A2A;
}

.cdn-list-item.style2 .cdn-item-button {
    border: 1px solid #FF6E26;
    background: #FF6E26;
    color: #FFFFFF;
}

.cdn-list-item.style3 .cdn-item-button {
    border: 1px solid #D0AA5C;
    background: #D0AA5C;
    color: #FFFFFF;
}

.cdn-list-item.style4 .cdn-item-button {
    border: 1px solid #2A2A2A;
    background: #2A2A2A;
    color: #FFFFFF;
}

/* PC表格 */
.cdn-table {
    margin-bottom: 80px;
    font-size: 16px;
    color: #232323;
}

.cdn-table-title {
    font-size: 16px;
    font-weight: 600;
    color: #FF5500;
}

.cdn-table-content {}

.cdn-table-item {
    display: flex;
    gap: 32px;
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #E8E8E8;
}

.cdn-mobile-table .cdn-table-item {
    padding: 16px 0 12px 0;
}

.cdn-table-label {
    width: 286px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.cdn-icon-tips-content {
    width: calc(100% - 32px);
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFF5F0;
    box-shadow: 0px 1 5px 0px rgba(255, 85, 0, 0.1);
    border: 1px solid #FF5500;
    padding: 15px;
    z-index: 999;
    color: #393939;
    font-size: 14px;
    line-height: 22px;
    display: none;
}

.cdn-icon-tips-content div:first-child {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    color: #232323;
    font-weight: 500;
    padding-bottom: 5px;
}

.cdn-icon-tips-close {
    width: 16px;
    height: 16px;
    background: url(../images/icon-close.png) no-repeat;
    background-size: 100% 100%;
}

.cdn-table-label div:first-child {
    flex: 1;
}

.cdn-table-sub-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cdn-table .cdn-table-sub-item {
    padding: 0 10px;
}

.cdn-icon-tips {
    width: 16px;
    height: 16px;
    background: url(../images/icon-tips.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}

.cdn-icon-right {
    width: 20px;
    height: 20px;
    background: url(../images/icon-right.png) no-repeat;
    background-size: 100% 100%;
}

.cdn-icon-wrong {
    width: 20px;
    height: 20px;
    background: url(../images/icon-wrong.png) no-repeat;
    background-size: 100% 100%;
}

.cdn-header {
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
}

/* 移动端表格 */
.cdn-mobile-table {
    margin-bottom: 40px;
}

.cdn-mobile-table-tabs-wrap {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9;
}

.cdn-mobile-table-tabs {
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #E8E8E8;
    font-size: 16px;
    color: #626262;
}

.cdn-mobile-table-tabs div {
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.cdn-mobile-table-tabs .current {
    color: #FF5500;
}

.cdn-mobile-table-tabs .current::after {
    position: absolute;
    content: ' ';
    bottom: 0;
    width: 20px;
    height: 2px;
    background: #FF5500;
    border-radius: 1px;
}

.cdn-mobile-table-filter {
    display: flex;
    align-items: center;
    padding: 15px 0 20px 0;
}

.cdn-filter-label {
    width: 50px;
    color: #232323;
    font-weight: 600;
    font-size: 17px;
}

.cdn-mobile-table-filter .cdn-filter {
    flex: 1;
}

.cdn-mobile-table-title {
    font-size: 17px;
    font-weight: 600;
    color: #FF5500;
}

.cdn-mobile-table-item {
    border-bottom: 1px solid #E8E8E8;
    padding: 15px 0 10px 0;
}

.cdn-mobile-table-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    position: relative;
}

.cdn-mobile-table-label div:first-child {
    flex: 1;
}

.cdn-table .cdn-box {
    margin-bottom: 35px;
}

.cdn-mobile-table .cdn-box {
    margin-bottom: 20px;
}

.cdn-mobile-table .cdn-table-label {
    width: 100%;
}

.cdn-mobile-table .cdn-table-item {
    display: flex;
    flex-direction: column;
}

.cdn-mobile-table .cdn-table-sub {
    display: flex;
}

.cdn-mobile-table .cdn-table-sub .cdn-table-sub-item {
    justify-content: space-between;
}

.cdn-table .cdn-table-sub {
    width: 100%;
    display: flex;
    flex: 1;
}

.cdn-table .cdn-table-sub .cdn-table-sub-item {
    justify-content: center;
}


.indent2 {
    text-indent: 2em;
}

.pt5 {
    padding-top: 5px;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

.tips-icon {
    color: #FF5500;
    padding-right: 5px;
}

@media(max-width:767px) {
    .pc-show {
        display: none;
    }

    .mobile-show {
        display: block;
    }

    .cdn-header {
        gap: 15px;
        padding-top: 0;
        margin-top: 0;
        position: static;
    }

    .cdn-list {
        gap: 15px;
    }

    .cdn-table-item {
        gap: 15px;
    }

    .cdn-list {
        flex-wrap: nowrap;
        overflow: auto;
    }

    .cdn-list-item {
        width: 160px;
        flex: none;
    }

}

@media(min-width:768px) {
    .pc-show {
        display: none;
    }

    .mobile-show {
        display: block;
    }

    .cdn-header {
        gap: 20px;
        padding-top: 0;
        margin-top: 0;
        position: static;
    }

    .cdn-list {
        gap: 20px;
    }

    .cdn-table-item {
        gap: 20px;
    }

}

@media(min-width:992px) {
    .pc-show {
        display: block;
    }

    .mobile-show {
        display: none;
    }

    .cdn-header {
        gap: 20px;
        padding-top: 30px;
        margin-top: 50px;
        position: sticky;
    }

    .cdn-list {
        gap: 20px;
    }

    .cdn-table-item {
        gap: 20px;
    }

    .cdn-list-item:hover {
        transform: translate(0, -5px);
        -webkit-transform: translate(0, -5px);
        -moz-transform: translate(0, -5px);
        -o-transform: translate(0, -5px);
        -ms-transform: translate(0, -5px);
        box-shadow: 0px 2 8px 0px rgba(0, 0, 0, 0.1);
    }
}

@media(min-width:1200px) {
    .pc-show {
        display: block;
    }

    .mobile-show {
        display: none;
    }

    .cdn-header {
        gap: 32px;
        padding-top: 30px;
        margin-top: 50px;
        position: sticky;
    }

    .cdn-list {
        gap: 32px;
    }

    .cdn-table-item {
        gap: 32px;
    }

    .cdn-list-item:hover {
        transform: translate(0, -5px);
        -webkit-transform: translate(0, -5px);
        -moz-transform: translate(0, -5px);
        -o-transform: translate(0, -5px);
        -ms-transform: translate(0, -5px);
        box-shadow: 0px 2 8px 0px rgba(0, 0, 0, 0.1);
    }
}