@charset "utf-8"; * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 100px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, "Microsoft Yahei", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    overflow-x: hidden;
    line-height: 1;
}

ul, li {
    list-style: 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;
}

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: 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);
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

/* 滚动条样式 */
.flex {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

/* header */
.header {
    position: relative;
    z-index: 9;
    background: url(../images/header-bg.png) 50% top #005bcf no-repeat;
}

.header .top {
    padding: .2rem 0;
}

.header .logo {
    float: left;
}

.header .midd {
    position: absolute;
    top: .3rem;
    right: 40%;
}

.header .right {
    float: right;
}

.header .right .links {
    color: #fff;
    font-size: .16rem;
}

.header .right .links a {
    display: inline-block;
    line-height: .17rem;
    padding: 0 .15rem;
    border-right: 1px solid #fff;
    transition: .5s;
}

.header .right .links a:last-child {
    padding-right: 0;
    border-right: none;
}

.header .right .links a:hover {
    color: #d71109;
}

.search {
    width: 2.3rem;
    line-height: .4rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 0 15px;
    overflow: hidden;
    float: right;
    margin-top: .25rem;
}

.search input {
    background: none;
    outline: none;
    border: none;
}

.search .txt {
    width: calc(100% - 25px);
    float: left;
    font-size: .16rem;
    height: .4rem;
    padding-left: .1rem;
    color: rgba(255, 255, 255, 0.5);
}

.search ::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search .btn {
    float: right;
    width: 20px;
    height: .4rem;
    background: url(../images/search.png) center center no-repeat;
    cursor: pointer;
}

/* header */
/* 导航 */
.phone-nav {
    display: none;
}

.menu-btn {
    display: inline-block;
    width: 0.34rem;
    height: 18px;
    position: relative;
    outline: none;
    vertical-align: middle;
    display: none;
}

.menu-btn .navbtn {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-top: -1px;
}

.menu-btn .navbtn::after, .menu-btn .navbtn::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    content: '';
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: #fff;
}

.menu-btn .navbtn::after {
    top: -8px;
}

.menu-btn .navbtn::before {
    top: 8px;
}

.navbar {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar li {
    float: left;
    width: 10%;
    position: relative;
}

.navbar li em {
    display: none;
}

.navbar li dl {
    position: absolute;
    top: 100%;
    width: 100%;
    background: rgba(0, 86, 197, 0.85);
    padding-bottom: .05rem;
    transform: scaleX(0);
    transition: 0.5s;
    opacity: 0;
}

.navbar li dd {
    padding: .1rem;
    font-size: .16rem;
    line-height: .24rem;
    color: #fff;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.navbar li dd:last-child {
    border-bottom: none;
}

.navbar li dd:hover {
    background: #0056c5;
}

.navbar .lv1 {
    position: relative;
    z-index: 9;
    display: block;
    line-height: .5rem;
    text-align: center;
    font-size: .18rem;
    color: #fff;
    font-weight: normal;
}

.navbar li.current .lv1 {
    background: #d71109;
}

.navbar li:hover .lv1 {
    background: #d71109;
}

.navbar li:hover dl {
    transform: scaleZ(1);
    opacity: 1;
}

/* 导航 */
/* banner */
.banner {
    position: relative;
}

.banner .swiper-container:before {
    content: "";
    width: 100%;
    height: 3px;
    background: url(../images/banner-bottom.png) bottom center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
}

.banner li {
    width: 100%;
    height: 31vw;
}

.banner li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner .pic {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .tit {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent, black);
    padding: .2rem 0;
}

.banner .tit h2 {
    font-size: .2rem;
    color: #fff;
    font-weight: normal;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner .banner-pagination {
    position: absolute;
    width: auto;
    bottom: .2rem;
    right: 50%;
    margin-right: -600px;
    z-index: 9;
    text-align: right;
}

.banner .banner-pagination span {
    background: #fff;
    opacity: 1;
    margin: 0 .15rem;
}

.banner .banner-pagination .swiper-pagination-bullet-active {
    background: #f1bc1b;
}

/* banner */
.index-tit {
    overflow: hidden;
    margin-bottom: .4rem;
    padding-bottom: 5px;
}

.index-tit h2 {
    float: left;
    position: relative;
    line-height: .36rem;
    padding-left: .5rem;
}

.index-tit h2 p {
    position: relative;
    font-size: .3rem;
    font-weight: bold;
    color: #000000;
    display: inline-block;
}

.index-tit h2 p:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #074eaa;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.index-tit h2 p:after {
    content: "";
    width: 50%;
    height: 1px;
    background: #074eaa;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.index-tit h2:before {
    content: "";
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    overflow: hidden;
    background: url(../images/index-tit-ico01.png) center center no-repeat #0056c5;
    background-size: auto 50% !important;
    position: absolute;
    top: 1px;
    left: 0;
}

.index-tit .index-more {
    float: right;
    font-size: .14rem;
    color: #888888;
    margin-top: .15rem;
}

.index-tit .index-more:hover {
    color: #0056c5;
}

/* row1 */
.row1 {
    padding: .65rem 0;
}

.row1 .left {
    float: left;
    width: 65%;
}

.row1 .right {
    float: right;
    width: 30%;
}

.row1 .right .index-tit h2:before {
    background: url(../images/index-tit-ico02.png) center center no-repeat #0056c5;
}

.news-pic {
    background: url(../images/news-right.png) center right no-repeat #0056c5;
    background-size: 9px 100%;
    padding-right: 9px;
}

.news-pic li {
    height: 2.72rem;
    background: url(../images/news-logo.png) right bottom no-repeat;
    position: relative;
}

.news-pic li * {
    transition: .5s;
}

.news-pic li .pic {
    float: left;
    width: 63%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.news-pic li .pic a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-pic li .pic a:hover {
    transform: scale(1.05);
}

.news-pic li .txt {
    position: relative;
    float: right;
    width: 35%;
    padding-right: .24rem;
    padding-top: .34rem;
}

.news-pic li .date {
    font-size: .32rem;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.news-pic li .tit {
    display: block;
    margin-top: .15rem;
    font-size: .18rem;
    font-weight: bold;
    color: #fff;
    line-height: .32rem;
    height: .64rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-pic li .abst {
    display: block;
    margin-top: .15rem;
    font-size: .14rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    line-height: .32rem;
    height: .64rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-pic .news-pagination {
    position: absolute;
    left: 65%;
    bottom: .3rem;
    z-index: 9;
}

.news-pic .news-pagination span {
    width: .29rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin-right: 5px;
    cursor: pointer;
}

.news-pic .news-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.news-txt {
    margin-top: .35rem;
}

.news-txt * {
    transition: .5s;
}

.news-txt li {
    line-height: .54rem;
    padding-left: .2rem;
    position: relative;
}

.news-txt li a {
    display: block;
    border-bottom: 1px solid #e7e7e7;
    overflow: hidden;
    position: relative;
}

.news-txt li a:before {
    content: "";
    width: 0;
    height: 1px;
    background: #074eaa;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 1s;
}

.news-txt li h2 {
    float: left;
    width: calc(100% - 100px);
    font-size: .16rem;
    font-weight: normal;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-txt li .date {
    float: right;
    font-size: .14rem;
    color: #888888;
}

.news-txt li:before {
    content: "";
    width: .1rem;
    height: 2px;
    background: #074eaa;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
}

.news-txt li:hover h2, .news-txt li:hover .date {
    color: #074eaa;
}

.news-txt li:hover a:before {
    width: 100%;
}

.index-tzgg {
    margin-top: -.22rem;
}

.index-tzgg li {
    overflow: hidden;
    padding-top: .22rem;
    padding-bottom: .18rem;
    border-bottom: 1px solid #e7e7e7;
}

.index-tzgg li * {
    transition: .5s;
}

.index-tzgg li:last-child {
    border-bottom: none;
}

.index-tzgg a {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-tzgg .date {
    width: .78rem;
    height: .71rem;
    background: #e2ecf7;
    font-weight: bold;
    border-top: 2px solid #074eaa;
    color: #074eaa;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    padding-top: .12rem;
}

.index-tzgg .date .day {
    font-size: .24rem;
}

.index-tzgg .date .yea {
    font-size: .16rem;
    padding-top: 5px;
}

.index-tzgg .tit {
    width: calc(100% - 1rem);
    color: #111;
}

.index-tzgg .tit h2 {
    font-size: .16rem;
    line-height: .26rem;
    max-height: .52rem;
    font-weight: normal;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index-tzgg li:hover .date {
    background: #0056c5;
    border-top: 2px solid #d71109;
}

.index-tzgg li:hover .day, .index-tzgg li:hover .yea {
    color: #fff !important;
}

.index-tzgg li:hover .tit {
    color: #0056c5;
}

/* row1 */
/* row2 */
.row2 {
    padding: .55rem 0;
    background: url(../images/row2-bg.png) center center no-repeat;
    background-size: cover;
}

.row2 .left {
    float: left;
    width: 48%;
}

.row2 .left .index-tit h2:before {
    background: url(../images/index-tit-ico03.png) center center no-repeat #0056c5;
}

.row2 .right {
    float: right;
    width: 48%;
}

.row2 .right .index-tit h2:before {
    background: url(../images/index-tit-ico04.png) center center no-repeat #0056c5;
}

.index-tab .hd * {
    transition: .5s;
}

.index-tab .hd ul {
    overflow: hidden;
    margin: 0 -10px;
}

.index-tab .hd li {
    width: 33.3%;
    float: left;
    cursor: pointer;
}

.index-tab .hd h2 {
    display: block;
    margin: 0 10px;
    border: 1px solid #0056c5;
    text-align: center;
    line-height: 99px;
    position: relative;
}

.index-tab .hd h2:before {
    content: "";
    width: 100%;
    height: 3px;
    background: #d22e20;
    position: absolute;
    bottom: -1px;
    left: 0;
    opacity: 0;
}

.index-tab .hd p {
    display: inline-block;
    padding-left: 60px;
    background: url(../images/zszl-ico01.png) left center no-repeat;
    font-size: .18rem;
    color: #0056c5;
    font-weight: bold;
}

.index-tab .hd li:nth-child(2) p {
    background: url(../images/zszl-ico02.png) left center no-repeat;
}

.index-tab .hd li:nth-child(3) p {
    background: url(../images/zszl-ico03.png) left center no-repeat;
}

.index-tab .hd li.on h2 {
    background: #0056c5;
}

.index-tab .hd li.on h2 p {
    background: url(../images/zszl-ico01-on.png) left center no-repeat;
    color: #fff;
}

.index-tab .hd li.on h2:before {
    opacity: 1;
}

.index-tab .hd li:nth-child(2).on p {
    background: url(../images/zszl-ico02-on.png) left center no-repeat;
}

.index-tab .hd li:nth-child(3).on p {
    background: url(../images/zszl-ico03-on.png) left center no-repeat;
}

.index-tab .bd {
    margin-top: .2rem;
}

.index-tab .bd * {
    transition: .5s;
}

.index-tab .bd li {
    overflow: hidden;
    padding: .15rem 0;
    border-bottom: 1px solid #b4babc;
    position: relative;
}

.index-tab .bd li:before {
    content: "";
    width: 0;
    height: 1px;
    background: #074eaa;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 1s;
}

.index-tab .bd h2 {
    font-size: .16rem;
    line-height: .18rem;
    color: #111111;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-tab .bd .date {
    font-family: 'Times New Roman', Times, serif;
    line-height: .16rem;
    padding-left: 15px;
    background: url(../images/date.png) left center no-repeat;
    font-size: .14rem;
    color: #074eaa;
    margin-top: .05rem;
}

.index-tab .bd li:hover h2 {
    color: #074eaa;
}

.index-tab .bd li:hover:before {
    width: 100%;
}

.index-xkjs * {
    transition: .5s;
}

.index-xkjs .pic {
    overflow: hidden;
    margin: 0 -10px;
}

.index-xkjs .pic .box {
    float: left;
    width: 50%;
    padding-bottom: .1rem;
    border-bottom: 1px solid #b4babc;
    position: relative;
}

.index-xkjs .pic .box:before {
    content: "";
    width: 0;
    height: 1px;
    background: #074eaa;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 1s;
}

.index-xkjs .pic a {
    display: block;
    margin: 0 10px;
    overflow: hidden;
}

.index-xkjs .pic .img {
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    overflow: hidden;
}

.index-xkjs .pic .img img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.index-xkjs .pic .tit {
    margin-top: .12rem;
    line-height: .18rem;
    font-size: .16rem;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-xkjs .pic .date {
    font-family: 'Times New Roman', Times, serif;
    line-height: .16rem;
    padding-left: 15px;
    background: url(../images/date.png) left center no-repeat;
    font-size: .14rem;
    color: #074eaa;
    margin-top: .05rem;
}

.index-xkjs .pic .box:hover img {
    transform: scale(1.05);
}

.index-xkjs .pic .box:hover .tit {
    color: #074eaa;
}

.index-xkjs .pic .box:hover:before {
    width: 100%;
}

.index-xkjs ul {
    margin-top: .1rem;
}

.index-xkjs ul li {
    overflow: hidden;
    line-height: .44rem;
}

.index-xkjs ul li * {
    transition: .5s;
}

.index-xkjs ul h2 {
    font-size: .16rem;
    font-weight: normal;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: .14rem;
    position: relative;
}

.index-xkjs ul h2:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #074eaa;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 50%;
    margin-top: -2px;
}

.index-xkjs ul li:hover h2 {
    color: #074eaa;
    transform: translateX(5px);
}

/* row2 */
/* row3 */
.row3 {
    padding: .7rem 0 .6rem;
}

.row3 .left {
    float: left;
    width: 48%;
}

.row3 .right {
    float: right;
    width: 48%;
}

.index-video {
    width: 100%;
}

.index-video .pic {
    width: 100%;
    padding-bottom: 3.37rem;
    position: relative;
    overflow: hidden;
}

.index-video .pic video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-video img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.index-video .pic:before {
    display: none;
    content: "";
    width: .88rem;
    height: .88rem;
    background: url(../images/player.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    cursor: pointer;
}

.gjjl-tit {
    width: 100%;
    height: 1.8rem;
    background: url(../images/gjjl-pic.png) right bottom no-repeat;
    background-size: cover;
    position: relative;
}

.gjjl-tit h2 {
    position: absolute;
    left: .25rem;
    top: 50%;
    transform: translateY(-50%);
    padding-left: .5rem;
    background: url(../images/gjjl-ico.png) left center no-repeat;
    line-height: .5rem;
}
.gjjl-tit a{
     position: absolute;
    font-size: .14rem;
    color: #fff;
   right:.25rem;
   top:50%;
   margin-top:-.07rem;
}

.gjjl-tit h2 p {
    position: relative;
    font-size: .3rem;
    font-weight: bold;
    color: #fff;
    display: inline-block;
}

.gjjl-tit h2 p:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 5px;
}

.gjjl-tit h2 p:after {
    content: "";
    width: 50%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.index-gjjl {
    margin-top: .1rem;
}

.index-gjjl * {
    transition: .5s;
}

.index-gjjl li {
    overflow: hidden;
    line-height: .4rem;
}

.index-gjjl h2 {
    float: left;
    width: calc(100% - .6rem);
    font-size: .16rem;
    font-weight: normal;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-gjjl .date {
    float: right;
    font-size: .14rem;
    color: #074eaa;
    font-family: 'Times New Roman', Times, serif;
}

.index-gjjl li:hover h2 {
    color: #074eaa;
    transform: translateX(5px);
}

/* row3 */
/* 合作单位 */
.row4 {
    background: #e2e7f5;
    padding: .3rem 0;
}

.index-hzdw {
    position: relative;
}

.index-hzdw li {
    height: .85rem;
}

.index-hzdw li * {
    transition: .5s;
}

.index-hzdw li a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
}

.index-hzdw li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

.index-hzdw li img:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.index-hzdw .hzdw-next, .index-hzdw .hzdw-prev {
    width: .12rem;
    height: .22rem;
    position: absolute;
    top: 50%;
    margin-top: -0.06rem;
    cursor: pointer;
    z-index: 9;
}

.index-hzdw .hzdw-prev {
    background: url(../images/hzdw-left.png) no-repeat;
    background-size: 100% 100%;
    left: -0.4rem;
}

.index-hzdw .hzdw-next {
    background: url(../images/hzdw-right.png) no-repeat;
    background-size: 100% 100%;
    right: -0.4rem;
}

.index-hzdw .hzdw-pagination {
    display: none;
    text-align: center;
    margin-top: 15px;
}

.index-hzdw .hzdw-pagination span {
    margin: 0 .05rem;
    cursor: pointer;
}

/* 合作单位 */
/* 中部内容区域 */
/* footer */
.footer {
    padding: .35rem 0;
    background: url(../images/footer-bg.png) center center no-repeat;
    background-size: cover;
}

.footer .container {
    display: flex;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .left {
    padding-right: .9rem;
}

.footer .left .cory {
    margin-top: .15rem;
}

.footer .left .cory * {
    font-size: .14rem;
    color: #fff;
    line-height: .28rem;
}

.footer .midd {
    padding: 0 .8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .midd h2 {
    font-size: .2rem;
    font-weight: bold;
    color: #fff;
    padding-bottom: .15rem;
    position: relative;
    margin-bottom: .12rem;
}

.footer .midd h2:before {
    content: "";
    width: 20px;
    height: 3px;
    background: #d71109;
    position: absolute;
    left: 0;
    bottom: 0;
}

.footer .midd ul {
    overflow: hidden;
    width: 2.8rem;
}

.footer .midd li {
    float: left;
    width: 50%;
    font-size: .14rem;
    line-height: .28rem;
    color: #fff;
}

.footer .midd li:hover {
    color: #d71109;
}

.footer .right {
    padding-left: .75rem;
}

.footer .contact h2 {
    font-size: .2rem;
    font-weight: bold;
    color: #fff;
    padding-bottom: .15rem;
    position: relative;
    margin-bottom: .12rem;
}

.footer .contact h2:before {
    content: "";
    width: 20px;
    height: 3px;
    background: #d71109;
    position: absolute;
    left: 0;
    bottom: 0;
}

.footer .contact p {
    font-size: .14rem;
    line-height: .28rem;
    color: #fff;
}

/* footer */
/* 左侧快速链接 */
.body-left {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 50%;
}

.body-left * {
    transition: .5s;
}

.body-left .center {
    width: .92rem;
    height: .92rem;
    background: #0056c5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.body-left .center img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
}

.body-left .content {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: -1.75rem;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #cfe8f2;
    border: 1px solid #fff;
    box-shadow: 0 0 10px 0 rgba(0, 86, 197, 0.19);
    transition: width 1s;
}

.body-left .midd {
    width: 1.53rem;
    height: 1.53rem;
    border-radius: 50%;
    border: 1px solid #b1d2ec;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.body-left .index-kslj {
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.body-left li {
    position: absolute;
    right: 20px;
    width: .6rem;
}

.body-left li h2 {
    font-size: .14rem;
    color: #111111;
    line-height: .2rem;
    font-weight: normal;
}

.body-left li:before {
    content: "";
    background: #fff;
    width: .1rem;
    height: .1rem;
    border-radius: 50%;
    border: 1px solid #73a7cf;
    position: absolute;
}

.body-left li:after {
    content: "";
    background: #73a7cf;
    width: .06rem;
    height: .06rem;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
}

.body-left li:nth-child(1) {
    right: .85rem;
    top: 10%;
    width: .7rem;
}

.body-left li:nth-child(2) {
    right: .35rem;
    top: 25%;
}

.body-left li:nth-child(3) {
    right: .15rem;
    top: 45%;
}

.body-left li:nth-child(4) {
    right: .35rem;
    bottom: 25%;
}

.body-left li:nth-child(5) {
    right: .85rem;
    bottom: 10%;
}

.body-left li:nth-child(1):before {
    right: .7rem;
    top: .58rem;
}

.body-left li:nth-child(1):after {
    right: .73rem;
    top: .61rem;
}

.body-left li:nth-child(2):before {
    right: .78rem;
    top: .28rem;
}

.body-left li:nth-child(2):after {
    right: .81rem;
    top: .31rem;
}

.body-left li:nth-child(3):before {
    right: .78rem;
    top: .1rem;
}

.body-left li:nth-child(3):after {
    right: .81rem;
    top: .13rem;
}

.body-left li:nth-child(4):before {
    right: .78rem;
    bottom: .28rem;
}

.body-left li:nth-child(4):after {
    right: .81rem;
    bottom: .31rem;
}

.body-left li:nth-child(5):before {
    right: .7rem;
    bottom: .58rem;
}

.body-left li:nth-child(5):after {
    right: .73rem;
    bottom: .61rem;
}

.body-left li:hover h2 {
    color: #0056c5;
}

.body-left li:hover:before {
    border: 1px solid #0056c5;
}

.body-left li:hover:after {
    background: #0056c5;
}

.body-left.hidd .content {
    width: 0;
    transition: width 1s;
}

/* 左侧快速链接 */
/* 右侧二维码 */
.body-right {
    position: fixed;
    z-index: 99;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.65rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px #efefef;
}

.body-right h2 {
    width: 1rem;
    margin: 0 auto;
    font-size: .16rem;
    font-weight: bold;
    color: #004694;
    line-height: .24rem;
    text-align: center;
    margin-bottom: 10px;
}

.body-right .close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 9;
}

.body-right ul li {
    width: 100%;
}

.body-right ul li img {
    width: 100%;
}

/* 右侧二维码 */
/* 二级页面 */
.list-banner .pic {
    width: 100%;
    height: 3.4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.list-banner .pic:before {
    content: "";
    width: 100%;
    height: 3px;
    background: url(../images/banner-bottom.png) bottom center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 6;
}

.list-page {
    padding: .7rem 0;
    min-height: 400px;
    position: relative;
    background: url(../images/list-page.png) top center no-repeat;
}

.list-page:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/bjy.png) right top no-repeat;
}

.list-page:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/bjz.png) left bottom no-repeat;
}

/* 左侧导航 */
.left-nav {
    float: left;
    width: 2.46rem;
    position: relative;
    z-index: 2;
}

.left-nav .column {
    width: 100%;
    padding: .15rem 0;
    text-align: center;
    background: url(../images/left-tit.png) center center no-repeat #0056c5;
}

.left-nav .column h2 {
    font-size: .3rem;
    font-weight: bold;
    color: #fff;
}

.left-nav .phone-column {
    display: none;
}

.left-nav .sildemenu {
    background: url(../images/left-bg.png) bottom center no-repeat #e2ecf7;
    padding: .4rem .1rem 1.9rem;
}

.left-nav .sildemenu * {
    transition: .5s;
}

.left-nav .sildemenu li {
    position: relative;
    margin-bottom: .1rem;
    background: #fff;
}

.left-nav .sildemenu li .lv1 {
    display: block;
    background: #fff;
    padding: .15rem .25rem;
    position: relative;
}

.left-nav .sildemenu li .lv1 h2 {
    font-size: .18rem;
    font-weight: normal;
    color: #333333;
    padding-right: .12rem;
    background: url(../images/leftnav-ico01.png) right center no-repeat;
}

.left-nav .sildemenu li .lv1:before {
    content: "";
    width: 4px;
    height: .22rem;
    background: #d71109;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -0.11rem;
}

.left-nav .sildemenu li.current .lv1, .left-nav .sildemenu li:hover .lv1 {
    background: #0056c5;
}

.left-nav .sildemenu li.current .lv1:before, .left-nav .sildemenu li:hover .lv1:before {
    opacity: 1;
    visibility: visible;
}

.left-nav .sildemenu li.current h2, .left-nav .sildemenu li:hover h2 {
    color: #fff !important;
    background: url(../images/leftnav-ico02.png) right center no-repeat !important;
}

.left-nav .sildemenu dd {
    display: none;
    padding: .1rem .25rem .1rem .4rem;
}

.left-nav .sildemenu dd dl {
    padding: .1rem 0;
    font-size: .16rem;
}

.left-nav .sildemenu li.current dd {
    display: block;
}

/* 左侧导航 */
.right-content {
    position: relative;
    z-index: 12;
    float: right;
    width: calc(100% - 3rem);
}

.location {
    background: url(../images/location-ico.png) right bottom no-repeat;
    position: relative;
    padding-right: 20px;
    padding-bottom: .15rem;
}

.location h2 {
    float: left;
    font-size: .3rem;
    color: #000000;
    font-weight: bold;
}

.location .weizhi {
    float: right;
    margin-top: .1rem;
    background: url(../images/home.png) left center no-repeat;
    padding-left: 23px;
    color: #888888;
    font-size: .14rem;
}

.location:before {
    content: "";
    width: calc(100% - 20px);
    height: 2px;
    background: #0056c5;
    position: absolute;
    left: 0;
    bottom: 2px;
}

.list-text {
    margin-top: .4rem;
}

.list-text li {
    position: relative;
    margin-bottom: .2rem;
}

.list-text li a {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e8eff8;
    position: relative;
}

.list-text li a:before {
    content: "";
    width: 0;
    height: 100%;
    background: #0056c5;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 1s;
}

.list-text li .date {
    position: relative;
    width: .8rem;
    height: .6rem;
    text-align: center;
    background: #e2ebf6;
    color: #074eaa;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: .1rem;
}

.list-text li .date .day {
    font-size: .22rem;
}

.list-text li .date .yea {
    font-size: .14rem;
    padding-top: 5px;
}

.list-text li .txt {
    position: relative;
    width: calc(100% - 1.08rem);
    padding-right: .15rem;
}

.list-text li h2 {
    font-size: .16rem;
    color: #333333;
    font-weight: normal;
    line-height: .26rem;
    max-height: .52rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: .5s;
}

.list-text li:hover a:before {
    width: 100%;
}

.list-text li:hover .date {
    color: #fff;
    background: #d31109;
}

.list-text li:hover h2 {
    font-weight: bold;
    color: #fff;
}

.list-news {
    margin-top: .4rem;
}

.list-news li {
    margin-bottom: .3rem;
    border: 1px solid #e8eff8;
    background: #fff;
    position: relative;
}

.list-news li * {
    transition: .5s;
}

.list-news li a {
    display: block;
    position: relative;
    padding: .2rem;
    overflow: hidden;
    z-index: 2;
}

.list-news li .pic {
    float: left;
    width: 2.38rem;
    height: 1.35rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.list-news li .txt {
    float: right;
    width: calc(100% - 2.75rem);
}

.list-news li .tit {
    overflow: hidden;
}

.list-news li h2 {
    float: left;
    font-size: .18rem;
    font-weight: normal;
    color: #333333;
    line-height: .28rem;
    width: calc(100% - 1rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-news li .date {
    float: right;
    width: .9rem;
    padding-bottom: .06rem;
    border-bottom: 1px solid #074eaa;
    font-family: 'Times New Roman', Times, serif;
    color: #074eaa;
    font-weight: bold;
}

.list-news li .date .day {
    float: left;
    font-size: .22rem;
}

.list-news li .date .yea {
    margin-top: .05rem;
    float: right;
    font-size: .14rem;
}

.list-news li .abst {
    margin-top: .15rem;
    font-size: .14rem;
    color: #888888;
    line-height: .24rem;
    text-indent: 2em;
    height: .48rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-news li .more {
    margin-top: .15rem;
    font-size: .14rem;
    color: #074eaa;
    background: url(../images/jiantou2.png) 0.4rem center no-repeat;
}

.list-news li:after {
    content: "";
    width: .4rem;
    height: .4rem;
    background: #e2ecf7;
    position: absolute;
    left: 0;
    bottom: 0;
}

.list-news li:before {
    content: "";
    width: 0;
    height: 100%;
    background: url(../images/list-bg.png) right center no-repeat #0056c5;
    position: absolute;
    left: 0;
    top: 0;
    transition: width .5s;
}

.list-news li:hover:after {
    background: #d71109;
}

.list-news li:hover:before {
    width: 100%;
}

.list-news li:hover h2 {
    color: #fff;
    font-weight: bold;
}

.list-news li:hover .date {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.list-news li:hover .abst {
    color: rgba(255, 255, 255, 0.5);
}

.list-news li:hover .more {
    color: #fff;
    background: url(../images/jiantou3.png) 0.4rem center no-repeat;
}

.list-teacher {
    margin-top: .4rem;
}

.list-teacher ul {
    overflow: hidden;
    margin: 0 -.15rem;
}

.list-teacher li {
    float: left;
    width: 50%;
    margin-bottom: .35rem;
}

.list-teacher li * {
    transition: .5s;
}

.list-teacher .box {
    margin: 0 .15rem;
    padding: .2rem;
    background: #fff;
    border: 1px solid #e8eff8;
    position: relative;
    overflow: hidden;
}

.list-teacher .box:before {
    content: "";
    width: .4rem;
    height: .4rem;
    position: absolute;
    top: 0;
    left: 0;
    background: #e1ebf7;
}

.list-teacher .pic {
    float: left;
    position: relative;
    width: 1.5rem;
    height: 2.09rem;
    overflow: hidden;
}

.list-teacher .pic a {
    display: block;
}

.list-teacher .pic img {
    width: 100%;
}

.list-teacher .txt {
    float: right;
    width: calc(100% - 1.8rem);
    position: relative;
}

.list-teacher .tit {
    display: block;
    margin-top: .15rem;
    font-size: .18rem;
    color: #333333;
    font-weight: bold;
    padding-bottom: .15rem;
    position: relative;
}

.list-teacher .tit:before {
    content: "";
    width: .2rem;
    height: 2px;
    background: #0056c5;
    position: absolute;
    left: 0;
    bottom: 0;
}

.list-teacher .abst {
    margin-top: .1rem;
    font-size: .14rem;
    color: #777777;
    line-height: .26rem;
    height: 1.04rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.list-teacher .more {
    display: block;
    float: right;
    width: 82px;
    height: 24px;
    line-height: 24px;
    background: url(../images/teahcer-more1.png) no-repeat;
    padding-left: 12px;
    color: #0056c5;
    margin-top: .18rem;
    margin-right: -0.2rem;
}

.list-teacher .more p {
    display: inline-block;
    padding-right: 25px;
    background: url(../images/jiantou2.png) right center no-repeat;
    font-size: .12rem;
}

.list-teacher .box:hover {
    background: #0056c5;
}

.list-teacher .box:hover .tit {
    color: #fff;
}

.list-teacher .box:hover .tit:before {
    background: #4d98f9;
}

.list-teacher .box:hover .abst {
    color: rgba(255, 255, 255, 0.5);
}

.list-pic {
    margin-top: .4rem;
}

.list-pic ul {
    overflow: hidden;
    margin: 0 -.2rem;
}

.list-pic li {
    float: left;
    width: 33.3%;
    margin-bottom: .3rem;
}

.list-pic li * {
    transition: .5s;
}

.list-pic li a {
    display: block;
    margin: 0 .2rem;
    border: 1px solid #e2ebf6;
    overflow: hidden;
}

.list-pic li .pic {
    width: 100%;
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
}

.list-pic li .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.list-pic li .pic:after {
    content: "";
    width: .38rem;
    height: .38rem;
    background: url(../images/player.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list-novideo li .pic:after {
    display: none;
}

.list-pic li .tit {
    line-height: .55rem;
    padding: 0 .15rem;
}

.list-pic li .tit h2 {
    font-size: .16rem;
    color: #333333;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-pic li:hover .pic:after {
    transform: translate(-50%, -50%) rotate(360deg);
}

.list-pic li:hover h2 {
    color: #004694 !important;
}

.page-xyjs {
    margin-top: .4rem;
}

.page-xyjs .title {
    font-size: .22rem;
    color: #0056c5;
}

.page-xyjs .title h2 {
    font-weight: normal;
    text-align: center;
}

.page-xyjs .box00 {
    margin-top: .4rem;
    margin-bottom: .4rem;
    border: 1px solid #e2ebf6;
    background: url(../images/xyjs-bg.png) left bottom no-repeat;
    position: relative;
}

.page-xyjs .box00 .cont {
    margin-top: -.3rem;
    padding: .25rem .2rem;
    overflow: hidden;
    display: -webkit-flex;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-xyjs .box00 .left {
    float: left;
    width: 40%;
}

.page-xyjs .box00 .right {
    float: right;
    width: 60%;
}

.page-xyjs .box00 .right .pic img {
    width: 100%;
}

.page-xyjs .box00 .txt {
    font-size: .16rem;
    color: #333333;
    line-height: .4rem;
}

.page-xyjs .box {
    position: relative;
    padding: .15rem;
    border: 1px solid #e4ecf7;
    margin-bottom: .3rem;
    overflow: hidden;
}

.page-xyjs .box .col {
    width: calc(50% - .1rem);
    float: left;
}

.page-xyjs .box .col:nth-child(2) {
    float: right;
}

.page-xyjs .box h2 {
    font-size: .2rem;
    color: #0056c5;
    font-weight: normal;
    margin-bottom: .15rem;
}

.page-xyjs .box .item {
    overflow: hidden;
    font-size: .16rem;
    line-height: .3rem;
    color: #333333;
}

.page-xyjs .box .list {
    overflow: hidden;
}

.page-xyjs .box .list span {
    float: left;
}

.page-xyjs .box .list .name {
    float: right;
    width: calc(100% - .8rem);
}

.page-xyjs .box .list .name p {
    float: left;
    width: 50px;
    margin-right: .15rem;
    text-align: justify;
    height: .3rem;
}

.page-xyjs .box .list .name p:after {
    content: "";
    display: inline-block;
    padding-left: 100%;
}

.page-xyjs .box:nth-child(2n+1):before {
    content: "";
    width: .26rem;
    height: .26rem;
    background: url(../images/xyjs-ico02.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.page-xyjs .box:nth-child(2n):before {
    content: "";
    width: .26rem;
    height: .26rem;
    background: url(../images/xyjs-ico01.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.xyjs-tit {
    line-height: .45rem;
    background: #e2ecf7;
    overflow: hidden;
    margin-bottom: .25rem;
}

.xyjs-tit p {
    padding: 0 .35rem 0 .25rem;
    font-size: .2rem;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    background: #0056c5;
}

.article {
    margin-top: .4rem;
}

.articlezt {
    overflow-x: auto;
}

.article .tit-box {
    position: relative;
    padding: .2rem;
    background: #fff;
    border: 1px solid #e8eff8;
}

.article .tit {
    font-size: .22rem;
    color: #0056c5;
    line-height: 30px;
    padding-bottom: .1rem;
    text-align: center;
}

.article .info {
    font-size: .14rem;
    color: #777777;
    padding-bottom: .05rem;
    position: relative;
    text-align: center;
}

.article .tit-box .share {
    position: absolute;
    right: 0;
    bottom: -15px;
    background: #fff;
    padding-right: 15px;
}

.article .share span {
    float: left;
    padding-top: 15px;
    padding-left: .15rem;
    font-size: .14rem;
    color: #777777;
}

.article .share .social-share {
    float: left;
}

.article .up {
    background: #f6fafd;
    position: relative;
    padding: .2rem;
}

.article .up a {
    display: block;
    font-size: .16rem;
    color: #333333;
    padding: .05rem;
    line-height: .24rem;
}

.article .up a:hover {
    color: #0056c5;
}

.article .up:before {
    left: 0;
}

.article .up:after {
    right: 0;
}

.article-txt {
    margin-top: .2rem;
    margin-bottom: .2rem;
    overflow-x: auto;
    padding: 0 .15rem;
}

.article-txt .con p {
    font-size: .16rem;
    line-height: .34rem;
    color: #444444;
    text-indent: 2em;
}

.article-txt .con table p{
    text-indent:0 !important;

}
.article-txt .con table{
    max-width:100% !important;
     text-align: center;
    margin: auto;
}

.article-txt .con img {
    display: block;
    margin: 10px auto;
}

.teacher-article {
    margin-top: .4rem;
    border: 1px solid #ecf2f9;
}

.teacher-article .teacher-tit {
    padding-top: 25px;
    padding-bottom: 15px;
    background: url(../images/teacher-tit.png) top center no-repeat;
}

.teacher-article .teacher-tit h2 {
    font-size: .2rem;
    color: #333333;
    font-weight: bold;
    text-align: center;
}

.teacher-con {
    padding: .4rem;
}

.teacher-con img {
    display: block;
    margin: 0 auto;
}

.teacher-con p {
    font-size: .16rem;
    color: #444444;
    line-height: .35rem;
    text-indent: 2em;
    margin-bottom: .15rem;
}

/* 二级页面 */