@charset "utf-8"; #loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
}

#loading .loading-img {
    width: 100%;
    height: 100%;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
    animation: fade 1.5s infinite alternate;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

html {
    min-width: 320px;
    font-size: 100px;
}

body.hide {
    overflow: hidden;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: .16rem;
}

.header {
    position: relative;
    z-index: 200;
    padding: .17rem 0;
    background-image: url(../images/topbg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.header .logo a {
    display: inline-block;
    outline: none;
}

.header .logo img {
    max-width: 100%;
    vertical-align: top;
}

.header .container > .fr {
    padding: .1rem 0 0;
}

.search {
    display: inline-block;
    width: 3.04rem;
    font-size: 0;
    vertical-align: middle;
}

.search .input {
    width: calc(100% - .4rem);
    height: .42rem;
    padding: 0 .1rem 0 .2rem;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.42rem;
    color: #fff;
    text-align: left;
    border: 1px solid transparent;
    vertical-align: top;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.search .input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search .submit {
    width: .4rem;
    height: .42rem;
    vertical-align: top;
    background-image: url(../images/s_icon1.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: auto;
}

.search form {
    white-space: nowrap;
}

.nav {
    position: relative;
    z-index: 2;
    background: #0153a5;
}

.nav li {
    position: relative;
    float: left;
    width: 10%;
    border-top: 2px solid transparent;
}

.nav li a {
    display: block;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.53rem;
    color: #fff;
    text-align: center;
}

.nav li:hover {
    border-color: #f0c334;
    background: #1e65b3;
}

.nav li:hover .lv2 {
    display: block;
    animation: flipInX .7s;
    -ms-animation: flipInX .7s;
}

.nav li.cur {
    border-color: #f0c334;
    background: #1e65b3;
}

.nav li .lv2 {
    display: none;
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 1;
    width: 2.8rem;
    padding: .15rem .25rem .28rem;
    background: #fff;
    font-size: 0;
    transform-origin: 50% 20%;
    -ms-transform-origin: 50% 20%;
}

.nav li .lv2 h6 {
    padding: 0 7px;
    margin: 0 0 .1rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.18rem;
    font-weight: 700;
    line-height: 0.4rem;
    color: #1e65b3;
    text-align: left;
    border-bottom: 1px solid #0153a5;
}

.nav li .lv2 a {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-size: .16rem;
    line-height: .3rem;
    color: #7b7b7b;
    text-align: left;
}

.nav li .lv2 a::before {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    margin: 0 0 2px;
    border-top: 4px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #cacaca;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.nav li .lv2 a:hover {
    color: #1e65b3;
}

.nav li .lv2 a:hover::before {
    border-left-color: #1e65b3;
}

.nav li .lv2::before {
    display: block;
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 19%;
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    border-left: 7px solid transparent;
}

.banner-box {
    width: 100%;
    overflow: hidden;
}

.banner {
    position: relative;
    z-index: 1;
    font-size: 0;
}

.banner .img {
    display: block;
    position: relative;
    padding: 35% 0 0;
}

.banner .slick-list {
    overflow: visible;
}

.banner .slick-slide {
    position: relative;
}

.banner .slick-slide::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    transition: all .25s;
    -ms-transition: all .25s;
}

.banner .slick-slide.slick-active::after {
    visibility: hidden;
}

.banner .img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .slick-arrow {
    position: absolute;
    top: 42%;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .45rem;
    height: .45rem;
    cursor: pointer;
    border-radius: 3px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.banner .slick-arrow.slick-prev {
    left: 5%;
    background-image: url(../images/s_icon2_1.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: auto;
}

.banner .slick-arrow.slick-prev:hover {
    background-color: #a10000;
    background-image: url(../images/s_icon2_1_2.png);
}

.banner .slick-arrow.slick-next {
    right: 5%;
    background-position: -90px 0;
    background-image: url(../images/s_icon2_2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: auto;
}

.banner .slick-arrow.slick-next:hover {
    background-color: #a10000;
    background-image: url(../images/s_icon2_2_2.png);
}

.tt1 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tt2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tt3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.tt4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.tt5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.img-scale {
    display: block;
    overflow: hidden;
}

.img-scale img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: transform 0.4s linear 0s;
    -moz-transition: transform 0.4s linear 0s;
    -o-transition: transform 0.4s linear 0s;
    transition: transform 0.4s linear 0s;
}

.img-scale .img-frame {
    overflow: hidden;
}

.img-scale .img {
    /*背景图替换img*/
    height: 100%;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
    -webkit-transition: transform 0.4s linear 0s;
    -moz-transition: transform 0.4s linear 0s;
    -o-transition: transform 0.4s linear 0s;
    transition: transform 0.4s linear 0s;
}

.img-scale .img img {
    min-height: 100%;
}

.img-scale:hover img {
    min-height: 100%;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.img-scale:hover .img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.column {
    position: relative;
    margin: 0 0 .34rem 0;
    border-bottom: 1px solid #e6e6e6;
}

.column h3 {
    display: inline-block;
    vertical-align: top;
    font-size: 0.21rem;
    font-weight: 500;
    line-height: 0.5rem;
    color: #1e65b3;
    text-align: left;
}

.column h3 span {
    font-size: .12rem;
    color: #ccc;
    text-transform: uppercase;
    vertical-align: bottom;
}

.column::after {
    display: block;
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: auto;
    right: auto;
    bottom: -1px;
    left: 0;
    z-index: 1;
    width: .94rem;
    height: 1px;
    background: #1e65b3;
}

.more {
    padding: 0 .22rem 0 0;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.5rem;
    color: #1e65b3;
    text-align: left;
    background-image: url(../images/s_icon4.png);
    background-repeat: no-repeat;
    background-position: 100% 55%;
    background-color: transparent;
    background-size: auto;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.more:hover {
    text-decoration: underline !important;
}

.title {
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.42rem;
    color: #313131;
    text-align: left;
}

.info {
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.24rem;
    color: #666;
    text-align: justify;
}

.date {
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.42rem;
    color: #777;
    text-align: left;
}

.date2 {
    padding: 0 0 0 .16rem;
    margin: 0 0 .12rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.2rem;
    color: #999;
    text-align: left;
    border-left: 3px solid #0153a5;
}

.index-main {
    padding: .25rem 0 0;
}

.index-main .part1 > .fl {
    width: 69%;
}

.index-main .part1 > .fr {
    width: 27%;
}

.index-main .part1 .list1 {
    width: 41%;
}

.index-main .part1 .list2 .title {
    margin: .02rem 0 0;
}

.index-main .part2 {
    margin: .4rem 0;
    padding: .25rem 0 .3rem;
    background-image: url(../images/s_bg2.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.index-main .part2 .container > .fl {
    width: 48.33%;
}

.index-main .part2 .container > .fr {
    width: 48.33%;
}

.index-main .part2 .column {
    margin-bottom: .24rem;
    border-color: #fff;
}

.index-main .part2 .arrow {
    display: inline-block;
    vertical-align: top;
    width: .26rem;
    height: .26rem;
    margin: .16rem 3px 0;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: auto;
    cursor: pointer;
    -webkit-transition: background 0.3s linear 0s;
    -moz-transition: background 0.3s linear 0s;
    -o-transition: background 0.3s linear 0s;
    transition: background 0.3s linear 0s;
}

.index-main .part2 .arrow.slick-prev {
    background-image: url(../images/s_icon3_1_2.png);
}

.index-main .part2 .arrow.slick-next {
    background-image: url(../images/s_icon3_2_2.png);
}

.index-main .part2 .arrow:hover {
    background-color: #7ca8d9;
}

.index-main .part2 .arrow:hover.slick-prev {
    background-image: url(../images/s_icon3_1.png);
}

.index-main .part2 .arrow:hover.slick-next {
    background-image: url(../images/s_icon3_2.png);
}

.index-main .part3 .column {
    margin: 0 0 .28rem;
}

.index-main .part3 > .fl {
    width: 32%;
}

.index-main .part3 > .fr {
    width: 32%;
}

.index-main .part3 .list4 {
    margin: -.1rem 0 0;
}

.index-main .part4 {
    padding: .32rem 0;
    margin: .45rem 0 0;
    background: #f8f8fa;
}

.news-slick {
    width: 55%;
    font-size: 0;
}

.news-slick .img {
    padding: 71.739% 0 0;
}

.news-slick .img-scale {
    position: relative;
}

.news-slick .title {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
    z-index: 1;
    width: 100%;
    padding: 0 1.2rem 0 .15rem;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.5rem;
    color: #fff;
    text-align: left;
    background: rgba(0, 0, 0, 0.67);
}

.news-slick .title span {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.15s linear 0.4s;
    -moz-transition: all 0.15s linear 0.4s;
    -o-transition: all 0.15s linear 0.4s;
    transition: all 0.15s linear 0.4s;
}

.news-slick .slick-active .title span {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.news-slick .slick-dots {
    position: absolute;
    top: auto;
    right: 0.22rem;
    bottom: 0.18rem;
    left: auto;
    z-index: 1;
}

.news-slick .slick-dots li {
    display: inline-block;
    vertical-align: top;
    width: 12px;
    height: 12px;
    margin: 0 0 0 .08rem;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}

.news-slick .slick-dots li.slick-active {
    background: #1e65b3;
    border-color: #1e65b3;
}

.list1 li {
    padding: 8px 0;
    border-bottom: 1px solid #e4e4e4;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.list1 li:first-child {
    padding-top: 0;
}

.list1 li:hover {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.list1 li:hover .title {
    color: #1e65b3;
}

.list1 .title {
    line-height: .3rem;
}

.list1 .date {
    padding: 0 0 0 20px;
    line-height: .2rem;
    background-image: url(../images/s_icon5.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: auto;
}

.list2 li {
    margin: 0 0 .28rem;
    font-size: 0;
    border-bottom: 1px solid #f0f1f8;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.list2 li:last-child {
    margin: 0;
}

.list2 li:hover {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.list2 li:hover .title {
    color: #1e65b3;
}

.list2 .date {
    display: inline-block;
    vertical-align: top;
    width: .72rem;
    line-height: .3rem;
    color: #1e65b3;
    text-align: center;
    background: #f0f1f8;
}

.list2 .date p:first-child {
    color: #fff;
    background: #1e65b3;
}

.list2 .text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - .72rem);
    padding: 0 0 0 .12rem;
}

.list2 .text .title {
    line-height: .24rem;
}

.list3 li {
    padding: .12rem 0;
    font-size: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.list3 li:first-child {
    padding-top: 0;
}

.list3 li:hover {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.list3 li:hover .title {
    color: #1e65b3;
}

.list3 .title {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 1rem);
    line-height: .24rem;
}

.list3 .date {
    line-height: .24rem;
    color: #313131;
}

.list4 li {
    border-bottom: 1px dashed #e0e0e0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.list4 li:hover {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.list4 li:hover .title {
    color: #1e65b3;
    background-image: url(../images/s_icon10_2.png);
}

.list4 li:hover .date {
    color: #1e65b3;
}

.list4 .title {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - .65rem);
    padding: 0 0 0 .17rem;
    background-image: url(../images/s_icon10.png);
    background-repeat: no-repeat;
    background-position: 0 0.16rem;
    background-color: transparent;
    background-size: auto;
}

.link-slick {
    margin: -.08rem -.11rem 0;
}

.link-slick .slick-list {
    padding: .08rem 0;
}

.link-slick a {
    display: block;
    padding: 0 0 0 16%;
    border-radius: 4px;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.66rem;
    color: #e54f91;
    text-align: left;
    background-image: url(../images/s_bg4.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.link-slick a i {
    display: inline-block;
    vertical-align: middle;
    width: .42rem;
    height: .42rem;
    margin: 0 .15rem 2px 0;
    border-radius: 50%;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #e54f91;
    background-size: auto;
}

.link-slick a.l2, .link-slick a.l10, .link-slick a.l18, .link-slick a.l24 {
    color: #4e61c4;
}

.link-slick a.l2 i, .link-slick a.l10 i, .link-slick a.l18 i, .link-slick a.l24 i {
    background-color: #4e61c4;
}

.link-slick a.l3, .link-slick a.l13, .link-slick a.l9 {
    color: #0153a5;
}

.link-slick a.l3 i, .link-slick a.l13 i, .link-slick a.l9 i {
    background-color: #0153a5;
}

.link-slick a.l4, .link-slick a.l9, .link-slick a.l4, .link-slick a.l21 {
    color: #f0c334;
}

.link-slick a.l4 i, .link-slick a.l9 i, .link-slick a.l4 i, .link-slick a.l21 i {
    background-color: #f0c334;
}

.link-slick a.l5, .link-slick a.l7, .link-slick a.l12, .link-slick a.l5, .link-slick a.l20 {
    color: #4b90d1;
}

.link-slick a.l5 i, .link-slick a.l7 i, .link-slick a.l12 i, .link-slick a.l5 i, .link-slick a.l20 i {
    background-color: #4b90d1;
}

.link-slick a.l6, .link-slick a.l11, .link-slick a.l6, .link-slick a.l23 {
    color: #75c04d;
}

.link-slick a.l6 i, .link-slick a.l11 i, .link-slick a.l6 i, .link-slick a.l23 i {
    background-color: #75c04d;
}

.link-slick a:hover {
    box-shadow: 0 0 0.08rem 0 rgba(0, 0, 0, 0.2);
}

.link-slick a:hover i {
    -webkit-transition: all 0.45s linear 0s;
    -moz-transition: all 0.45s linear 0s;
    -o-transition: all 0.45s linear 0s;
    transition: all 0.45s linear 0s;
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.link-slick .slick-slide > div {
    margin: 0 0 .15rem;
}

.link-slick .slick-slide > div > div {
    padding: 0 .11rem;
}

.first-news {
    width: 39.3%;
}

.first-news .title {
    font-size: .22rem;
    line-height: .32rem;
    text-align: justify;
}

.first-news .title:hover {
    color: #1e65b3;
}

.first-news .date {
    padding: 0 0 0 .26rem;
    line-height: .32rem;
    background-image: url(../images/s_icon7.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: auto;
}

.first-news .info {
    margin: .1rem 0 0;
    padding: .14rem 0 0;
    border-top: 1px solid #e0e0e0;
}

.first-news .more2 {
    display: block;
    margin: .2rem 0 0;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.35rem;
    color: #fff;
    text-align: center;
    background: #1e65b3;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border: 1px solid #1e65b3;
}

.first-news .more2:hover {
    background: #fff;
    color: #1e65b3;
}

.subject-column {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 144px;
    height: 108px;
    padding: .15rem .2rem;
    background: #1e65b3;
    font-size: 0.12rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
}

.subject-column .s1 {
    display: block;
    font-size: .39rem;
    line-height: .47rem;
}

.subject-column .s2 {
    font-size: 0.21rem;
}

.subject-column::before {
    display: block;
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0.04rem;
    right: 0.04rem;
    bottom: 0.04rem;
    left: 0.04rem;
    z-index: 1;
    border: 1px solid #8fb2d9;
}

.subject-overflow {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 144px);
    height: 108px;
    overflow: hidden;
    background: #fff;
}

.subject-overflow .subject-arrow {
    position: absolute;
    top: calc(50% - .125rem);
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .15rem;
    height: .25rem;
    cursor: pointer;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #ebebeb;
    background-size: auto;
}

.subject-overflow .subject-arrow.slick-prev {
    left: 2px;
    background-image: url(../images/s_icon6.png);
}

.subject-overflow .subject-arrow.slick-next {
    right: 2px;
    background-image: url(../images/s_icon6_2.png);
}

.subject-overflow .subject-arrow:hover {
    background-color: #1e65b3;
}

.subject-overflow .subject-arrow:hover.slick-prev {
    background-image: url(../images/s_icon3_1.png);
}

.subject-overflow .subject-arrow:hover.slick-next {
    background-image: url(../images/s_icon3_2.png);
}

.subject-slick {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - .3rem);
    margin: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.subject-slick .slick-slide {
    padding: 0 .07rem;
}

.subject-slick .img {
    padding: 24% 0 0;
}

.footer {
    padding: .18rem 0 .1rem;
    background-image: url(../images/s_bg3.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
    text-align: center;
}

.QRcode {
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
}

.QRcode li {
    display: inline-block;
    vertical-align: top;
    width: 33.3%;
    padding: 0 .1rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.32rem;
    color: #fff;
    text-align: center;
}

.QRcode li img {
    width: 1.1rem;
    max-width: 100%;
    vertical-align: top;
}

.contact {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 2%;
    text-align: left;
}

.copy {
    margin: .1rem 0 0;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.22rem;
    color: #fff;
    text-align: left;
}

.copy a {
    color: #fff;
}

.btn {
    display: none;
    align-items: center;
}

.btn .search-btn {
    display: inline-block;
    width: 34px;
    height: 34px;
    background-image: url(../images/z_icon1.png);
    background-repeat: no-repeat;
    background-position: 50% 3px;
    background-size: auto;
    vertical-align: top;
    cursor: pointer;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn .nav-btn {
    display: inline-block;
    width: 34px;
    height: 32px;
    font-size: 0;
    padding: 8px 0 0;
    margin: 0 0 0 15px;
    border-radius: 4px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn .nav-btn i {
    display: inline-block;
    width: 22px;
    height: 2px;
    margin: 5px 0 0;
    background: #1e65b3;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.btn .nav-btn i:nth-child(1) {
    margin-top: 0;
}

.btn .nav-btn.close i:nth-child(1) {
    -webkit-transform: translate(0, 7px) rotate(45deg);
    -moz-transform: translate(0, 7px) rotate(45deg);
    -o-transform: translate(0, 7px) rotate(45deg);
    transform: translate(0, 7x) rotate(45deg);
}

.btn .nav-btn.close i:nth-child(2) {
    opacity: 0;
}

.btn .nav-btn.close i:nth-child(3) {
    -webkit-transform: translate(0, -7px) rotate(-45deg);
    -moz-transform: translate(0, -7px) rotate(-45deg);
    -o-transform: translate(0, -7px) rotate(-45deg);
    transform: translate(0, -7px) rotate(-45deg);
}

.mask {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    background: rgba(0, 0, 0, 0.75);
}

.mask.show .search {
    top: 38%;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.mask .close {
    position: absolute;
    top: 12%;
    right: 12%;
    bottom: auto;
    left: auto;
    z-index: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.mask .close i {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}

.mask .close i:nth-child(1) {
    -webkit-transform: translate(0, 41px) rotate(45deg);
    -moz-transform: translate(0, 41px) rotate(45deg);
    -o-transform: translate(0, 41px) rotate(45deg);
    transform: translate(0, 41px) rotate(45deg);
}

.mask .close i:nth-child(2) {
    -webkit-transform: translate(0, 39px) rotate(-45deg);
    -moz-transform: translate(0, 39px) rotate(-45deg);
    -o-transform: translate(0, 39px) rotate(-45deg);
    transform: translate(0, 39px) rotate(-45deg);
}

.decoration {
    max-height: 360px;
    overflow: hidden;
}

.decoration img {
    width: 100%;
    vertical-align: top;
}

.section {
    padding: 0 0 .4rem;
}

.sidebar {
    width: 19%;
    margin: .4rem 0 0;
}

.sidebar h1 {
    padding: .1rem 0;
    font-size: 0.24rem;
    font-weight: 500;
    line-height: 0.5rem;
    color: #fff;
    text-align: center;
    background: #0153a5;
}

.sidebar h1 i {
    display: block;
    margin: 0 auto;
}

.sidebar h1 i.close {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.sidebar .lv2-nav {
    padding: .2rem 0 .5rem .1rem;
    background: #f4f4f4;
}

.sidebar .lv2-nav li {
    position: relative;
    border-left: 3px solid transparent;
}

.sidebar .lv2-nav a {
    display: block;
    padding: 0 .1rem 0 10%;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.55rem;
    color: #000;
    text-align: left;
}

.sidebar .lv2-nav a:hover {
    color: #0153a5;
    font-weight: 700;
}

.sidebar .lv2-nav li.cur {
    border-color: #0153a5;
    background: #fff;
}

.sidebar .lv2-nav li.cur > a {
    color: #0153a5;
    font-weight: 700;
}

.sidebar .lv2-nav li.cur .lv3 {
    display: block;
}

.sidebar .lv2-nav .down {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .55rem;
    height: .55rem;
    background-image: url(../images/s_icon6_2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.sidebar .lv2-nav .down.close {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar .lv2-nav .lv3 {
    display: none;
    padding: 0 0 .1rem .1rem;
}

.sidebar .lv2-nav .lv3 a {
    padding: 6px .1rem 6px 12%;
    font-size: .15rem;
    font-weight: 500;
    line-height: .25rem;
    color: #000;
    text-align: left;
}

.sidebar .lv2-nav .lv3 a:hover {
    color: #1e65b3;
}

.sidebar .lv2-nav .lv3 a.cur {
    color: #1e65b3;
    font-weight: 700;
}

.main {
    width: 77%;
    min-height: 4rem;
    margin: .3rem 0 0;
}

.main .list4 {
    margin: -.12rem 0 0;
}

.main .list4 .title {
    width: calc(100% - 1rem);
    line-height: .55rem;
    background-position: 0 .22rem;
}

.main .list4 .date {
    line-height: .55rem;
}

.position {
    margin: 0 0 .25rem;
    border-bottom: 1px solid #ddd;
}

.position h3 {
    display: inline-block;
    margin: 0 0 -1px;
    font-size: 0.24rem;
    font-weight: 500;
    line-height: 0.5rem;
    color: #000;
    text-align: left;
    border-bottom: 3px solid #d7b560;
}

.place {
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.2rem;
    color: #999;
    text-align: left;
    padding: .15rem 0 .15rem .25rem;
    background-image: url(../images/x_icon5.png);
    background-repeat: no-repeat;
    background-position: 0 14px;
    background-color: transparent;
    background-size: auto;
}

.place a {
    color: #999;
}

.place a:hover {
    color: #0153a5;
}

.teach-list {
    font-size: 0;
    margin: 0 -0.41rem;
}

.teach-list > li {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0 0.41rem;
}

.teach-list li {
    margin: 0 0 .4rem;
}

.teach-list .img {
    padding: 142.5% 0 0;
    background-position: 50% 20%;
}

.teach-list .name {
    padding: .1rem 0 0;
    font-size: 0.18rem;
    font-weight: 700;
    line-height: 0.32rem;
    color: #222;
    text-align: center;
    background: #f4f4f4;
}

.teach-list .info {
    padding: 0 0 .12rem;
    line-height: .26rem;
    text-align: center;
    background: #f4f4f4;
}

.teach-list .img-scale {
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.teach-list .img-scale:hover {
    border-radius: .1rem;
    box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.5);
}

.teach-list .img-scale:hover .name {
    color: #a10000;
}

.article {
    padding: .15rem 0;
    background: #fff;
}

.article .title {
    font-size: 0.2rem;
    font-weight: 700;
    line-height: 0.3rem;
    color: #0153a5;
    text-align: center;
}

.article .sub {
    margin: .3rem 0;
    padding: .1rem 0;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.26rem;
    color: #444;
    text-align: center;
    border-top: 1px dotted #aaa;
    border-bottom: 1px dotted #aaa;
    opacity: .7;
}

.article .content {
    padding: 0 0 .4rem;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.35rem;
    color: #000;
    text-align: left;
    word-break: break-all;
}

.article .content p {
    text-indent: 2em;
}

.article .content p a {
    color: #000;
    word-break: break-all;
    word-wrap: break-word;
}

.article .content img, .article .content video {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: .25rem auto;
}

.article .content table {
    max-width: 100%;
    margin: .25rem auto;
}

.article .content table p {
    text-indent: 0;
}

.article .content iframe {
    max-width: 100%;
    margin: .25rem auto;
}

.article .cont-page {
    padding: .25rem 0 0;
    border-top: 1px dashed #ccc;
}

.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #666;
    text-align: left;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.article .cont-page a span {
    color: #000;
}

.article .cont-page a:hover {
    color: #0153a5;
    -webkit-transform: translateX(2px);
    -moz-transform: translateX(2px);
    -o-transform: translateX(2px);
    transform: translateX(2px);
}

.article.dp {
    padding-left: 0;
    padding-right: 0;
}

.pic-list1 {
    font-size: 0;
    margin: 0 -0.15rem;
}

.pic-list1 > li {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333333%;
    padding: 0 0.15rem;
}

.pic-list1 li {
    margin: 0 0 .4rem;
}

.pic-list1 .img-scale {
    position: relative;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.pic-list1 .img-scale .img {
    padding: 66.58% 0 0;
}

.pic-list1 .img-scale .date {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 1;
    padding: 7px 4px 8px;
    color: #fff;
    line-height: .2rem;
    font-size: .14rem;
    text-align: center;
    background: rgba(1, 83, 165, 0.8);
}

.pic-list1 .img-scale .date p:first-child {
    font-size: .2rem;
    font-weight: 700;
    line-height: .3rem;
}

.pic-list1 .img-scale .title {
    line-height: .28rem;
}

.pic-list1 .img-scale .info {
    line-height: .25rem;
}

.pic-list1 .img-scale .more2 {
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.2rem;
    color: #999;
    text-align: right;
}

.pic-list1 .img-scale:hover {
    box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.5);
}

.pic-list1 .img-scale:hover .title {
    color: #1e65b3;
}

.pic-list1 .img-scale:hover .more2 {
    color: #1e65b3;
}

.pic-list1 .text {
    padding: .1rem .15rem;
    background: #f4f4f4;
}

#browser-modal {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    color: #303233;
    text-align: center;
}

#browser-modal .browser-modal-cover {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #111;
}

#browser-modal .browser-content {
    width: 700px;
    margin: 120px auto 0;
    padding: 50px 0 80px;
    background-color: #fff;
    border-radius: 5px;
}

#browser-modal .browser-content .browser-dpc-logo img {
    height: 42px;
    margin: 45px auto 40px;
}

#browser-modal .browser-content .browser-text-title {
    font-size: 24px;
    text-transform: uppercase;
}

#browser-modal .browser-content .browser-text-desc {
    margin: 30px 0 20px;
    font-size: 14px;
}

#browser-modal .browser-content .browser-list {
    width: 600px;
    height: 130px;
    margin: 20px auto;
}

#browser-modal .browser-content .browser-item {
    float: left;
    width: 150px;
    margin: 0 auto;
    padding: 20px 0;
}

#browser-modal .browser-content .browser-item .iconfont {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    font-size: 80px;
    line-height: 80px;
}

#browser-modal .browser-content .browser-item .iconchrome {
    background: url(../images/bro.png) no-repeat 0 0;
}

#browser-modal .browser-content .browser-item .iconfirefox {
    background: url(../images/bro.png) no-repeat 0 -100px;
}

#browser-modal .browser-content .browser-item .iconopera {
    background: url(../images/bro.png) no-repeat 0 -200px;
}

#browser-modal .browser-content .browser-item .iconEdge {
    background: url(../images/bro.png) no-repeat 0 -300px;
}

#browser-modal .browser-content .browser-item a {
    display: block;
    cursor: pointer;
}

#browser-modal .browser-content .browser-item a:hover {
    text-decoration: underline !important;
}

#browser-modal .browser-content .browser-item a img {
    display: block;
    max-width: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

#browser-modal .browser-content .browser-item a h4 {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

#to-top {
    position: fixed;
    top: auto;
    right: -0.6rem;
    bottom: 1.7rem;
    left: auto;
    z-index: 1;
    width: .5rem;
    height: .5rem;
    background-image: url(../images/s_icon2_2_2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #1e65b3;
    background-size: auto;
    border: 2px solid #1e65b3;
    border-radius: 5px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

#to-top:hover {
    background-image: url(../images/s_icon2_2_3.png);
    background-color: #fff;
}

#to-top.show {
    right: 0;
}

/* 领导页 */
.leader-list {
    margin: 0 -.2rem;
    font-size: 0;
}

.leader-list li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0 .2rem;
    margin: 0 0 .4rem;
}

.leader-list .img-scale {
    display: inline-block;
    vertical-align: top;
    width: 1.35rem;
}

.leader-list .img {
    padding: 125% 0 0;
    background-position: 20% 50%;
}

.leader-list .text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 1.35rem);
    padding: 0 0 0 .3rem;
}

.leader-list .text .name {
    font-size: .2rem;
    line-height: .3rem;
    color: #0052aa;
    font-weight: 700;
}

.leader-list .text .t1 {
    margin: .08rem 0 .12rem;
    font-size: .16rem;
    line-height: .25rem;
    color: #333;
    font-weight: 700;
}

.leader-list .text .t2 {
    font-size: .14rem;
    line-height: .23rem;
    color: #666;
    text-align: justify;
}

.ba {
    text-align: right;
    vertical-align: middle;
    display: inline-block;
    padding: 0 0 0 2%;
}

@media screen and (max-width: 1300px) {
    html {
        font-size: 95px;
    }

    .link-slick a {
        padding: 0;
        text-align: center;
    }

    .sidebar {
        width: 2.1rem;
    }

    .main {
        width: calc(100% - 2.4rem);
    }
}

@media screen and (max-width: 1200px) {
    .index-main .part1 > .fr {
        width: 100%;
    }

    .index-main .part1 > .fr .list2::after {
        display: block;
        content: "";
        box-sizing: border-box;
        clear: both;
    }

    .index-main .part1 > .fr .list2 li {
        float: left;
        width: 48%;
    }

    .index-main .part1 > .fr .list2 li:nth-child(even) {
        float: right;
    }

    .index-main .part1 > .fl {
        width: 100%;
        margin: 0 0 .2rem;
    }

    .index-main .part1 .list1 {
        width: calc(100% - 4.9rem);
    }

    .news-slick {
        width: 4.6rem;
    }

    .link-slick a i {
        width: .36rem;
        height: .36rem;
        margin-right: .1rem;
    }

    .QRcode {
        float: left;
        width: 30%;
    }

    .contact {
        float: left;
        width: 60%;
    }

    .ba {
        float: right;
        width: 10%;
        margin-top: 2%;
    }
}

@media screen and (max-width: 1024px) {
    .index-main .part3 > .fl {
        width: 100%;
    }

    .index-main .part3 > .fr {
        width: 100%;
        margin: .3rem 0 0;
    }
}

@media screen and (max-width: 992px) {
    .container {
        width: 90%;
    }

    .header .logo {
        padding: 0 .15rem 0 0;
    }

    .header .logo img {
        height: 48px;
        margin: 0 .15rem 0 0;
    }

    .header {
        padding: .12rem 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .container::before, .header .container::after {
        display: none;
    }

    .header .container > .fr {
        padding-top: 0;
        padding-right: 0;
    }

    .banner {
        width: 100% !important;
    }

    .nav {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99;
        width: 100%;
        height: 100%;
        padding: 85px 0 30px;
        background: #f7f7f7;
        overflow-x: hidden;
        -webkit-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -o-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .nav li {
        float: none;
        width: 100%;
        margin: 0 !important;
        border: none !important;
        background: none !important;
        border-top: 1px solid #fff !important;
        border-bottom: 1px solid #ddd !important;
    }

    .nav li:first-child {
        border-top: none !important;
    }

    .nav li:hover .lv2 {
        display: none;
    }

    .nav li a {
        font-size: .18rem;
        text-align: left;
        color: #333;
        line-height: 55px;
        font-weight: 700;
        text-indent: 6px;
    }

    .nav li .down {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 1;
        width: 50px;
        height: 50px;
        background-image: url(../images/s_icon2_2.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 35%;
        cursor: pointer;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -o-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .nav li .down.close {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .nav li .lv2 {
        display: none;
        position: static;
        width: 100%;
        visibility: visible;
        opacity: 1;
        padding: 0 0 .15rem .4rem;
        transition: none !important;
        -ms-transition: none !important;
        border: none;
        background: none;
        animation: none !important;
        -ms-animation: none !important;
    }

    .nav li .lv2 a {
        display: block;
        width: 100%;
        font-weight: 400;
        color: #333 !important;
    }

    .nav li .lv2 h6 {
        display: none;
    }

    .nav li .lv2::before {
        display: none;
    }

    .nav.fixed {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .search {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 40%;
        right: auto;
        bottom: auto;
        left: 20%;
        z-index: 200;
        width: 60%;
        padding: 8px !important;
        background: #fff;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -o-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .search .input {
        width: calc(100% - 46px);
        height: 42px;
        padding: 0 8px;
        line-height: 42px;
        color: #333;
        border-color: #eee;
    }

    .search .submit {
        width: 45px;
        height: 42px;
        background-image: url(../images/z_icon1_2.png);
        background-position: 50% 50% !important;
    }

    .search.show {
        border: none;
        border-radius: 0;
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .btn {
        display: flex;
    }

    .banner .slick-arrow {
        width: .36rem;
        height: .36rem;
        background-size: 54% auto !important;
    }

    .index-main .part2 {
        margin: .2rem 0;
    }

    .QRcode li {
        padding: 0 .1rem;
    }

    .sidebar {
        width: 100%;
        margin: .3rem 0 0;
    }

    .sidebar h1 {
        display: block;
        position: relative;
        padding: 0 .2rem;
        font-size: .22rem;
        line-height: .55rem;
        text-align: left;
        background: #0153a5;
    }

    .sidebar h1 i {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 1;
        width: .55rem;
        height: .55rem;
        background-image: url(../images/down2.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: auto;
        cursor: pointer;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -o-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .sidebar h1 i.down {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    .sidebar .lv2-nav {
        display: none;
        padding-bottom: .25rem;
    }

    .sidebar .lv2-nav a {
        text-align: left;
        font-size: .18rem;
        line-height: .55rem;
        padding-left: .3rem;
    }

    .sidebar .lv2-nav .lv3 a {
        padding-left: .4rem;
    }

    .main {
        width: 100%;
        margin: .2rem 0 0;
    }

    .position {
        margin: 0 0 .15rem;
    }

    .position h3 {
        font-size: .22rem;
    }

    #to-top {
        display: none;
    }
}

@media screen and (max-width: 868px) {
    .news-slick {
        width: 3.8rem;
    }

    .index-main .part1 .list1 {
        width: calc(100% - 4rem);
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 92%;
    }

    .news-slick {
        width: 100%;
    }

    .index-main .part1 .list1 {
        width: 100%;
        margin: .2rem 0 0;
    }

    .index-main .part1 > .fr .list2 li {
        float: none;
        width: 100%;
    }

    .banner .slick-arrow {
        display: none !important;
    }

    .index-main .part2 {
        margin: .2rem 0;
    }

    .index-main .part2 .container > .fl {
        width: 100%;
    }

    .index-main .part2 .container > .fr {
        width: 100%;
        margin: .12rem 0 0;
    }

    .QRcode {
        float: none;
        width: auto;
    }

    .contact {
        float: none;
        width: 100%;
        margin: .1rem 0;
    }

    .ba {
        float: none;
        width: 100%;
        text-align: center;
    }

    .subject-column {
        width: 105px;
        height: 90px;
        padding: 6px 7px;
    }

    .subject-column .s1 {
        font-size: .28rem;
    }

    .subject-column .s2 {
        font-size: .16rem;
    }

    .subject-overflow {
        width: calc(100% - 105px);
        height: 90px;
    }

    .main .list4 {
        margin: 0;
    }

    .main .list4 li {
        padding: .12rem 0;
    }

    .main .list4 .title {
        width: 100%;
        line-height: .24rem;
        background-position: 0 6px;
        overflow: visible;
        text-overflow: clip;
        white-space: initial;
    }

    .main .list4 .date {
        float: none;
        width: 100%;
        padding-left: .17rem;
        line-height: .25rem;
    }

    .pic-list1 li {
        width: 50%;
    }

    .leader-list {
        margin: 0;
    }

    .leader-list li {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        padding: 0;
        margin: 0 0 .3rem;
    }

    .leader-list .text {
        padding: 0 0 0 .2rem;
    }

    .article .title {
        font-size: .18rem;
    }
}

@media screen and (max-width: 568px) {
    .first-news {
        width: 100%;
        margin: 0 0 .3rem;
    }

    .index-main .part3 > .fl .list4 {
        width: 100%;
    }

    .nav li a {
        font-size: .16rem;
    }

    .sidebar h1 {
        line-height: .55rem;
    }

    .search {
        left: 10%;
        width: 80%;
    }

    .sidebar h1 i {
        width: .55rem;
        height: .55rem;
    }

    .place {
        float: none;
        padding-bottom: 5px;
    }

    .position {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .header .logo img {
        height: auto;
    }

    .leader-list .img-scale {
        width: 1rem;
    }

    .leader-list .text {
        width: calc(100% - 1rem);
    }

    .pic-list1 {
        margin: 0;
    }

    .pic-list1 li {
        padding: 0;
        width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */
#list-page {
    font-family: Arial;
    text-align: center;
    margin: 25px 0 30px !important;
}

#list-page .p_pages a, #list-page span, #list-page .p_goto a {
    font-size: 14px;
    width: auto;
    height: auto;
    margin-top: 5px;
}

#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
    padding: 7px 9px;
    border: 1px solid #aaa;
    border-radius: 2px;
    color: #428bca;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #0167af;
    font-weight: bold;
    color: #fff;
    border-color: #0167af;
}

#list-page .p_t {
    padding: 0 2px 0 0;
    color: #777;
}

#list-page .p_first, #list-page .p_first_d, #list-page .p_last, #list-page .p_last_d {
    display: inline-block;
}

#list-page .p_pages span {
    color: #aaa;
}

#list-page .p_goto input {
    font-family: 'Arial';
    color: #333;
    border-radius: 2px;
    width: 40px;
    height: 30px;
    line-height: 30px;
    vertical-align: bottom;
}

