@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    width: 100%;
    margin: 0 auto;
    color: #666;
}

body {
    background: #fff;
    font-size: 14px;
    margin: auto;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: #666;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

i,
em {
    font-style: normal;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    border: none;
}


/*body{ -moz-user-select:none; -webkit-user-select:none; -ms-user-select:none;  -khtml-user-select:none; user-select:none;}
html{-webkit-user-select:none;  -moz-user-select:none;  -ms-user-select:none;  user-select:none; -khtml-user-select:none;  }*/

input,
select,
textarea {
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #888;
}

input::-moz-placeholder,
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #888;
}

input::-ms-placeholder,
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #888;
}

input::-o-placeholder {
    /* Mozilla Firefox 19+ */
    color: #888;
}

input::-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #888;
}

input[type='submit'],
input[type='reset'],
input[type='button'],
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.over1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.over2,
.over3,
.over4,
.over5,
.over6,
.over7,
.over9 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.over2 {
    -webkit-line-clamp: 2;
}

.over3 {
    -webkit-line-clamp: 3;
}

.over4 {
    -webkit-line-clamp: 4;
}

.over5 {
    -webkit-line-clamp: 5;
}

.over6 {
    -webkit-line-clamp: 6;
}

.over7 {
    -webkit-line-clamp: 7;
}

.over9 {
    -webkit-line-clamp: 9;
}


/* fonts特殊字体 */

@font-face {
    font-family: 'dincond-regular-webfont';
    src: url('../fonts/dincond-regular-webfont.ttf') format('truetype')
}

@font-face {
    font-family: 'dincond-medium-webfont';
    src: url('../fonts/dincond-medium-webfont.ttf') format('truetype')
}

@font-face {
    font-family: 'dincond-bold-webfont';
    src: url('../fonts/dincond-bold-webfont.ttf') format('truetype')
}

@font-face {
    font-family: 'dincond-black-webfont';
    src: url('../fonts/dincond-black-webfont.ttf') format('truetype')
}

@font-face {
    font-family: 'din-bold-webfont';
    src: url('../fonts/din-bold-webfont.ttf') format('truetype')
}

@font-face {
    font-family: 'din-light-webfont';
    src: url('../fonts/din-light-webfont.woff') format('woff')
}

@font-face {
    font-family: 'din-medium-webfont';
    src: url('../fonts/din-medium-webfont.ttf') format('truetype')
}

@font-face {
    font-family: "din-regular";
    src: url("../fonts/din-regular.ttf") format("truetype")
}

@font-face {
    font-family: "fx-led";
    src: url("../fonts/FX-LED.ttf") format("truetype");
}

@font-face {
    font-family: 'lcdd';
    src: url('../fonts/lcdbq.woff') format('woff');
}

@font-face {
    font-family: "NexaBold";
    src: url("../fonts/NexaBold.ttf") format("truetype");
}

@font-face {
    font-family: "NexaLight";
    src: url("../fonts/NexaLight.ttf") format("truetype");
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
    width: 0px;
    height: 0px;
    overflow: hidden;
}

img {
    vertical-align: middle;
    max-width: 100%;
    border: none;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
    blr: expression(this.onFocus=this.blur());
}

.img {
    overflow: hidden;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scale img {
    width: 100%;
    height: 100%;
    transition: 1s;
}

.scale:hover img {
    transform: scale(1.03);
}

.fushu {
    position: relative;
    transition: all .2s linear;
}

.fushu:hover {
    transform: translate3d(0, -7px, 0);
    /* box-shadow: 2px 2px 18px rgba(182,182,182,0.3); */
}


/*    hover 效果         */

.self {
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
}

.self:hover:before {
    content: "";
    width: 220px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -185px;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, hsla(0, 0%, 100%, .05)), color-stop(50%, hsla(0, 0%, 100%, .15)), color-stop(100%, hsla(0, 0%, 100%, .05)));
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    z-index: 55;
}

.self:before {
    -webkit-animation: shine-left 1.2s infinite;
    -moz-animation: shine-left 1.2s infinite;
    -o-animation: shine-left 1.2s infinite;
    animation: shine-left 1.2s infinite;
}

@-webkit-keyframes shine-left {
    0% {
        left: -180px
    }
    to {
        left: 150%
    }
}

body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 2px;
}

body::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}


/*      heard      */

.haeder {
    width: 100%;
    z-index: 5;
    height: 80px;
}

.haeder .logo {
    line-height: 80px;
}

.nav {
    margin-top: 20px;
}

.nav li {
    float: left;
    line-height: 38px;
    border-bottom: 2px solid #fff;
    margin-left: 26px;
}

.nav li a {
    display: block;
    color: #666;
}

.nav li.active {
    border-color: #006DB8;
}

.nav li.active a {
    color: #006db8;
    font-weight: bold;
}

.footer {
    position: relative;
    background: #f9f9f9;
    border-top: 3px solid #006db8;
    padding-top: 45px;
}

.scroll {
    cursor: pointer;
}

.flogo {
    display: block;
}

.axax {
    margin-top: 20px;
}

.fotleft {
    position: relative;
    width: 450px;
    padding-left: 165px;
}

.erw {
    position: absolute;
    left: 0;
    top: 0;
    width: 136px;
    text-align: center;
    font-size: 12px;
}

.erw span {
    display: block;
    font-weight: bold;
    color: #006db8;
}

.erw img {
    height: 136px;
    border: 1px solid #eee;
}

.fotleft li {
    margin-bottom: 15px;
}

.fotleft li div {
    color: #ccc;
    margin-top: 2px;
}

.fotleft li div i {
    font-weight: bold;
    margin-right: 5px;
    color: #006db8;
}

.fotleft li p {
    line-height: 20px;
    color: #666;
}

.fonav {
    position: relative;
    z-index: 1;
}

.fonav::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ddd;
    left: 0;
    top: 30px;
    z-index: -1;
}

.fonav li {
    float: left;
    margin-right: 25px;
}

.fonav li:last-child {
    margin-right: 0;
}

.fonav li:hover>a {
    border-bottom: 2px solid #006db8;
}

.fonav li a {
    display: block;
    color: #000;
    font-weight: bold;
    padding-bottom: 10px;
}

.fonav li>a {
    border-bottom: 2px solid transparent;
}

.fonav li .fa {
    margin-top: 8px;
    margin-top: 10px;
}

.fonav li .fa a {
    font-size: 14px;
    margin-top: 5px;
    color: #666666;
    font-weight: normal;
}

.fonav li .fa a:hover {
    color: #006db8;
}

.bq {
    padding: 16px 0;
    background: #1b2a60;
}

.selse {
    color: #fff;
    padding-left: 27px;
    background: url(../img/link.png) no-repeat left center;
    font-size: 12px;
}

.selse span {
    vertical-align: top;
    display: inline-block;
    line-height: 28px;
}


/* .selse select{ background: #14214e url(../img/linkr.png) no-repeat right 12px center; border: 1px solid #2e3c6d; height: 28px; width: 240px; padding: 0 30px 0 10px; color: #6e7fbd;  font-size: 12px;}
 */

.linkboxa {
    display: inline-block;
    position: relative;
    background: #14214e url(../img/linkr.png) no-repeat right 12px center;
    border: 1px solid #2e3c6d;
    height: 28px;
    width: 240px;
    padding: 0 30px 0 10px;
    color: #6e7fbd;
    font-size: 12px;
    line-height: 26px;
}

.linkboxa .aaca {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: ;
    background: #14214e;
    padding: 5px 0;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.linkboxa .aaca a {
    display: block;
    color: #6E7FBD;
    line-height: 24px;
    padding: 0 10px;
}

.linkboxa .aaca a:hover {
    background: #005A98;
    color: #fff;
}

.linkboxa:hover .aaca {
    opacity: 1;
    z-index: 2;
    bottom: 28px;
}

.bq .fr {
    line-height: 28px;
    font-size: 12px;
    color: #6E7FBD;
}

.bq .fr a {
    color: #6E7FBD;
    margin-left: 40px;
}


/* 1-1关于 */

.home {
    border-bottom: 1px solid #e5e5e5;
}

.subNav {
    color: #999;
    line-height: 50px;
    position: relative;
    z-index: 22;
}

.subNav img {
    width: 58px;
    height: 58px;
    position: absolute;
    left: 0;
    top: -8px;
}

.subNav span {
    display: inline-block;
    padding-left: 72px;
    color: #999;
    font-weight: bold;
    color: #006DB8;
}

.subNav a {
    color: #999;
    margin: 0 3px;
}

.subNav a.active {
    color: #006db8;
}

.leftNav a {
    display: inline-block;
    line-height: 50px;
    height: 50px;
    margin-left: 40px;
}

.leftNav a:first-child {
    margin-left: 0;
}

.leftNav a.active {
    color: #006db8;
    font-weight: bold;
}

.leftNav a:hover {
    color: #006db8;
}

.pagea {
    text-align: center;
    margin: 40px 0 0;
}

.pagea a {
    display: inline-block;
    text-align: center;
    width: 75px;
    line-height: 42px;
    border: 1px solid #eee;
    margin: 0 3px;
    font-family: arial;
    font-size: 20px;
    color: #333;
    border-radius: 2px;
    transition: 0.3s;
}

.pagea .z-crt,
.pagea a:hover {
    background: #006db8;
    color: #fff;
    border-color: #006db8;
}

.pagea .prev:hover,
.pagea .next:hover {
    background: none;
}

.nybox {
    min-height: 300px;
}


/* 三中全会 */

.quanhui {
    margin: 80px 0;
    border-top: 1px solid #d5d5d5;
}

.quanhui li {
    min-height: 114px;
    padding: 30px 0 30px 80px;
    position: relative;
    border-bottom: 1px solid #d5d5d5;
}

.quanhui li dl {
    position: absolute;
    left: 0;
    top: 25px;
    width: 60px;
    text-align: center;
    font-family: arial;
    line-height: 1;
    color: #333;
}

.quanhui li dt {
    font-size: 50px;
}

.quanhui li .text {
    line-height: 20px;
}

.quanhui li .name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.quanhui li .ttov {
    color: #999;
    margin-top: 5px;
}

.quanhui li:hover dl,
.quanhui li:hover .name {
    color: #006db8;
}


/* about  */

.about {
    margin: 45px 0;
}

.about .ableft {
    position: relative;
    width: 490px;
    height: 500px;
    padding: 0 0 20px 20px;
    margin-top: 50px;
    z-index: 1;
}

.about .ableft img {
    height: 490px;
}

.about .ableft::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 470px;
    height: 550px;
    background: #e5f0f8;
    content: '';
    z-index: -1;
}

.abright {
    width: 665px;
    /*background: url(../img/abbg.jpg) no-repeat right top;*/
    padding-top: 15px;
}

.Aname {
    font-size: 34px;
    line-height: 1;
    color: #333;
    text-transform: uppercase;
    font-family: "NexaBold";
    font-weight: bold;
}

.Aname i {
    font-size: 50px;
}

.Atext {
    font-size: 24px;
    color: #333;
    line-height: 1;
}

.hr {
    width: 275px;
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.Adt {
    font-size: 16px;
    color: #006db8;
}

.Add {
    font-size: 14px;
    color: #006db8;
    opacity: 0.3;
    line-height: 22px;
}

.hr {
    width: 382px;
}

.abtook {
    line-height: 26px;
    color: #666;
    margin-top: 25px;
}

.abtook p {
    margin-top: 10px;
}

.abulli {
    margin-top: 35px;
}

.abulli ul {}

.abulli li {
    float: left;
    background: url(../img/ss.png) no-repeat right center;
}

.abulli li p {
    font-size: 20px;
    color: #0077c8;
    line-height: 1;
}

.abulli li p i {
    display: inline-block;
    font-size: 50px;
    color: #b2d6ee;
    font-family: 'din-bold-webfont';
    -webkit-text-stroke: 1px #0077c8;
    margin: 5px 5px 0;
}

.abulli li span {
    display: block;
    font-size: 16px;
    color: #333;
}

.abulli li.li1 {
    width: 250px;
    text-align: center;
}

.abulli li.li2 {
    width: 128px;
    margin: 0 30px;
}

.abulli li.li3 {
    width: 115px;
    margin-right: 30px;
}

.abulli li.li4 {
    width: 160px;
    background: none;
}


/* 领导 */

.lingdao {
    padding: 80px 0 135px;
    background: url(../img/tembg.jpg) no-repeat bottom center / 100%;
}

.lingdao {
    text-align: center;
}

.lingdao ul {
    display: inline-block;
}

.lingdao li {
    height: 60px;
    border: 1px solid #ececec;
    line-height: 30px;
    padding: 15px 20px 15px 0;
    width: 450px;
    background: #fff;
    margin-top: 15px;
    transition: 0.3s;
}

.lingdao li .name {
    font-size: 24px;
    width: 140px;
    font-weight: bold;
    color: #333;
    border-right: 1px solid #ececec;
}

.lingdao li .name span {
    display: inline-block;
    width: 75px;
    text-align-last: justify;
}

.lingdao li .text {
    font-size: 16px;
    width: 251px;
    text-align: left;
    font-weight: normal;
}

.lingdao li:hover {
    background: #006db8;
    box-shadow: 0 0 20px rgba(0, 109, 184, 0.3);
}

.lingdao li:hover span {
    color: #fff;
}

.lingdao li:hover .text {
    color: #fff;
}


/* 架构 */

.jiagou {
    background: url(../img/jgbg.jpg) no-repeat center bottom;
    padding-bottom: 175px;
    padding-top: 80px;
}


/* lx */

.lxwm {
    margin: 60px 0;
}

.lxtext {
    border: 1px solid #eee;
    border-top: 0;
    padding: 39px;
}

.lxName {
    font-size: 20px;
    line-height: 30px;
    color: #222;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.tela {
    font-family: 'dincond-medium-webfont';
    font-size: 26px;
    color: #006db8;
    margin: 30px 0 10px;
}

.lxleft {
    line-height: 30px;
    color: #666;
}

.lxright {
    width: 580px;
    height: 645px;
    background: #f4f4f4;
    padding: 45px 40px;
}

.rlxname {
    font-size: 20px;
    line-height: 30px;
    color: #222;
    font-weight: bold;
}

.lxli {
    position: relative;
    background: #fff;
    margin-top: 20px;
}

.lxli img {
    width: 47px;
    height: 50px;
    position: absolute;
    left: 0;
}

.lxli input,
.lxli textarea {
    display: block;
    width: 450px;
    height: 50px;
    color: #666;
    padding-left: 50px;
    background: none;
    border: 0;
    font-family: '微软雅黑';
}

.lxli i {
    position: absolute;
    right: 10px;
    top: 20px;
    color: red;
}

.lxli textarea {
    display: block;
    height: 140px;
    width: 100%;
    padding: 15px 30px 15px 50px;
}

#butt {
    display: block;
    width: 100%;
    height: 42px;
    color: #Fff;
    background: #006DB8;
    font-size: 18px;
    margin-top: 34px;
    border: 0 none;
}


/* newjz */

.newjz {
    margin: 80px 0;
}

.newjz ul {
    width: 1221px;
}

.newjz li {
    float: left;
    width: 590px;
    height: 228px;
    background: #fafafa;
    transition: 0.3s;
    margin: 0 20px 20px 0;
}

.newjz li:nth-child(2n) {
    margin-right: 0;
}

.newjz li .img {
    width: 302px;
}

.newjz li .text {
    width: 230px;
    margin-right: 22px;
    height: 220px;
    background: url(../img/ar.png) no-repeat left bottom 30px;
    transition: 0.3s;
}

.ntxt {
    font-size: 18px;
    line-height: 26px;
    color: #333;
    margin-top: 30px;
    height: 52px;
}

.ntook {
    line-height: 22px;
    height: 66px;
    color: #999;
    margin-top: 12px;
}

.newjz li:hover .text {
    background: url(../img/ar1.png) no-repeat left 10px bottom 30px;
}

.newjz li:hover {
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 109, 184, 0.1);
}

.newjz li:hover .ntxt {
    color: #006DB8;
}


/* sethide */

.zszc {
    margin: 80px 0;
}

.zszc li {
    position: relative;
    padding: 22px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.setitle {
    font-size: 20px;
    line-height: 36px;
    color: #333;
}

.seeicon {
    line-height: 24px;
    color: #ccc;
    margin-top: 5px;
}

.seeicon span {
    margin-right: 10px;
}

.seeicon img {
    margin-right: 7px;
}

.sethide {
    line-height: 22px;
    padding-top: 18px;
    display: none;
}

.seeIt {
    position: absolute;
    right: 0;
    top: 33px;
    height: 46px;
    width: 145px;
    text-align: center;
}

.seeIt::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 11px;
    height: 24px;
    width: 1px;
    background: #e5e5e5;
}

.seeIt a {
    display: inline-block;
    width: 46px;
    height: 46px;
    background-repeat: no-repeat;
    background-size: 46px;
    margin-left: 40px;
    transition: 0.3s;
}

.seeIt .set1 {
    background-image: url(../img/bsee01.png);
    margin-left: 0;
}

.seeIt .set2 {
    background-image: url(../img/bsee02.png);
}

.seeIt .set1:hover {
    background-image: url(../img/bsee1.png);
}

.seeIt .set2:hover {
    background-image: url(../img/bsee2.png);
}


/* ld */

.qiyeld {
    margin: 80px 0;
}

.qyTop {
    position: relative;
    padding-left: 140px;
}

.qylogo {
    position: absolute;
    left: 0;
}

.leet {
    padding-left: 30px;
    line-height: 24px;
    border-left: 1px solid rgba(0, 109, 184, 0.1);
}

.leet i {
    font-size: 20px;
    color: #0770b9;
    font-family: 'din-medium-webfont';
}

.swpfr {
    width: 605px;
}

.swpfr li a {
    width: 140px;
    line-height: 40px;
    display: block;
    text-align: center;
    font-size: 16px;
    background: #f6f6f6;
    border-radius: 105px;
    transition: 0.3s;
}

.swpfr li.active a,
.swpfr li:hover a {
    background: #006DB8;
    color: #fff;
}

.abcdefg {
    margin-top: 40px;
}

.abcdefg ul {
    width: 1231px;
}

.abcdefg li {
    float: left;
    width: 215px;
    margin: 0 30px 18px 0;
}

.abcdefg li:nth-child(5n) {
    margin-right: 0;
}

.abcdefg li .img {
    height: 100px;
    border: 1px solid #eee;
}

.abcdefg li p {
    text-align: center;
    margin-top: 10px;
}


/* ldtel */

.ldtel {
    position: relative;
    margin: 100px 0;
}

.ldtel .text {
    position: absolute;
    left: 30px;
    top: -30px;
    background: url(../img/slbg.png) no-repeat center;
    height: 590px;
    width: 491px;
    padding: 80px 48px;
}

.ldtext {
    font-size: 50px;
    color: #006db8;
    font-family: "NexaBold";
    line-height: 1;
}

.lden {
    font-size: 22px;
    color: #333;
}

.lxtook {
    line-height: 24px;
    margin: 25px 0;
}

.lttel {
    font-size: 24px;
    color: #006db8;
    line-height: 34px;
    font-family: "din-regular";
}

.lttel i {
    font-size: 30px;
}

.ldli a {
    float: left;
    display: inline-block;
    position: relative;
    padding-left: 50px;
    margin-top: 42px;
    margin-right: 45px;
    transition: 0.5s;
}

.ldli a:nth-child(2n) {
    margin-right: 0;
}

.ldli img {
    position: absolute;
    left: 0;
}

.ldli p {
    color: #006db8;
}

.ldli span {
    font-size: 12px;
    color: #006db8;
    opacity: 0.3;
    font-family: "din-regular";
    display: block;
}

.ldli a:hover {
    transform: translateY(-5px);
}

.ldli a:hover p {
    font-weight: bold;
}

.ldli a:hover span {
    opacity: 0.8;
}


/* djdetai */

.djdetai {
    margin: 80px 0;
}

.djdetai .quanhui {
    width: 790px;
    margin: 0;
}

.djdetai .quanhui li {
    border: 0;
    border-bottom: 1px solid #d5d5d5;
    margin: 0;
    padding: 30px 0 26px 80px;
    min-height: 105px;
}

.djdetai .quanhui li dl {
    top: 21px;
}

.dangright {
    width: 370px;
}

.dangright li {
    margin-bottom: 20px;
}

.dangright li .img {
    height: 204px;
}

.textat {
    padding: 15px 24px;
    background: #f2f2f2;
}

.djname {
    font-size: 16px;
    color: #333;
}

.djtook {
    line-height: 20px;
    margin-top: 7px;
}


/* fclist */

.fclist {
    padding: 80px 0;
    background: url(../img/bgbgb.jpg) no-repeat center;
}

.fclist .wrapper {
    position: relative;
    min-height: 520px;
}

.fctxt {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -202px;
    width: 500px;
    height: 404px;
    background: #fff;
    z-index: 3;
    padding: 44px 58px;
}

.lydxs {
    font-size: 22px;
    color: #333;
}

.lttime {
    color: #ccc;
    margin-top: 3px;
}

.fctook {
    line-height: 24px;
    color: #999;
    height: 141px;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 34px;
    text-align: justify;
    margin: 15px 0 23px;
}

.fctxt li {
    height: 67px;
}

.fctxt li.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 2px solid #006DB8;
    box-sizing: border-box;
}

.fctook::-webkit-scrollbar {
    width: 3px;
    height: 10px;
}

.fctook::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 2px;
}

.fctook::-webkit-scrollbar-thumb {
    background: #006db8;
    border-radius: 10px;
}

.rrimg {
    margin: 60px 0 80px;
}

.rrimg li {
    position: relative;
    float: left;
    width: 280px;
    height: 180px;
    border: 2px solid #9c2f2e;
    margin: 20px 20px 0 0;
}

.eext {
    position: absolute;
    text-align: center;
    left: -2px;
    top: -2px;
    width: 280px;
    height: 180px;
    background: rgba(0, 109, 184, 0.9);
    padding: 33px 30px;
    opacity: 0;
    transition: 0.5s;
}

.eext div {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.eext p {
    line-height: 20px;
    color: #97c0dd;
    margin-top: 5px;
    margin-bottom: 15px;
}

.eext i img {
    width: 30px;
    height: 7px;
}

.rrimg li:hover .eext {
    opacity: 1;
}


/* gsgg */

.gsgg {
    margin: 80px 0;
}

.gsgg ul {
    width: 1241px;
}

.gsgg li {
    float: left;
    width: 580px;
    border: 1px solid #eee;
    padding: 18px 30px 14px;
    margin: 0 40px 20px 0;
    transition: 0.3s;
}

.gsgg li .gtime {
    font-family: "din-regular";
    color: #006db8;
    font-size: 16px;
}

.gsgg li .gname {
    font-size: 16px;
    margin: 10px 0 5px;
}

.gsgg li .gtext {
    line-height: 20px;
    color: #999;
}

.gsgg .seeicon .ii2 {
    display: none;
}

.gsgg li:hover {
    box-shadow: 0 0 10px rgba(0, 109, 184, 0.1);
    border-color: transparent;
}

.gsgg li:hover .gname {
    font-weight: bold;
}

.gsgg li:hover .seeicon {
    color: #006DB8;
}

.gsgg li:hover .seeicon .ii2 {
    display: inline-block;
}

.gsgg li:hover .seeicon .ii1 {
    display: none;
}


/* yyzs */

.yyzs {
    background: url(../img/yybg.jpg) no-repeat center;
    height: 646px;
    padding: 80px 0 0;
}

.yyImg {
    margin-left: 30px;
}

.lytext {
    width: 612px;
    margin-left: 50px;
    margin-top: 80px;
}

.lyname {
    font-size: 22px;
    color: #333;
}

.lytook {
    line-height: 22px;
    color: #999;
    margin: 10px 0 18px;
}

#area {
    display: block;
    height: 125px;
    border: 1px solid #eee;
    padding: 20px;
    width: 100%;
    outline: none;
    resize: none;
    font-family: '微软雅黑';
    line-height: 20px;
}

.yzma {
    margin-top: 5px;
}

.yzma .fl {
    position: relative;
    width: 280px;
    height: 40px;
    border: 1px solid #eee;
}

.yzma .fl input {
    width: 170px;
    border: 0;
    height: 38px;
    padding: 20px;
    background: none;
}

.yzma .fl .yzm {
    position: absolute;
    right: 1px;
    top: 1px;
    height: 38px;
    width: 96px;
}

.aacic {
    width: 132px;
    height: 40px;
    background: #006db8;
    color: #fff;
    border: 0;
}


/* index */

.banner {
    border-bottom: 1px solid #eee;
}

.banner .swiper-container .swiper-wrapper .s {
    display: flex!important;
    justify-content: center!important;
}

.banner .swiper-container .swiper-wrapper .s img {
    margin: 0 auto;
}

.laba {
    position: relative;
    height: 60px;
    padding-right: 52px;
    background: url(../img/laba.png) no-repeat right center;
}

.laba .stion {
    left: 70px;
    bottom: 18px;
    width: 55px;
}

.laba .stion span {
    color: #999;
}

.laba .stion span.swiper-pagination-current {
    font-size: 18px;
    color: #0b73bb;
}

.laba .prev,
.laba .next {
    width: 8px;
    height: 16px;
    left: 0;
    margin-top: -8px;
    opacity: 1;
    outline: none;
}

.laba .prev {
    background: url(../img/bl1.png) no-repeat center;
}

.laba .next {
    background: url(../img/br1.png) no-repeat center;
    right: auto;
    left: 34px;
}

.laba .prev:hover {
    background-image: url(../img/bl11.png);
}

.laba .next:hover {
    background-image: url(../img/br11.png);
}

.mouse {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 18px;
    height: 26px;
    bottom: 17px;
    animation: slide 0.5s linear infinite alternate;
}

@keyframes slide {
    from {
        bottom: 20px;
    }
    to {
        bottom: 15px;
    }
}

.axiba {
    width: 340px;
    margin-top: 15px;
    text-align: right;
}

.dowebok {
    height: 30px;
    background: none;
}

.dowebok ul {
    margin: 0;
    line-height: 30px;
}

.dowebok li a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dowebok a {
    color: #999;
    font-size: 14px;
}

.dowebok a:hover {
    color: #006DB8;
}

.title {
    position: relative;
    height: 90px;
    border-bottom: 1px solid #eee;
    padding-top: 35px;
    padding-left: 42px;
}

.title img {
    position: absolute;
    left: 0;
    width: 31px;
    height: 31px;
}

.title span {
    font-weight: bold;
    font-size: 26px;
    color: #333;
    line-height: 1;
    margin-right: 4px;
}

.title i {
    color: #999;
    color: #ccc;
    line-height: 16px;
    width: 75px;
    display: inline-block;
    vertical-align: top;
}

.indexnew {
    position: relative;
    margin-bottom: 42px;
}

.indexnew::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75%;
    height: 1px;
    background: #f6f6f6;
    content: '';
}

.inewleft {
    width: 700px;
    position: relative;
}

.inewli {
    position: absolute;
    right: 0;
    top: 45px;
    z-index: 2;
    font-size: 16px;
    color: #666;
}

.inewli span {
    margin-left: 40px;
    cursor: pointer;
}

.inewli span.active {
    color: #006db8;
    font-weight: bold;
}

.inewli span:hover {
    color: #006DB8;
}

.newtjtp {
    padding: 15px 0 13px;
    border-bottom: 1px solid #eee;
}

.nname {
    font-size: 16px;
    color: #333;
}

.nntook {
    line-height: 22px;
    color: #999;
    margin: 8px 0 12px;
}

.nntime {
    color: #6899ba;
    font-family: "din-regular";
}

.nntime i {
    font-size: 22px;
    color: #006db8;
    margin-right: 8px;
}

.nntime span {
    color: #006db8;
    font-family: ;
    margin-top: 5px;
}

.nntime span em {
    font-family: arial;
}

.newtjtp:hover .nname {
    color: #006DB8;
}

.newboxa li {
    line-height: 58px;
    border-bottom: 1px solid #eee;
}

.newboxa li p {
    color: #333;
    font-size: 16px;
    width: 500px;
}

.newboxa li span {
    color: #999;
}

.newboxa li:hover p {
    color: #006DB8;
}

.inewright {
    width: 460px;
    background: #f6f6f6;
    padding: 0 40px;
    padding-bottom: 50px;
}

.inewright .title span {
    color: #b10000;
}

.inewright .newboxa li p {
    width: 285px;
}

.iabout {
    margin-top: 40px;
    padding-bottom: 40px;
}

.iable {
    width: 740px;
}

.iable .title {
    padding-top: 0;
    height: 80px;
    border: 0;
    background: url(../img/dd.png) right top no-repeat;
}

.iabtook a {
    display: block;
    line-height: 24px;
    color: #999;
    margin-bottom: 5px;
}

.aa a {
    color: #006db8;
}

.aa em {
    color: #3395d8;
}

.aa i {
    color: #89bbde;
}

.iable .abulli {
    margin-top: 30px;
}

.iable .abulli li.li1 {
    width: 250px;
    margin-right: 30px;
}

.iable .abulli li.li2 {
    width: 141px;
    margin-right: 30px;
}

.iable .abulli li.li3 {
    width: 126px;
    margin-right: 30px;
}

.iable .abulli li.li4 {
    width: 160px;
}

.iabht {
    width: 423px;
    height: 306px;
}

.Area {
    background: #f6f6f6;
    padding: 3px 0 35px;
}

.Areleft {
    width: 555px;
}

.Areleft .title {
    border: 0;
    height: 85px;
}

.Areleft li {
    position: relative;
    float: left;
    width: 182px;
    height: 135px;
    margin: 0 2px 2px 0;
    overflow: hidden;
}

.Areleft li:nth-child(4),
.Areleft li:nth-child(5) {
    width: 274px;
}

.Areleft li p {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    line-height: 34px;
    text-align: center;
    background: rgba(0, 109, 184, 0.6);
    color: #fff;
}

.Areright {
    width: 550px;
}

.Areright .title {
    width: 320px;
}

.Aswiper {
    position: relative;
    width: 325px;
    padding-bottom: 35px;
    margin-top: 12px;
}

.Aswiper .swiper-container {
    height: 222px;
}

.Aswiper li {
    line-height: 34px;
    height: 34px;
}

.Aswiper li:hover a {
    color: #006DB8;
}

.Aswiper .aprev,
.Aswiper .anext {
    width: 80px;
    height: 28px;
    border-radius: 30px;
    border: 1px solid #eee;
    background: none;
    outline: none;
    margin: 0;
    bottom: 0;
    top: auto;
    opacity: 1;
}

.Aswiper .aprev {
    background: url(../img/ccl.png) no-repeat center;
    left: 0;
}

.Aswiper .anext {
    background: url(../img/cch.png) no-repeat center;
    left: 100px;
    right: auto;
}

.Aswiper .aprev:hover {
    background: #006DB8 url(../img/ccl1.png) no-repeat center;
    border-color: #006DB8;
}

.Aswiper .anext:hover {
    background: #006DB8 url(../img/cch1.png) no-repeat center;
    border-color: #006DB8;
}

.Abright {
    width: 202px;
    height: 272px;
}

.servie {
    margin-bottom: 40px;
}

.servie .title {
    margin-bottom: 12px;
}

.serleft {
    width: 415px;
}

.ttt {
    font-size: 16px;
    color: #0077c8;
    padding-left: 12px;
    background: url(../img/tt.png) no-repeat left center;
    margin-bottom: 10px;
}

.ttTop {
    padding-left: 12px;
}

.tna {
    font-size: 16px;
    color: #333;
}

.tok {
    line-height: 22px;
    color: #999;
    margin: 8px 0 10px;
}

.ttTop:hover .tna {
    color: #006DB8;
}

.taok {
    border-top: 1px solid #eee;
}

.taok a {
    display: block;
    border-bottom: 1px solid #eee;
    line-height: 40px;
    color: #666;
    padding: 0 15px;
}

.taok a:hover {
    color: #006DB8;
}

.serleto {
    width: 485px;
    margin-left: 50px;
    position: relative;
}

.serleto li a {
    display: block;
    border: 1px solid #eee;
}

.ssssss {
    top: 3px;
    right: 0;
}

.ssssss span {
    width: 5px;
    height: 8px;
    border-radius: 5px;
    background: #0770b9;
    opacity: 0.3;
    margin-left: 3px;
}

.ssssss span.swiper-pagination-bullet-active {
    opacity: 1;
    height: 16px;
}

.serleto .leet {
    line-height: 24px;
    padding-left: 0;
    border: 0;
    margin-top: 10px;
}

.adtel {
    width: 202px;
    height: 234px;
    background: url(../img/indtel.png) no-repeat center;
    color: #fff;
    font-family: 'din-medium-webfont';
    font-size: 20px;
    padding: 140px 23px 0;
}

.adtel i {
    font-family: 'din-bold-webfont';
    font-style: italic;
}


/* 60 */

.jingshen {
    position: relative;
}

.jingshen .wrapper {
    position: absolute;
    left: 0;
    top: 145px;
    height: 50%;
    margin: auto;
    right: 0;
}

.jingshen .abdbox {
    position: relative;
}

.abdbox img {
    position: absolute;
    top: 0;
}

.abdbox .ll1 {
    left: 20px;
}

.abdbox .ll2 {
    left: 75px;
    top: 110px;
}

.abdbox .ll3 {
    left: 20px;
    top: 186px;
}

.abdbox .ll4 {
    left: 90px;
    top: 235px;
}

.abdbox .ll5 {
    left: 48px;
    top: 300px;
}

.abdbox .abic1 {
    right: 530px;
}

.abdbox .abic2 {
    right: 353px;
}

.abdbox .abic3 {
    right: 175px;
}

.abdbox .abic4 {
    right: 0;
}

.ula {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    text-align: right;
}

.ula a {
    display: inline-block;
    line-height: 56px;
    border-radius: 50px 0 0 50px;
    background: #005a98;
    color: #94bfdd;
    margin: 1px 0;
    transition: 0.3s;
    width: 114px;
    text-align: center;
}

.ula a:hover,
.ula a.active {
    background: #0077c8;
    font-weight: bold;
    color: #fff;
    width: 100%;
}

.goddex {
    margin: 80px 0;
}

.goddex {}

.ggtop ul {
    width: 1210px;
}

.ggtop li {
    float: left;
    border: 1px solid #f3f3f3;
    position: relative;
    padding-left: 65px;
    width: 165px;
    height: 82px;
    margin: 0 7.3px 0 0;
    transition: 0.3s;
}

.ggtop .ggimg {
    position: absolute;
    left: 1px;
    width: 52px;
    text-align: center;
    top: 24px;
    text-align: right;
}

.ggtop li .img2 {
    display: none;
}

.ggname {
    font-size: 16px;
    color: #666666;
    margin-top: 20px;
}

.ggtext {
    font-size: 12px;
    color: #cccccc;
    font-family: "din-regular";
}

.ggtop li.active,
.ggtop li:hover {
    background: #006DB8;
    border-color: #006DB8;
}

.ggtop li.active .img2,
.ggtop li:hover .img2 {
    display: inline-block;
}

.ggtop li.active .img1,
.ggtop li:hover .img1 {
    display: none;
}

.ggtop li.active .ggname,
.ggtop li:hover .ggname {
    color: #fff;
}

.ggtop li.active .ggtext,
.ggtop li:hover .ggtext {
    color: #fff;
    opacity: 0.3;
}

@media only screen and (max-width: 1680px) {
    .jingshen .wrapper {
        width: 100%;
        padding: 0 15vw;
    }
    .abdbox .abic1 {
        right: 46%;
    }
    .abdbox .abic2 {
        right: 34%;
    }
    .abdbox .abic3 {
        right: 23%;
    }
    .abdbox .abic4 {
        right: 12%;
    }
}


/* 举报专栏 */

.jbzlbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 45px;
    border-top: 1px solid #e5e5e5;
}

.jbzlbox>div {
    width: 48.3%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    margin-bottom: 31px;
    flex-direction: column;
}

.jbzlbox>div>img {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
}

.jbzlbox>div>.t1 {
    font-size: 16px;
    font-family: '微软雅黑';
    font-weight: bold;
    color: #222222;
    line-height: 16px;
    margin-bottom: 9px;
}

.jbzlbox>div>.t2 {
    font-size: 14px;
    font-family: '微软雅黑';
    font-weight: 500;
    color: #222222;
    line-height: 16px;
    margin-bottom: 9px;
}

.jbzlbox>.item3>.t2 {
    font-size: 20px;
    font-family: '微软雅黑';
    font-weight: bold;
    color: #006db8;
    line-height: 16px;
    margin-bottom: 9px;
}

.jbzlbox>.item4>p>span {
    font-weight: 600;
    color: #ff7b00;
}

.jbzlbox>.item3,
.jbzlbox>.item4 {
    margin-bottom: 0;
}


/* 首页浮窗 */

.index-fk {
    display: block;
    height: 141px;
    width: 220px;
    position: fixed;
    top: 45%;
    right: 3.5%;
    z-index: 100;
}

.index-fk>img {
    width: 100%;
    height: 100%;
}