﻿@charset "utf-8";

/* 集约化02 */

/* 链接 */
a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #2f7dc7;
    text-decoration: none;
}

a:active {
    outline: none;
}

a:link{
	text-decoration:none; 
}  /* 指正常的未被访问过的链接*/

a:visited{
	text-decoration:none; 
}/*指已经访问过的链接*/

a:hover{
	text-decoration:none;
}/*指鼠标在链接*/}

a:active{
	text-decoration:none;
}/* 指正在点的链接*/ 

/* 头部、底部、公用 */

body {
    overflow-x: hidden;
    font-size: 18px;
    background: #fff;
}

.header {
    background: url(../../images/images_2021/head.jpg) 50% 0px no-repeat;
    background-size: cover;
}
.header h1 {
    width: 550px;
    height: 193px;
    background: url(../../images/images_2021/logo.png) 0 50% no-repeat;
}

.header h1 a {
    display: block;
    height: 193px;
    background-color: transparent !important;
}

.nav {
    height: 60px;
    background: #4470e7;
    background: -webkit-linear-gradient(60deg, #0ba6e3, #4470e7);
    background: linear-gradient(60deg, #0ba6e3, #4470e7);
}

.nav li {
    float: left;
    position: relative;
    width: 16.66%;
	/*width:14%;*/
}

.nav li a {
    display: block;
    height: 60px;
    padding: 15px 0px;
    line-height: 30px;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.nav li a:hover,
.nav li.current {
    background-color: #135a9c;
}

/* 搜索 */

.header .search{
    width: 340px;
    margin: 6% auto 0;
}

.search input {
    box-sizing: border-box;
    width: 240px;
    height: 40px;
    line-height: 20px;
    font-size: 16px;
    margin-right: 0px;
    padding: 10px 20px 10px 40px;
    border: none;
    color: #b4b3b3;
    box-shadow: none;
    border-radius: 3px 0px 0px 3px;
    outline: none;
    margin-top: -3px;
    background: #fff url(../../images/images_2021/q.png) 10px 50% no-repeat;
}

.search button {
    box-sizing: border-box;
    width: 80px;
    height: 40px;
    border: none;
    background: #ff9d08;
    color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    margin-left: -5px;
    border-radius: 0px 3px 3px 0px;
}

.inner,
.content,
.links,
.copyright {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 移动端菜单开始 */

.mask {
    display: none;
    position: fixed;
    z-index: 597;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity .2s;
}

.mask.on {
    display: block;
    opacity: 1;
}

body.modal-open {
    position: fixed;
    width: 100%;
}

.menu {
    display: none\9;
    position: fixed;
    z-index: 598;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background-color: #f5f5f5;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.menu.on {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.menu img {
    display: block;
    width: 70%;
    margin: 60px 20px;
}

.menu li a {
    position: relative;
    display: block;
    margin: 0 15px;
    padding: 0 15px;
    line-height: 50px;
    font-size: 16px;
    color: #048;
}

.menu li a:after {
    content: " ";
    display: inline-block;
    height: 6px;
    width: 6px;
    border-width: 2px 2px 0 0;
    border-color: #ccc;
    border-style: solid;
    -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 10px;
}

.menu li+li a {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .2);
}

.menu>ul>li:nth-child(1) {
    animation-delay: .1s;
}

.menu>ul>li:nth-child(2) {
    animation-delay: .2s;
}

.menu>ul>li:nth-child(3) {
    animation-delay: .3s;
}

.menu>ul>li:nth-child(4) {
    animation-delay: .4s;
}

.menu>ul>li:nth-child(5) {
    animation-delay: .5s;
}

.menu>ul>li:nth-child(6) {
    animation-delay: .6s;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 599;
    width: 50px;
    height: 50px;
}

.menu-btn.on,
.menu-btn.fixed {
    position: fixed;
    top: 50px;
}

.menu-btn>span {
    position: absolute;
    left: 0;
    right: 0;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #048;
    border-radius: 2px;
    transition: .25s;
}

.menu-btn>span:nth-child(1) {
    top: 18px;
}

.menu-btn>span:nth-child(2) {
    top: 24px;
}

.menu-btn>span:nth-child(3) {
    top: 30px;
}

.menu-btn.on span,
.hd+.menu-btn>span {
    background: #048;
}

.menu-btn.on span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-btn.on span:nth-child(2) {
    opacity: 0;
    transform: rotate(90deg);
}

.menu-btn.on span:nth-child(3) {
    top: 21px;
    transform: rotate(135deg);
}

/* 移动端菜单结束 */


/* 底部 */

.footer {
    padding: 20px 0;
    border-top:3px solid #1a99e4;
}

.links>ul>li {
    position: relative;
    line-height: 40px;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.links>ul>li>a {
    display: block;
    margin: 0 -5px;
    padding: 0 20px;
    border:1px solid #ccc;
}

.links>ul>li.links_arr>a {
    background:url(../../images/images_2021/links_arr.png) 96% 50% no-repeat;
}

.links li ul {
    display: none\9;
    z-index: -1;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 40px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    opacity: 0;
    transform: translate(0, 3px);
    transition: opacity, transform .3s;
}

.links li:hover ul {
    display: block\9;
    z-index: 9;
    opacity: 1;
    transform: translate(0, 0);
}

.links li li {
    border-top: 1px solid #ddd;
    line-height: 39px;
    text-align: center;
    transition: all .3s;
}

.links li li:hover {
    background-color: #f8f8f8;
}

.links li li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: 14px;
}

.copyright {
    line-height: 32px;
}

.copyright p a,
.copyright p span {
    margin: 0 10px;
}

.p20{
    
}

.gov {
    position: absolute;
    top: 50%;
    right: 13%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
}

.jc {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 110px;
    height: 55px;
    margin-top: -22px;
}

@media (max-width: 1200px) {
    body {
        background-position: 50% 140px;
    }

    /*.header {
        background-position: 50% 10px;
    }*/
	
	.header {
        padding: 0px 0px 10px;
    }

    .header h1 {
        height: 100px;
        background-position: 16px 50%;
        background-size: auto 55%;
    }

    .header h1 a {
        display: block;
        height: 100px;
    }

    .nav,
    .header .search p strong {
        display: none;
    }

    .header h1,
    .inner,
    .content,
    .links,
    .copyright {
        width: 100%;
    }

    .menu-btn {
        display: block;
    }

    .header .search {
        width: auto;
        margin: 20px;
        float: none;
    }

    .header .search input {
        width: 98%;
        height: 48px;
        padding: 15px 65px 15px 15px;
        margin: 0;
    }

    .header .search button {
        width: 50px;
        height: 50px;
        margin-left: -50px;
        background-position: center;
        line-height:50px;
        font-size: 16px;
    }

    .header .search p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 10px;
    }

    .footer {
        padding: 20px;
    }

    .links {
        padding: 0 20px;
    }

    .copyright {
        line-height: 22px;
        font-size: 14px;
    }

    .handle {
        margin-bottom: 10px;
    }

    .grid{
        padding:0px 20px;
    }

}

@media (max-width: 768px) {

    .copyright {
        text-align: center;
    }

    .copyright p span {
        display: block;
    }

    .copyright>.p20 {
        margin: 0;
        width: 100%;
    }

    .footer .gov,
    .footer .jc {
        position: relative;
        display: inline-block;
        top: 0;
        margin-top: 20px;
        vertical-align: middle;
    }
}


/* 公用 */

.content .row {
    margin-right: -15px;
    margin-left: -15px;
}

.content .row>.col,
.content .row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.tab-pane {
    position: relative;
    overflow: hidden;
}

.tab-pane .pane>ul,
.tab-pane .pane>div {
    animation-duration: .3s;
}

.tab a,
.tab b {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    margin: 0px 5px;
    font-size: 20px;
    color: #0066bb;
    text-align: center;
    border:1px solid #0066bb;
}

.tab .current {
    color: #fff;
    background: #00c6fb;
    background: -webkit-linear-gradient(60deg, #005bea, #00c6fb);
    background: linear-gradient(60deg, #005bea, #00c6fb);
    border:1px solid #fff;
}

h3.tab {
    height: 42px;
    line-height: 40px;
}

@media (max-width: 1200px) {
    .tab {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        margin-left: -2px;
        margin-right: -2px;
    }

    .tab a,
    .tab b {
        width: 0%;
        min-width: inherit;
        position: relative;
        overflow: hidden;
        display: block;
        margin: 0 2px;
        padding: 0;
        font-size: 16px;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
        overflow: hidden;
        white-space: nowrap;
        word-break: keep-all;
        text-overflow: ellipsis;
    }
}

@media (max-width: 360px) {
    /*h3.tab {
        margin-left: -10px;
        margin-right: -10px;
    }*/

    h3.tab a,
    h3.tab b{
        font-size: 14px;
    }
}

.list-a li i {
    width: 40px;
    height: 40px;
    background-image: url(../../images/images_2021/icons_02.png);
    background-image: url(../../images/images_2021/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
}

.grid h2 {
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 24px;
    font-size: 24px;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.pages .current {
    background-color: #2d8fff;
}

/* 首页 开始*/

/* part1开始 */
.headline{
    margin-bottom: 60px;
}

.headline h4{
    font-size: 36px;
    line-height: 40px;
    padding: 30px;
    font-weight: bold;
}

.headline a{
    color: #135a9c;
    font-weight: bold;
}

.focus,
.focus .pic {
    position: relative;
    height: 380px;
}

.focus .pic>div {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.focus .pic img {
    width: 100%;
    height: 380px;
}

.focus .pic span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 10px 140px 10px 10px;
    line-height: 30px;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #333;
    background-color: rgba(0, 0, 0, .4);
    color: #fff;
}

.focus .focus-prev,
.focus .focus-next {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    line-height: 60px;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .2);
    background-size: 24px auto;
    color: #fff;
    opacity: 0;
    transition: all .3s;
}

.focus .focus-prev .iconfont,
.focus .focus-next .iconfont {
    font-size: 28px;
    font-weight: normal;
}

.focus .focus-prev {
    transform: translate(-50px, 0);
    left: 0;
    background-image: none;
}

.focus .focus-next {
    transform: translate(50px, 0);
    right: 0;
    background-image: none;
}

.focus:hover .focus-prev,
.focus:hover .focus-next {
    opacity: 1;
    transform: translate(0, 0);
}

.focus .navi {
     position: absolute;
     bottom: 13px;
     left: auto;
     right: 10px;  
     z-index: 9;
     width: auto;
     margin-bottom: 4px\9;
     padding: 0 10px;
     text-align: right;
 }

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}


.focus .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    text-align: center;
    line-height: 20px;
    font-size: 0px;
    color: #fff;
    opacity: 1;
    border: 1px solid #fff;
}

.focus .swiper-pagination-bullet-active {
    background-color: #fff;
    border:none;
}

.list-t li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background-color: transform;
    border-radius: 0px;
    background:url(../../images/images_2021/dot.png) 96% 50% no-repeat;
}

.list-t li:hover:before {
    background-color: transparent;
}

.a1{
    padding: 6px 0px;
    height: 70px;
    margin-top: 15px;
    background:url(../../images/images_2021/news_bg.png) 0 0 no-repeat;
}

.a1 li{
    font-size: 20px;
    line-height: 58px;
    padding: 0px 30px;
    width: 43%;
    margin:0px 20px;
    background-color: #f4faff;    
}

.a1 li a{
    color: #13479e;
    padding: 0px 30px;
}

.a1 li.current,
.a1 li:hover{
    font-weight: none;
    background-color: #e4f3ff;    
}

.a1 li a:hover{
    font-weight: none;
}

@media (max-width: 1200px) {

    .focus,
    .focus .pic {
        position: relative;
        width: 100%;
        height: auto;
    }

    .focus .pic>div {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 60% 0 0;
    }

    .focus .pic img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .focus .pic span{
        margin:0px;
        height: 40px;
        padding:10px;
        line-height: 20px;
    }

    .focus .navi{
        display:none;
    }

    .a1 {
        background:none;
    }

    .a1 li{
        width: 100%;
        margin: 10px 0px;
    }

}

@media (max-width: 1024px) {
    .list-t li a {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .focus {
        margin-bottom: 20px;
    }

    .list-t li a {
        width: 100%;
    }
}

@media (max-width: 480px) {
	.headline h4{
		font-size: 28px;
	}
}
/* part1结束 */

/* part3开始 */
.box{
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.grid h2{
    font-size: 22px;
    color: #4272e6;
    line-height: 40px;
}

.grid h2 i{
    width: 40px;
    height: 40px;
    display: block;
    float: left;
    margin-right: 10px;
    background-image: url(../../images/images_2021/icons_02.png);
    background-image: url(../../images/images_2021/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
}

.grid h2 i.s1{
    background-position: 0px 0px;
}

.grid h2 i.s2{
    background-position: -40px 0px;
}

.grid h2 i.s3{
    background-position: -80px 0px;
}


.a2,
.a3 {
    width: 50%;
    float: left;
}
.a3{
	margin-top:20px;
}

.a2 li{
    line-height: 64px;
    padding-left: 20px;
    border-bottom:1px dashed #ccc;
    border-right:1px dashed #ccc;
    background:url(../../images/images_2021/dot02.jpg) 5px 50% no-repeat;
}

.a2 li a{
    display: block;
    text-align: left;
}

.a3 li{
    position: relative;
    line-height: 60px;
    padding-left: 30px;
}

.a3 li a{
    display: block;
    text-align: left;
}

.a3 li:before,
.a5 li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #7e8fc3;
    border-radius: 100px;
}

.a4 {
    display: inline-block;
}

.a4 li{
    font-size: 16px;
    line-height: 40px;
    float: left;
    margin:0px 1px;
    background-color: #e9f3ff;
}

.a4 li a{
	padding: 0px 9px;
}

.a4 li:hover a{
    color: #fff;
    background-color: #5797ee;
}

.a5{
    width: 100%;
    display: inline-block;
    padding: 20px 15px 10px 15px;
    background:#e9f3ff url(../../images/images_2021/fw_bg01.jpg) 0 0 no-repeat;
} 

.a5 h3{
    line-height: 15px;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left:4px solid #4272e6;
}

.a5 li{
    position: relative;
    width: 33.33%; 
    float: left;
    line-height: 34px;
}

.a6 li{
    line-height: 54px;
    margin:13px 0px 0px 0px;
    background:#5797ee url(../../images/images_2021/fw_bg02.jpg) 0 0 no-repeat;
}

.a6 li a{
    color: #fff;
}

.a6 li a:hover{
    font-weight: bold;
}

.a7 li{
    width: 50%;
    float: left;
    line-height: 56px;
    font-size: 22px;
    padding: 20px 0px 20px 20px;
    background-color: #fafafa;
    border:1px dashed #ccc;
    background-image: url(../../images/images_2021/icons_02.png);
}

.a7 li a{
    text-align: left;
}

.a7 li:last-child{
    width: 100%;
}

.a7 li:last-child a {    
    text-align:center;
}

.a7 li:hover{
    background-color: #f4f9ff;
}

.a7 li.s1{
    background-position: -70px -180px;
}

.a7 li.s2{
    background-position: -315px -180px;
}

.a7 li.s3{
    background-position: -70px -280px;
}

.a7 li.s4{
    background-position: -315px -280px;
}

.a7 li.s5{
    background-position: -70px -380px;
}

.a7 li.s6{
    background-position: -315px -380px;
}

.a7 li.s7{
    background-position: -145px -485px;
}

@media (max-width: 1200px) {

    /*.a2,
    .a3 {
        width: 100%;
        float: none;
    }*/

    .a4 li{
        width: 49%;
    }

}

@media (max-width: 768px) {
    .a7 li{
        width: 33.33%
    }
}

@media (max-width: 480px) {
    .a7 li{
        width: 50%
    }
}


/* part3结束 */

/* part4开始 */
.topic {
    position: relative;
}

.topic .scroll {
    position: relative;
    margin: 0 20px;
}

.topic li {
    width: 320px\9;
}

.topic li a {
    display: block;
    width: 320px\9;
    margin: 0 15px;
}

.topic li img {
    width: 100%;
    width: 320px\9;
}

.topic-prev,
.topic-next {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 60px;
    margin-top: -30px;
    cursor: pointer;
}

.topic-prev .iconfont,
.topic-next .iconfont{
    font-size: 24px;
    line-height: 60px;
}

.topic-prev {
    left: 0px;
}

.topic-next {
    right: 0px;
}

@media (max-width: 1200px) {
    .topic .scroll {
        margin: 0 -10px;
    }

    .topic h2,
    .topic-prev,
    .topic-next {
        display: none;
    }

}
@media (max-width: 480px) {
    .topic_ds{
        width: 100%;
        height: 90px;
        float: none;
        display: block;
        text-align: center;
        margin: 0px auto 20px;
    }

}
/* part4结束 */

/* 机构设置 开始 */

.t5 {
    position: relative;
    line-height: 42px;
    background: url(../../images/images_2021/t5.jpg) right center no-repeat;
}

.t5 b {
    display: inline-block;
    padding: 0 10px;
    color: #fff;
    background: #00c6fb;
    background: -webkit-linear-gradient(60deg, #005bea, #00c6fb);
    background: linear-gradient(60deg, #005bea, #00c6fb);
}
/* 领导列表 */

.leader-menu li a {
    display: block;
    border-bottom: 1px solid #ddd;
    padding-left: 20px;
    line-height: 60px;
}

.leader .pic img {
    display: block;
    width: 100%;
}

.leader dt {
    float: left;
    width: 100px;
    padding: 120px 0 0 20px;
    line-height: 30px;
    font-size: 22px;
}

.leader dd {
    border-bottom: 1px solid #ddd;
    padding: 15px 15px 15px 125px;
}

.leader .list-p li a {
    padding: 20px 0;
    text-align: center;
}

.leader .list-p .pic {
    position: relative;
    overflow: hidden;
    display: block;
    width: 160px;
    height: 220px;
    margin: 0 auto 20px;
    background-color: #eee;
    border-radius: 6px;
}

.leader .list-p .pic+h4 {
    font-size: 28px;
    font-weight: bold;
    max-height: 70px;
}

@media (max-width:480px) {
    .leader .list-p .pic {
        width: 120px;
        height: 168px;
    }

}

@media (max-width:360px) {
    .leader .list-p .pic {
        width: 100px;
        height: 140px;
    }

}


.a8 li {
    position: relative;
    padding: 10px;
}

.a8 li a {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    line-height: 1.5;
    font-size: 18px;
}

.a8 li a span {
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}

.a8 li:before{
    content: "";
    position: absolute;
    top: 20px;
    left: 15px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #7e8fc3;
    border-radius: 100px;
}

.a9 li{
    position: relative;
    padding: 20px 30px;
    background-color: #f2f7fc;
}

.a9 li a{
    color: #2f6eaa;
    text-align: left;
    font-weight: bold;
}

.a9 li:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #2f6eaa;
    border-radius: 100px;
}

@media (max-width: 480px) {
    .a8 li a span {
        overflow: hidden;
        white-space: normal;
        text-overflow: ellipsis;
    }
}

/* 机构设置 结束 */

