* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    cursor: pointer;
    text-decoration: none;
}
body {
    width: 100%;
    min-width: 1200px;
    font-family: Microsoft YaHei;
}
body, button, input, select, textarea {
    /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font: 12px/1 "微软雅黑", Tahoma, Helvetica, Arial, sans-serif;
    /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    background: transparent;
}
button, input, select, textarea {
    font-size: 100%;
    /* 使得表单元素在 ie 下能继承字体大小 */
    border: none;
    outline: none;
}
button {
    cursor: pointer;
}
input::-ms-input-placeholder {
    color: #c2c2c2;
}
input::-webkit-input-placeholder {
    /* webkit 浏览器*/
    color: #c2c2c2;
}
input::-moz-placeholder {
    /* 火狐浏览器 */
    color: #c2c2c2;
}
textarea::-ms-input-placeholder {
    color: #c2c2c2;
}
textarea::-webkit-input-placeholder {
    /* webkit 浏览器*/
    color: #c2c2c2;
}

textarea::-moz-placeholder {
    /* 火狐浏览器 */
    color: #c2c2c2;
}
/* 设置input placeholder 样式 */
select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
select::-ms-expand {
    display: none;
}
/*将默认的select选择框样式清除*/
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
em, i {
    font-style: normal;
}
ul, ol {
    list-style: none;
}
/* 页面头部 */
.header {
    width: 100%;
    height: 124px;
    background-color: #fff;
    min-width: 1200px;
}
.header-box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 10px 0 0 0;
}

.header-l {
    flex: 1;
    display: flex;
}

.h-logo {
    width: 478px;
    height: 67px;
    margin-top: 18px;
}

.h-company {
    width: 345px;
    height: 46px;
    margin: 30px 0 0 20px;
}

.h-text {
    width: 380px;
    height: 27px;
    color: rgba(0, 81, 162, 1);
    font-size: 27px;
    line-height: 27px;
    overflow: hidden;
}

.h-text-small {
    width: 343px;
    height: 15px;
    color: rgba(0, 81, 162, 1);
    font-size: 11px;
    line-height: 15px;
    margin-top: 9px;
    overflow: hidden;
}

.header-r {
    width: 525px;
    display: flex;
}

.header-search {
    width: 409px;
    height: 50px;
    position: relative;
    background: #ECECEC;
    border: 1px solid #E3E3E3;
    border-radius: 24px;
    margin-right: 25px;
    margin-top: 26px;
}

.header-search-input {
    display: block;
    width: 409px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    padding: 0;
    padding-left: 20px;
    max-width: 80%;
}

.header-search-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 13px;
    right: 25px;
}

.header-scan {
    width: 97px;
}

.scan-logo {
    width: 100%;
    text-align: center;
}

.scan-logo img {
    width: 80px;
    height: 80px;
}

.scan-text {
    width: 100%;
    text-align: center;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    white-space: nowrap;
    line-height: 14px;
    margin-top: 4px;
}
/* 页面导航 */
.nav {
    width: 100%;
    min-width: 1200px;
    height: 60px;
    background-color: #1473CA;
}

.nav-box {
    width: 1200px;
    height: 60px;
    margin: 0 auto;
    line-height: 60px;
    color: #fff;
    position: relative;
    display: flex;
}
.nav-unit {
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    width: 200px;
    text-align: center;
    position: relative;
    color: #fff;
}

.nav-unit p {
    height: 60px;
    overflow: hidden;
}
.nav-unit.active, .nav-unit:hover {
    background: #0038A3;
    color: #fff;
}

.nav-unit:hover .nav-list {
    display: block;
}
.nav-list {
    position: absolute;
    top: 60px;
    left: 0;
    display: none;
    background: #1373ca;
    box-shadow: 0px 2px 6px 0px rgba(15, 15, 25, 0.18);
    border-radius: 0;
    width: 200px;
    z-index: 3000;
}
.nav-list-text {
    display: block;
    text-decoration: none;
    position: relative;
    padding: 0 38px;
    padding-left: 50px;
    font-size: 16px;
    white-space: nowrap;
    border-bottom: 1px solid #2f81d0;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    color: #fff;
}
.nav-list-text::after {
    position: absolute;
    content: "";
    top: 26px;
    left: 24px;
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
}
.nav-list-text:hover::after {
    opacity: 1;
}
.nav-list-text:hover {
    color: #FEFEFE;
    background-color: #0338a3;
}
.nav-unit:hover {
    display: block;
}
.nav-detail-box {
    margin-top: 24px;
}
.nav-detail-box-title {
    font-size: 20px;
    line-height: 23px;
    font-weight: bold;
    color: #111111;
    position: relative;
    text-align: left;
    height: 23px;
}
.nav-detail-box-title::before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 23px;
    background: #1473CA;
    margin-right: 15px;
    vertical-align: top;
}
.nav-detail-box-info {
    margin-top: 18px;
    width: 100%;
}
/* 页面广告 */
.new_update {
    /*background: url(../images/bannar-gaikuang.png) no-repeat;*/
    margin: 0;
    height: 10px;
    background-position: center center;
    background-size: 100%;
    background-size: cover;
}
.banner {
    background-color: rgba(25, 107, 182, 1);
    height: 800px;
    width: 100%;
    min-width: 1200px;
}

.banner-wrap {
    height: 800px;
    width: 100%;
    margin: 0;
    position: relative;
}

.banner-wrap img {
    width: 100%;
    height: 100%;
}

.banner-text {
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-size: 42px;
    font-family: FZZDHJW--GB1-0;
    text-align: center;
    line-height: 42px;
    height: 187px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    position: absolute;
    z-index: 2000;
    top: 140px;
}

.banner .swiper-pagination-bullet-active {
    background-color: #fff;
}

.banner .swiper-button-next {
    background: url(../images/next.png);
    width: 32px;
    height: 32px;
}

.banner .swiper-button-prev {
    background: url(../images/prev.png);
    width: 32px;
    height: 32px;
}

.banner .swiper-button-next:hover, .banner .swiper-button-prev:hover {
    opacity: 0.6;
}
/* 页面底部 */
.footer {
    background-color: #000;
    height: 380px;
    width: 100%;
    min-width: 1200px;
    color: #fff;
    /*background: url(../images/home/footer.png) 0 0 no-repeat;*/
    padding-top: 26px;
}

.footer-box {
    width: 1200px;
    margin: 0 auto;
}

.footer-up {
    width: 100%;
    display: flex;
}

.footer-l {
    flex: 1;
}

.footer-title {
    width: 100%;
    display: flex;
}

.c-icon {
    width: 500px;
}

.c-icon img {
    width: 478px;
    height: 64px;
}

.c-text {
    flex: 1;
}

.c-text-up {
    margin-top: 10px;
    width: 100%;
    height: 24px;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 750px;
}

.c-text-down {
    width: 100%;
    height: 10px;
    color: rgba(255, 255, 255, 1);
    font-size: 10px;
    line-height: 10px;
    margin-top: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 750px;
}

.footer-out {
    width: 100%;
}

.footer-list {
    width: 100%;
    margin-top: 19px;
    height: 16px;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 750px;
}

.footer-down {
    width: 100%;
    margin: 52px 0 52px 0;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 17px;
    height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 1000px;
}

.footer-r {
    width: 440px;
    padding-left: 18px;
}

.footer-you {
    width: 100%;
    height: 23px;
    font-size: 22px;
    line-height: 23px;
    margin-top: 19px;
}
/* 设置下拉按钮的样式 */
.dropbtn {
    background-color: #fff;
    width: 100%;
    line-height: 36px;
    height: 100%;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0 20px;
}
/* 容器 <div> - 需要放置下拉内容 */
.dropdown {
    position: relative;
    width: 420px;
    height: 36px;
    margin-top: 16px;
}
/* 下拉内容（默认隐藏） */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
/* 下拉链接 */
.dropdown-content a {
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
}
/* 悬停时更改下拉链接的颜色 */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* 悬停时显示下拉菜单 */
.dropdown:hover .dropdown-content {
    display: block;
}
/*公共模块：企业概况，新闻中心，业务范围start*/
body {
    background-color: #F5F4F4;
}

.enterprise {
    width: 100%;
    min-width: 1200px;
}

.enterprise-box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.enterprise-l {
    width: 294px;
    margin-right: 5px;
    padding-bottom: 20px;
}

.enterprise-r {
    flex: 1;
    padding: 0 5px;
    overflow-y: auto;
}

.enterprise-info {
    width: 100%;
    height: 200px;
    line-height: 200px;
    background: #0038A3;
    text-align: center;
    font-size: 36px;
    color: #FFFFFF;
    overflow: hidden;
    margin-bottom: 10px;
}

.e-title-small {
    width: 100%;
    max-width: 890px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    color: #666666;
    padding: 0 23px;
    background-color: #fff;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.e-title-small img {
    width: 11px;
    height: 17px;
    float: left;
    margin: 22px 10px 0 0;
}

.e-out {
    width: 100%;
    padding: 0 10px;
    background-color: #fff;
}

.e-title-big {
    width: 100%;
    max-width: 870px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    color: #111;
    padding: 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.e-title-big:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 0;
    border-bottom: 1px solid #ccc;
    transform: scale(0.5) translate(-50%, -50%);
}

.slist {
    width: 100%;
    margin-top: 10px;
    background-color: #fff;
}

.slist-title-change {
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: #333;
    font-size: 18px;
    padding: 0 23px;
    position: relative;
    display: block;
    overflow: hidden;
    position: relative;
}
.slist-title-change:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 528px;
    height: 0;
    border-bottom: 1px solid #ccc;
    transform: scale(0.5) translate(-50%, -50%);
}

.slist-active {
    background-color: #8E9EBE;
    color: #fff;
}

.e-go {
    width: 0;
    right: 0;
    border-top: 8px solid transparent;
    border-left: 8px solid #fff;
    border-bottom: 8px solid transparent;
    position: absolute;
    right: 25px;
    top: 25px;
    display: none;
}

.slist-active .e-go {
    display: block;
}

.slist-title {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #0038A3;
    font-size: 18px;
    color: #fff;
    padding: 0 28px;
}

.slist-main {
    width: 100%;
    padding: 0 15px 10px;
    background-color: #fff;
}

.slist-unit {
    width: 100%;
    max-width: 290px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: #333;
    display: block;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.slist-unit:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 0;
    border-bottom: 1px solid #ccc;
    transform: scale(0.5) translate(-50%, -50%);
}

.slist-img-unit {
    width: 100%;
    display: block;
}

.slist-img {
    width: 100%;
    text-align: center;
}

.slist-img img {
    width: 100%;
    height: 180px;
}

.slist-text {
    width: 100%;
    max-width: 260px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    font-size: 16px;
    color: #222;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slist-main-change {
    padding-top: 15px;
}
/*公共模块：企业概况，新闻中心，业务范围end*/
/*公共模块：分页start*/
.page_ctrl {
    text-align: center;
    margin: 0 auto;
    padding: 50px 0;
}

.page_ctrl * {
    line-height: 26px;
}

.page_ctrl a {
    margin: 0 3px;
    min-width: 30px;
    background: #F9F9F9;
    border: 1px solid #c2c2c2;
    color: #333;
    cursor: pointer;
    outline: none;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
}

.page_ctrl a:hover {
    border: 1px solid #0038A3;
    color: #0038A3;
}

.page_ctrl .btn_dis {
    cursor: default;
    background: #F9F9F9;
    color: #333;
    border: 1px solid #c2c2c2;
    padding: 0 5px;
}

.next_page, .to_page_num, .prev_page {
    padding: 0 5px;
}

.page_ctrl .btn_dis:hover {
    border: 1px solid #0038A3;
    color: #0038A3;
}

.page_ctrl .current_page {
    border: 1px solid #0038A3;
    color: #0038A3;
}

.page_ctrl .input_page_num {
    width: 30px;
    height: 26px;
    margin: 0 3px;
    padding: 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #333;
    outline: none;
}

.page_ctrl .page_total, .page_ctrl .page_text {
    color: #333;
    font-size: 13px;
}
/*公共模块：分页end*/