html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    width: 100%;
    min-width: 1180px;
    min-height: 800px;
}

.body-container {
    height: 100%;
    width: 100%;
}

.head-container {
    padding: 24px 0 0;
}

.logo-box {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.search-input {
    background-color: #fff;
    border: 1px solid #7EAED6;
    border-radius: 4px;
    flex: 1;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.search-input::placeholder {
    color: #888;
}

.search-button {
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tabs-container {
    margin: 20px auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabs-container .tabs {
    background-color: #005BAC;
    color: #FEFEFE;
    list-style: none;
    padding: 0 28px;
    margin: 0 auto;
    display: flex;
}

.tabs-container .tabs .tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 540;
    letter-spacing: 0.02rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.tabs-container .tabs .tab>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 18px;
    color: #fff;
    height: 100%;
    width: 100%;
}

.tabs-container .tabs .tab img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.tabs-container .tabs .tab:hover {
    background-color: #007bff;
    color: #fff;
}

.tabs-container .tabs .tab .active {
    background-color: #007bff;
    color: #fff;
    border-bottom: 2px solid #007bff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #317BBC;
    opacity: 0.9;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 14px;
    border-bottom: 2px solid #7AABD6;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #FEFEFE;
    display: block;
}

.dropdown-menu li:hover {
    background-color: #007bff;
    font-weight: 540;
    color: #fff;
}

.tab.dropdown:hover .dropdown-menu {
    display: block;
}

.tabs-container .top-banner-box {
    min-height: 420px;
}

.tab-content {
    padding: 20px 0 0;
    background-color: #fff;
    position: relative;
    min-height: 860px;
}

/* 显示数据 */
.tab-content .info-content {
    position: absolute;
    left: 8%;
    top: -120px;
    width: 84%;
    margin: auto;
    height: 700px;
    display: flex;
}

.tab-content .info-content .left-box {
    min-width: 240px;
    height: 700px;
    position: relative;
    overflow: hidden;
    z-index: 9999;
}

.tab-content .info-content .left-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0861B1, #247AC7, #4092DB);
    transform: skewY(-8deg);
    transform-origin: top right;
    z-index: -9999;
}

.tab-content .info-content .left-box .left-tit {
    height: 110px;
    text-align: right;
    font-family: "黑体", sans-serif;
    display: flex;
    font-weight: bold;
    font-size: 32px;
    color: #fff;
    letter-spacing: 0.1rem;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-content .info-content .left-box .menu-box {
    color: #FFFEFF;
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 0 auto;
}

.tab-content .info-content .left-box .menu-box .item-menu {

    height: 40px;
    line-height: 40px;
    margin-bottom: 16px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.tab-content .info-content .left-box .menu-box .item-menu>a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFD;
}

.tab-content .info-content .left-box .menu-box .item-menu>a:hover {
    color: #0861B1;
}

.tab-content .info-content .left-box .menu-box .item-menu:hover {
    background-image: url("../images/department/menu-act.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #0861B1;
    font-weight: bold;
    letter-spacing: 0.05rem;
}

.tab-content .info-content .left-box .menu-box .item-menu .active {
    background-color: #007bff;
    color: #fff;
    border-bottom: 2px solid #007bff;
}

.tab-content .info-content .right-box {
    margin-left: 20px;
    min-width: 80%;
}

.tab-content .info-content .right-box .right-tit {
    font-family: "黑体", sans-serif;
    margin-top: 120px;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    color: #333333;
}

.tab-content .info-content .right-box .right-img-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.tab-content .info-content .right-box .right-img-box .img-box_1 {
    width: 34%;
    height: 68px;
    background-image: url("../images/policy/1.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "黑体", sans-serif;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.1rem;
    color: #FFFFFD;
}

.tab-content .info-content .right-box .right-img-box .img-box_1>a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    line-height: 100%;
    text-align: center;
    font-family: "黑体", sans-serif;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.1rem;
    color: #FFFFFD;
}

.tab-content .info-content .right-box .right-img-box .img-box_2 {
    width: 30%;
    height: 50px;
    background-image: url("../images/policy/2.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "黑体", sans-serif;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.1rem;
    color: #005BAA;
}

.tab-content .info-content .right-box .right-img-box .img-box_2>a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    line-height: 100%;
    text-align: center;
    font-family: "黑体", sans-serif;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.1rem;
    color: #005BAA;
}

.tab-content .info-content .right-box .right-img-box .img-box_3 {
    width: 30%;
    height: 50px;
    background-image: url("../images/policy/2.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "黑体", sans-serif;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.1rem;
    color: #005BAA;
}

.tab-content .info-content .right-box .right-img-box .img-box_3>a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    line-height: 100%;
    text-align: center;
    font-family: "黑体", sans-serif;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.1rem;
    color: #005BAA;
}


.tab-content .info-content .right-box .menu-content {
    background-color: #F2F7FB;
    height: 530px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.tab-content .info-content .right-box .menu-content .menu-info-box {
    padding: 24px 24px 24px 36px;
}

.tab-content .info-content .right-box .menu-content .menu-info-box .info-tit {
    font-family: "黑体", sans-serif;
    text-align: center;
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    letter-spacing: 0.1rem;
    margin: 6px 0 20px;
}

.tab-content .info-content .right-box .menu-content .menu-info-box .info-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 18;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 15px;
    color: black;
    letter-spacing: 0.03rem;
    font-weight: 540;
    line-height: 24px;
    text-indent: 2rem;
}

.tab-content .info-content .right-box .menu-content .menu-info-box .info-desc>p {
    margin: 0 8px;
}


.tab-content .info-content .right-box .menu-content .menu-info-box .item-list-box {
    text-decoration: none;
    display: inline-block;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 16px;
    color: black;
    font-weight: 540;
    letter-spacing: 0.03rem;
}

.tab-content .info-content .right-box .menu-content .menu-info-box .item-list-box .left-list-box {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 80%;
}

.tab-content .info-content .right-box .menu-content .menu-info-box .item-list-box .right-list-box {
    width: 160px;
    text-align: right;
}

.tab-content .info-content .right-box .menu-content .menu-info-box .item-list-box::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 14px;
    bottom: 13px;
    width: 4px;
    background-color: #005BAC;
}

.tab-content .info-content .right-box .menu-content .menu-info-box .item-list-box:hover {
    background-color: #005BAC;
    padding: 0 6px;
    color: #FFFEFF;
    cursor: pointer;
}

/* 底部 */
.tab-content .footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 189px;
    background-image: url('../images/footer_banner.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.tab-content .footer .content {
    display: flex;
    flex-direction: column;
     align-items:center;
    flex-direction:column;
}

.tab-content .footer .content .contentTop {
    margin: 40px auto 20px;
}

.tab-content .footer .content .contentBottom {
    margin: auto;
    color: #fff;
    font-family: "黑体", sans-serif;
    font-weight: 300;
    font-size: 14px;
}

.tab-content .footer .content .contentBottom .item-tip {
    margin-left: 30px;
}