/* 背景内容、tab */
.service-bg {
    background-image: url(../img/service-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 410px;
    position: relative;
}

.bg-wrap h2 {
    font-size: 60px;
    color: #fff;
    text-align: center;
    padding-top: 126px;
    font-weight: 700;
}

.bg-wrap .tab-wrap {
    width: 1400px;
    position: absolute;
    bottom: -49.5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.bg-wrap .tab-nav {
    width: 100%;
    display: flex;
    border: 1px solid rgba(0, 21, 85, 0.99);
    border-radius: 7px;
}

.bg-wrap .tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(0, 21, 85, 0.99);
    width: 25%;
    border: none;
    height: 99px;
    text-align: center;
    background-color: #fff;
    font-size: 28px;
}

.bg-wrap .tab-btn:nth-child(1) {
    border-radius: 7px 0 0 7px;
}

.bg-wrap .tab-btn:last-child {
    border-radius: 0px 7px 7px 0px;
}

.bg-wrap .tab-btn:nth-child(2) {
    border-left: 1px solid rgba(0, 21, 85, 0.99);
    border-right: 1px solid rgba(0, 21, 85, 0.99);
}

.bg-wrap .tab-btn:nth-child(3) {
    border-right: 1px solid rgba(0, 21, 85, 0.99);
}

.bg-wrap .tab-btn .icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 43px;
}

.bg-wrap .tab-btn:nth-child(1) .icon {
    width: 35.54px;
    height: 59.72px;
}

.bg-wrap .tab-btn:nth-child(2) .icon {
    width: 35.54px;
    height: 59.72px;
}

.bg-wrap .tab-btn:nth-child(3) .icon {
    width: 56.21px;
    height: 47.57px;
}

.bg-wrap .tab-btn:nth-child(4) .icon {
    width: 63.52px;
    height: 40.86px;
}

.bg-wrap .tab-btn.active {
    color: #fff;
}

.bg-wrap .tab-btn.active .icon {
    /* filter: brightness(0) invert(1); */
}

.bg-wrap .tab-btn.active {
    background-color: rgba(0, 21, 85, 0.99);
}

.bg-wrap .tab-content {
    width: 100%;
}

@media (max-width: 768px) {
    .bg-wrap h2 {
        font-size: 17px;
        padding-top: 44px;
    }

    .bg-wrap .tab-wrap {
        width: 100%;
        padding: 0 20px;
        position: absolute;
        bottom: -25px;
    }

    .bg-wrap .tab-btn {
        height: 50px;
        font-size: 12px;
        text-align: left;
        padding: 5px;
    }

    .bg-wrap .tab-btn .icon {
        margin-right: 5px;
    }

    .bg-wrap .tab-btn:nth-child(1) .icon {
        width: 12px;
        height: 15px;
    }

    .bg-wrap .tab-btn:nth-child(2) .icon {
        width: 12px;
        height: 15px;
    }

    .bg-wrap .tab-btn:nth-child(3) .icon {
        width: 14px;
        height: 15px;
    }

    .bg-wrap .tab-btn:nth-child(4) .icon {
        width: 18px;
        height: 17px;
    }

    .service-bg {
        height: 150px;
    }
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.card {
    margin-top: 128px;
}

@media (max-width: 768px) {
    .card {
        margin-top: 0px;
    }
}

/* 常见问题 */
.article-list {
    display: flex;
    flex-direction: column;
}

.article-card {
    height: 404px;
    display: flex;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 7px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 45px;
}

.article-card:last-child {
    margin-bottom: 0px;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-image {
    width: 539px;
    height: 100%;
    object-fit: cover;
}

.article-content {
    flex: 1;
    padding: 0px 59px 31px 161px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-date {
    font-weight: 700;
    color: rgba(0, 21, 85, 0.99);
    font-size: 50px;
    margin-top: 70px;
}

.article-year {
    color: #eee;
    font-weight: 400;
    font-size: 33px;
}

.article-desc {
    font-size: 30px;
    color: #333;
    margin-top: 78px;
    line-height: 45px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-arrow {
    color: #001555;
    display: block;
    text-align: right;
}

.card .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 75px 0px 75px;
}

.card .page-btn {
    width: 42px;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid #001555;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #001555;
}

.card .page-btn:hover {
    background: #001555;
    color: #fff;
}

@media (max-width: 768px) {
    .card .pagination {
        gap: 12px
    }

    .card .page-btn {
        width: 30px;
        height: 16px;
    }

    .card .page-btn span {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .article-list {
        margin-top: 20px;
    }

    .article-card {
        height: 120px;
        width: 100%;
        margin-bottom: 20px;
    }

    .article-image {
        width: 40%;
    }

    .article-content {
        flex: 1;
        padding: 10px 15px;
        font-size: 13px;
    }

    .article-date {
        font-size: 15px;
        margin-top: 0px;
    }

    .article-year {
        font-size: 12px;
    }

    .article-desc {
        margin-top: 10px;
        line-height: 21px;
        font-size: 13px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .article-arrow {
        font-size: 13px !important;
    }

    .card .pagination {
        margin: 20px 0px 0px;
    }
}

/* 资料下载 */
.information-card {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 404px;
    position: relative;
    border-radius: 7px;
    margin-bottom: 6px;
    padding-left: 125px;
}

.information-card .text-section {
    height: 100%;
    color: #fff;
}

.information-card .title {
    font-weight: 700;
    color: #ffffff;
    font-size: 28px;
    padding-top: 121px;
}

.information-card .icon {
    width: 65.42px;
    height: 47.57px;
    margin-top: 74px;
}

.information-card:last-child {
    margin-bottom: 0px;
}

@media (max-width: 768px) {

    .information-card {
        height: 100px;
    }

    .information-card .text-section {
        padding: 20px 0px 20px 20px;
    }

    .information-card .title {
        font-size: 13px;
        padding-top: 5px;
    }

    .information-card .icon {
        width: 20px;
        height: 16px;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {

    .information-card {
        height: 100px;
        padding-left: 20px;
    }

    .contact {
        margin-top: 40px;
    }

    .information {
        margin-top: 20px;
    }
}