@charset "UTF-8";
body {
    font-family: Arial, "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 1rem;
    color: #333333;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd,
hr,
input,
p {
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
}

a {
    color: inherit;
    font: inherit;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover {
    text-decoration: none;
    color: #165db9;
}

a:focus {
    border: none;
    outline: none;
    text-decoration: none;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
    border: none;
    outline: none;
}

.container {
    width: 95%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container {
        width: 940px;
    }
}

@media (min-width: 1080px) {
    .container {
        width: 1000px;
    }
}

@media (min-width: 1280px) {
    .container {
        width: 1200px;
    }
}

img {
    max-width: 100%;
    border: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.wrapper {
    position: relative;
    overflow: hidden;
}

@keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-ms-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}


/* header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 9999;
}

.header .logo {
    float: left;
}

.header .goback {
    float: left;
    width: 105px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #3b71bf;
    font-size: 1rem;
    color: #fff;
    border-radius: 20px;
    margin-left: 15px;
    margin-top: 10px;
    transition: .5s;
}

.header .goback:hover {
    background: #1151af;
}

.header .toplink {
    float: right;
    margin-top: 12px;
}

.header .toplink li {
    float: left;
    font-size: .875rem;
    color: #333;
    padding: 0 8px;
    position: relative;
}

.header .toplink li:last-child {
    padding-right: 0;
}

.header .toplink li:after {
    content: "";
    width: 1px;
    height: 14px;
    background: #97bef7;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

.header .toplink li:first-child:after,
.header .toplink li:last-child:after {
    display: none;
}

.header .toplink a {
    color: #1151af;
    display: block;
    padding: 0 8px;
    border-radius: 12px;
    text-align: center;
    transition: .5s;
}

.header .toplink a:hover {
    background: #1151af;
    color: #fff;
}


/* header */


/* 底部 */

.footer {
    position: relative;
    background: url(../images/footer-bg.png) center top no-repeat #1151af;
}

.foot-link .link-list {
    width: calc(100% - 120px);
    margin: 0 auto;
    position: relative;
}

.foot-link .link-list .box {
    float: left;
    width: 25%;
    position: relative;
}

.foot-link .link-list .tit {
    line-height: 70px;
    text-align: center;
    cursor: pointer;
}

.foot-link .link-list .tit p {
    display: inline-block;
    padding-right: 20px;
    font-size: 1rem;
    background: url(../images/select-ico.png) right center no-repeat;
    color: #fff;
}

.foot-link .link-list ul {
    position: absolute;
    width: 100%;
    height: 390px;
    left: 0;
    bottom: 100%;
    z-index: 9;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    overflow-y: auto;
    display: none;
}

.foot-link .link-list ul li {
    padding: 5px 0;
}

.foot-link .link-list ul li a {
    display: block;
    font-size: .875rem;
    color: #333;
}

.foot-link .link-list ul li:hover a {
    color: #1151af;
}

.foot-link .link-list ul::-webkit-scrollbar {
    width: 4px;
}

.foot-link .link-list ul::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.foot-link .link-list ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: linear-gradient(45deg, #1151af 0%, #1151af 100%);
}

.foot-info {
    padding: 35px 0 25px;
}

.foot-info .lf {
    float: left;
    padding-top: 25px;
}

.foot-info .lf a {
    float: left;
    margin-right: 28px;
}

.foot-info .lf img {
    vertical-align: middle;
}

.foot-info .mid {
    float: left;
}

.foot-info .mid p {
    font-size: .875rem;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.foot-info .rt {
    float: right;
    margin-top: 0px;
}

.foot-info .rt li {
    float: left;
    margin-left: 25px;
}

.foot-info .rt li h2 {
    height: 80px;
    width: 22px;
    line-height: 22px;
    float: left;
    text-align: center;
    background: url(../images/ewm-bg.png) top no-repeat;
    font-size: .75rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: tb-rl;
    letter-spacing: 1px;
}

.foot-info .rt li img {
    width: 100px;
    height: 100px;
}

.cory {
    padding: 10px 0;
    text-align: center;
    background: #0b49a5;
}

.cory * {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.9);
}

.cory img {
    vertical-align: middle;
}


/* 底部 */


/* 右侧导航 */

.page-right {
    position: fixed;
    z-index: 999;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.page-right li {
    width: 106px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 30px;
}

.page-right li a {
    display: block;
    position: relative;
    font-size: 1rem;
    color: #fff;
    overflow: hidden;
    background: #255eb2;
    border-radius: 20px;
}

.page-right li a:before {
    content: "";
    width: 90%;
    height: 80%;
    border: 1px dashed #fff;
    position: absolute;
    top: 8%;
    left: 5%;
    border-radius: 20px;
}

.page-right li:last-child {
    margin-bottom: 0;
}

.page-right li.active a {
    
    background-size: 100% 100%;
}

#fp-nav {
    display: none !important;
}


/* 右侧导航 */


/* 主体 */

.title-con {
    border-bottom: 1px #1151af solid;
    height: 46px;
    line-height: 46px;
    position: relative;
    width: 100%;
}

.title-con h3 {
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 44px;
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
    padding: 0 20px 0 35px;
    background: #1151af url(../images/line.png)no-repeat 20px center;
    line-height: 44px;
}

.title-con h3::after {
    content: '';
    position: absolute;
    right: -16px;
    width: 16px;
    height: 100%;
    background: url(../images/t-bg.png)no-repeat center bottom;
}

.title-con a {
    float: right;
    font-size: 14px;
    color: #739ad2;
}

.title-con a:hover {
    color: #1151af;
}

.row {
    overflow: hidden;
    padding-top: 10px;
    margin-bottom: 28px;
}

.sp {
    margin-top: 40px;
    overflow: hidden;
}

.sp a {
    width: 23.5%;
    height: 105px;
    background-color: #cfebfe;
    overflow: hidden;
    float: left;
    position: relative;
    font-size: 20px;
    color: #1151af;
    margin-right: 2%;
}

.sp a:last-child {
    margin-right: 0;
}

.sp .icon {
    position: absolute;
    left: 40px;
    height: 100%;
    background-position: left center;
    background-repeat: no-repeat;
    width: 70px;
}

.sp .txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 130px;
}

.sp a:nth-child(1) .icon {
    background-image: url(../images/img1.png);
}

.sp a:nth-child(2) .icon {
    background-image: url(../images/img2.png);
}

.sp a:nth-child(3) .icon {
    background-image: url(../images/img3.png);
}

.sp a:nth-child(4) .icon {
    background-image: url(../images/img4.png);
}

.sp a:hover {
    background-color: #1151af;
    color: #FFF;
    font-weight: bold;
}
.sp a.on {
    background-color: #1151af;
    color: #FFF;
    font-weight: bold;
}

.text-list {
    margin-top: 10px;
}

.text-list li {
    line-height: 58px;
    overflow: hidden;
    border-bottom: 1px solid #e1e9f5;
    position: relative;
}

.text-list li * {
    transition: .5s;
}

.text-list li h2 {
    float: left;
    width: calc(100% - 90px);
    font-size: 1rem;
    color: #333333;
    padding-left: 15px;
    position: relative;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-list li h2:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #e2cf94;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
}

.text-list li .date {
    float: right;
    font-size: .875rem;
    color: #999999;
}

.text-list li:before {
    content: "";
    background: #1151af;
    width: 0;
    transition: width .5s;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.text-list li:hover:before {
    width: 100%;
}

.text-list li:hover h2 {
    color: #1151af;
}

.text-list li:hover .date {
    color: #1151af;
}

.left {
    float: left;
    width: calc(100% - 320px - 40px);
}

.card {
    width: 48%;
    float: left;
    margin-top: 20px;
}

.card:last-child {
    float: right;
}

.right {
    width: 320px;
    float: right;
}

.right .box {
    width: 100%;
    height: 338px;
    overflow: hidden;
    background: url(../images/bg1.jpg)no-repeat center;
    background-size: cover;
    margin-bottom: 35px;
    padding: 25px;
    padding-top: 35px;
}

.right .box h3 {
    color: #1151af;
    font-size: 22px;
    border-bottom: 1px #cdd4e4 solid;
    text-align: center;
    padding-bottom: 20px;
}

.right .box .text {
    font-size: 18px;
    margin-top: 35px;
    padding-left: 65px;
    position: relative;
}

.right .box .text .icon {
    width: 54px;
    height: 54px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #d0d8e7 solid;
    background-position: center;
    background-repeat: no-repeat;
}

.right .box .text:nth-child(1) .icon {
    background-image: url(../images/icon1.png);
}

.right .box .text:nth-child(2) .icon {
    background-image: url(../images/icon2.png);
}

.link {
    background-color: #f1f6ff;
    background-image: linear-gradient(#f1f6ff, #ffffff);
    border: 1px #e5efff solid;
    padding-top: 0;
    margin-bottom: 80px;
}

.link .hd {
    border-bottom: 1px #165db9 solid;
}

.link .hd li {
    width: 25%;
    float: left;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.link .hd li.on {
    background-color: #1151af;
    color: #FFF;
}

.link .hd li.on::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background-color: #e2d095;
}

.link .bd .wrapper {
    padding: 20px 40px;
}

.link .bd a {
    height: 46px;
    line-height: 46px;
    width: 23.5%;
    margin-right: 2%;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

.link .bd a:nth-of-type(4n) {
    margin-right: 0;
}

.link .bd a:hover {
    background-color: #1151af;
    color: #FFF;
}

.list-con {
    width: 100%;
    background-color: #f2f6fb;
    background-image: linear-gradient(#FFFFFF, #f2f6fb);
    padding: 20px 0;
}

.crumbs {
    font-size: 14px;
    color: #666;
}

.crumbs a {
    color: #666;
}

.list-con h2 {
    font-size: 30px;
    color: #1151af;
    margin-top: 30px;
    text-align: center;
}

.sidebar {
    width: 320px;
    float: left;
    position: relative;
    padding: 20px 25px;
    margin-top: 55px;
}

.sidebar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 999999px;
    background-color: #e2f0fe;
}

.sidebar .menu .head {
    cursor: pointer;
    border-bottom: 1px #cdd4e4 solid;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
}

.sidebar .sub-menu {
    display: none;
    background-color: #f3f9ff;
    text-align: center;
    padding: 10px 0;
}

.sidebar li.open .sub-menu{
display:block;
}

.sidebar .sub-menu a {
    display: block;
    height: 40px;
    line-height: 40px;
}

.sidebar .sub-menu a:hover,
.sidebar .sub-menu a.on {
    background-color: #e2cf94;
    color: #594811;
    font-weight: bold;
}
.sidebar .menu .open .head,
.sidebar .menu .menu-show .head {
    border-bottom: 2px #1151af solid;
    font-weight: bold;
    color: #1151af;
}

.list {
    width: calc( 100% - 320px - 50px);
    float: right;
    margin-top: 55px;
}

.list .title {
    font-size: 20px;
    font-weight: bold;
    background: #e2f0fe url(../images/arrow.png)no-repeat left top;
    height: 50px;
    line-height: 50px;
    padding-left: 35px;
}

.page {
    text-align: center;
    margin-top: 40px;
    line-height: 24px;
}

.page a {
    display: inline-block;
    width: 24px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    position: relative;
    height: 24px;
    margin: 0 4px;
}

.page a.on {
    background-color: #1151af;
    color: #FFF;
}

.page input {
    width: 22px;
    height: 22px;
    border: 1px #6c93cd solid;
}

.page button {
    border: 0;
    background: none;
    cursor: pointer;
}
.page .prev,
.page .next{
    color: #1151af;
}
/* .page .prev::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-left: 1px #1151af solid;
    border-bottom: 1px #1151af solid;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.page .next::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-right: 1px #1151af solid;
    border-bottom: 1px #1151af solid;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
} */


/* 主体 */

/* 列表页 */
.list-page {
    position: relative;
    z-index: 3;
    min-height: 600px;
    background: #f5f8fb;
    padding: 30px 0 60px;
}
.location {
    overflow: hidden;
    margin-bottom: 10px;
}

.weizhi {
    font-size: 1rem;
    color: #666666;
    width:100%;
 /*   max-width: calc(100% - 120px); */
}

.weizhi a {
     font-size: 1rem;
    color: #666666;
}

.list-box {
    background: #fff;
}

.list-news {
    overflow: hidden;
}

.list-news * {
    transition: .5s;
}

/* 正文页 */
.article {
    position: relative;
    padding-top: 20px;
}

.article .langdu-wrap {
    position: absolute;
    z-index: 9;
    top: -40px;
    right: 0;
    text-align: center;
    background: #1151af;
    border-radius: 20px;
    display: none;
}

.article .langdu-wrap a {
    display: inline-block;
    font-size: .875rem;
    color: #fff;
    padding-left: 28px;
    background: url() left center no-repeat;
}

.article .tit {
    font-size: 1.625rem;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.article .info {
    padding-bottom: 17px;
    border-bottom: 1px dashed #cccccc;
}

.article .info .lf {
    float: left;
    font-size: .875rem;
    color: #666666;
}

.article .info .lf span {
    margin-right: 15px;
}

.article .info .rt {
    float: right;
    font-size: .875rem;
    color: #3760ac;
}

.article .info .print {
    display: inline-block;
    padding-left: 23px;
    background: url() left center no-repeat;
}

.article .info .zt {
    display: inline-block;
    margin-left: 20px;
}

.article .info .zt a {
    display: inline-block;
    margin: 0 3px;
}

.article .info .share {
    position: relative;
    margin-left: 20px;
    display: inline-block;
    padding-left: 23px;
    background: url() left center no-repeat;
    cursor: pointer;
}

.article .info .share .social-share {
    position: absolute;
    z-index: 99;
    bottom: 100%;
    right: -15px;
    width: 160px;
    opacity: 0;
    visibility: hidden;
}

.article .info .share:hover .social-share {
    opacity: 1;
    visibility: visible;
}

.article .info .phone {
    margin-left: 20px;
    display: inline-block;
    padding-left: 23px;
    background: url() left center no-repeat;
}

/* 内容页-政策解读 */
.zcwj-info {
    margin-top: -20px;
    margin-bottom: 50px;
}

.article .zh {
    padding-bottom: 15px;
    font-size: 1rem;
    text-align: center;
    color: #333;
    border-bottom: 1px dashed #cccccc;
    margin-bottom: 20px;
}

.zcwj-info .zc-table {
    overflow: hidden;
    margin-top: 35px;
    border-bottom: 1px solid #e6e6e6;
}

.zcwj-info .zc-table li {
    float: left;
    width: 50%;
    font-size: 1rem;
    color: #222222;
    line-height: 50px;
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.zcwj-info .zc-table li.t {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    min-height: 50px;
    align-items: center;
    background: #e9f2ff;
    /* justify-content: space-around; */
}

.zcwj-info .zc-table li span {
    width: 150px;
    text-align: center;
    border-right: 1px solid #e6e6e6;
    color: #666666;
    background: #e9f2ff;
}

.zcwj-info .zc-table li em {
    display: inline-block;
    width: calc(100% - 160px);
    padding: 0 10px;
    text-align: center;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    font-style: normal;
    line-height: 25px;
}

.zcwj-info .zc-table li > * {
    display: inline-block;
    vertical-align: middle;
    /* white-space: nowrap; */
}

.zcwj-info .zc-table li.t span {
    border-right: none;
}

.zcwj-info .zc-table li.t em {
    display: block;
    padding: 10px 0 10px 10px;
    text-align: left;
    line-height: 24px;
    border-left: 1px solid #e6e6e6;
    /* background: #fff; */
}

.article .con {
    margin-top: 30px;
    overflow: hidden;
}

.article .article-text {
    float: left;
   width: 100%;
 /*   width: calc(100% - 360px); */
}

.article .article-text iframe {
    width: 100%;
    margin-left: -2em;
}

.article .article-text p {
    font-size: 1rem;
    color: #222222;
    line-height: 34px;
    text-indent: 2em;
}

.article .article-text p img, .article .article-text p video {
    max-width: 100% !important;
    height: auto !important;
  
}

.article .article-text table {
       max-width: 98%;
    overflow-x: auto;
    border: none;
    margin: 0 auto;
}

.article .article-text table p {
    text-indent: 0 !important;
    padding: 0;
}

.article .article-text .other {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #cccccc;
}

.article .article-text .other p {
    text-indent: 0;
    color: #666666;
}

.article .article-rt {
    float: right;
    width: 324px;
    background: #e9f2ff;
    padding: 12px 12px 0;
}

.article .item {
    margin-bottom: 30px;
}

.article .item h2 {
    font-size: 1.125rem;
    color: #222222;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}

.article .item h2:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #1151af;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
}

.article .item ul {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.article .item ul * {
    transition: .5s;
}

.article .item ul li {
    font-size: 1rem;
    color: #222222;
    line-height: 30px;
    padding: 5px 0;
    border-bottom: 1px solid #efefef;
}

.article .item ul li a {
    display: block;
}

.article .item ul li a:hover {
    color: #3760ac;
}

.article .item ul li:last-child {
    border-bottom: none;
}

.article .item dl {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.article .item dl dd {
    background: #f5f9ff;
    border-radius: 10px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 5px;
}

.article .item dl dd a {
    display: inline-block;
    padding-left: 65px;
    font-size: .875rem;
    color: #3760ac;
}



.article .item dl dd a:hover {
    padding-left: 55px;
}

.article .item .txt {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 1rem;
    line-height: 30px;
    color: #222222;
}

/* 内容页-政策解读 */