@charset "utf-8";
@font-face {
	font-family: 'montserrat_Regular';
	src: url('/Other/en/an/res/fonts/MONTSERRAT-REGULAR.TTF') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'montserrat_Medium';
	src: url('/Other/en/an/res/fonts/MONTSERRAT-MEDIUM.TTF') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'montserrat_Bold';
	src: url('/Other/en/an/res/fonts/MONTSERRAT-BOLD.TTF') format('woff');
	font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    margin: 0px auto;
    font-size: 16px;
    color: #333;
    width: 100%;
    zoom: 1;
    padding-top: 100px;
    /*text-align: justify;
    text-align-last: right;*/
}

body.editor,
input,
body.editor * {
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right !important;
}

body.editor img{display:block;margin:0 auto;}

ul,
li,
form,
dl,
dt,
dd,
div,
ul,
li,
p,
em,
i,
address {
    font-style: normal;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;
}

select,
input,
textarea,
button {
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #333;
    font-family: Microsoft YaHei, arial, sans-serif;
}

input:focus {
    outline: none;
}

input,
button,
select,
textarea {
    border: 0px;
    outline: none;
    /*-webkit-appearance:none;*/
    /*强制去除表单自带的样式*/
}

button {
    cursor: pointer;
}

textarea {
    resize: none;
    /*-webkit-appearance:none;*/
    /*强制去除textarea自带的样式*/
}

textarea,
input,
select {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
fxigcaption,
address {
    display: block;
}


/*html5设置*/

figure,
figcaption {
    margin: 0px;
    padding: 0px;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

img {
    max-width: 100%;
    border: none;
    border: 0;
    vertical-align: middle;
}

a {
    color: #333333;
    text-decoration: none;
    transition: all ease 0.3s;
}

a:focus {
    outline: none;
    -moz-outline: none;
}

a:hover {
    text-decoration: none;
    color: #015198;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}


/*单行文本省略号*/

.dot {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dot2,
.dot3,
.dot4 {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.dot2 {
    -webkit-line-clamp: 2;
}


/*多行文本省略号*/

.dot3 {
    -webkit-line-clamp: 3;
}

.dot4 {
    -webkit-line-clamp: 4;
}


/*input字体*/

 :-moz-placeholder {
    color: #999999;
}

 ::-moz-placeholder {
    color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999999;
}

select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #d9d9d9;
    text-indent: 1em;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    color: #999999;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(/an/res/images/selectarr.png) no-repeat scroll 95% center transparent;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 14px;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}


/*网页滚动条*/

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    -webkit-overflow-scrolling: touch;
    background-color: #666;
}

 ::-webkit-scrollbar-track {
    background-color: #cae0ed;
}

 ::-webkit-scrollbar-thumb {
    border-radius: 2px;
    width: 6px;
    height: 18px;
    background-color: #015198;
}

 ::-webkit-scrollbar-button {
    height: 0px;
    background-color: #cae0ed;
}


/*effict*/

.Scale-img {
    overflow: hidden;
    cursor: pointer;
    zoom: 1;
    overflow: hidden;
}

.Scale-img img,
.Scale-img span {
    opacity: 1;
    -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
    transition: opacity 0.6s, transform 0.6s;
}

.Scale-img:hover img,
.Scale-img:hover span {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    top: 0px;
    left: 0px;
}

.effict {
    transition: all ease 0.3s;
}

.imgbox {
    overflow: hidden;
    position: relative;
    /*background:url(/an/res/uploadfiles/nopic.jpg) center center no-repeat; background-size:contain;*/
}

.imgbox span {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgbox img {
    width: auto !important;
    max-height: 100%;
}


/*pages*/

.Pages {
    text-align: center;
    font-family: montserrat_Regular;
    font-size: 18px;
    color: #000000;
    overflow: hidden;
}

.Pages a {
    height: 50px;
    padding: 0 10px;
    display: inline-block;
    line-height: 50px;
    color: #666;
    margin: 0 2px;
}

.Pages a:hover,
.Pages a.a_cur {
    background-color: #004098;
    color: #fff;
    color: #ffe100;
    font-family: montserrat_Bold;
}

.Pages .p_page .num a {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 0;
    border: solid 1px #f3f6fa;
    color: #000;
}

.Pages .num {
    font-style: normal;
    float: left;
}

.Pages .p_count {
    height: 50px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    line-height: 50px;
}

.Pages .p_page .num a.a_cur,
.Pages .p_page .num a:hover {
    border: 1px solid #004098;
    background-color: #004098;
    color: #ffe100;
    font-family: montserrat_Bold;
}

.Pages .p_page a {
    height: 50px;
    border: solid 1px #004098;
    box-sizing: border-box;
    font-family: montserrat_Regular;
    font-size: 18px;
    color: #004098;
    line-height: 48px;
    direction: rtl;
    unicode-bidi: isolate;
}

.Pages .p_page .a_prev,
.Pages .p_page .a_next {
    float: right;
    width: 10%;
    height: 50px;
    border: solid 1px #004098;
}

.Pages .p_page .a_prev:hover,
.Pages .p_page .a_first:hover,
.Pages .p_page .a_next:hover,
.Pages .p_page .a_end:hover {
    border: 1px solid #004098;
    background: #004098;
    color: #fff;
}

@media(max-width:480px) {
    .Pages .p_page a {
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
    .Pages .p_page .num a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
    .Pages .p_page .a_prev,
    .Pages .p_page .a_next {
        float: right;
        width: 20%;
        height: 30px;
        padding: 0;
    }
}


/*pages end*/

.Contain {
    width: 96%;
    max-width: 1860px;
    margin: 0 auto;
}

.w1600 {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
}

.w1400 {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
}

@media(max-width:1024px) {
    body {
        font-size: 14px;
        padding-top: 60px;
    }
}

@keyframes move {
    0%,
    65% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    70% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    75% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    80% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    85% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    90% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    95% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes move {
    0%,
    65% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    70% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    75% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    80% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    85% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    90% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    95% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}


/*Top*/

.Header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 100;
    transition: all 0.3s;
    z-index: 9999;
    transition: all .5s;
    -webkit-transition: all .5s;
    /* position: relative; */
}

.Header.fix {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.Header .m-btn {
    display: none;
    cursor: pointer;
    padding: 15px 5px;
    border-radius: 5px;
    z-index: 999;
    margin-top: 15px;
    margin-left: 10px;
}

.Header .m-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #004098;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.Header .m-btn span::before,
.m-btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background: #004098;
    position: absolute;
    left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.Header .m-btn span:before {
    top: -8px;
}

.Header .m-btn span:after {
    bottom: -8px;
}

.Header .m-btn.active span {
    background: transparent;
}

.Header .m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
    width: 24px;
}

.Header .m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
    width: 24px;
}

.top_right {
    margin-top: 25px;
    display: flex;
}

.Search {
    position: relative;
}

.Search .Searchico {
    cursor: pointer;
    color: #fff;
    text-align: center;
    line-height: 31px;
    border-radius: 50%;
    display: none;
}

.Search .Searchico img {
    width: 30px;
    vertical-align: middle;
}

.Search .Searchico .close {
    display: none;
}

.Search .Searchico.on .search {
    display: none;
}

.Search .Searchico.on .close {
    display: inline-block;
}

.Search .searchbox {
    line-height: 50px;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    z-index: 999;
    width: 160px;
    height: 50px;
    border-radius: 25px;
    border: solid 1px #ccd9ea;
    overflow: hidden;
    box-sizing: border-box;
    padding-left: 32px;
    background: #fff;
}

.Search .searchbox .input {
    width: 100%;
    height: 48px;
    font-size: 12px;
    color: #333;
    float: left;
}

.Search .searchbox .input::-webkit-input-placeholder {
    color: #808080;
    font-size: 16px;
}

.Search .searchbox .btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 50px;
    background: none;
}

.Search .searchbox .btn img {}

.Search .searchbox.on {
    opacity: 1;
    visibility: visible;
    top: 170px;
}

.top_right .SelectBox {
    float: left;
    position: relative;
    cursor: pointer;
    font-family: montserrat_Bold;
    font-size: 16px;
    letter-spacing: 0px;
    color: #ffe100;
    margin-left: 10px;
}

.top_right .SelectBox .SelectTxt span {
    display: block;
    padding-right: 15px;
    border-radius: 25px;
    width: 70px;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    background-color: #004098;
    background: #004098 url(/an/res/images/arr.png) no-repeat right 16px center;
    padding: 0 20px;
}

.top_right .SelectBox .SelectTxt span.on {
    background: #004098 url(/an/res/images/arr_t.png) no-repeat right 16px center;
}

.top_right .SelectBox:hover {}

.top_right .SelectBox .SelectUl {
    position: absolute;
    left: 0;
    right: 0;
    top: 102%;
    z-index: 999;
    background: #004098;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 5px 0;
    z-index: 999;
}

.top_right .SelectBox .SelectUl .ul li a {
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border: none;
}

.top_right .SelectBox .SelectUl .ul li:hover a {
    background: rgba(34, 108, 226, 0.08);
}

.top_right .SelectBox .SelectUl .ul li.on a {
    color: #ffe100;
}

.Header .Logo {
    padding: 20px 0;
}

.MainNav {
    position: relative;
    float: right;
    text-align: right;
    margin-top: 20px;
}

.MainMenu {
    background-color: #ffffff;
}

.MainNav ul::after {
    content: '';
    display: block;
    clear: both;
}

.MainNav ul li {
    position: relative;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    margin-right: 1.6vw;
}

.MainNav ul li#nav1 {
    display: none
}

.MainNav ul li:last-child:after {
    display: none;
}

.MainNav ul li:before {
    content: '';
    width: 0;
    height: 2px;
    background-color: #ffe100;
    position: absolute;
    bottom: 10px;
    left: 0;
    transition: all .5s;
    z-index: 9;
}

.MainNav ul li:hover:before,
.MainNav ul li.onnav:before {
    width: 100%;
}

.MainNav ul li:hover a,
.MainNav ul li.onnav a {
    color: #004098;
}

.MainNav ul li>a {
    display: block;
    font-family: montserrat_Bold;
    font-size: 18px;
    color: #333333;
    z-index: 99;
    position: relative;
        direction: rtl;
    unicode-bidi: isolate;
}

.MainNav ul li .NavPull {
    position: absolute;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow: hidden;
}

.MainNav ul li .NavPull dl dd {
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    padding: 0 10px;
}

.MainNav ul li .NavPull dl dd a {
    display: block;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 40px;
    letter-spacing: 0px;
    color: #333333;
    transition: none;
}

.MainNav ul li .NavPull dl dd:hover {
    background-color: #004098;
}

.MainNav ul li .NavPull dl dd:hover a {
    color: #fff;
}

.MainNav ul li .NavPull dl dd:first-child a {
    border-top: none;
}

@media ( max-width:1760px) {
    .Header .auto {
        padding: 0 2% 0 3.2%;
    }
    .Header .Logo {
        padding: 30px 0;
    }
    .Header .Logo img {
        height: 50px;
    }
    .MainNav ul li>a {
        font-size: 16px;
    }
}

@media ( max-width:1580px) {
    .Header .Logo img {
        height: 40px;
    }
    .MainNav ul li .NavPull dl dd a {
        font-size: 14px;
    }
    .MainNav ul li>a {
        font-size: 15px;
    }
}

@media ( max-width:1460px) {
    .Header .Logo img {
        height: 35px;
    }
    .MainNav ul li {
        margin-right: 1.1vw;
    }
}

@media ( max-width:1280px) {
    .Search .searchbox {
        width: 190px;
    }
}

@media(max-width:1200px) {
    /* .MainNav ul li>a {
            font-size: 18px;
        } */
    .MainNav {
        width: 100%;
        margin-top: 0;
    }
    .Header .Logo {
        padding: 20px 0;
    }
}

@media(max-width:1024px) {
    .top_right {
        margin-top: 10px;
    }
    .top_right .SelectBox {
        height: 40px
    }
    .top_right .SelectBox .SelectTxt span {
        height: 40px;
        line-height: 40px;
    }
    .Search {
        float: left;
    }
    .Search .search-box .text {
        float: left;
    }
    .Search .Searchico {
        display: block;
        margin: 0;
        padding-top: 5px;
    }
    .Search .searchbox {
        position: absolute;
        top: 60px;
        right: 0;
        opacity: 0;
        visibility: hidden;
        color: #333;
        width: 0;
    }
    .Search .searchbox.on {
        opacity: 1;
        visibility: visible;
        top: 60px;
        right: 0;
        width: 260px;
    }
    .Search .searchbox .input {
        color: #333;
    }
    .Search .searchbox .btn {
        z-index: 999;
    }
    .Search .searchbox .btn img {
        top: 0;
    }
    .Header {
        position: fixed;
        height: 60px;
        line-height: 60px;
        box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    }
    .Header.fix {
        position: fixed;
    }
    .Header:after {
        display: none;
    }
    .Header .Logo {
        padding: 0;
    }
    .Header .Logo img {
        height: 40px;
    }
    .Header .m-btn {
        display: block;
    }
    .MainNav {
        width: 0;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        transition: all .5s;
        -webkit-transition: all .5s;
        overflow: hidden;
        height: calc(100vh - 60px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .MainNav ul {
        padding: 10px 0;
        height: 600px;
        overflow-y: scroll;
    }
    .MainNav ul li {
        width: 100%;
        box-sizing: border-box;
        position: relative;
        line-height: 46px;
        font-size: 15px;
        min-width: 120px;
        text-align: left;
        padding: 0 10px;
    }
    .MainNav ul li>a {
        font-size: 17px;
        line-height: 45px;
    }
    .MainNav ul li::after {
        display: none;
    }
    .MainNav ul li b {
        display: block;
        width: 46px;
        height: 46px;
        background: url(/an/res/images/more4.png) no-repeat center;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 999;
    }
    .MainNav ul li .NavPull {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-bottom: 5px;
    }
    .MainNav ul li:before {
        content: '';
        width: 0;
        height: 45px;
        position: absolute;
        top: 0;
        left: 0;
        transition: all .5s;
        z-index: 9;
    }
    .MainNav ul li .NavPull dl dd {
        line-height: 30px;
        font-size: 13px;
        text-align: left;
        padding-left: 10px;
    }
    .MainNav.show {
        width: 60%;
    }
}

@media(max-width:768px) {
    .Header {
        height: unset;
    }
    .Search .top-search-show .search-box {
        width: 200px;
    }
}

@media(max-width:480px) {
    .Header .Logo img {
        height: 28px;
    }
}

@media(max-width:414px) {}

@media(max-width:375px) {
    .Header .m-btn {
        margin-left: 4px;
    }
}


/*Top*/


/* Bottom */

.Footer {
    background: #122138 url(/an/res/images/foot_bg.jpg) top center no-repeat;
    color: #fff;
    padding: 3% 0 0;
}

.Footer a:hover {
    color: #ffe100;
}

.foot_top {
    overflow: hidden;
}

.foot_top dl {
    width: 34%;
    float: left;
}

.foot_top dl dt {
    font-family: montserrat_Bold;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 2%;
    direction: rtl;
    unicode-bidi: isolate;
}

.foot_top dl dd {
    font-family: montserrat_Regular;
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    overflow: hidden;
    direction: rtl;
    unicode-bidi: isolate;
}

/*.foot_top dl dd span {
    float: left;
}*/

.foot_top dl dd a {
    color: #ffffff;
}

.foot_top .followIco {
    float: right;
}

.foot_top .followIco .title {
    font-family: montserrat_Bold;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 35px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 10%;
}

.foot_top .followIco .f_ico {
    overflow: hidden;
}

.foot_top .followIco .f_ico li {
    float: left;
    border-radius: 30px;
    overflow: hidden;
    margin-left: 20px;
}

.foot_top .followIco .f_ico li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
}

.foot_top .followIco .f_ico li:nth-child(1) {
    background-color: #1977f3;
}

.foot_top .followIco .f_ico li:nth-child(2) {
    background-color: #0e76a9;
}

.foot_top .followIco .f_ico li:nth-child(3) {
    background-color: #2aaffe;
}

.foot_bot {
    padding: 2% 0;
    position: relative;
}

.foot_bot .copyright {
    font-family: montserrat_Regular;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
}

.foot_bot .copyright a {
    color: #ffffff;
}

.foot_bot .copyright a:hover {
    color: #ffe100;
}

.toTop {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: url(/an/res/images/op_bg.png);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -50%;
}

.toTop:hover {
    background: url(/an/res/images/op_blue.png);
}

@media(max-width:1370px) {
    .foot_top dl {
        width: 38%;
    }
}

@media(max-width:1024px) {
    .Footer {
        font-size: 14px;
    }
}

@media(max-width:768px) {}

@media(max-width:480px) {
    .foot_top dl {
        width: 50%;
    }
    .foot_top .followIco {
        width: 100%;
    }
    .foot_top .followIco .title {
        margin-bottom: 5%;
    }
    .toTop {
        width: 50px;
        height: 50px;
    }
}


/* bottom */


/*栏目页公用样式 s*/

.ColumnName {
    text-align: center;
    font-size: 15px;
    color: #fff;
    background: #015198;
    display: none;
    line-height: 38px;
    position: relative;
}

.ColumnName span {
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 22px;
}

.ColumnName .arr {
    position: absolute;
    width: 30px;
    right: 10px;
    top: 0;
    transition: all ease 0.3s;
}

.ColumnName .iconfont {
    font-size: 20px;
}

.ColumnName.on .arr {
    dis-moz-transform: translate(0, -3px) rotate(-180deg) !important;
    -ms-transform: translate(0, -3px) rotate(-180deg) !important;
    -o-transform: translate(0, -3px) rotate(-180deg) !important;
    transform: translate(0, -3px) rotate(-180deg) !important;
}


/* 二级菜单 */


/* HomeBan */

.HomeBan {}

.HomeBan .item {
    position: relative;
}

.HomeBan .item .imgbox {
    padding-top: 40.8%;
}

.HomeBan .item .txt {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 15%;
    left: 8.5%;
    z-index: 999;
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right !important;
}

.HomeBan .item .txt .txtbox {
    color: #fff;
    margin-bottom: 4%;
}

.HomeBan .item .txt .txtbox h1 {
    /* font-family: montserrat_Bold; */
    font-size: 56px;
    line-height: 66px;
    color: #004098;
    opacity: 0;
    transform: translateY(130px);
    -webkit-transform: translateY(130px);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.HomeBan .item .txt .txtbox h2 {
    /* width: 60%; */
    font-family: montserrat_Regular;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #072c5f;
    margin-top: 2%;
    opacity: 0;
    transform: translateY(150px);
    -webkit-transform: translateY(150px);
    -webkit-transition: all 1s;
    transition: all 1s;
    font-weight: normal;
    text-align: justify;
}

.HomeBan .item.slick-active .txt .txtbox h1,
.HomeBan .item.slick-active .txt .txtbox h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.HomeBan .item .txt .more {
    display: block;
    width: 220px;
    height: 64px;
    border-radius: 40px;
    border: solid 2px #004098;
    font-family: montserrat_Regular;
    font-size: 16px;
    line-height: 60px;
    color: #004098;
    background: url(/an/res/images/more4.png) center no-repeat;
    background-position-x: 67%;
    padding-right: 6%;
    box-sizing: border-box;
    text-align: center;
}

.HomeBan .item .txt .more:hover {
    color: #fff;
    background: #004098 url(/an/res/images/more3.png) center no-repeat;
    background-position-x: 67%;
}

.HomeBan .slick-dots {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    left: 8.5%;
    width: unset;
    display: inline-block;
}

.HomeBan .slick-dots li {
    width: 160px;
    margin: 0 5px;
    position: relative;
    border-radius: 0;
    border: none;
    text-align: center;
}

.HomeBan .slick-dots li:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.HomeBan .slick-dots li button {
    width: 100%;
    font-family: montserrat_Bold;
    font-size: 18px;
    color: #fff;
    border-radius: 0;
    height: 30px;
    background: none;
}

.HomeBan .slick-dots li.slick-active button {
    color: #ffe100;
}

.HomeBan .slick-dots li.slick-active:before {
    background-color: #ffe100;
}

.slider {
    overflow: hidden;
}

.HomeBan .slider .slick-prev {
    left: -80px;
}

.HomeBan .slider .slick-next {
    right: -80px;
}

.HomeBan .slider:hover .slick-prev {
    left: 20px;
}

.HomeBan .slider:hover .slick-next {
    right: 20px;
}

@media(max-width:1440px) {
    .HomeBan .item .txt .txtbox h1 {
        font-size: 42px;
    }
}

@media(max-width:1200px) {
    .HomeBan .item .txt .txtbox h1 {
        font-size: 36px;
    }
    .HomeBan .item .txt {
        width: 80%;
    }
    .HomeBan .item .txt .more {
        width: 160px;
        height: 50px;
        line-height: 50px;
        padding-left: 4%;
    }
}

@media(max-width:1024px) {
    .HomeBan .item .txt {
        top: 9%;
    }
    .HomeBan .item .txt .txtbox h1 {
        font-size: 28px;
        line-height: 50px;
    }
}

@media(max-width:768px) {
    .HomeBan .item .imgbox {
        padding-top: 48%;
    }
    .HomeBan .item .txt .txtbox h1 {
        font-size: 24px;
        line-height: 20px;
    }
    .HomeBan .item .txt .txtbox h2 {
        font-size: 16px;
        line-height: 22px;
        width: 100%;
    }
    .HomeBan .slick-dots {
        left: unset;
        right: 8.5%;
    }
    .HomeBan .slick-dots li {
        width: 40px;
    }
}

@media(max-width:480px) {
    .HomeBan .item .txt .txtbox h1 {
        font-size: 16px;
        line-height: 18px;
    }
    .HomeBan .item .txt .txtbox h2 {
        font-size: 14px;
        line-height: 20px;display:none;
    }
       .HomeBan .item .txt {height:auto;top:25%;}
    .HomeBan .item .txt .more {
        display: none;
    }
    .HomeBan .slider .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .HomeBan .slider .slick-prev {
        left: 0px;
    }
    .HomeBan .slider .slick-next {
        right: 0px;
    }
    .HomeBan .slider:hover .slick-prev {
        left: 0px;
    }
    .HomeBan .slider:hover .slick-next {
        right: 0px;
    }
}


/* HomeBan */


/* 首页内容 */

.HomeCon {}

.HomeTit {
    position: relative;
    overflow: hidden;
    margin-bottom: 2%;
    z-index: 99;
}

.HomeTit .title {
    float: right;
    width: 70%;
    text-align: right;
}

.HomeTit .title .tit {
    font-family: montserrat_Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0px;
    color: #004098;
    position: relative;
    display: inline-block;
    margin-bottom: 1%;
}

.HomeTit.white .title .tit {
    color: #fff;
}

.HomeTit .title .tit span {
    position: relative;
    z-index: 10;
    direction: rtl;
    unicode-bidi: isolate;
}

.HomeTit .title .tit:after {
    content: '';
    width: 100%;
    height: 13px;
    background: url(/an/res/images/tit_bg.png) right no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.HomeTit .title .txt {
    font-family: montserrat_Regular;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #333333;
    direction: rtl;
    unicode-bidi: isolate;
}

.HomeTit .title .txt p {
    text-align: right !important;
    direction: rtl;
    unicode-bidi: isolate;
}

.HomeTit.white .title .txt {
    color: #fff;
}

.HomeTit .more {
    float: left;
    width: 150px;
    height: 48px;
    border-radius: 24px;
    border: solid 1px #004098;
    font-family: montserrat_Regular;
    font-size: 16px;
    line-height: 48px;
    color: #004098;
    padding: 0 2%;
    box-sizing: border-box;
    background: url(/an/res/images/more4.png) center no-repeat;
    background-position-x: 80%;
    margin-top: 20px;
    text-align:left;direction: rtl;
    unicode-bidi: isolate;
}

.HomeTit .more:hover {
    color: #fff;
    background: #004098 url(/an/res/images/more3.png) center no-repeat;
    background-position-x: 80%;
}

.HomeTit.white .more {
    border: solid 1px #fff;
    color: #fff;
    background: url(/an/res/images/more3.png) center no-repeat;
    background-position-x: 80%;
}

.HomeTit .more:hover {
    color: #004098;
    background: #fff url(/an/res/images/more4.png) center no-repeat;
    background-position-x: 80%;
}

@media ( max-width:1440px) {
    .HomeTit .title .tit {
        font-size: 40px;
    }
}

@media ( max-width:1366px) {
    .HomeTit .title .tit {
        font-size: 30px;
    }
    .HomeTit .title .txt {
        font-size: 16px;
        line-height: 24px;
    }
}

@media ( max-width:1024px) {
    .HomeTit .title .tit {
        font-size: 26px;
    }
    .HomeTit .more {
        font-size: 14px;
    }
}

@media ( max-width:768px) {
    .HomeTit .title .tit {
        font-size: 24px;
    }
}

@media ( max-width:480px) {
    .HomeTit .title li {
        font-size: 16px;
        margin-right: 10px;
    }
    .HomeTit .more {
        width: 24%;
        height: 40px;
        line-height: 40px;
        padding: 0 4%;margin-top:0;
    }
}

@media ( max-width:375px) {}


/* 焦点图 */

.HomeP1 {
    padding: 3% 0;
    background: #fff url(/an/res/images/index_bg1.jpg) top center no-repeat;
}

.bfList {
    overflow: hidden;
}

.bfList li {
    float: left;
    width: 33.33%;
    position: relative;
    overflow: hidden;
}

.bfList li a {
    display: block;
}

.bfList li .imgbox {
    padding-top: 68%;
}

.bfList li .txtbox {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5%;
    text-align: left;
    width: 100%;
    z-index: 999;
    color: #ffffff;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    unicode-bidi: isolate;
    direction: rtl;
}

.bfList li .txtbox img {}

.bfList li .txtbox .tit {
    margin: 2% 0;
    font-family: montserrat_Bold;
    font-size: 30px;
    line-height: 32px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
    unicode-bidi: isolate;
}

.bfList li .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    unicode-bidi: isolate;
    direction: rtl;
}

@media (max-width:1440px) {
    .bfList li .txtbox {
        bottom: 2vw;
    }
    .bfList li .txtbox .tit {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width:1024px) {
    .bfList li .txtbox img {
        width: 90px;
    }
    .bfList li .txtbox .tit {
        font-size: 18px;
        line-height: 22px;
    }
    .bfList li .txtbox .txt {
        font-size: 16px;
        line-height: 22px;
    }
}

@media(max-width:768px) {
    .bfList li .txtbox img {
        width: 50px;
    }
    .bfList li .txtbox .tit {
        font-size: 16px;
    }
    .bfList li .txtbox .txt {
        font-size: 14px;
        line-height: 20px;
    }
}

@media(max-width:480px) {
    .bfList li {
        width: 100%;
        float: none;
    }
    .bfList li .txtbox img {
        height: 80px;
    }
    .bfList li .txtbox .tit {
        font-size: 20px;
    }
}

@media(max-width:376px) {}

.HomeCon .slick-arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
}

.HomeCon .slick-prev {
    left: 10px;
    background: url(/an/res/images/prev.png) no-repeat;
}

.HomeCon .slick-prev:hover {
    background: url(/an/res/images/prev_h.png) no-repeat;
}

.HomeCon .slick-next {
    right: 10px;
    background: url(/an/res/images/next.png) no-repeat;
}

.HomeCon .slick-next:hover {
    background: url(/an/res/images/next_h.png) no-repeat;
}

@media(max-width:1024px) {}

@media(max-width:820px) {}

@media(max-width:640px) {}

@media(max-width:480px) {}

.HomeP2 {
    padding: 4% 0;
    background: url(/an/res/images/index_bg2.jpg) top center no-repeat;
    position: relative;
}

.HomeP2:after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(/an/res/images/bg_light.png) top left no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.HomeP2 .wrap {
    max-width: 1820px;
    width: 96%;
    margin: 0 auto;
}

.rpList .slick-list {
    padding-top: 3% !important;
    padding-bottom: 4% !important;
}

.rpList .item {
    /* margin: 0 20px; */
    transform: scale(0.777);
    transition: all 0.3s linear;
    opacity: 0.8;
}

.rpList .item .tit {
    display: none;
    background: url(/an/res/images/tit_bg2.png) right center no-repeat;
    font-family: montserrat_Bold;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 50px;
    letter-spacing: 0px;
    color: #004098;
    text-align: center;
    padding: 0 40px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rpList .item .tit span {
    display: block;
    background-color: #ffe100;
    padding-left: 20px;
    border-radius: 10px 0 0 0;
}

.rpList .item .imgbox {
    padding-top: 60%;
    margin-top: 19%;
}

.rpList .item.slick-center {
    opacity: 1;
    transform: scale(1.07);
}

.rpList .item.slick-center .imgbox {
    margin-top: 0;
}

.rpList .item .txtbox {
    display: none;
    background: #fff;
    padding: 20px;
    margin-top: 1px;
    text-align: right;
}

.rpList .item.slick-center .tit {
    display: inline-block;
}

.rpList .item.slick-center .txtbox {
    display: block;
    text-align: right;
}

.rpList .item .txtbox .add {
    border-radius: 5px;
    overflow: hidden;
    border: solid 1px #ccd9ea;
    display: inline-block;
}

.rpList .item .txtbox .add .ico {
    float: left;
    width: 30px;
    height: 30px;
    border-right: solid 1px #ccd9ea;
    background: url(/an/res/images/ico_address.png) center no-repeat;
}

.rpList .item .txtbox .add .name {
    float: left;
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #004098;
    text-align: center;
    padding: 0 10px;
}

.rpList .item .txtbox .txt {
    font-family: montserrat_Bold;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 28px;
    letter-spacing: 0px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    direction: rtl;
    unicode-bidi: isolate;
}

.rpList .item .txtbox .add:hover {
    background: #004098;
}

.rpList .item .txtbox .add:hover .ico {
    background: url(/an/res/images/ico_address1.png) center no-repeat;
}

.rpList .item .txtbox .add:hover .name {
    color: #ffe100;
}

.rpList .slick-prev {
    left: 10%;
}

.rpList .slick-next {
    right: 10%;
}

@media(max-width:1440px) {
    .rpList .item {
        transform: scale(0.76);
    }
    .rpList .item .txtbox .txt {
        font-size: 14px;
        line-height: 20px;
    }
    .rpList .item .tit {
        font-size: 16px;
        line-height: 40px;
    }
}

@media(max-width:1366px) {
    .rpList .item {
        transform: scale(0.74);
    }
}

@media(max-width:1280px) {
    .rpList .item {
        transform: scale(0.73);
    }
    .rpList .item .imgbox {
        margin-top: 27%;
    }
}

@media(max-width:1200px) {
    .HomeP2 .wrap {
        width: 100%;
    }
    .rpList .item {
        transform: scale(1);
        margin: 0 10px;
    }
    .rpList .item .imgbox {
        margin-top: 0;
    }
    .rpList .item .txtbox {
        display: block;
    }
    .rpList .item .tit {
        display: inline-block;
    }
}

@media(max-width:768px) {
    .rpList .item .txtbox {
        padding: 10px;
    }
    .rpList .item {
        opacity: 1;
    }
    .rpList .item .txtbox .txt {
        -webkit-line-clamp: 3;
    }
}

@media(max-width:480px) {
    .HomeP2:after {
        display: none;
    }
}

.HomeP3 {
    overflow: hidden;
    padding: 2% 0 5%;
    background: url(/an/res/images/index_bg4.jpg) bottom center no-repeat;
}

.MediaCon {
    overflow: hidden;
}

.MediaCon .m_l {
    width: 38.8%;
    float: left;
    margin-left: 0;
}

.MediaCon .m_l li {
    position: relative;
    width: 32%;
    float: left;
}

.MediaCon .m_l li:nth-child(1) {
    width: 100%;
    margin-bottom: 0.5vw;
}

.MediaCon .m_l li:nth-child(3),
.MediaCon .m_l li:nth-child(4) {
    margin-left: 2%;
}

.MediaCon .m_l li .imgbox {
    padding-top: 56.5%;
}

.MediaCon .m_l li .play {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 40px;
    height: 100%;
    background: url(/an/res/images/play1.png) center no-repeat;
}

.MediaCon .m_l li:nth-child(1) .play {
    background: url(/an/res/images/play.png) center no-repeat;
}

.MediaCon .m_c {
    width: 35%;
    float: left;
    padding: 2.2%;
    box-sizing: border-box;
    margin-left: 10px;
    background: #004098 url(/an/res/images/index_bg3.jpg) top left no-repeat;
    text-align: right;
}

.MediaCon .m_c .title {
    font-family: montserrat_Bold;
    font-size: 2.4vw;
    line-height: 2.8vw;
    color: #ffffff;
    direction: rtl;
    unicode-bidi: isolate;
}

.MediaCon .m_c .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 13% 0;
    direction: rtl;
    unicode-bidi: isolate;
}

.MediaCon .m_c .more {
    display: inline-block;
    width: 150px;
    height: 48px;
    border-radius: 24px;
    border: solid 1px #004098;
    font-family: montserrat_Regular;
    font-size: 16px;
    line-height: 48px;
    color: #004098;
    padding: 0 10%;
    box-sizing: border-box;
    background: #ffe100 url(/an/res/images/more4.png) center no-repeat;
    background-position-x: 80%;
    margin-top: 20px;
    text-align:center;
}

.MediaCon .m_r {
    position: relative;
    width: 23.15%;
    float: right;
}

.MediaCon .m_r .title {
    font-family: montserrat_Bold;
    font-size: 1.5vw;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5vw;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 5%;
    position: absolute;
    top: 12%;
    left: 6%;
    z-index: 10;
    text-align: right;
    direction: rtl;
    unicode-bidi: isolate;
}

.MediaCon .m_r .enter {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: solid 1px #ffffff;
    background: url(/an/res/images/more3.png) center no-repeat;
    position: absolute;
    top: 26%;
    left: 6%;
    z-index: 10;
}

.MediaCon .m_r .imgbox {
    padding-top: 128.2%;
}

.MediaCon .m_r .enter:hover {
    background: #fff url(/an/res/images/more4.png) center no-repeat;
}

@media(max-width:1500px) {
    .MediaCon .m_c {
        padding: 1.8%;
    }
    .MediaCon .m_r .imgbox {
        padding-top: 128%;
    }
}

@media(max-width:1440px) {
    .MediaCon .m_c .txt {
        line-height: 26px;
    }
}

@media(max-width:1280px) {
    .MediaCon .m_c .txt {
        line-height: 24px;
        margin: 10% 0;
    }
}

@media(max-width:1024px) {
    .MediaCon .m_l {
        width: 100%;
        margin-bottom: 2%;
    }
    .MediaCon .m_c {
        width: 66%;
        margin-left: 0;
        padding: 5% 3%;
    }
    .MediaCon .m_r {
        width: 32%;
    }
}

@media(max-width:768px) {
    .MediaCon .m_c .txt {
        margin: 2.6% 0;
    }
    .MediaCon .m_r .enter {
        top: 45%;
    }
    .MediaCon .m_c .title,
    .MediaCon .m_r .title {
        font-size: 24px;
    }
}

@media(max-width:480px) {
    .MediaCon .m_c .txt {
        font-size: 14px;
        line-height: 24px;
    }
    .MediaCon .m_c .txt h2{font-weight:normal;font-size:14px;}
    .MediaCon .m_c .title,
    .MediaCon .m_r .title {
        font-size: 16px;
    }
    .MediaCon .m_r .imgbox {
        padding-top: 167%;
    }
    .MediaCon .m_r .title {
        line-height: 3.5vw;
    }
}

@media(max-width:414px) {
    .MediaCon .m_r .imgbox {
        padding-top: 175%;
    }
}

@media(max-width:380px) {
    .MediaCon .m_c,
    .MediaCon .m_r {
        width: 100%;
    }
    .MediaCon .m_r .imgbox {
        padding-top: 50%;
    }
}

.HomeNews {
    padding-top: 3%;
}

.NewsCon {
    padding: 3% 0;
}

.NewsCon .HomeTit {
    padding: 3% 0 0;
    overflow: unset;
    margin-bottom: 0;
    background-color: #fff;
}

.NewsCon .HomeTit .title {
    width: 34%;
}

.NewsCon .SelectBox {
    width: 23%;
    float: right;
    height: 70px;
    background-color: #f3f6fa;
    border-radius: 5px;
    border: solid 1px #e9eef5;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.NewsCon .SelectBox img {
    position: absolute;
    top: 17px;
    left: 20px;
}

.NewsCon .SelectBox .SelectTxt span {
    display: block;
    background: url(/an/res/images/arr_b.png) no-repeat right 16px center;
    padding: 0 32px;
    width: 66%;
    float: right;
    line-height: 68px;
    font-family: montserrat_Bold;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 68px;
    letter-spacing: 0px;
    color: #333333;
}

.NewsCon .SelectBox .SelectTxt span.on {
    background: url(/an/res/images/arr_t.png) no-repeat right 16px center;
}

.NewsCon .SelectBox:hover {}

.NewsCon .SelectBox .SelectUl {
    position: absolute;
    left: 0;
    right: 0;
    top: 102%;
    z-index: 999;
    background: #004098;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 2%;
    z-index: 999;
}

.NewsCon .SelectBox .SelectUl .ul li {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    color: #fff;
    border: none;
    text-align: center;
    border-bottom: 1px solid #215193;
}

.NewsCon .SelectBox .SelectUl .ul li:last-child {
    border-bottom: none;
}

.NewsCon .SelectBox .SelectUl .ul li:hover,
.NewsCon .SelectBox .SelectUl .ul li.on {
    color: #ffe100;
}

.HomeNews .newsList {
    width: 60%;
    float: left;
}

.HomeNews .newsList li {
    width: 47%;
    float: left;
    background: #fff;
    padding: 5%;
    box-sizing: border-box;
    text-align: right;
}

.HomeNews .newsList li .date {
    width: 80px;
    height: 85px;
    background-color: #004098;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 5px solid #ffe100;
    color: #fff;
    text-align: center;
}

.HomeNews .newsList li .date .day {
    font-family: montserrat_Bold;
    font-size: 36px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffe100;
}

.HomeNews .newsList li .date .year {
    font-family: montserrat_Regular;
    font-size: 14px;
    line-height: 30px;
    color: #ffe100;
}

.HomeNews .newsList li .title {
    font-family: montserrat_Bold;
    font-size: 18px;
    line-height: 28px;
    height: 84px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 4% 0;
    direction: rtl;
    unicode-bidi: isolate;
}

.HomeNews .newsList li .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    direction: rtl;
    unicode-bidi: isolate;
}

.HomeNews .newsList li .ico {
    width: 20px;
    height: 20px;
    background: url(/an/res/images/more4.png) center no-repeat;
    margin-top: 6.8%;
    display: inline-block;
}

.HomeNews .newsList li:nth-child(1) {
    margin-right: 4%;
}

.HomeNews .newsList li:hover .title {
    color: #004098;
}

.focusBox {
    width: 38.75%;
    float: right;
    overflow: hidden;
    position: relative;
}

.focusBox .pic {
    clear: both;
}

.focusBox .pic li {
    position: relative;
}

.focusBox .pic li .imgbox {
    padding-top: 67.8%;
}

.focusBox .pic .txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 77%;
    font-family: montserrat_Bold;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffffff;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 2% 3% 2% 20%;
    height: 97px;
    background: url(/an/res/images/op_blue.png);
}

.focusBox .pic .txt span {
    overflow: hidden;
    word-break: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: right;
    direction: rtl;
    unicode-bidi: isolate;
}

.focusBox .slick-dots {
    position: absolute;
    bottom: 9%;
    left: 3%;
    width: auto;
}

.focusBox .slick-dots li {
    overflow: hidden;
    text-align: center;
    margin: 0 6px;
}

.focusBox .slick-dots li button {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    display: block;
}

.focusBox .slick-dots li.slick-active button,
.focusBox .slick-dots li:hover button {
    background-color: #ffe100;
    opacity: 1;
}

@media(max-width:1600px) {
    .HomeNews .newsList li {
        padding: 4.3%;
    }
}

@media(max-width:1440px) {
    .HomeNews .newsList li .date {
        height: 76px;
    }
    .HomeNews .newsList li {
        padding: 3%;
    }
    .focusBox .slick-dots {
        bottom: 8%;
    }
}

@media(max-width:1366px) {
    .HomeNews .newsList li .title {
        line-height: 23px;
        height: 69px;
    }
}

@media(max-width:1280px) {
    .HomeNews .newsList li .txt {
        line-height: 21px;
    }
}

@media(max-width:1200px) {
    .HomeNews .newsList li .title {
        font-size: 16px;
        line-height: 20px;
        height: 60px;
    }
}

@media(max-width:1024px) {
    .HomeNews .newsList {
        width: 102%;
        margin-left: -2%;
        margin-bottom: 2%;
        float: none;
        overflow: hidden;
    }
    .HomeNews .newsList li {
        margin-left: 2%;
        width: 48%;
    }
    .HomeNews .newsList li:nth-child(1) {
        margin-right: 0;
    }
    .HomeNews .newsList li .title {
        height: 60px;
    }
    .focusBox {
        width: 100%;
        float: none;
    }
    .NewsCon .SelectBox {
        width: 32%;
    }
    .NewsCon .SelectBox {
        height: 50px;
    }
    .NewsCon .SelectBox .SelectTxt span {
        line-height: 48px;
    }
    .NewsCon .SelectBox img {
        position: absolute;
        top: 14px;
        left: 20px;
        width: 20px;
    }
    .HomeNews .newsList li .date {
        float: left;
    }
    .HomeNews .newsList li .title {
        float;
        width: calc(100% - 92px);
        padding-left: 10px;
    }
    .HomeNews .newsList li .txt {
        clear: both;
    }
    .HomeNews .newsList li .ico {
        display: none;
    }
}

@media(max-width:480px) {
    .NewsCon .SelectBox {
        width: 60%;
    }
    .HomeNews .newsList {
        margin-left: 0;
    }
    .HomeNews .newsList li {
        margin-left: 0%;
        width: 100%;
        margin-bottom: 2%;
        padding: 15px;
    }
    .focusBox .pic .txt {
        font-size: 15px;
        line-height: 20px;
        height: 60px;
    }
    .focusBox .pic .txt span {
        -webkit-line-clamp: 3;
    }
}


/* 内页 */


/* 二级菜单 */

.SubMenu {
    line-height: 70px;
    background-color: #ffffff;
    clear: both;
    text-align: center;
    position: relative;
    z-index: 5;
    overflow: hidden;
    /* box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.05); */
    border-bottom: 1px #e9eef5 solid;
}

.SubMenu .ColumnName {
    display: none;
}

.SubMenu ul {
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.SubMenu li {
    float: left;
    position: relative;
    padding: 0 2%;
}

.SubMenu li a {
    position: relative;
    z-index: 1;
    display: block;
    font-family: montserrat_Bold;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0px;
    color: #333333;
    direction: rtl;
    unicode-bidi: isolate;
}

.SubMenu li a:after {
    content: '';
    position: absolute;
    z-index: 0;
    width: 0;
    bottom: 0px;
    height: 2px;
    left: 0;
    background: #ffe100;
    transition: all ease 0.3s;
    font-size: 0;
}

.SubMenu li:hover a:after,
.SubMenu li.onli a:after {
    width: 100%;
}

.SubMenu li a:hover,
.SubMenu li.onli a {
    font-family: montserrat_Bold;
    color: #004098;
}

@media(max-width:1024px) {
    .SubMenu {
        line-height: 60px;
    }
    .SubMenu li a {
        font-size: 14px;
    }
}

@media(max-width:704px) {
    .SubMenu li {
        padding: 0 1%;
    }
}

@media(max-width:640px) {
    /* .SubMenu .ColumnName {
        display: block;
    }
    .SubMenu {
        border-bottom: 0;
        background: none;
        line-height: 35px;
    }
    .SubMenu ul {
        display: none;
        float: none;
        background: #fff;
        margin: 0;
        padding: 0 15px;
    }
    .SubMenu li {
        text-align: left;
        width: auto;
        float: none;
        border-bottom: 1px dashed #e0e0e0;
        padding: 0;
    }
    .SubMenu li a {
        font-size: 14px;
        padding: 0 0 0 20px;
        border-left: 0;
        border-right: 0;
        line-height: 35px;
        height: auto;
    }
    .SubMenu li a:before,
    .SubMenu li a:after {
        display: none;
    }
    .SubMenu li .bg {
        display: none;
    }
    .SubMenu li:last-child {
        border-bottom: 0;
    }
    .SubMenu li a:hover,
    .SubMenu li.onli a {
        background-position: 0 center;
        background-size: 3%;
    } */
    .SubMenu {
        line-height: unset;
    }
    .SubMenu ul {
        display: block;
        font-size: 0;
    }
    .SubMenu li {
        padding: 0 2%;
        display: inline-block;
        float: none;
    }
    .SubMenu li a {
        line-height: 40px;
    }
}

@media(max-width:414px) {}

.SubBan {
    position: relative;
}

.SubBan .imgbox {
    padding-top: 18.81%;
}

.SubBan .txtbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width:96%;
    text-align:right;
    max-width: 1860px;
}

.SubBan .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 56px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 66px;
    letter-spacing: 0px;
    color: #ffffff;
    direction: rtl;
    unicode-bidi: isolate;
}

.SubCon {
    padding: 3% 0;
}


/* 业务领域 */

.BussCon {
    background-color: #f3f6fa;
}

.BussBox {
    padding: 0 0 4%;
}

.sideMenuBox {
    width: 19%;
    background-color: #fff;
}

.sideMenuBox .Title {
    position: relative;
    background: #004098 url(/an/res/images/subtit_bg.jpg) no-repeat;
    height: 100px;
    font-family: montserrat_Bold;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: left;
    padding: 5% 8%;
    box-sizing: border-box;
    direction: rtl;
    unicode-bidi: isolate;
}

.sideMenuBox .Title .arr {
    display: none;
}

.sideMenuBox .side_menu {
    background-color: #fff;
}

.sideMenuBox .side_menu li {
    height: 66px;
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.sideMenuBox .side_menu li::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #004098;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.sideMenuBox .side_menu li a {
    display: block;
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0px;
    color: #333333;
    transition: none;
}

.sideMenuBox .side_menu li.on,
.sideMenuBox .side_menu li:hover {
    background-color: #f3f6fa;
}

.sideMenuBox .side_menu li.on::before,
.sideMenuBox .side_menu li:hover::before {
    display: block;
}

.sideMenuBox .side_menu li.on a,
.sideMenuBox .side_menu li:hover a {
    font-family: montserrat_Bold;
}

.sideConBox {
    width: 78%;
    min-height: 600px;
}

.busList {
    margin-left: -2.33%;
}

.busList .item {
    width: 31%;
    float: left;
    margin-left: 2.33%;
    margin-bottom: 2.33%;
}

.busList .item:nth-child(4),
.busList .item:nth-child(5),
.busList .item:nth-child(6) {
    margin-bottom: 0;
}

.busList .item .imgbox {
    padding-top: 60%;
}

.busList .item .txtbox {
    background: #fff;
    padding: 20px;
    height: 88px;
    text-align:right;
}

.busList .item .txtbox .add {
    border-radius: 5px;
    overflow: hidden;
    border: solid 1px #ccd9ea;
    display: inline-block;
}

.busList .item .txtbox .add .ico {
    float: left;
    width: 30px;
    height: 30px;
    border-right: solid 1px #ccd9ea;
    background: url(/an/res/images/ico_address.png) center no-repeat;
}

.busList .item .txtbox .add .name {
    float: left;
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #004098;
    text-align: center;
    padding: 0 10px;
    direction: rtl;
    unicode-bidi: isolate;
}

.busList .item .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}

.busList .item .txtbox .txt:hover {
    -webkit-line-clamp: 100;
    background: #004098;
    position: relative;
    z-index: 10;
    padding: 0px 20px 20px 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.busList .item:hover {
    box-shadow: 0px 60px 60px 0px rgba(0, 54, 138, 0.3);
}

.busList .item:hover .txtbox {
    background-color: #004098;
}

.busList .item:hover .txtbox .add {
    border: solid 1px #ffe100;
}

.busList .item:hover .txtbox .add .ico {
    border-right: solid 1px #ffe100;
    background: url(/an/res/images/ico_address1.png) center no-repeat;
}

.busList .item:hover .txtbox .add .name {
    color: #ffe100;
}

.busList .item:hover .txtbox .txt {
    color: #fff;
}

@media(max-width:1024px) {
    .SubBan .txtbox .tit {
        font-size: 40px;
    }
    .sideConBox {
        margin-top: 3%;
    }
    .sideMenuBox,
    .sideConBox {
        width: 100%;
        float: none;
    }
    .sideMenuBox .Title {
        padding-left: 0;
        width: 100%;
        text-align: center;
        height: 60px;
        line-height: 60px;
        background: #004098;
        font-size: 20px;
    }
    .sideMenuBox .Title {
        padding-top: 0;
        font-size: 22px;
        line-height: 60px;
    }
    .sideMenuBox .Title .arr {
        display: block;
        position: absolute;
        right: 10%;
        top: 50%;
        transform: translateY(-50%);
        height: 60px;
        width: 60px;
    }
    .sideMenuBox .Title .arr i {
        font-size: 30px;
    }
    .sideMenuBox .Title.on .arr {
        dis-moz-transform: translate(0, -3px) rotate(-180deg) !important;
        -ms-transform: translate(0, -3px) rotate(-180deg) !important;
        -o-transform: translate(0, -3px) rotate(-180deg) !important;
        transform: translate(0, -3px) rotate( -180deg) !important;
    }
    .sideMenuBox .side_menu {
        padding: 2%;
        display: none;
    }
    .sideMenuBox .side_menu li {
        height: 45px;
        line-height: 45px;
        position: relative;
    }
    .sideMenuBox .side_menu li a {
        font-size: 18px;
    }
}

@media(max-width:768px) {
    .SubBan .txtbox .tit {
        font-size: 30px;
        line-height: 40px;
    }
    .sideMenuBox .Title {
        height: 40px;
        font-size: 18px;
        line-height: 40px;
    }
    .sideMenuBox .Title .arr {
        width: 40px;
        height: 40px;
    }
    .sideMenuBox .Title .arr i {
        font-size: 24px;
    }
    .sideMenuBox .side_menu li {
        height: 36px;
        line-height: 36px;
    }
    .sideMenuBox .side_menu li a {
        font-size: 14px;
    }
    .busList {
        margin-left: -2%;
    }
    .busList .item {
        width: 48%;
        margin-left: 2%;
    }
    .busList .item:nth-child(4),
    .busList .item:nth-child(5),
    .busList .item:nth-child(6) {
        margin-bottom: 2.33%;
    }
}

@media(max-width:640px) {
    .SubBan .txtbox .tit {
        font-size: 24px;
        line-height: 30px;
    }
}

@media(max-width:480px) {
    .busList {
        margin-left: 0;
    }
    .busList .item {
        width: 100%;
        margin-left: 0;
    }
    .busList .item .txtbox {
        height: auto;
    }
    .busList .item .txtbox .txt {
        -webkit-line-clamp: 100;
    }
}


/* 新闻中心 */

.NewsCon {
    padding: 0;
    padding-bottom: 3%;
    background-color: #f3f6fa;
}

.NewsCon .slideBox {
    background: #ffffff;
    padding: 3.58% 0;
}

.NewsCon .slideBox .slider {
    padding-bottom: 5%;
    overflow: unset;
}

.NewsCon .slideBox li {
    display: flex;
}

.NewsCon .slideBox li .imgbox {
    width: 55.4%;
    padding-top: 34.3%;
    float: left;
}

.NewsCon .slideBox li .txtbox {
    padding: 5%;
    width: 41.42%;
    background-color: #f3f6fa;
    float: right;
    text-align: right;
}

.NewsCon .slideBox li .txtbox .date {
    font-family: montserrat_Regular;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #004098;
    margin-bottom: 3%;
}

.NewsCon .slideBox li .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 40px;
    letter-spacing: 0px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    direction: rtl; unicode-bidi: isolate;
    
}

.NewsCon .slideBox li .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 5% 0;
    direction: rtl; unicode-bidi: isolate;
}

.NewsCon .slideBox li .txtbox .more_btn {
    display: block;
    width: 150px;
    height: 48px;
    border-radius: 24px;
    border: solid 1px #004098;
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 48px;
    letter-spacing: 0px;
    color: #004098;
    padding: 0 9% 0 0;
    background: url(/an/res/images/more4.png) center no-repeat;
    background-position-x: 80%;
    box-sizing: border-box;
    direction: rtl; unicode-bidi: isolate;
}

.NewsCon .slideBox li .txtbox .more_btn:hover {
    color: #fff;
    background: #004098 url(/an/res/images/more3.png) center no-repeat;
    background-position-x: 80%;
}

.NewsCon .slideBox .slick-arrow {
    box-shadow: 0px 0px 60px 0px rgba(0, 54, 138, 0.2);
    border-radius: 30px;
}

.NewsCon .slideBox .slick-prev {
    left: 0;
    background: #fff url(/an/res/images/more6.png) center no-repeat;
}

.NewsCon .slideBox .slick-prev:hover {
    background: #004098 url(/an/res/images/more7.png) center no-repeat;
}

.NewsCon .slideBox .slick-next {
    right: 0;
    background: #fff url(/an/res/images/more4.png) center no-repeat;
}

.NewsCon .slideBox .slick-next:hover {
    background: #004098 url(/an/res/images/more3.png) center no-repeat;
}

.NewsCon .slideBox .slick-dots {
    bottom: 0;
}

.NewsCon .slideBox .slick-dots li {
    display: inline-block;
}

.NewsCon .slideBox .slick-dots li button {
    width: 12px;
    height: 12px;
    background-color: #dce4ef;
    opacity: 1;
}

.NewsCon .slideBox .slick-dots li.slick-active button {
    opacity: 1;
    background-color: #004098;
}

@media ( max-width:768px) {
    .NewsCon .slideBox .slick-prev {
        left: 0;
    }
    .NewsCon .slideBox .slick-next {
        right: 0;
    }
}

@media ( max-width:480px) {
    .NewsCon {
        padding-bottom: 10%;
    }
    .NewsCon .slideBox li {
        display: block;
    }
    .NewsCon .slideBox li .imgbox {
        width: 100%;
        float: none;
        padding-top: 66%;
    }
    .NewsCon .slideBox li .txtbox {
        width: 94%;
        padding: 3%;
    }
    .NewsCon .slideBox li .txtbox .tit {
        font-size: 16px;
        line-height: 20px;
    }
    .NewsCon .slideBox li .txtbox .date {
        font-size: 14px;
        margin-bottom: 0;
    }
    .NewsCon .slideBox li .txtbox .txt {
        -webkit-line-clamp: 2;
    }
    .NewsCon .slideBox li .txtbox .more_btn {
        width: 110px;
        height: 32px;
        font-size: 14px;
        line-height: 32px;
    }
}

.NewsList {
    padding: 2% 0;
    background-color: #f3f6fa;
}

.NewsList a {
    display: block;
}

.NewsList .list_item {
    padding: 2.5% 0;
    max-width: 1400px;
    width: 96%;
    margin: 0 auto;
    border-bottom: 1px solid #e9eef5;
}

.NewsList .list_item .imgbox {
    padding-top: 19.15%;
    width: 28.72%;
    float: left;
}

.NewsList .list_item .txtbox {
    width: 69%;
    float: right;
    padding-top: 3%;
    text-align:right;
}

.NewsList .list_item .tit {
    font-family: montserrat_Bold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333333;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    direction: rtl; unicode-bidi: isolate;
}

.NewsList .list_item .date {
    font-family: montserrat_Regular;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #004098;
    /*direction: rtl;*/
     unicode-bidi: isolate;
}

.NewsList .list_item .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 1% 0;
    direction: rtl; unicode-bidi: isolate;
}

.NewsList .list_item .more_btn {
    font-size: 16px;
    color: #004098;
}

.NewsList a:hover {
    box-shadow: 0px 0px 40px 0px rgba(0, 54, 138, 0.05);
    background: #fff;
}

.NewsList a:hover .list_item .tit {
    color: #004098;
}

@media(max-width:1200px) {}

@media(max-width:1024px) {
    .NewsList .list_item .txt {
        font-size: 14px;
    }
    .NewsList .list_item .tit {
        font-size: 18px;
    }
    .tzggCon .news_list li {
        line-height: 40px;
    }
}

@media(max-width:768px) {
    .NewsCon .slideBox li .txtbox .tit {
        -webkit-line-clamp: 100;
    }
    .NewsList .list_item .tit {
        line-height: 20px;
        font-size: 16px;
        white-space: normal;
    }
    .NewsList .list_item .more_btn {
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .sideConTop {
        line-height: unset;
    }
    .sideConTop .title {
        font-size: 18px;
        padding-bottom: 10px;
    }
    .localtion {
        line-height: 30px;
    }
    .NewsList a {
        margin: 2% 0;
    }
    .NewsList .list_item .imgbox,
    .NewsList .list_item .txtbox {
        width: 100%;
        float: none;
    }
    .NewsList .list_item .imgbox {
        padding-top: 66%;
    }
    .NewsList .list_item .date {
        padding: 2% 0;
    }
}


/* 融媒中心 */

.MediaCon {}

.media_pro {
    display: flex;
    padding: 3% 0 5%;
}

.media_pro .videoBox {
	background-size: cover;
    width: 86%;
    float: left;
    position: relative;
}

.media_pro .videoBox a {
    display: block;
}

.media_pro .videoBox .play {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 40px;
    height: 100%;
    background: url(/an/res/images/play1.png) center no-repeat;
}

.media_pro .imgbox {
    padding-top: 56.2%;
}

.media_pro .txtbox {
    width: 41.8%;
    position: relative;
    float: right;
    font-family: montserrat_Bold;
    font-size: 50px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 50px;
    letter-spacing: 0px;
    color: #ffe100;
    background: url(/an/res/images/m_bg1.jpg) top center no-repeat;
    padding: 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media_pro .txtbox:before {
    content: '';
    width: 30px;
    height: 31px;
    background: url(/an/res/images/arr3.png) top center no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
}

.news_video {
    overflow: hidden;
    margin-left: -2.33%;
}

.news_video li {
    width: 31%;
    margin-left: 2.33%;
    float: left;
    margin-bottom: 2%;
}

.news_video li a {
    position: relative;
    display: block;
}

.news_video li .imgbox {
    padding-top: 57%;
}

.news_video li .play {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 40px;
    height: 100%;
}

.news_video li .txtbox {
    font-family: montserrat_Bold;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 3% 0;
    direction: rtl; unicode-bidi: isolate;
    text-align:right;
}

@media(max-width:1366px) {
    .media_pro .txtbox {
        padding: 4%;
    }
}
@media(min-width:769px) 
{
    .news_video li:nth-child(3n+1){ clear:both;}
    }
@media(max-width:1024px) {}

@media(max-width:768px) {
    .news_video {
        margin-left: -3%;
    }
    .news_video li {
        width: 47%;
        margin-left: 3%;
        margin-bottom: 4%;
    }
    .news_video li .txtbox {
        font-size: 16px;
        line-height: 22px;
    }
}

@media(max-width:480px) {
    .media_pro {
        display: block;
    }
    .media_pro .imgbox {
        padding-top: 56%;
    }
    .media_pro .videoBox,
    .media_pro .txtbox {
        width: 100%;
        float: none;
        background-size: 100%;
    }
    .media_pro .txtbox {
        font-size: 24px;
        line-height: 30px;
    }
    .news_video li {
        width: 100%;
        float: none;
    }
}


/* 新闻详情 */

.HotNews {
    background-color: #004098;
    padding: 7%;
    margin: 0 11px;
    margin-top: 20px;
}

.HotNews .tit {
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.HotNews .nlist {}

.HotNews .nlist li {
    font-size: 18px;
    line-height: 40px;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #1a45af;
}

.HotNews .nlist li:before {
    content: '';
    width: 4px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.HotNews .nlist li a {
    color: #fff;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.HotNews .nlist li a {}

.NewsConD {
    padding-top: 3%;
    background: #f3f6fa;
}

.NewsDetail {
    padding: 3%;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
}

.NewsDetail .De_top {
    border-bottom: 1px #e5e5e5 solid;
    text-align: right;
}

.NewsDetail .De_top .tit {
    font-size: 24px;
    line-height: 40px;
    color: #333333;
    font-family: montserrat_Bold;
    direction: rtl; unicode-bidi: isolate;
}

.NewsDetail .De_top ul {
    overflow: hidden;
    display: flex;
    justify-content: right;
    padding: 1.5% 0;
    direction: rtl; unicode-bidi: isolate;
}

.NewsDetail .De_top ul li {
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #999999;
    float: left;
    position: relative;
    padding: 0 16px;
}



.NewsDetail .De_top ul li:after {
    content: '';
    width: 1px;
    height: 10px;
    background-color: #e1e1e1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.NewsDetail .De_top ul li:last-child:after {
    display: none;
}

.NewsDetail .De_top ul li span {
    color: #333333;
}

.NewsDetail .De_top ul li img {
    vertical-align: middle;
    margin-right: 10px;
}

.NewsDetail .De_top ul li a {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.NewsDetail .De_top ul li .bshareb,
.NewsDetail .De_top ul li .bshare-custom {
    float: left;
}

.NewsDetail .De_top ul li .bshare-custom {
    line-height: unset !important;
}

.NewsDetail .De_top ul li a {
    margin-left: 4px;
}

.NewsDetail .De_top ul li a.wx {
    background: url(/an/res/images/wx.png) no-repeat;
    padding: 0;
    position: relative;
    top: -1px;
}

.NewsDetail .De_top ul li a.wb {
    background: url(/an/res/images/wb.png) no-repeat;
    padding: 0;
}

.NewsDetail .De_top ul li a.qq {
    background: url(/an/res/images/qq.png) no-repeat;
    padding: 0;
}

.NewsDetail .De_top ul li a.qqkj {
    background: url(/an/res/images/qqkj.png) no-repeat;
    padding: 0;
}

.NewsDetail .De_top ul li a.rrw {
    background: url(/an/res/images/rrw.png) no-repeat;
    padding: 0;
}

.NewsDetail .De_bot {
    padding-top: 3%;
    font-family: montserrat_Regular;
    text-align:justify;
    text-align-last:right;
}
.NewsDetail .De_bot * {
    direction: rtl; 
    unicode-bidi: isolate;
}

.NewsDetail .De_bot img {
    display: block !important;
    margin: 0 auto;
}

.NewsDetail .De_bot p {
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0px;
    color: #666;
    padding-bottom: 2%;
    /* text-indent: 2em; */
    word-break: break-word;
}

.NewsDetail .De_bot p.tc {
    text-align: center;
    text-indent: 0 !important;
}

.NewsDetail .De_bot img {
    margin: 0 auto;
    display: block;
}

.otherNews {
    margin: 2% 0 0;
    padding: 2% 0 0;
    position: relative;
    border-top: 1px #e5e5e5 solid;
    text-align:right
}

.otherNews .prve_next a {
    line-height: 40px;
    display: block;
    overflow: hidden;
    color: #333;
    font-size: 16px;
    direction: rtl; unicode-bidi: isolate;
}

.otherNews .prve_next a:hover {
    color: #004098;
}

.otherNews .print_btn {
    position: absolute;
    top: 10%;
    right: 0;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #999999;
    cursor: pointer;
}

.otherNews .print_btn img {
    margin-right: 10px;
}

.otherNews .print_btn:hover {
    color: #004098;
}

@media(max-width:768px) {
    .NewsDetail {
        width: 100%;
        float: none;
    }
    .NewsDetail .De_top .tit {
        font-size: 18px;
        line-height: 30px;
    }
    .NewsDetail .De_top ul {
        display: block;
    }
    .NewsDetail .De_top ul li {
        padding: 0;
        float: none;
        width: 100%;
        text-align: left;
        font-size: 14px;
        line-height: 26px;
    }
    .NewsDetail .De_top .date {
        font-family: Montserrat-Regular;
        font-size: 12px;
        color: #a22224;
        padding: 5px;
    }
    .NewsDetail .De_bot p {
        /* text-align: justify; */
        font-size: 14px;
        line-height: 26px;
    }
    .otherNews {
        width: 100%;
        float: none;
    }
    .otherNews .prve_next a {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .otherNews .print_btn {
        position: static;
    }
    .HotNews .nlist li {
        font-size: 16px;
    }
    .NewsDetail .De_bot img {
        width: auto !important;
        height: auto !important;
    }
}


/* 搜索页面 */

.searchCon .news_list li {
    padding: 1% 0;
}

.NewsCon .news_list {
    border-top: solid 1px #eeeeee;
}

.NewsCon .news_list li {
    padding: 2%;
    border-right: solid 1px #eeeeee;
    border-left: solid 1px #eeeeee;
    border-bottom: solid 1px #eeeeee;
}

.NewsCon .news_list li:before {
    display: none;
}

.NewsCon .news_list li a {
    padding-left: 0;
}

.NewsCon .news_list .title {
    overflow: hidden;
    line-height: 30px;
}

.NewsCon .news_list .tit {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    padding-left: 2%;
    margin-bottom: 10px;
}

.NewsCon .news_list .tit:before {
    content: '';
    width: 4px;
    height: 2px;
    position: absolute;
    top: 14px;
    left: 0;
    background-color: #f3f6fa;
}

.NewsCon .news_list .date {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    color: #db000f;
}

.NewsCon .news_list .txt {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 25px;
    letter-spacing: 0px;
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-left: 2%;
}

.NewsCon .news_list li:hover .tit {
    color: #db000f;
}

.NewsCon .news_list li:nth-child(5n) {
    padding-bottom: 2%;
    margin-bottom: 0;
    border-bottom: solid 1px #eeeeee;
}

.NewsCon .sideMenuBox .Title {
    background-color: #f3f6fa;
}

.NewsCon .sideMenuBox .Title:before {
    left: 0;
    background: url(/an/res/images/tit_bg1_r.png) no-repeat;
}

.NewsCon .sideMenuBox .Title:after {
    right: 0;
    background: url(/an/res/images/tit_bg2_r.png) no-repeat;
}

.NewsCon .sideMenuBox .side_menu li.on a,
.NewsCon .sideMenuBox .side_menu li:hover a {
    background-color: #f4adb2;
}

.NewsCon .sideConTop .title {
    color: #db000f;
}

.NewsCon .sideConTop .title:before {
    background-color: #db000f;
}

.NewsCon .localtion a:hover {
    color: #db000f;
}

.NewsCon .localtion span {
    color: #db000f;
}


/* 社会责任 */

.CSRCon {
    padding: 3.58% 0;
}

.CSRCon .slideBox {
    padding: 0;
    background: #f3f6fa;
}

.CSRCon .slideBox .slider {}

.CSRCon .slideBox .txtbox {
    background: #004794 url(/an/res/images/s_bg1.jpg) top center no-repeat;
}

.CSRCon .slideBox li .txtbox .tit,
.CSRCon .slideBox li .txtbox .txt {
    color: #fff;
}

.CSRCon .slideBox .txtbox .date {
    width: 80px;
    height: 85px;
    background-color: #004098;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 5px solid #ffe100;
    color: #fff;
}

.CSRCon .slideBox .txtbox .date .day {
    font-family: montserrat_Bold;
    font-size: 36px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffe100;
}

.CSRCon .slideBox .txtbox .date .year {
    font-family: montserrat_Regular;
    font-size: 14px;
    line-height: 30px;
    color: #ffe100;
}

.CSRCon .NewsList {
    padding: 4% 0 0;
}

.CSRCon .NewsList .list_item {
    width: 100%;
    padding: 0;
    margin-bottom: 3%;
    background: #fff;
    border-bottom: none;
}

.CSRCon .NewsList .list_item .imgbox {
    padding-top: 27%;
    width: 40%;
    float: left;
}

.CSRCon .NewsList .list_item .txtbox {
    width: 60%;
    padding: 4%;
    box-sizing: border-box;
}

.CSRCon .NewsList .list_item .tit {
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 2% 0 4%;
}

.CSRCon .NewsList .list_item .txt {
    -webkit-line-clamp: 3;
}

@media(max-width:1024px) {}

@media(max-width:480px) {
    .CSRCon .NewsList .list_item .imgbox,
    .CSRCon .NewsList .list_item .txtbox {
        width: 100%;
        float: none;
    }
    .CSRCon .NewsList .list_item .imgbox {
        padding-top: 66%;
    }
}


/* 公司简介 */

.AboutCon {
    position: relative;
    
}

.AboutCon:before {
    content: '';
    width: 34.5%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fbfbfd;
    z-index: 0;
}

.AboutCon .Ab_l {
    width: 31%;
    float: left;
    position: relative;
    z-index: 10;
}

.AboutCon .HomeTit .title {
    width: 100%;
}

.AboutNum {
    margin-top: 20%;
    width: 80%;
}

.AboutNum ul {}

.AboutNum ul li {
    padding: 10% 0;
    overflow: hidden;
    border-bottom: 1px solid #e9eef5;
}

.AboutNum ul li:last-child {
    border-bottom: none;
}

.AboutNum ul li .ico {
    float: left;
    margin-right: 6%;
}

.AboutNum ul li p {
    float: left;
}

.AboutNum ul li p .counter {
    font-family: montserrat_Bold;
    font-size: 40px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #333333;
}

.AboutNum ul li p em {
    font-weight: bold;
    font-family: montserrat_Bold;
    font-size: 40px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 36px;
    letter-spacing: 0px;
    color: #333333;
}

.AboutNum ul li p span {
    display: block;
    font-family: montserrat_Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 36px;
    letter-spacing: 0px;
    color: #808080;
    direction: rtl; unicode-bidi: isolate;
}

.AboutCon .Ab_r {
    position: relative;
    z-index: 10;
    width: 63%;
    float: right;
    text-align:justify;
    text-align-last:right;
}
.AboutCon .Ab_r *{direction: rtl; unicode-bidi: isolate;}

.AboutCon .Ab_r p:nth-child(1) {
    margin-top: 0;
}

.AboutCon .Ab_r p {
    margin: 4% 0;
    font-family: montserrat_Regular;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 40px;
    letter-spacing: 0px;
    color: #333333;
}

@media(max-width:1366px) {
    .AboutNum {
        width: 100%;
    }
    .AboutNum ul li p .counter {
        font-size: 34px;
    }
    .AboutNum ul li p span {
        font-size: 16px;
    }
    .AboutCon .Ab_r p {
        font-size: 18px;
    }
}

@media(max-width:768px) {
    .AboutCon .Ab_r,
    .AboutCon .Ab_l {
        width: 100%;
        float: none;
    }
    .AboutCon:before {
        display: none;
    }
    .AboutCon .Ab_l {
        background: #fbfbfd;
        padding: 2%;
        box-sizing: border-box;
    }
    .AboutNum {
        margin-top: 2%;
    }
    .AboutNum ul {
        overflow: hidden;
    }
    .AboutNum ul li {
        width: 50%;
        float: left;
        padding: 2% 0;
    }
    .AboutNum ul li:last-child {
        border-bottom: 1px solid #e9eef5;
    }
    .AboutCon .Ab_r {
        margin-top: 3%;
    }
}

@media(max-width:640px) {
    .AboutNum ul li .ico img {
        height: 40px;
    }
    .AboutNum ul li p em,
    .AboutNum ul li p .counter {
        font-size: 24px;
        line-height: 21px;
    }
    .AboutNum ul li p span {
        line-height: 20px;
    }
    .AboutCon .Ab_r p {
        font-size: 16px;
        line-height: 30px;
    }
}

@media(max-width:480px) {
    .AboutNum ul li {
        width: 100%;
    }
}


/* 发展历程 */

.HisCon {
    padding-bottom: 6%;
    background: #f3f6fb url(/an/res/images/his_bg.jpg) bottom center no-repeat;
}

.HisCon .HomeTit .title {
    width: 100%;
    text-align: center;
}

.HisList {}

.HisList ul {
    position: relative;
}

.HisList ul:before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #ccd9ea;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.HisList ul li {
    margin-top: 3%;
    position: relative;
    text-align:right;
}

.HisList ul li .tit {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45%;
    padding: 2% 0;
    height: auto !important;
    text-align: left;
    text-align-last: left;
}

.HisList ul li .tit em {
    font-family: montserrat_Bold;
    font-size: 40px;
    line-height: 36px;
    color: #004098;
    direction: rtl; unicode-bidi: isolate;
}

.HisList ul li .his_item {
    width: 39.4%;
    float: left;
    background-color: #fff;
    padding: 2%;
    box-sizing: border-box;
    margin-left: 6.2%;
    position: relative;
}

.HisList ul li .his_item:before {
    content: '';
    width: 81px;
    height: 21px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.HisList ul li .imgbox {
    width: 35.4%;
    padding-top: 25%;
    float: left;
}

.HisList ul li .txtbox {
    width: 60%;
    float: right;
}

.HisList ul li .txtbox .title {
    font-family: montserrat_Bold;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 36px;
    letter-spacing: 0px;
    color: #004098;
    direction: rtl; unicode-bidi: isolate;
}

.HisList ul li .txtbox .txt {
    padding-top: 1.5%;
    font-family: montserrat_Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    direction: rtl; unicode-bidi: isolate;
}
.HisList ul li .txtbox .txt *{direction: rtl; unicode-bidi: isolate;}

.HisList ul li:nth-child(even) .his_item {
    margin-right: 6.2%;
}

.HisList ul li:nth-child(even) .tit {
    right: auto;
    left: 0;
    text-align: right;
    text-align-last: right;
}

.HisList ul li:nth-child(even) .his_item {
    float: right;
}

.HisList ul li:nth-child(even) .tit,
.HisList ul li:nth-child(odd) .his_item {
    float: left;
}

.HisList ul li:nth-child(even) .his_item:before {
    left: -12.7%;
    background: url(/an/res/images/his_dot.png) center left no-repeat;
}

.HisList ul li:nth-child(odd) .his_item:before {
    right: -12.7%;
    background: url(/an/res/images/his_dot1.png) center right no-repeat;
}

.HisList .more_btnadd {
    margin: 2% auto;
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media(max-width:1024px) {
    .HisList ul li .his_item:before {
        width: 50px;
    }
    .HisList ul li:nth-child(even) .his_item:before {
        left: -13.7%;
    }
    .HisList ul li:nth-child(odd) .his_item:before {
        right: -13.7%;
    }
    .HisList ul li .imgbox {
        width: 100%;
        padding-top: 70%;
        float: none;
    }
    .HisList ul li .txtbox {
        width: 100%;
        float: none;
    }
}

@media(max-width:640px) {
    .HisList ul {}
    .HisList ul:before {
        left: 2%;
    }
    .HisList ul li {
        padding-top: 2%;
    }
    .HisList ul li .tit {
        display: block;
        position: relative;
    }
    .HisList ul li .tit:before {
        content: '';
        width: 81px;
        height: 21px;
        position: absolute;
        left: -75px;
        top: 50%;
        transform: translateY(-50%);
        background: url(/an/res/images/his_dot.png) center right no-repeat;
    }
    .HisList ul li .tit,
    .HisList ul li .his_item {
        width: 88%;
        float: none;
    }
    .HisList ul li .his_item:before {
        display: none;
    }
    .HisList ul li .tit {
        transform: translateY(0);
    }
    .HisList ul li:nth-child(even) .tit {
        position: static;
        text-align: left;
        float: none;
        margin: 20px 0 0 24px;
        font-size: 20px;
    }
    .HisList ul li:nth-child(odd) .his_item {
        float: none;
    }
    .HisList ul li .imgbox {
        padding-top: 62%;
        margin-bottom: 5%;
    }
    .HisList ul li .his_item:before {
        width: 80px;
    }
    .HisList ul li:nth-child(even) .his_item:before {
        left: -20%;
    }
    .HisList ul li:nth-child(odd) .his_item:before {
        left: -20%;
        background: url(/an/res/images/his_dot.png) center left no-repeat;
    }
    .HisList ul li .txtbox .txt p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media(max-width:414px) {
    .HisList ul li .tit {
        font-size: 30px;
    }
    .HisList ul li .his_item:before {
        width: 56px;
    }
}


/* 联系我们 */

.CuCon {
    background-color: #f3f6fa;
}

.CuCon {}

.CuConBox.box1 {
    margin-bottom: 1.5%;
}

.CuConBox {
    overflow: hidden;
    background: #004098;
}

.CuConBox .item {
    width: 50%;
    float: left;
    background: #004098 url(/an/res/images/bg_light.png) top left no-repeat;
    padding: 5%;
    box-sizing: border-box;
}

.CuConBox .item dl {}

.CuConBox .item dl dt {
    float: left;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffe100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CuConBox .item dl dt img {}

.CuConBox .item dl dd {
    float: left;
    margin-left: 2%;
}

.CuConBox .item dl dd .tit {
    font-family: montserrat_Bold;
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 80px;
    letter-spacing: 0px;
    color: #ffffff;
    position: relative;
    margin-bottom: 3%;
    border-bottom: 1px solid #1751a1;
}

.CuConBox .item dl dd .tit:after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #ffe100;
    position: absolute;
    bottom: 0;
    left: 0;
}

.CuConBox .item dl dd .txt {
    font-family: montserrat_Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffffff;
}

.CuConBox .imgbox {
    width: 50%;
    float: right;
    padding-top: 25.72%;
}

.CuConBox .txtbox {
    width: 50%;
    float: right;
    background: #fff;
    padding: 2% 3%;
    box-sizing: border-box;
}

.CuConBox .txtbox .title {
    font-family: montserrat_Bold;
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 40px;
    letter-spacing: 0px;
    color: #333333;
}

.CuConBox .txtbox .c_list {
    overflow: hidden;
    position: relative;
}

.CuConBox .txtbox .c_list:before {
    content: '';
    height: 100%;
    width: 1px;
    background: #e5ebf4;
    position: absolute;
    left: 50%;
    top: 0;
}

.CuConBox .txtbox .c_list:after {
    content: '';
    height: 1px;
    width: 100%;
    background: #e5ebf4;
    position: absolute;
    left: 0;
    top: 50%;
}

.CuConBox .txtbox .c_list li {
    width: 50%;
    float: left;
    overflow: hidden;
    padding: 3% 0;
}

.CuConBox .txtbox .c_list li .ico {
    float: left;
    width: 30%;
    text-align: center;
}


/*滑过图标左右晃动效果 s*/

.CuConBox .txtbox .c_list li:hover img {
    -webkit-animation: move 2s -1s infinite;
    -moz-animation: move 2s -1s infinite;
    -o-animation: move 2s -1s infinite;
    animation: move 2s -1s infinite;
}

.CuConBox .txtbox .c_list li .text {
    width: 70%;
    float: right;
    font-family: montserrat_Regular;
    font-size: 20px;
    letter-spacing: 0px;
    color: #333333;
    height: 90px;
}

.CuConBox .txtbox .c_list li .text p {
    line-height: 38px;
}

.CuConBox .txtbox .c_list li .text a {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666666;
    display: block;
}

.CuConBox .txtbox .c_list li .text a:hover {
    color: #004098;
}

.officeList {
    background-color: #fff;
    padding: 4% 6%;
}

.officeList ul {}

.officeList ul li {
    background-color: #f3f6fa;
    overflow: hidden;
    margin-bottom: 1%;
}

.officeList ul li .imgbox {
    padding-top: 16.3%;
    width: 24.4%;
    float: left;
}

.officeList ul li .txtbox {
    width: 68%;
    float: right;
    padding: 2% 3%;
}

.officeList ul li .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 22px;
    color: #004098;
    position: relative;
    border-bottom: 1px solid #e5ebf4;
    margin-bottom: 2%;
    padding-bottom: 1%;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}

.officeList ul li .txtbox .tit:before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #004098;
    position: absolute;
    bottom: 0;
    right: 0;
}

.officeList ul li .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
    word-break: break-word;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}

.officeList ul li:hover {}

@media(max-width:1366px) {
    .CuConBox .item {
        padding: 3%;
    }
}

@media(max-width:1024px) {
    .CuConBox .txtbox .c_list li .text {
        width: 92%;
    }
    .CuConBox .item dl dd .tit {
        line-height: 26px;
        padding: 3% 0;
    }
    .CuConBox .imgbox {
        padding-top: 31%;
    }
}

@media(max-width:768px) {
    .CuConBox .item,
    .CuConBox .txtbox,
    .CuConBox .imgbox {
        width: 100%;
        float: none;
        overflow: hidden;
    }
    .officeList {
        padding: 3%;
    }
    .officeList ul li .imgbox {
        padding-top: 26%;
        width: 40%;
    }
    .officeList ul li .txtbox {
        width: 52%;
    }
}

@media(max-width:480px) {
    .officeList ul li {
        margin-bottom: 3%;
    }
    .officeList ul li:last-child {
        margin-bottom: 0;
    }
    .officeList ul li .imgbox {
        padding-top: 67%;
    }
    .officeList ul li .imgbox,
    .officeList ul li .txtbox {
        width: 100%;
        float: none;
    }
}


/* 组织机构 */

.ZzCon {}

.ZzCon .zzpc {
    position: relative;
    overflow-x: auto;
}

.ZzCon .zzpc img {
    width: 100%;
    /* min-width: 1000px; */
}

@media(max-width:480px) {
    .ZzCon {
        padding: 5% 0;
    }
    .ZzCon .zzpc a {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: block;
    }
}


/* 服务范围 */

.saBan {}

.saBan .txtbox {
    left: 39%;
}

.saBan .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 42px;
    letter-spacing: 0px;
    color: #ffffff;
    direction: rtl;
    unicode-bidi: isolate;
}

.saBan .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 52px;
    letter-spacing: 0px;
    color: #ffffff;
    direction: rtl;
    unicode-bidi: isolate;
}

.SACon {
    padding: 4% 0;
    background: #e9eef5 url(/an/res/images/sa_bg.jpg) top center no-repeat;
}

.SACon .saBox {}

.SACon .saBox .sa_l {
    width: 42%;
    float: left;
    position: relative;
    cursor: inherit;
}

.SACon .saBox .sa_l:before {
    content: '';
    width: 104px;
    height: 80px;
    background: url(/an/res/images/01.png) no-repeat;
    position: absolute;
    top: 0;
    left: 10%;
    z-index: 99;
}

.SACon .saBox .sa_l .txtbox {
    padding: 10%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
}

.SACon .saBox .sa_l .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 48px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 58px;
    letter-spacing: 0px;
    color: #ffffff;
    position: relative;
    padding-bottom: 5%;
    margin-bottom: 5%;
    direction: rtl;
    unicode-bidi: isolate;
}

.SACon .saBox .sa_l .txtbox .tit:before {
    content: '';
    width: 20px;
    height: 3px;
    background-color: #ffe100;
    position: absolute;
    bottom: 0;
    right: 0;
}

.SACon .saBox .sa_l .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffffff;
    direction: rtl;
    unicode-bidi: isolate;
}

.SACon .saBox .sa_l .imgbox {
    padding-top: 80%;
}

.SACon .saBox .saList {
    width: 57.5%;
    float: right;
}

.SACon .saBox .saList ul {
    overflow: hidden;
    margin-left: -1%;
}

.SACon .saBox .saList ul li {
    width: 32.33%;
    float: left;
    margin-left: 1%;
    margin-bottom: 1%;
    background: #fff;
}

.SACon .saBox .saList ul li .imgbox {
    padding-top: 66.66%;
    margin-bottom: 5px;
}

.SACon .saBox .saList ul li .txtbox {
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 22px;
    letter-spacing: 0px;
    color: #333333;
    background-color: #fff;
    padding: 2.5% 4%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}

.SACon .saBox .saList ul li:hover .txtbox {
    color: #004098;
    font-weight: bold;
}

@media(max-width:1520px) {
    .SACon .saBox .sa_l .imgbox {
        padding-top: 82%;
    }
    .SACon .saBox .sa_l .txtbox .tit {
        font-size: 34px;
    }
}

@media(max-width:1366px) {
    .SACon .saBox .sa_l .txtbox .tit {
        font-size: 30px;
        line-height: 36px;
    }
    .SACon .saBox .sa_l .imgbox {
        padding-top: 83%;
    }
    .saBan .txtbox .tit {
        font-size: 26px;
        line-height: 36px;
    }
}

.SACon .saBox .sa_l .txtbox .txt {
    line-height: 23px;
}


}
@media(max-width:1200px) {
    .SACon .saBox .sa_l .imgbox {
        padding-top: 84%;
    }
    
    .SACon .saBox .saList ul li .txtbox {
        font-size: 14px;
    }
}
@media(max-width:1100px) {
    .SACon .saBox .sa_l .txtbox .tit {
        font-size: 26px;
        line-height: 16px;
    }
}
@media(max-width:768px) {
    .SACon .saBox .sa_l,
    .SACon .saBox .saList {
        width: 100%;
        float: none;
    }
    
    .SACon .saBox .sa_l .txtbox {
        padding: 5%;
        height: auto;
    }
    
    .SACon .saBox .sa_l .imgbox {
        padding-top: 42%;
    }
    
    .SACon .saBox .saList {
        margin-top: 2%;
    }
    
    .SACon .saBox .saList ul li .txtbox {
        -webkit-line-clamp: 3;
        line-height: 20px;
        padding-top: 0;
        padding-bottom: 0;
        height: 65px;
    }
}
@media(max-width:480px) {
    .saBan .txtbox {
        display: none;
    }
    
    .SACon .saBox .sa_l .txtbox .tit {
        font-size: 22px;
        padding-bottom: 2%;
        margin-bottom: 2%;
    }
    
    .SACon .saBox .sa_l .txtbox .txt {
        font-size: 14px;
        line-height: 24px;
    }
    
    .SACon .saBox .saList ul {
        margin-left: -2%;
    }
    
    .SACon .saBox .saList ul li {
        width: 48%;
        margin-left: 2%;
    }
}
.ConstCon {
    position: relative;
    padding: 5% 0;
    background: #024298 url(/an/res/images/sa_bg1.jpg) bottom center no-repeat;
}
.ConstCon .HomeTit .title .tit {
    padding-bottom: 20px;
}
.ConstCon .HomeTit .title .tit:after {
    content: '';
    width: 20px;
    height: 3px;
    background-color: #ffe100;
    position: absolute;
    bottom: 0;
    left: 0;
}
.ConstCon:before {
    content: '';
    width: 115px;
    height: 50px;
    background: url(/an/res/images/02.png) no-repeat;
    position: absolute;
    top: 0;
    left: 8%;
    z-index: 99;
}
.ConstCon .ConstBox {}
.ConstCon .ConstBox .cst_l {
    float: left;
    position: relative;
    padding: 8% 8% 8% 0;
    display: flex;
    align-items: center;
}
.ConstCon .ConstBox .cst_l dl {
    position: absolute;
    width: 280px;
    height: 280px;
    border: solid 4px #ffffff;
    box-sizing: border-box;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    top: 30%;
}
.ConstCon .ConstBox .cst_l dl dt {
    margin-bottom: 20px;
}
.ConstCon .ConstBox .cst_l dl dd {
    font-family: montserrat_Bold;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #ffffff;
}
.ConstCon .ConstBox .cst_l .cstList {}
.ConstCon .ConstBox .cst_l .cstList ul {
    width: 400px;
    height: 472px;
    background: url(/an/res/images/sa_co_bg.png) center right no-repeat;
    position: relative;
}
.ConstCon .ConstBox .cst_l .cstList ul li {
    position: absolute;
}
.ConstCon .ConstBox .cst_l .cstList ul li .ico {
    width: 81px;
    height: 81px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.ConstCon .ConstBox .cst_l .cstList ul li .ico:before {
    content: '';
    width: 81px;
    height: 81px;
    background: url(/an/res/images/sa_circle.png) center no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes zhuan {
    0% {
        transform: rotate(0);
    }
    
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes zhuan {
    0% {
        transform: rotate(0);
    }
    
    100% {
        transform: rotate(360deg);
    }
}
.ConstCon .ConstBox .cst_l .cstList ul li:hover .ico:before {
    animation: zhuan linear 10s;
}
.ConstCon .ConstBox .cst_l .cstList ul li .tit {
    font-family: montserrat_Bold;
    font-size: 19px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
}
.cstList ul li.ico1 {
    top: -84px;
    left: 132px;
}
.cstList ul li.ico2 {
    top: -30px;
    left: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
}
.cstList ul li.ico3 {
    top: 110px;
    left: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}
.cstList ul li.ico4 {
    bottom: 114px;
    left: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}
.cstList ul li.ico5 {
    bottom: -22px;
    left: 308px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 42%;
}
.cstList ul li.ico6 {
    bottom: -106px;
    left: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.cstList ul li.ico1 .tit {
    position: absolute;
    top: -36px;
    left: 12px;
}
.ConstBox .cst_r {
    width: 54%;
    float: right;
    box-sizing: border-box;
    padding-top: 5%;
}
.ConstBox .cst_r .item {
    border-radius: 20px 0px 20px 0px;
    border: solid 1px #ffffff;
    margin-bottom: 4.6%;
}
.ConstBox .cst_r .item dl {
    width: 30%;
    height: 160px;
    float: left;
    background-color: #ffffff;
    border-radius: 20px 0px 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.ConstBox .cst_r .item dl dt {}
.ConstBox .cst_r .item dl dd {
    width: 80%;
    font-family: montserrat_Bold;
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #004098;
    text-align: center;
}
.ConstBox .cst_r .item ul {
    width: 70%;
    float: right;
    padding: 3%;
    box-sizing: border-box;
}
.ConstBox .cst_r .item ul li {
    font-family: montserrat_Regular;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    position: relative;
    padding-left: 10px;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 50%;
    float: left;
}
.ConstBox .cst_r .item ul li:before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 18px;
}
.ConstBox .cst_r .item:nth-child(1) ul {
    padding: 2% 3%;
}
.ConstBox .cst_r .item:nth-child(1) ul li {
    width: 50%;
    float: left;
}
@media(max-width:1366px) {
    .ConstCon:before {
        left: 2%;
    }
    
    .ConstBox .cst_r {
        width: 48%;
    }
}
@media(max-width:1200px) {
    .ConstCon .ConstBox .cst_l {
        width: 100%;
        float: none;
        box-sizing: border-box;
        justify-content: center;
    }
    
    .ConstBox .cst_r {
        width: 100%;
        float: none;
    }
    
    .ConstBox .cst_r .item {
        margin-bottom: 2%;
    }
    
    .ConstBox .cst_r .item:nth-child(1) ul {
        padding: 1% 3%;
    }
}
@media(max-width:768px) {
    .ConstCon .ConstBox .cst_l {
        padding: 15% 5%;
        justify-content: flex-start;
    }
}
@media(max-width:480px) {
    .HomeTit {
        position: relative;
        margin-bottom: 20px;
    }
    
    .HomeTit .more {
        position: absolute;
        left: 10px;
        top: 0;
        height: 30px;
        line-height: 30px;
    }
    
    .HomeTit .title {
        width: auto;
        float: none;
    }
    
    .HomeTit .title .tit {
        font-size: 21px;
        margin-bottom: 20px;
        line-height: 24px;
    }
    
    .HomeTit .title .txt {
        line-height: 20px;
    }
    .HomeTit .title .txt h2{font-weight:normal !important;font-size:16px;text-align:right;}
    
    .ConstCon .HomeTit .title .tit {
        padding-bottom: 0px;
    }
    
    .ConstCon .ConstBox .cst_l {
        padding: 5%;
    }
    
    .ConstCon .ConstBox .cst_l dl {
        display: none;
    }
    
    .ConstCon .ConstBox .cst_l .cstList ul {
        width: 100%;
        height: auto;
        background: none;
        overflow: hidden;
    }
    
    .ConstCon .ConstBox .cst_l .cstList ul li {
        width: 50%!important;
        float: left;
        position: static;
        overflow: hidden;
        display: flex;
        justify-content: unset !important;
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .cstList ul li.ico1 .tit {
        float: left;
    }
    
    .cstList ul li.ico1 .tit {
        position: static;
    }
    
    .ConstCon .ConstBox .cst_l .cstList ul li .ico {
        float: left;
        align-items: center;
    }
    
    .ConstBox .cst_r .item dl dd {
        font-size: 16px;
    }
    
    .ConstBox .cst_r .item ul li {
        font-size: 14px;
        line-height: 30px;
    }
    
    .ConstBox .cst_r .item:nth-child(1) ul li {
        width: 100%;
        float: none;
    }
    
    .ConstCon .ConstBox .cst_l .cstList ul li .tit {
        font-size: 15px;
    }
}
.part3 {
    padding: 5% 0;
    background: #fff url(/an/res/images/index_bg4.jpg) bottom center no-repeat;
}
.SMCon .HomeTit .title .tit:after,
.OSCon .HomeTit .title .tit:after {
    content: '';
    width: 20px;
    height: 3px;
    background-color: #ffe100;
    position: absolute;
    bottom: 0;
    left: 0;
}
.SMCon .HomeTit .title .tit,
.OSCon .HomeTit .title .tit {
    margin-bottom: 4%;
    padding-bottom: 20px;
}
.SMCon {
    position: relative;
    width: 72.5%;
    float: left;
    box-sizing: border-box;
}
.SMCon:before {
    content: '';
    width: 115px;
    height: 50px;
    background: url(/an/res/images/03.png) no-repeat;
    position: absolute;
    top: 0;
    left: 7%;
    z-index: 99;
}
.SMCon .txtbox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 7%;
    box-sizing: border-box;
    z-index: 10;
}
.SMCon .smList {}
.SMCon .smList {
    overflow: hidden;
    margin-left: -2%;
}
.SMCon .smList li {
    padding: 2%;
    width: 48%;
    float: left;
    border-radius: 10px;
    border: solid 1px #ffffff;
    margin-left: 2%;
    margin-bottom: 2%;
    display: flex;
    align-items: center;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2rem;
    letter-spacing: 0px;
    color: #ffffff;
    box-sizing: border-box;
    height: 7.5rem;
}
.SMCon .smList li .No {
    font-family: montserrat_Bold;
    font-size: 40px;
    margin-right: 5%;
}
.SMCon .smList li .tbox {}
.SMCon .smList li .tbox .ti {
    font-family: montserrat_Bold;
    font-size: 24px;
}
.SMCon .smList li .tbox .tx {
    font-family: montserrat_Regular;
    font-size: 16px;
}
.SMCon .imgbox {
    padding-top: 48.3%;
}
.OSCon {
    width: 25%;
    float: right;
    position: relative;
}
.OSCon:before {
    content: '';
    width: 121px;
    height: 50px;
    background: url(/an/res/images/04.png) no-repeat;
    position: absolute;
    top: 0;
    left: 9%;
    z-index: 9;
}
.OSCon .HomeTit .title {
    width: 100%;
}
.OSCon .txtbox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 20.3% 2% 0 9%;
    box-sizing: border-box;
    z-index: 99;
}
.OSCon .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-top: 5%;
}
.OSCon .txtbox .txt p {}
.OSCon .imgbox {
    padding-top: 140%;
}
@media(max-width:1366px) {
    .SMCon .smList li {
        line-height: 26px;
    }
    
    .SMCon .txtbox {
        padding: 6%;
    }
    
    .OSCon .txtbox {
        padding-top: 17.5%;
    }
}
@media(max-width:1200px) {
    .SMCon .smList li {
        height: 6.5rem;
        line-height: 22px;
    }
    
    .SMCon .smList li .tbox .ti {
        font-size: 22px;
    }
}
@media(max-width:1024px) {
    .SMCon .imgbox {
        padding-top: 57%;
    }
    
    .OSCon .imgbox {
        padding-top: 166%;
    }
}
@media(max-width:768px) {
    .SMCon .HomeTit .title .tit,
    .OSCon .HomeTit .title .tit {
        margin-bottom: 10px;
        padding-bottom: 0px;
    }
    
    .SMCon,
    .OSCon {
        width: 100%;
        float: none;
    }
    
    .OSCon {
        margin-top: 2%;
    }
    
    .OSCon .imgbox {
        padding-top: 40%;
    }
    
    .OSCon .txtbox {
        padding: 5%;
    }
    
    .OSCon .txtbox .txt {
        font-family: montserrat_Regular;
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        line-height: 35px;
        letter-spacing: 0px;
        color: #ffffff;
        margin-top: 0%;
    }
}
@media(max-width:480px) {
    .SACon .saBox .sa_l .imgbox {
        padding-top: 90%;
    }
    
    .SMCon .imgbox {
        padding-top: 126%;
    }
    
    .SMCon .smList {
        margin-left: 0;
    }
    
    .SMCon .smList li {
        width: 100%;
        float: none;
        margin-left: 0;
        height: auto;
    }
    
    .SMCon .smList li .tbox .ti {
        font-size: 20px;
    }
    
    .OSCon .imgbox {
        padding-top: 52%;
    }
    
    .SMCon .smList li .No {
        font-size: 26px;
    }
}
@media(max-width:420px) {
    .OSCon .imgbox {
        padding-top: 60%;
    }
}
.BFCon {
    padding-top: 5%;
}
.BFCon .bfList {
    margin-left: -3.33%;
}
.BFCon .bfList li {
    width: 30%;
    margin-left: 3.33%;
    background-color: #ffffff;
}
.BFCon .bfList li a {
    padding: 6% 80px 6% 120px;
    position: relative;
    display: block;
    transition: none;
}
.BFCon .bfList li .ico {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.BFCon .bfList li .ico .i1 {
    display: block;
}
.BFCon .bfList li .ico .i2 {
    display: none;
}
.BFCon .bfList li .txt {
    font-family: montserrat_Bold;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 100px;
    letter-spacing: 0px;
    color: #333333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.BFCon .bfList li .more {
    border-left: 1px solid #e5ebf4;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 9;
    width: 68px;
    height: 100px;
    background: url(/an/res/images/more4.png) center no-repeat;
}
.BFCon .bfList li:hover a {
    background-color: #004098;
}
.BFCon .bfList li:hover .ico .i1 {
    display: none;
}
.BFCon .bfList li:hover .ico .i2 {
    display: block;
}
.BFCon .bfList li:hover .txt {
    color: #ffe100;
}
.BFCon .bfList li:hover .more {
    border-left: 1px solid #1a53a3;
    background: url(/an/res/images/more3.png) center no-repeat;
}
@media(max-width:1200px) {
    .BFCon .bfList {
        margin-left: -1.33%;
    }
    
    .BFCon .bfList li {
        width: 32%;
        margin-left: 1.33%;
    }
    
    .BFCon .bfList li .more,
    .BFCon .bfList li .ico img {
        height: 50px;
    }
    
    .BFCon .bfList li .txt {
        line-height: 50px;
    }
}
@media(max-width:768px) {
    .BFCon .bfList {
        margin-left: 0;
    }
    
    .BFCon .bfList li {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-bottom: 1%;
    }
    
    .BFCon .bfList li a {
        padding: 2% 80px 2% 110px;
    }
}

/* 人才与技术 */
.TTCon1 {
    background: #f3f6fa url(/an/res/images/tt_bg1.jpg) top center no-repeat;
    padding: 5% 0;
}
.ttList {
    margin: 3% 0;
}
.ttList .firstPeo {
    width: 18.75%;
    float: left;
    position: relative;
}
.ttList .firstPeo:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10%;
    left: 0;
    background-color: #004098;
    border-bottom: 2px solid #ffe100;
}
.ttList .firstPeo a {
    display: block;
    width: 76.7%;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}
.ttList .firstPeo .imgbox {
    padding-top: 139.2%;
}
.ttList .firstPeo .txtbox {
    text-align: center;
}
.ttList .firstPeo .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffe100;
    margin: 10px 0;
    direction: rtl;
    unicode-bidi: isolate;
    
}
.ttList .firstPeo .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 22px;
    letter-spacing: 0px;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    direction: rtl;
    unicode-bidi: isolate;
}
.ttList .slider {
    width: 81.25%;
    float: right;
    overflow: unset;
}
.ttList .slider .slick-prev {
    left: 1.8%;
}
.ttList .slider .slick-next {
    right: 0;
}
.ttList .slider .slick-list {
    padding-bottom: 5%;
}
.ttList .slider li {
    margin-left: 0.55%;
    position: relative;
}
.ttList .slider li:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10%;
    left: 0;
    background-color: #ffffff;
    border-bottom: 2px solid #004098;
}
.ttList .slider li a {
    display: block;
    width: 76.7%;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}
.ttList .slider li .imgbox {
    padding-top: 139.2%;
}
.ttList .slider li .txtbox {
    text-align: center;
}
.ttList .slider li .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #333333;
    margin: 10px 0;
    direction: rtl;
    unicode-bidi: isolate;
}
.ttList .slider li .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 22px;
    letter-spacing: 0px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    direction: rtl;
    unicode-bidi: isolate;
}
.ttList .slider li:hover:before {
    background-color: #e9eef5;
}
@media(max-width:768px) {
    .ttList .firstPeo {
        width: 30.75%;
    }
    
    .ttList .slider {
        width: 65.25%;
    }
    
    .ttList .slider .slick-list {
        padding-bottom: 10%;
    }
}
@media(max-width:488px) {
    .ttList .firstPeo {
        width: 47%;
    }
    
    .ttList .slider {
        width: 47%;
    }
    
    .ttList .slider li {
        margin-left: 0;
    }
    
    .ttList .slider .slick-list {
        padding-bottom: 22%;
    }
}
.tpList {
    background: #ffffff;
}
.tpList .slider {
    overflow: unset;
}
.tpList li {
    display: flex;
}
.tpList li .imgbox {
    width: 41.25%;
    padding-top: 28.13%;
    float: left;
}
.tpList li .txtbox {
    padding: 0 3%;
    width: 52.75%;
    float: right;
}
.tpList li .txtbox .txt {
    margin: 5% 0;
    max-height: 83%;
    overflow-y: auto;
    padding-right: 5%;
}
.tpList li .txtbox .txt::-webkit-scrollbar {
    width: 2px;
    height: 6px;
    -webkit-overflow-scrolling: touch;
    background-color: #e4ebf3;
    background-repeat: repeat-y;
}
.tpList li .txtbox .txt::-webkit-scrollbar-track {
    background-color: #e4ebf3;
}
.tpList li .txtbox .txt::-webkit-scrollbar-thumb {
    width: 4px;
    height: 18px;
    background-color: #004098;
}
.tpList li .txtbox .txt::-webkit-scrollbar-button {
    height: 0px;
    background-color: #e4ebf3;
}
.tpList li .txtbox .txt p {
    font-family: montserrat_Regular;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 60px;
    letter-spacing: 0px;
    color: #333333;
    position: relative;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right
}
.tpList li .txtbox .txt p:before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #004098;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 32px;
    display: none;
}
.CIPBox {
    background-color: #fff;
    margin-top: 2.5%;
}
.CIPBox .txtbox {
    width: 58.7%;
    float: left;
    padding: 0 3%;
    box-sizing: border-box;
}
.CIPBox .txtbox .boxwrap {
    margin: 5% 0;
    max-height: 83%;
    overflow-y: auto;
    padding-right: 5%;
}
.CIPBox .txtbox .boxwrap::-webkit-scrollbar {
    width: 2px;
    height: 6px;
    -webkit-overflow-scrolling: touch;
    background-color: #e4ebf3;
    background-repeat: repeat-y;
}
.CIPBox .txtbox .boxwrap::-webkit-scrollbar-track {
    background-color: #e4ebf3;
}
.CIPBox .txtbox .boxwrap::-webkit-scrollbar-thumb {
    width: 4px;
    height: 18px;
    background-color: #004098;
}
.CIPBox .txtbox .boxwrap::-webkit-scrollbar-button {
    height: 0px;
    background-color: #e4ebf3;
}
.CIPBox .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #004098;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}
.CIPBox .txtbox .line {
    width: 30px;
    height: 2px;
    background-color: #ffe100;
    margin: 2% 0 2% auto;
}
.CIPBox .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 38px;
    letter-spacing: 0px;
    color: #333333;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}
.CIPBox .pcList {
    width: 41.3%;
    float: right;
}
.CIPBox .pcList ul {}
.CIPBox .pcList ul.slick-dots {
    bottom: 30px;
}
.CIPBox .pcList .slick-dots li button {
    width: 10px;
    height: 10px;
}
.CIPBox .pcList ul li {}
.CIPBox .pcList ul .imgbox {
    padding-top: 68.1%;
}
@media(max-width:1600px) {
    .tpList .slick-prev {
        left: 0;
    }
    
    .tpList .slick-next {
        right: 0;
    }
}
@media(max-width:1440px) {
    .CIPBox .txtbox .tit {
        font-size: 40px;
    }
}
@media(max-width:1366px) {
    .CIPBox .txtbox .tit {
        font-size: 30px;
    }
}
@media(max-width:1024px) {
    .tpList li .txtbox .txt p {
        line-height: 38px;
        font-size: 16px;
    }
    
    .tpList li .txtbox .txt p:before {
        top: 18px;
    }
    
    .CIPBox .txtbox .txt {
        font-size: 16px;
    }
    
    .CIPBox .txtbox .tit {
        font-size: 26px;
    }
}
@media(max-width:480px) {
    .tpList li .imgbox,
    .tpList li .txtbox,
    .CIPBox .txtbox,
    .CIPBox .pcList {
        width: 100%;
        float: none;
    }
    
    .tpList li .imgbox {
        padding-top: 68%;
    }
    
    .tpList li .txtbox {
        box-sizing: border-box;
    }
    
    .CIPBox .txtbox {
        padding: 3%;
    }
}
@media(max-width:1024px) {}
.TTCon2 {
    padding: 5% 0 3%;
    background: #004098 url(/an/res/images/tt_bg2.jpg) top center no-repeat;
}
.ITList {
    overflow: hidden;
    margin-left: -2%;
}
.ITList li {
    width: 48%;
    float: left;
    margin-left: 2%;
    margin-bottom: 2%;
    background-color: #ffffff;
}
.ITList li a {
    display: block;
    padding: 5%;
    overflow: hidden;
}
.ITList li .No {
    float: left;
    width: 100px;
    height: 100px;
    background-color: #004098;
    border-radius: 0px 20px 0px 20px;
    font-family: montserrat_Bold;
    font-size: 48px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 38px;
    letter-spacing: 0px;
    color: #ffe100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ITList li .txtbox {
    float: right;
    width: 80%;
    height: 288px;
    overflow-y: auto;
    padding-right:2%;
}
.ITList li .txtbox::-webkit-scrollbar {
    width: 2px;
    height: 6px;
    -webkit-overflow-scrolling: touch;
    background-color: #e4ebf3;
    background-repeat: repeat-y;
}
.ITList li .txtbox::-webkit-scrollbar-track {
    background-color: #e4ebf3;
}
.ITList li .txtbox::-webkit-scrollbar-thumb {
    width: 4px;
    height: 18px;
    background-color: #004098;
}
.ITList li .txtbox::-webkit-scrollbar-button {
    height: 0px;
    background-color: #e4ebf3;
}
.ITList li .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #004098;
    text-align:right;
    direction: rtl;
    unicode-bidi: isolate;
}
.ITList li .txtbox .txt {
    font-family: montserrat_Regular;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #004098;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}
.ITList li .txtbox .line {
    width: 100%;
    height: 1px;
    background-color: #e4ebf3;
    position: relative;
    margin: 5% 0;
}
.ITList li .txtbox .line:before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #004098;
    position: absolute;
    left: 0;
    top: 0;
}
.ITList li .txtbox .con {
    font-family: montserrat_Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #333333;
    text-align:right;
}
.ITList li .txtbox .con *{ direction: rtl;
    unicode-bidi: isolate;}
.ITList li .txtbox .con p {}
@media(max-width:1024px) {
    .ITList li .No {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .ITList li .txtbox .tit {
        font-size: 24px;
    }
    
    .ITList li .txtbox .txt {
        font-size: 16px;
        line-height: 24px;
    }
    
    .ITList li .txtbox .con {
        font-size: 15px;
        line-height: 25px;
    }
}
@media(max-width:480px) {
    .ITList {
        margin-left: 0;
    }
    
    .ITList li {
        width: 100%;
        float: none;
        margin-left: 0;
    }
    
    .ITList li .No {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 0px 10px 0px 10px;
    }
}
.TTCon3 {
    padding: 5% 0;
    background: #f3f6fb url(/an/res/images/tt_bg3.jpg) top center no-repeat;
}
.TTCon3 .txtbox {
    font-family: montserrat_Regular;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 38px;
    letter-spacing: 0px;
    color: #333333;
    margin-bottom: 3%;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:justify;
    text-align-last:right;
    
}
.TTCon3 .tableCon {}
@media(max-width:1024px) {
    .TTCon3 .txtbox {
        font-size: 16px;
        line-height: 30px;
    }
}

/*20220414*/
.ChaCon .HomeTit .title {
    width: 100%;
}
.ChaCon .HomeTit .title .tit {
    width: 100%;
    text-align: right;
}
.ChaCon .HomeTit .title .tit:after {
    background: url(/an/res/images/tit_bg3.png) right no-repeat;
    right: 0;
    bottom: -12px;
}
.ChaCon .ChaCon_b .imgbox p {
    position: absolute;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-family: montserrat_Regular;
    text-align: right;
    font-size: 20px;
    bottom: -60px;
    left: 0;
    font-weight: bold;
    direction: rtl;
    unicode-bidi: isolate;
}
.ChaCon .ChaCon_b .imgbox {
    width: 38.25%;
    padding-top: 50%;
    overflow: visible;
}
.ChaCon .ChaCon_b .imgbox p i {
    margin-right: 20px;
}
.ChaCon .ChaCon_b {
    margin-top: 4.6%;
    position: relative;
    width: 100%;
    margin-bottom: 10%;
    display: inline-block;
    width: 100%;
}
.ChaCon .ChaCon_b:after {
    width: 75%;
    position: absolute;
    right: 0;
    top: 0;
    height: 890px;
    background: #f6f7f9;
    content: "";
    z-index: -1;
}
.ChaCon .ChaCon_b .ChaCon_r {
    width: 50%;
    padding: 5%;
    text-align: justify;
    font-family: montserrat_Regular;
    line-height: 30px;
    color: #333333;
    letter-spacing: 0px;
    word-break: break-word;
    text-align-last: right;
}
.ChaCon .ChaCon_b .ChaCon_r * {direction: rtl; unicode-bidi: isolate !important;}
@media(max-width:1024px) {
    .ChaCon .ChaCon_b .ChaCon_r {
        line-height: 24px;
    }
}
@media(max-width:768px) {
    .ChaCon .ChaCon_b .ChaCon_r {
        clear: both;
        float: none;
        line-height: 24px;
        width: 90%
    }
    
    .ChaCon .ChaCon_b .imgbox p {
        bottom: 0;
        line-height: 20px;
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        height: auto;
        padding: 10px 0;
        font-size: 16px;
    }
    
    .ChaCon .ChaCon_b:after {
        width: 100%;
    }
    
    .ChaCon .ChaCon_b .imgbox {
        width: 60%;
        padding-top: 80%;
        margin: 0 20%
    }
}
@media(max-width:480px) {
    .ChaCon .ChaCon_b .ChaCon_r {
        line-height: 20px;
    }
}
.ttList2 .slider {
    width: 100%;
}
.ttList2 .slider .slick-arrow {
    top: 40%
}
.ttList2 .slider .slick-prev {
    left: -5%
}
.ttList2 .slider .slick-next {
    right: -5%
}
.ttList2 .slider li:before {
    display: none
}
.ttList2 .slider li .imgbox {
    border: 20px solid #fff;
    padding-top: 125%;
}
.ttList2 .slider li:hover .imgbox {
    border-color: #004098
}
.ttList2 .slider li .txtbox .tit {
    font-family: montserrat_Regular;
}
.ttList2 .slider li:hover .txtbox .tit {
    color: #004098
}
.ttList2 .slider li a {
    width: 100%;
}
.HomeTit .title .tit:after {
    bottom: -10px
}
.ttList2 .slider li {
    margin: 0 0.2%
}
.ttList2 {
    margin: 3% 0 0
}
.info {
    font-family: montserrat_Regular;
    font-size: 18px;
    line-height: 38px;
    color: #333333;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:justify;
    text-align-last:right;
}
.Remark {
    display: inline-block;
    width: 100%;
    margin-bottom: 5%;
    text-align:right;
}
.Remark h3 {
    height: 22px;
    line-height: 22px;
    font-family: montserrat_Bold;
    font-size: 18px;
    color: #004098;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4ebf3;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}
.Remark h3 img {
    vertical-align: middle;
    margin-right: 10px;
}
.Remark p {
    font-family: montserrat_Regular;
    margin-top: 15px;
    margin-left: 40px;
    direction: rtl;
    unicode-bidi: isolate;
    display:flex;
    float:right;
}
.Remark p span {
    text-decoration: underline;
    font-size: 16px;
    color: #004098;
    height: 20px;
    line-height: 20px;
    float: left;
    margin-right: 10px;
    direction: rtl;
    unicode-bidi: isolate;
}
.Remark .w43 {
    width: 45%;
    margin-left: 0;
}
.Remark p em {
    float: left;
}
.Remark p.w43 em {
    float: left;
    width: 630px;
}
.ChCon1 {
    padding-bottom: 0;
}
.ChCon2 {
    background: #fff
}
.HonorBox {
    overflow: visible;
}
.slideTxtBoxss .hd ul {
    text-align: center;
}
.slideTxtBoxss .hd li {
    display: inline-block;
    width: auto;
    cursor: pointer;
    color: #004098;
    font-family: montserrat_Bold;
    font-size: 20px;
    padding: 0 50px;
    height: 60px;
    background-color: #f3f6fa;
    border-radius: 30px;
    line-height: 60px;
    margin: 0 0.5%
}
.slideTxtBoxss .bd {
    display: inline-block;
    background: #f3f6fa;
    width: 96%;
    padding: 5% 2% 1%
}
.slideTxtBoxss .hd {
    margin-bottom: 4%;
}
.slideTxtBoxss .bd {
    position: relative;
    height: 994px
}
.slideTxtBoxss .bd ul {
    opacity: 0;
    position: absolute;
    top: 5%;
    width: 96%;
    transition: all 0.4s
}
.slideTxtBoxss .hd li.on {
    background-color: #004098;
    color: #ffe100;
}
.HonorBox .slick-slide {
    margin: 0 15px;
    display: inline-block;
}
.HonorBox .item h3 {
    line-height: 22px;
    height: 56px;
    align-items: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5px 0 35px;
    border-radius: 12px 0 0 0;
    background: url(/an/res/images/tit_bg4.png) no-repeat right center;
}
.HonorBox .item h3 img {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.HonorBox .item h3 {
    font-family: montserrat_Bold;
    font-size: 17px;
    line-height: 22px;
    color: #ffe100;
}
.HonorBox .item a {
    display: inline-block;
    width: 100%;
    background: #fff;
}
.HonorBox .item .itemImg {
    width: 100%;
    overflow: hidden;
}
.HonorBox .item .itemImg img {
    width: 100%;
    height: 325px;
    transition: all 0.3s
}
.HonorBox .item .dot2 {
    height: 84px;
    -webkit-line-clamp: 3;
    line-height: 28px;
    padding: 0px 20px;
    background: #fff;
    overflow: hidden;
    margin: 12px auto;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}
.HonorBox .item {
    margin-bottom: 30px;
}
.HonorBox .slick-next {
    right: -120px;
}
.HonorBox .slick-prev {
    left: -120px
}
.HonorBox .slick-track {
    width: 100%;
    transition: all 0s
}
.HonorBox .item:hover .itemImg img {
    transform: scale(1.1);
}
@media(max-width:1400px) {
    .w1600 {
        max-width: 1300px
    }
    
    .ttList2 .slider .slick-next {
        right: 0
    }
    
    .ttList2 .slider .slick-prev {
        left: 0
    }
    
    .Remark .w43 {
        width: 35%
    }
    
    .Remark p.w43 em,
    .Remark p em {
        width: auto;
        max-width: 75%
    }
}
@media(max-width:768px) {
    .Remark p,
    .Remark .w43 {
        width: 100%;
    }
    
    .Remark p.w43 em,
    .Remark p em {
        width: auto;
        max-width: 85%
    }
    
    .HonorBox .item h3 {
        width: 100%;
        height: auto;
        padding-top: 6px;
        padding-bottom: 6px;
        display: block;
        background-size: 100% 100%
    }
    
    .slideTxtBoxss .bd {
        width: 100%;
        padding: 5% 0
    }
    
    .HonorBox .item .dot2 {
        padding: 12px;
        height: auto;
        -webkit-line-clamp: 100;
        margin: 0;
        line-height: 20px;
    }
    
    .HonorBox .slick-slide {
        margin: 0 auto
    }
    
    .ttList2 .slider .slick-next,
    .HonorBox .slick-next {
        right: 0
    }
    
    .ttList2 .slider .slick-prev,
    .HonorBox .slick-prev {
        left: 0
    }
    
    .ttList2 .slider .slick-list {
        padding-bottom: 5%;
    }
    
    .slideTxtBoxss .hd li {
        padding: 0 20px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
    
    .info {
        line-height: 24px;
        font-size: 16px
    }
    
    .slideTxtBoxss .bd ul {
        left: 2%
    }
    
    .slideTxtBoxss .bd {
        height: 1050px;
    }
}

/*20220418*/
.JxhCon .Jxh_p1 .HomeTit {
    background: none;
    display: inline-block;
    width: 100%;
    padding: 0
}
.JxhCon .Jxh_p1 .HomeTit .title {
    width: 100%;
}
.JxhCon .Jxh_p1 .info {
    font-family: montserrat_Regular;
    font-size: 18px;
    line-height: 30px;
    color: #666666;
    /* text-align: justify; */
    
    margin-top: 20px;
}
.JxhCon .Jxh_p1 .HomeTit .title .tit:after {
    bottom: 0
}
.JxhCon .Jxh_p1 .Jxh_p1_b {
    max-width: 1140px;
    display: block;
    margin: 0 auto;
    height: 300px;
    background: url(/an/res/images/line.png) no-repeat bottom center;
    margin-top: 100px;
}
.JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box {
    width: 200px;
    height: 200px;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    padding: 0 10px;
    text-align: center;
    color: #fff;
    margin-right: 113px;
    background-color: #004098;
    border-radius: 50%;
    box-shadow: 0px 20px 100px 0px rgba(0, 64, 152, 0.15);
    position: relative;
}
.JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
    background-color: #ffe106;
    position: absolute;
    top: -45px;
    left: 50%;
    margin-left: -45px;
}
.JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box .icon img {
    vertical-align: middle;
}
.JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box:nth-child(4n) {
    margin-right: 0;
}
.JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box p {
    font-family: montserrat_Bold;
    font-size: 18px;
    line-height: 25px;
    color: #ffffff;
    text-align: center;
    margin-top: 40%;
}
.JxhCon .Jxh_p1 .btns {
    margin: 0 10px;
    margin-top: 40px;
    font-family: montserrat_Bold;
    font-size: 26px;
    line-height: 25px;
    color: #004098;
    width: 34.375%;
    padding: 35px 0;
    height: 50px;
    background-color: #ffffff;
    box-shadow: 0px 20px 100px 0px rgba(0, 64, 152, 0.15);
    border-radius: 60px;
    border: dashed 2px #004098;
    display: inline-block;
}
.JxhCon .Jxh_p2 {
    display: inline-block;
    width: 100%;
    margin-top: 120px;
    padding: 110px 0;
    background: url(/an/res/images/jxhbg.jpg) no-repeat bottom center;
}
.JxhCon .Jxh_p2 .HomeTit .title .tit {
    color: #fff
}
.JxhCon .Jxh_p2 .info {
    color: #fff;
    opacity: 0.6;
}
.JxhCon .Jxh_p2m h3 {
    font-family: montserrat_Bold;
    font-size: 34px;
    height: 34px;
    line-height: 34px;
    color: #ffffff;
    margin-top: 0;
}
.JxhCon .Jxh_p2m .Jxh_p2mb {
    width: 100%;
    height: 411px;
    background-color: rgba(255, 255, 255, .1);
    padding: 40px;
    box-sizing: border-box;
    margin-top: 35px;
    position: relative;
}
.JxhCon .Jxh_p2m .Jxh_p2mb h4 {
    font-family: montserrat_Bold;
    font-size: 26px;
    color: #ffe100;
    line-height: 30px;
    margin-bottom: 30px;
}
.JxhCon .Jxh_p2m .Jxh_p2mb .Jxh_p2mbox {
    width: 33.33%;
    float: left;
}
.JxhCon .Jxh_p2m .Jxh_p2mb .Jxh_p2mbox .icon {
    width: 90px;
    height: 90px;
    background-color: #ffe100;
    margin-right: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
    float: left;
}
.JxhCon .Jxh_p2m .Jxh_p2mb .Jxh_p2mbox .icon img {
    vertical-align: middle;
}
.JxhCon .Jxh_p2m .Jxh_p2mb .Jxh_p2mbox h5 {
    font-family: montserrat_Bold;
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    margin-top: 20px;
}
.JxhCon .Jxh_p2m .Jxh_p2mb .Jxh_p2mbox span {
    font-family: montserrat_Regular;
    font-size: 16px;
    opacity: 0.5;
    color: #ffffff;
}
.JxhCon .Jxh_p2m .Jxh_p2mb:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    left: 0;
    bottom: 190px;
}
.JxhCon .Jxh_p2m .Jxh_p2mbb li {
    font-family: AdobeHeitiStd-Regular;
    font-size: 15px;
    line-height: 40px;
    color: #ffffff;
    width: 50%;
    float: left;
    text-indent: 11px;
    background: url(/an/res/images/yuan.png) no-repeat left center;
}
.JxhCon .Jxh_p2m .Jxh_p2mbb li a {
    color: #fff
}
.JxhCon .Jxh_p2m .Jxh_p2mbb {
    margin-top: 90px;
}
.JxhCon .Jxh_p2b {
    margin-top: 100px;
}
.JxhCon .Jxh_p2b h3 {
    font-family: montserrat_Bold;
    font-size: 34px;
    height: 34px;
    line-height: 30px;
    color: #ffffff;
}
.JxhCon .Jxh_p2bb {
    height: 860px;
    position: relative;
    width: 100%;
}
.JxhCon .Jxh_p2bb .midbox {
    width: 46.25%;
    position: absolute;
    left: 50%;
    margin-left: -23.125%;
    top: 220px;
    ;
    height: 400px;
}
.JxhCon .Jxh_p2bb .midbox .midbox1 {
    width: 54%;
    height: 100%;
    background: url(/an/res/images/jjhbg1.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 0
}
.JxhCon .Jxh_p2bb .midbox .midbox2 {
    width: 260px;
    height: 260px;
    background-color: #ffe100;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -130px;
    margin-left: -130px;
    font-size: 50px;
    font-family: montserrat_Bold;
    color: #004098;
    line-height: 260px;
    text-align: center;
}
.JxhCon .Jxh_p2bb .midbox .midbox3 {
    width: 54%;
    height: 100%;
    background: url(/an/res/images/jjhbg2.png) no-repeat center;
    position: absolute;
    right: 0;
    top: 0
}
.JxhCon .Jxh_p2bb .midbox .midbox1 img {
    margin-top: 120px;
    margin-left: 114px;
}
.JxhCon .Jxh_p2bb .midbox .midbox1 p {
    font-family: montserrat_Bold;
    font-size: 22px;
    line-height: 25px;
    color: #ffffff;
    text-align: center;
    width: 70%;
    margin-top: 20px;
}
.JxhCon .Jxh_p2bb .midbox .midbox3 img {
    margin-top: 120px;
    margin-left: 250px;
}
.JxhCon .Jxh_p2bb .midbox .midbox3 p {
    width: 70%;
    float: right;
    text-align: center;
    font-family: montserrat_Bold;
    font-size: 22px;
    line-height: 25px;
    color: #ffffff;
    margin-top: 20px;
}
.Jxh_p2bb .plist {
    margin-top: 60px;
}
.Jxh_p2bb .plist p {
    position: absolute;
    width: 310px;
    height: 60px;
    line-height: 60px;
    font-family: montserrat_Regular;
    color: #ffffff;
    text-indent: 20px;
}
.Jxh_p2bb .plist p.left {
    background: url(/an/res/images/jjhbg3.png) no-repeat left center;
    text-align: left;
}
.Jxh_p2bb .plist p.right {
    background: url(/an/res/images/jjhbg4.png) no-repeat right center;
    text-align: right;
    padding-right: 20px;
    text-indent: 0
}
.Jxh_p2bb .plist .p1 {
    top: 120px;
    left: 680px;
}
.Jxh_p2bb .plist .p2 {
    top: 0px;
    left: 510px;
}
.Jxh_p2bb .plist .p3 {
    top: 80px;
    left: 330px;
}
.Jxh_p2bb .plist .p4 {
    top: 160px;
    left: 250px;
}
.Jxh_p2bb .plist .p5 {
    top: 240px;
    left: 170px;
}
.Jxh_p2bb .plist .p6 {
    top: 320px;
    left: 90px;
}
.Jxh_p2bb .plist .p7 {
    top: 400px;
    left: 0px;
}
.Jxh_p2bb .plist .p8 {
    top: 480px;
    left: 80px;
}
.Jxh_p2bb .plist .p9 {
    top: 560px;
    left: 160px;
}
.Jxh_p2bb .plist .p10 {
    top: 640px;
    left: 230px;
}
.Jxh_p2bb .plist .p11 {
    top: 720px;
    left: 380px;
}
.Jxh_p2bb .plist .p12 {
    top: 650px;
    left: 670px;
}
.Jxh_p2bb .plist .p13 {
    top: 10px;
    right: 470px
}
.Jxh_p2bb .plist .p14 {
    top: 80px;
    right: 180px
}
.Jxh_p2bb .plist .p15 {
    top: 160px;
    right: 120px
}
.Jxh_p2bb .plist .p16 {
    top: 240px;
    right: 60px
}
.Jxh_p2bb .plist .p17 {
    top: 320px;
    right: 0px
}
.Jxh_p2bb .plist .p18 {
    top: 400px;
    right: 60px
}
.Jxh_p2bb .plist .p19 {
    top: 480px;
    right: 120px
}
.Jxh_p2bb .plist .p20 {
    top: 560px;
    right: 180px
}
.Jxh_p2bb .plist .p21 {
    top: 640px;
    right: 240px
}
.Jxh_p2bb .plist .p22 {
    top: 720px;
    right: 390px
}
.Jxh_p2bb .plist .p23 {
    bottom: 0px;
    right: 640px
}
.Jxh_p3 {
    padding: 120px 0;
    display: inline-block;
    width: 100%;
    background: #F3F6FB
}
.Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l {
    width: 50%;
    height: 480px;
    box-sizing: border-box;
    padding: 80px 90px;
    text-align: center;
    background-color: #004098;
    margin-top: 25px;
}
.Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l h3 {
    font-family: montserrat_Bold;
    font-size: 30px;
    line-height: 35px;
    color: #ffffff;
}
.Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l .Jxh_p3_p1lb .Jxh_p3_p1lbox {
    display: inline-block;
    margin: 0 -10px;
    width: 200px;
    margin-top: 50px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 50%;
    height: 200px;
}
.Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l .Jxh_p3_p1lb .Jxh_p3_p1lbox img {
    margin: 60px auto 20px;
}
.Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l .Jxh_p3_p1lb .Jxh_p3_p1lbox p {
    font-family: montserrat_Regular;
    font-size: 18px;
    color: #ffffff;
}
.Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1r {
    width: 50%;
    padding-top: 30%;
    margin-top: 25px;
}
.Jxh_p3 .Jxh_p3_p2 {
    box-sizing: border-box;
    padding: 60px;
    background: #fff;
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}
.Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box {
    width: 48%;
}
.Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .imgbox {
    width: 43%;
    padding-top: 48%;
}
.Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr {
    border: 1px solid #ebebeb;
    ;
    height: auto;
    width: calc(57% - 1px);
    ;
    float: right;
    border-left: 0
}
.Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr h4 {
    font-family: montserrat_Bold;
    font-size: 26px;
    line-height: 25px;
    color: #000000;
    margin-left: 40px;
    margin-top: 50px;
    position: relative;
    margin-bottom: 80px;
}
.Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr h4:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 30px;
    height: 6px;
    background-color: #ffe100;
}
.Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr p {
    font-family: montserrat_Regular;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 25px;
    color: #666666;
    padding-left: 15px;
    background: url(/an/res/images/yuan2.png) no-repeat left center;
    margin-left: 40px;
}
.Jxh_p4 .HomeTit .title p {
    font-family: montserrat_Regular;
    font-size: 26px;
    color: #000000;
    line-height: 30px;
}
.Jxh_p4 .Jxh_p4tbox {
    width: 32%;
    margin-right: 1%;
    float: left;
    height: 150px;
    background-color: #004098;
    border-radius: 75px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}
.Jxh_p4 .Jxh_p4t .Jxh_p4tbox img {
    margin: 30px auto 10px;
    display: block;
}
.Jxh_p4 .Jxh_p4t .Jxh_p4tbox:nth-child(4n) {
    margin-right: 0;
}
.Jxh_p4 .Jxh_p4t .Jxh_p4tbox p {
    font-family: montserrat_Regular;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
}
.Jxh_p4 .Jxh_p4t h3 {
    font-family: montserrat_Bold;
    font-size: 30px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 30px;
}
.Jxh_p4 .Jxh_p4t {
    padding: 60px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    background: #fff;
    margin-top: 40px;
}
.Jxh_p5 {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 50px 60px;
    display: inline-block;
    background: #fff;
    width: 100%;
    margin-top: 16px;
}
.Jxh_p5 h3 {
    font-family: montserrat_Bold;
    font-size: 30px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 40px;
}
.Jxh_p5 .Jxh_p5tbox {
    width: calc(32.5% - 4px);
    text-align: center;
    ;
    float: left;
    margin-right: 1.25%;
    height: 150px;
    background-color: #ffffff;
    box-shadow: 0px 20px 100px 0px rgba(0, 64, 152, 0.15);
    border-radius: 75px;
    border: solid 2px rgba(0, 64, 152, 0.2);
}
.Jxh_p5 .Jxh_p5tbox:nth-child(3) {
    margin-right: 0;
}
.Jxh_p5 .Jxh_p5tbox img {
    margin: 35px auto 14px;
}
.Jxh_p5 .Jxh_p5tbox p {
    font-family: montserrat_Bold;
    font-size: 20px;
    line-height: 20px;
    color: #004098;
}
.Jxh_p5 .Jxh_p5t {
    display: inline-block;
    background: #fff;
    width: 100%;
}
.JxhCon .Jxh_p5 .slideBox li {
    background: #fff
}
.JxhCon .Jxh_p5 .slideBox li .imgbox {
    width: 60%;
    padding-top: 35%;
    float: right;
}
.JxhCon .Jxh_p5 .slideBox li .txtbox {
    float: left;
    width: 40%;
    float: left;
    box-sizing: border-box;
    padding: 3vw;
    box-shadow: 0px 20px 100px 0px rgba(0, 64, 152, 0.15);
    position: relative;
}
.JxhCon .slideBox li .txtbox {
    background: #fff
}
.JxhCon .Jxh_p5 .slideBox li .txtbox .tit {
    font-family: montserrat_Bold;
    font-size: 26px;
    line-height: 25px;
    color: #003e96;
    padding-bottom: 40px;
    border-bottom: 1px solid #efefef;
    ;
}
.JxhCon .Jxh_p5 .slideBox {
    background: none;
    margin-top: 70px;
}
.JxhCon .Jxh_p5 .slideBox li .txtbox .txtboxs {
    margin-bottom: 20px;
}
.JxhCon .Jxh_p5 .slideBox li .txtbox .txtboxs h4 {
    font-family: montserrat_Regular;
    font-size: 16px;
    color: #999;
    position: relative;
    padding-left: 20px;
    font-weight: normal;
}
.JxhCon .Jxh_p5 .slideBox li .txtbox .txtboxs h4:after {
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 2px;
    background-color: #004098;
    content: ""
}
.JxhCon .Jxh_p5 .slideBox li .txtbox .txtboxs p {
    font-family: montserrat_Bold;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    padding-left: 20px;
}
.JxhCon .slideBox li .txtbox .txt {
    -webkit-line-clamp: 100;
}
.JxhCon .slideBox li .num {
    position: absolute;
    font-family: montserrat_Bold;
    font-size: 100px;
    opacity: 0.1;
    color: #003e96;
    right: 40px;
    bottom: 0;
}
.JxhCon .slick-list {
    box-shadow: 0px 20px 100px 0px rgba(0, 64, 152, 0.15)
}
.JxhCon .slideBox .slick-arrow {
    box-shadow: none
}
.JxhCon .slideBox .slick-prev {
    left: 20px;
    background: url(/an/res/images/arr_prev2.png) no-repeat center;
}
.JxhCon .slideBox .slick-next {
    right: 20px;
    background: url(/an/res/images/arr_next2.png) no-repeat center
}
@media(max-width:1440px) {
    .JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box p {
        font-size: 16px;
    }
    
    .Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l {
        padding: 50px;
        height: auto;
    }
    
    .Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l h3 {
        font-size: 20px
    }
    
    .Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1r {
        padding-top: 32.5%;
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr h4 {
        font-size: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr h4:after {
        bottom: -20px;
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr p {
        margin-bottom: 20px;
    }
    
    .SubBan .txtbox .tit {
        font-size: 40px;
    }
    
    .JxhCon .Jxh_p2bb .midbox {
        width: 40%;
        margin-left: -20%;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox3 {
        background-size: 100%
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox1 {
        background-size: 100%
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox2 {
        height: 150px;
        line-height: 150px;
        width: 150px;
        margin-top: -75px;
        margin-left: -75px;
        font-size: 30px
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox3 img {
        margin-left: 150px;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox3 p {
        font-size: 20px;
    }
    
    .Jxh_p2bb .plist .p12 {
        left: 560px;
    }
    
    .Jxh_p2bb .plist .p13 {
        right: 300px;
    }
    
    .Jxh_p2bb .plist .p2 {
        left: 400px
    }
    
    .Jxh_p2bb .plist .p1 {
        left: 580px;
    }
    
    .Jxh_p2bb .plist .p23 {
        left: 500px
    }
    
    .Jxh_p2bb .plist .p22 {
        right: 300px;
    }
    
    .Jxh_p2bb .plist .p11 {
        left: 300px
    }
}
@media(max-width:1366px) {
    .JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box {
        margin-right: 106px;
    }
    
    .JxhCon .Jxh_p5 .slideBox li .txtbox {
        padding: 40px;
    }
}
@media(max-width:768px) {
    .SubBan .txtbox .tit {
        font-size: 16px;
    }
    
    .JxhCon .Jxh_p1 .Jxh_p1_b {
        width: 100%;
        background: none;
        margin-top: 40px;
    }
    
    .JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box {
        width: 48%;
        margin: 10% auto 5%;
        height: 62%;
    }
    
    .JxhCon .Jxh_p1 .Jxh_p1_b .Jxh_p1_box:nth-child(2n) {
        float: right;
    }
    
    .JxhCon .Jxh_p1 .btns {
        width: calc(100% - 4px);
        padding: 15px 0;
        font-size: 20px;
        margin-top: 20px;
    }
    
    .JxhCon .Jxh_p2 {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .Jxh_p2 .HomeTit .title .tit {
        font-size: 20px;
        padding-bottom: 10px;
    }
    
    .JxhCon .Jxh_p2 .info {
        line-height: 24px;
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mb {
        height: auto;
        display: inline-block;
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mb .Jxh_p2mbox {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mb h4 {
        display: none
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mb .Jxh_p2mbox h5 {
        margin-top: 10px;
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mbb li {
        width: 95%;
        text-indent: 0;
        padding-left: 5%;
        line-height: 24px;
        margin-bottom: 10px;
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mbb {
        margin-top: 30px;
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mb:after {
        bottom: 320px;
    }
    
    .JxhCon .Jxh_p2b {
        margin-top: 40px;
    }
    
    .JxhCon .Jxh_p2 {
        background-size: auto 100%;
    }
    
    .JxhCon .Jxh_p2bb {
        display: inline-block;
        width: 100%;
        height: auto;
        position: static;
        margin: 0 auto
    }
    
    .JxhCon .Jxh_p2bb .midbox {
        position: relative;
        width: 100%;
        margin: 0 auto;
        left: 0;
        margin: 0 auto;
        top: 0;
        margin-top: 40px;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox1,
    .JxhCon .Jxh_p2bb .midbox .midbox2,
    .JxhCon .Jxh_p2bb .midbox .midbox3 {
        width: 50%;
        float: left;
        height: auto;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox2 {
        width: 100px;
        height: 100px;
        margin-left: -50px;
        margin-top: -50px;
        font-size: 30px;
        line-height: 100px;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox3,
    .JxhCon .Jxh_p2bb .midbox .midbox1 {
        width: 50%;
        height: 100%;
        float: left;
    }
    
    .Jxh_p2bb .plist p {
        width: 100%;
        float: left;
        position: static;
        text-align: center;
    }
    
    .Jxh_p2bb .plist p.left,
    .Jxh_p2bb .plist p.right {
        text-align: center;
        background-position: center;
        margin-bottom: 10px;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox1 img {
        margin-left: 50px;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox3 img {
        margin-left: 50%;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox3 p,
    .JxhCon .Jxh_p2bb .midbox .midbox1 p {
        font-size: 16px;
        line-height: 20px;
    }
    
    .Jxh_p2bb .plist p.right {
        padding-right: 0;
    }
    
    .Jxh_p3 {
        padding: 40px 0
    }
    
    .Jxh_p3 .HomeTit .title .tit {
        font-size: 20px;
    }
    
    .Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1l {
        width: 100%;
        height: auto;
    }
    
    .Jxh_p3 .Jxh_p3_p1 .Jxh_p3_p1r {
        width: 100%;
        margin-top: 0;
    }
    
    .Jxh_p3 .Jxh_p3_p2 {
        padding: 0
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box {
        width: 100%;
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .imgbox {
        width: 100%;
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr {
        width: 100%;
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr h4 {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 20px;
    }
    
    .Jxh_p3 .Jxh_p3_p2 .Jxh_p3_p2box .Jxh_p3_p2boxr p {
        line-height: 20px;
    }
    
    .Jxh_p4 .HomeTit .title p {
        font-size: 16px;
        line-height: 20px;
    }
    
    .Jxh_p4 .Jxh_p4t {
        padding: 10px
    }
    
    .Jxh_p4 .Jxh_p4tbox {
        width: 100%;
        height: 120px;
    }
    
    .Jxh_p4 .Jxh_p4t .Jxh_p4tbox img {
        margin: 10px auto
    }
    
    .Jxh_p4 .Jxh_p4t .Jxh_p4tbox p {
        font-size: 16px;
    }
    
    .Jxh_p5 {
        padding: 10px;
    }
    
    .Jxh_p5 .Jxh_p5tbox {
        width: 100%;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .Jxh_p5 .Jxh_p5tbox img {
        margin: 10px auto
    }
    
    .Jxh_p5 .Jxh_p5tbox p {
        font-size: 18px;
    }
    
    .JxhCon .Jxh_p5 .slideBox li .imgbox {
        width: 100%;
        padding-top: 66%
    }
    
    .JxhCon .Jxh_p5 .slideBox li .txtbox {
        height: auto !important;
        width: 100%;
        padding: 20px
    }
    
    .JxhCon .slideBox li .num {
        font-size: 60px;
        right: 20px;
    }
    
    .Jxh_p4 .Jxh_p4t h3 {
        font-size: 20px;
    }
}

/*信息化数字化管理*/
.XxhCon:before {
    display: none
}
.XxhCon .Ab_r {
    width: 55%;
}
.XxhCon .Ab_l {
    width: 45%;
}
.XxhCon .Ab_l .info {
    font-family: montserrat_Regular;
    font-size: 18px;
    line-height: 38px;
    color: #333333;
    /* text-align: justify; */
    
    width: 80%;
    margin-top: 60px;
}
.XxhPart2 {
    height: 790px;
    background: url(/an/res/images/xxhbg1.png) no-repeat center #ffffff;
    padding: 60px 100px;
    box-sizing: border-box;
}
.XxhPart2 .XxhPart2_t {
    height: 250px;
    width: 100%;
    position: relative;
}
.XxhPart2 .XxhPart2_tbox {
    width: 170px;
    height: 170px;
    text-align: center;
    box-sizing: border-box;
    padding: 10px;
    float: left;
    margin-right: 76px;
    position: relative;
}
.XxhPart2 .XxhPart2_tbox .box {
    width: 150px;
    height: 100px;
    border-radius: 50%;
    background-color: #004098;
    padding-top: 50px;
    position: relative;
}
.XxhPart2 .XxhPart2_tbox .box p {
    font-family: montserrat_Regular;
    font-size: 18px;
    color: #ffffff;
}
.XxhPart2 .XxhPart2_tbox .box h3 {
    font-family: montserrat_Bold;
    font-size: 20px;
    color: #ffe100;
    line-height: 22px;
}
.XxhPart2 .XxhPart2_tbox1 .box {
    background: url(/an/res/images/xxhicon1.png) no-repeat center;
}
.XxhPart2 .XxhPart2_tbox2 .box {
    background: url(/an/res/images/xxhicon2.png) no-repeat center;
}
.XxhPart2 .XxhPart2_tbox3 .box {
    background: url(/an/res/images/xxhicon3.png) no-repeat center;
}
.XxhPart2 .XxhPart2_tbox4 .box {
    background: url(/an/res/images/xxhicon4.png) no-repeat center;
}
.XxhPart2 .XxhPart2_tbox5 .box {
    background: url(/an/res/images/xxhicon5.png) no-repeat center;
}
.XxhPart2 .XxhPart2_tbox6 .box {
    background: url(/an/res/images/xxhicon6.png) no-repeat center;
}
.XxhPart2 .XxhPart2_tbox:nth-child(2n) {
    margin-top: 80px;
}
.XxhPart2 .XxhPart2_tbox6 {
    margin-right: 0;
}
.XxhPart2 .XxhPart2_tbox:after {
    width: 80px;
    height: 1px;
    border-bottom: 2px dashed #CEDAEB;
    content: "";
    transform: rotate(45deg);
    position: absolute;
    left: 98%;
    top: 90%
}
.XxhPart2 .XxhPart2_tbox:nth-child(2n):after {
    transform: rotate(135deg);
    top: 20%
}
.XxhPart2 .XxhPart2_tbox6:after {
    display: none
}
.XxhPart2 .XxhPart2_tbox6 .box p {
    margin-top: -10px;
}
.XxhPart2 .XxhPart2_b {
    margin-top: 60px;
}
.XxhPart2 .XxhPart2_b .XxhPart2_box {
    text-align: center;
    width: 680px;
    height: 360px;
    background: url(/an/res/images/xxhbg2.png) no-repeat center;
    padding: 30px 60px;
    box-sizing: border-box;
}
.XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_t {
    position: relative;
    display: inline-block;
    width: 381px;
    height: 221px;
    background: url(/an/res/images/xxhbg4.png) no-repeat center
}
.XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_t .XxhPart2_box_tn {
    width: 50%;
    float: left;
    text-align: center;
}
.XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_t .XxhPart2_box_tn img {
    margin: 50px auto 15px;
}
.XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_t .XxhPart2_box_tn p {
    font-family: montserrat_Bold;
    font-size: 20px;
    line-height: 20px;
    color: #ffe100;
}
.XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_t:after {
    width: 340px;
    height: 180px;
    position: absolute;
    left: 20px;
    top: 20px;
    content: "";
    background: url(/an/res/images/xxhbg3.png) no-repeat center
}
.XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_b {
    font-family: montserrat_Bold;
    line-height: 24px;
    font-size: 20px;
    color: #ffffff;
    line-height: 90px;
    height: 90px;
    background: url(/an/res/images/line2.png) no-repeat top center;
    margin-top: 20px;
}
.XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_b2 {
    height: 48px;
    padding: 22px 0;
    line-height: 24px;
}
.XxhPart3 {
    margin-top: 100px;
}
.XxhPart3 h3 {
    font-size: 30px;
    font-family: montserrat_Bold;
    color: #004098;
}
.Jmprocess {
    background: none: ;
    padding-bottom: 4.5%;
}
.Jmprocess .subtit h2 {
    color: #585353;
}
.Jmprocess .subtit p {
    color: #939393;
}
.Jmprocess .owl-dots {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
}
.Jmprocess .scroll {
    background: url(/an/res/images/dateline.png) center center no-repeat;
    height: 400px;
    position: relative;
    padding: 0px 5px;
}
.Jmprocess .scroll .item {
    width: 380px;
    height: 150px;
    color: #333333;
    cursor: pointer;
    background: url(/an/res/images/xxbg3.png) no-repeat center;
    text-align: left;
    padding-left: 25px;
    position: relative;
}
.Jmprocess .scroll .item .arr {
    border: solid 5px #C2D2E6;
    text-align: center;
    line-height: 60px;
    position: absolute;
    margin-left: -35px;
    top: 50%;
    left: 50%;
    bottom: -70px;
    top: auto;
    background-color: #004098;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.Jmprocess .scroll .item h2 {
    padding-top: 26px;
    font-family: montserrat_Bold;
    font-size: 22px;
    line-height: 22px;
    color: #004098;
}
.Jmprocess .scroll .item p {
    font-family: montserrat_Regular;
    font-size: 18px;
    color: #333333;
    line-height: 36px;
    padding-right: 20px;
}
.Jmprocess .scroll .item .arr img {
    width: auto;
    vertical-align: middle;
    margin: 19px auto;
    height: 22px;
}
.Jmprocess .scroll .item.next {
    margin-top: 220px;
    background: url(/an/res/images/xxbg2.png) no-repeat center;
}
.Jmprocess .scroll .item.next .arr {
    top: -70px;
    left: 50%;
    margin-left: -35px;
    text-align: center;
}
.Jmprocess .scroll .owl-prev {
    position: absolute;
    left: -100px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #004098;
    top: 138px;
    text-indent: -999em;
    overflow: hidden;
    background: url(/an/res/images/sarr1.png) no-repeat center center;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.Jmprocess .scroll .owl-prev:hover {
    background: #fff url(/an/res/images/sarr01.png) no-repeat center center;
    border: 1px solid #fff;
    box-shadow: 0px 0px 8px #ccc;
}
.Jmprocess .scroll .owl-next {
    position: absolute;
    right: -100px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #004098;
    top: 138px;
    text-indent: -999em;
    overflow: hidden;
    background: url(/an/res/images/sarr2.png) no-repeat center center;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.Jmprocess .scroll .owl-next:hover {
    background: #fff url(/an/res/images/sarr02.png) no-repeat center center;
    border: 1px solid #fff;
    box-shadow: 0px 0px 8px #ccc;
}
@media ( min-width:769px) 
{
    .XxhCon .Ab_l .HomeTit{ width:80%;}
    }
@media ( max-width:1200px) {
    .Jmprocess .scroll {
        padding: 0px 10px;
    }
    
    .Jmprocess .scroll .owl-prev {
        left: 0px;
        width: 30px;
        height: 30px;
    }
    
    .Jmprocess .scroll .owl-next {
        right: 0px;
        width: 30px;
        height: 30px;
    }
}
@media ( max-width:768px) {
    .Jmprocess .scroll {
        padding: 0px 0px;
        height: 150px;
    }
    
    .Jmprocess .scroll .item {
        width: 100%;
        background: #fff url(/an/res/images/jmbg1.png) center no-repeat;
    }
    
    .Jmprocess .scroll .item:hover {
        background: #808080 url(/an/res/images/jmbg2.png) center no-repeat;
    }
    
    .Jmprocess .scroll .item.next {
        margin-top: 0px;
    }
    
    .Jmprocess .scroll .item {
        background: #fff !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        padding: 10px 35px;
    }
    
    .Jmprocess .scroll .owl-prev {
        top: 50%;
        margin-top: -15px;
    }
    
    .Jmprocess .scroll .owl-next {
        top: 50%;
        margin-top: -15px;
    }
    
    .Jmprocess .owl-carousel .owl-controls .owl-nav .owl-prev {
        top: 40px;
    }
    
    .Jmprocess .owl-carousel .owl-controls .owl-nav .owl-next {
        top: 40px;
    }
    
    .XxhPart3 {
        margin-top: 5%;
        margin-bottom: 4%;
    }
    
    .XxhPart3 h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }
    
    .Jmprocess .scroll .item p {
        font-size: 14px;
        line-height: 24px;
    }
}
.XxhPart4 h3 {
    font-family: montserrat_Bold;
    font-size: 30px;
    color: #004098;
    line-height: 32px;
}
.XxhPart4 .XxhPart4_b {
    width: 100%;
    height: 700px;
    background: url(/an/res/images/xxhbg5.png) no-repeat center;
    position: relative;
    margin: 40px 0 100px;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm {
    width: 520px;
    position: absolute;
    left: 50%;
    margin-left: -260px;
    top: 50%;
    margin-top: -260px;
    height: 520px;
    background: url(/an/res/images/xxhbg6.png) no-repeat center;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm span {
    box-sizing: border-box;
    padding: 50px 0;
    width: 210px;
    height: 210px;
    border: 10px solid #fff;
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -105px;
    top: 50%;
    margin-top: -105px;
    border-radius: 50%;
    font-size: 30px;
    font-family: montserrat_Bold;
    line-height: 32px;
    color: #ffe100;
    text-align: center;
    background-color: #004098;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    text-align: center;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li img {
    margin: 0 auto 10px;
    display: block;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li p {
    font-family: montserrat_Bold;
    font-size: 18px;
    line-height: 18px;
    color: #333333;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li.li1 {
    top: -60px;
    left: 50%;
    margin-left: -60px;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li.li2 {
    top: 12%;
    left: 83%
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li.li3 {
    top: 64%;
    left: 83%;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li.li4 {
    bottom: -60px;
    left: 50%;
    margin-left: -60px;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li.li5 {
    top: 64%;
    right: 83%;
}
.XxhPart4 .XxhPart4_b .XxhPart4_bm li.li6 {
    top: 12%;
    right: 83%;
}
@media(max-width:768px) {
    .XxhPart4 h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }
    
    .XxhPart4 .XxhPart4_b {
        margin-top: 0;
    }
    
    .XxhPart4 .XxhPart4_b .XxhPart4_bm span {
        font-size: 16px;
        line-height: 21px;
        width: 150px;
        height: 150px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -75px;
        margin-top: -75px;
    }
    
    .XxhPart4 .XxhPart4_b .XxhPart4_bm li.li1 {
        top: 0
    }
    
    .XxhPart4 .XxhPart4_b .XxhPart4_bm li.li4 {
        bottom: 0;
    }
    
    .XxhPart4 .XxhPart4_b .XxhPart4_bm {
        height: 480px;
    }
    
    .XxhPart4 .XxhPart4_b {
        height: 550px;
        margin-bottom: 4%;
    }
    
    .XxhPart4 .XxhPart4_b .XxhPart4_bm li {
        width: 100px;
        height: 100px;
    }
    
    .XxhPart4 .XxhPart4_b .XxhPart4_bm li p {
        font-size: 12px;
        line-height: 18px;
    }
}
.XxhPart5 {
    width: 100%;
    padding: 120px 0;
    display: inline-block;
    background: #fff
}
.XxhPart5 .info {
    margin-top: 30px;
}
.XxhPart5 .XxhPart5_b {
    text-align: center;
}
.XxhPart5 .XxhPart5_b p.up {
    margin: 20px 0;
}
.XxhPart5 .XxhPart5_b p.txt {
    width: 100%;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: url(/an/res/images/xxhbg7.png) no-repeat center;
    font-family: montserrat_Bold;
    font-size: 30px;
    color: #ffe100;
    direction: rtl;
    unicode-bidi: isolate;
}
.XxhPart6 {
    display: inline-block;
    width: 100%;
    height: 1012px;
    background: url(/an/res/images/xxhbg8.png) no-repeat center;
    box-sizing: border-box;
    padding: 120px 0
}
.XxhPart6 .XxhPart6_l {
    width: 53.75%;
}
.XxhPart6 .HomeTit .title .tit {
    color: #ffffff;
}
.XxhPart6 .XxhPart6_l1 {
    width: 100%;
    height: 360px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    margin-top: 60px;
}
.XxhPart6 .XxhPart6_l1 .XxhPart6_l1l {
    width: 49%;
    height: 320px;
    border-radius: 10px;
    border: dashed 1px rgba(255, 255, 255, 0.3);
    text-align: center;
}
.XxhPart6 .XxhPart6_l1 .XxhPart6_l1l p {
    font-family: montserrat_Bold;
    font-size: 24px;
    color: #ffe100;
    line-height: 66px;
    text-align: left;
    padding: 0 20px;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
}
.XxhPart6 .XxhPart6_l p.down {
    margin: 20px 0;
}
.XxhPart6_l2 .XxhPart6_l2l {
    width: 49%;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    position: relative;
    margin-top: 40px;
}
.XxhPart6_l2 .XxhPart6_l2l .icon {
    width: 90px;
    height: 90px;
    background-color: #ffe100;
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
    position: absolute;
    top: -45px;
    left: 50%;
    margin-left: -45px;
}
.XxhPart6_l2 .XxhPart6_l2l .icon img {
    vertical-align: middle;
}
.XxhPart6_l2 .XxhPart6_l2l h3 {
    font-family: montserrat_Bold;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-top: 76px;
    position: relative;
    direction: rtl;
    unicode-bidi: isolate;
}
.XxhPart6_l2 .XxhPart6_l2l h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 1px;
    background-color: #ffe100;
    left: 50%;
    margin-left: -10px;
}
.XxhPart6_l2 .XxhPart6_l2l p {
    text-align: center;
    font-family: montserrat_Regular;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    margin-top: 20px;
    direction: rtl;
    unicode-bidi: isolate;
}
.XxhPart6_r {
    width: 42.5%;
}
.XxhPart6_r .HomeTit .title {
    width: 100%;
}
.XxhPart6_r .XxhPart6_rb1 {
    margin-top: 60px;
    height: 460px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.15);
}
.XxhPart6_r .XxhPart6_rb1 h2 {
    width: 96%;
    height: 70px;
    background-color: #ffe100;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    line-height: 70px;
    font-family: montserrat_Bold;
    font-size: 24px;
    color: #004098;
    direction: rtl;
    unicode-bidi: isolate;
    text-align:right;
    padding:0 2%;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b {
    padding: 30px 40px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 100%;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1bl .XxhPart6_rb1blox {
    width: 100%;
    height: 140px;
    border: dashed 1px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    ;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1bl .XxhPart6_rb1blox .icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    margin: 23px auto 10px;
    background-color: #ffffff;
    border-radius: 50%
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1bl .XxhPart6_rb1blox .icon img {
    vertical-align: middle;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1bl .XxhPart6_rb1blox p {
    font-family: montserrat_Bold;
    font-size: 20px;
    color: #ffffff;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1bl p.jia {
    color: #004098;
    font-weight: bold;
    font-size: 30px;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1br {
    position: relative;
    ;
    width: 48%;
    border-radius: 10px;
    height: 170px;
    border: dashed 1px rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 80px;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1br .icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    margin: 23px auto 10px;
    background-color: #ffffff;
    border-radius: 50%
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1br p {
    font-family: montserrat_Bold;
    font-size: 20px;
    color: #ffffff;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1br:after {
    content: "";
    position: absolute;
    left: -10%;
    top: 50%;
    margin-top: -162px;
    width: 1px;
    height: 324px;
    background-color: rgba(255, 255, 255, 0.05);
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 {
    width: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.15);
    height: 130px;
    box-sizing: border-box;
    padding: 25px 40px;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p {
    font-family: montserrat_Bold;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 26px;
    float: left;
    border: dashed 1px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    direction: rtl;
    unicode-bidi: isolate;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p.p1 {
    width: 28%;
    height: 80px;
    padding: 14px 0;
    box-sizing: border-box;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p.p2 {
    width: 28%;
    height: 80px;
    padding: 14px 0;
    box-sizing: border-box;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p.p3 {
    width: 12%;
    height: 80px;
    padding: 14px 0;
    box-sizing: border-box;
    line-height: 52px;
    width: 112px;
}
.XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p.jia {
    font-size: 20px;
    width: 20px;
    border: none;
    line-height: 80px;
    margin: 0 10px;
}
.XxhPart6_r .XxhPart6_rb1 p.up {
    margin: 25px 0;
}
.XxhPart7 {
    box-sizing: border-box;
    padding: 60px 50px 40px;
    background-color: #f3f6fa;
}
@media(max-width:1366px) {
    .XxhPart2 .XxhPart2_tbox {
        width: 120px;
        height: 120px;
    }
    
    .XxhPart2 .XxhPart2_b .XxhPart2_box {
        width: 49%;
        padding: 20px;
        background-size: 100% 100%
    }
    
    .Jmprocess .scroll .owl-prev {
        left: 0
    }
    
    .Jmprocess .scroll .owl-next {
        right: 0
    }
    
    .XxhPart6 .XxhPart6_l1 .XxhPart6_l1l p {
        font-size: 20px;
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1bl .XxhPart6_rb1blox p {
        font-size: 18px;
        padding: 0 10px
    }
}
@media(max-width:768px) {
    .XxhCon .Ab_l,
    .XxhCon .Ab_r {
        width: 100%;
    }
    
    .XxhCon .Ab_l .info {
        width: 100%;
        margin-top: 5%;
        line-height: 24px;
    }
    
    .XxhPart2 .XxhPart2_tbox {
        float: left;
        margin-right: 0;
        width: 30%;
        height: auto;
    }
    
    .XxhPart2 {
        padding: 10px;
    }
    
    .XxhPart2 .XxhPart2_tbox:nth-child(2n) {
        margin-top: 0;
    }
    
    .XxhPart2 .XxhPart2_tbox:after {
        display: none
    }
    
    .XxhPart2 .XxhPart2_b .XxhPart2_box {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_t {
        width: 100%;
        background-size: 100%
    }
    
    .XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_t:after {
        width: 96%;
        left: 2%;
        background-size: 100%
    }
    
    .XxhPart2 .XxhPart2_b {
        margin-top: 20px;
    }
    
    .XxhPart2 .XxhPart2_b .XxhPart2_box .XxhPart2_box_b2 {
        padding: 10px 0
    }
    
    .XxhPart4 .XxhPart4_b .XxhPart4_bm {
        width: 60%;
        background-size: 100%;
        margin-left: -30%;
    }
    
    .XxhPart5 {
        padding: 5.5% 0;
    }
    
    .XxhPart5 .info {
        margin-top: 10px;
    }
    
    .XxhPart5 .XxhPart5_b p.txt {
        height: auto;
        font-size: 20px;
        line-height: 24px;
    }
    
    .XxhPart5 .XxhPart5_b p.txt {
        background: #003b9b;
        padding: 10px;
    }
    
    .XxhPart6 .XxhPart6_l {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .XxhPart6 {
        padding: 40px 0;
        height: auto;
        background-size: auto 100%;
    }
    
    .XxhPart6 .XxhPart6_l1 {
        margin-top: 20px;
        height: auto;
        display: inline-block;
    }
    
    .XxhPart6_r .XxhPart6_rb1 {
        margin-top: 20px;
    }
    
    .XxhPart6 .XxhPart6_l1 .XxhPart6_l1l {
        width: 96%;
        padding: 0 2%;
        margin-bottom: 10px;
    }
    
    .XxhPart6_l2 .XxhPart6_l2l h3 {
        font-size: 18px;
        margin-top: 50px;
    }
    
    .XxhPart6_l2 .XxhPart6_l2l p {
        font-size: 16px;
        line-height: 20px;
    }
    
    .XxhPart6_r {
        width: 100%;
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b {
        padding: 10px;
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1bl .XxhPart6_rb1blox p,
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1br p {
        font-size: 15px;
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b .XxhPart6_rb1br:after {
        left: -5%
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p.p1 {
        font-size: 14px;
        width: 30%
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 {
        padding: 10px;
        height: 100px;
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p {
        font-size: 14px;
        width: 30%
    }
    
    .XxhPart6_r .XxhPart6_rb1 .XxhPart6_rb1b2 p.p3 {
        width: 15%
    }
    
    .HonorBox .item .itemImg {
        padding-top: 60%;
        margin: 0px auto;
        position: relative;
        width: 60%;
    }
    
    .HonorBox .item .itemImg img {
        height: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        max-height: 100%;
    }
    
    .XxhPart7 {
        padding: 20px;
    }
    
    .JxhCon .Jxh_p2m .Jxh_p2mb {
        padding: 20px 30px;
        margin-top: 5px;
    }
    
    .JxhCon .Jxh_p2b h3 {
        font-size: 21px;
    }
    
    .JxhCon .Jxh_p2bb .midbox {
        height: 250px;
    }
    
    .JxhCon .Jxh_p2bb .midbox .midbox1 img,
    .JxhCon .Jxh_p2bb .midbox .midbox3 img {
        margin-top: 40px;
    }
    
    .Jxh_p2bb .plist {
        margin-top: 20px;
    }
}

/* 20220505 */
.addFloat {
    position: fixed;
    z-index: 999;
    right: 1px;
    bottom: 20%;
}
.addFloat .FloatImg a {
    display: block;
}
.addFloat .FloatImg img {
    max-width: 400px;
}
.addFloat .close {
    position: absolute;
    bottom: -25px;
    right: 5px;
    font-size: 12px;
    line-height: 26px;
    cursor: pointer;
}
@media(max-width:768px) {
    .addFloat .FloatImg img {
        max-width: 200px;
    }
}

/*22-06-06*/
.JxhCon {
    padding: 0;
}
.Jxh_p1,
.XxhPart2,
.XxhPart3,
.XxhPart4 {
    display: none;
}
.JxhCon .Jxh_p2 {
    margin-top: 0;
}
.CuConBox.box1 {
    display: none;
}
.item .text {
    color: #fff;
    line-height: 40px;
}
.item .text b {
    font-size: 20px;
}
.item .text p {
    border-bottom: 1px solid #1751a1;
    font-size: 16px;
    font-family: montserrat_Regular;
    word-break: break-all;
    direction: rtl;
    unicode-bidi: isolate;
}
.item .text p span {
    display: inline-block;
    font-family: montserrat_Bold;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #ffffff;
    position: relative;
    font-size: 18px;
    direction: rtl;
    unicode-bidi: isolate;
}
.item .text p span:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ffe100;
    position: absolute;
    bottom: 0;
    left: 0;
}