@charset "utf-8";
body {
    font-family: Arial, "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 1rem;
    color: #333333;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd,
hr,
input,
p {
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
}

a {
    color: inherit;
    font: inherit;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover {
    text-decoration: none;
    color: #165db9;
}

a:focus {
    border: none;
    outline: none;
    text-decoration: none;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
    border: none;
    outline: none;
}

.container {
    width: 95%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container {
        width: 940px;
    }
}

@media (min-width: 1080px) {
    .container {
        width: 1000px;
    }
}

@media (min-width: 1280px) {
    .container {
        width: 1200px;
    }
}

img {
    max-width: 100%;
    border: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.wrapper {
    position: relative;
    overflow: hidden;
}

@keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-ms-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}


/* header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 9999;
}

.header .logo {
    float: left;
}

.header .goback {
    float: left;
    width: 105px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #3b71bf;
    font-size: 1rem;
    color: #fff;
    border-radius: 20px;
    margin-left: 15px;
    margin-top: 10px;
    transition: .5s;
}

.header .goback:hover {
    background: #1151af;
}

.header .toplink {
    float: right;
    margin-top: 12px;
}

.header .toplink li {
    float: left;
    font-size: .875rem;
    color: #333;
    padding: 0 8px;
    position: relative;
}

.header .toplink li:last-child {
    padding-right: 0;
}

.header .toplink li:after {
    content: "";
    width: 1px;
    height: 14px;
    background: #97bef7;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

.header .toplink li:first-child:after,
.header .toplink li:last-child:after {
    display: none;
}

.header .toplink a {
    color: #1151af;
    display: block;
    padding: 0 8px;
    border-radius: 12px;
    text-align: center;
    transition: .5s;
}

.header .toplink a:hover {
    background: #1151af;
    color: #fff;
}


/* header */


/* 底部 */

.footer {
    position: relative;
    background: url(../images/footer-bg.png) center top no-repeat #1151af;
}

.foot-link .link-list {
    width: calc(100% - 120px);
    margin: 0 auto;
    position: relative;
}

.foot-link .link-list .box {
    float: left;
    width: 25%;
    position: relative;
}

.foot-link .link-list .tit {
    line-height: 70px;
    text-align: center;
    cursor: pointer;
}

.foot-link .link-list .tit p {
    display: inline-block;
    padding-right: 20px;
    font-size: 1rem;
    background: url(../images/select-ico.png) right center no-repeat;
    color: #fff;
}

.foot-link .link-list ul {
    position: absolute;
    width: 100%;
    height: 390px;
    left: 0;
    bottom: 100%;
    z-index: 9;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    overflow-y: auto;
    display: none;
}

.foot-link .link-list ul li {
    padding: 5px 0;
}

.foot-link .link-list ul li a {
    display: block;
    font-size: .875rem;
    color: #333;
}

.foot-link .link-list ul li:hover a {
    color: #1151af;
}

.foot-link .link-list ul::-webkit-scrollbar {
    width: 4px;
}

.foot-link .link-list ul::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.foot-link .link-list ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: linear-gradient(45deg, #1151af 0%, #1151af 100%);
}

.foot-info {
    padding: 35px 0 25px;
}

.foot-info .lf {
    float: left;
}

.foot-info .lf a {
    float: left;
    margin-right: 28px;
}

.foot-info .lf img {
    vertical-align: middle;
}

.foot-info .mid {
    float: left;
}

.foot-info .mid p {
    font-size: .875rem;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.foot-info .rt {
    float: right;
    margin-top: 0px;
}

.foot-info .rt li {
    float: left;
    margin-left: 25px;
}

.foot-info .rt li h2 {
    height: 80px;
    width: 22px;
    line-height: 22px;
    float: left;
    text-align: center;
    background: url(../images/ewm-bg.png) top no-repeat;
    font-size: .75rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: tb-rl;
    letter-spacing: 1px;
}

.foot-info .rt li img {
    width: 100px;
    height: 100px;
}

.cory {
    padding: 10px 0;
    text-align: center;
    background: #0b49a5;
}

.cory * {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.9);
}

.cory img {
    vertical-align: middle;
}


/* 底部 */


/* 右侧导航 */

.page-right {
    position: fixed;
    z-index: 999;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.page-right li {
    width: 106px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 30px;
}

.page-right li a {
    display: block;
    position: relative;
    font-size: 1rem;
    color: #fff;
    overflow: hidden;
    background: #255eb2;
    border-radius: 20px;
}

.page-right li a:before {
    content: "";
    width: 90%;
    height: 80%;
    border: 1px dashed #fff;
    position: absolute;
    top: 8%;
    left: 5%;
    border-radius: 20px;
}

.page-right li:last-child {
    margin-bottom: 0;
}

.page-right li.active a {
    
    background-size: 100% 100%;
}

#fp-nav {
    display: none !important;
}


/* 右侧导航 */


/* 主体 */

.banner {
    overflow: hidden;
}

.title-con {
    line-height: 40px;
    position: relative;
    background-image: linear-gradient(#edf4ff, #FFF);
    padding: 15px 25px 0 25px;
}

.title-con h2 {
    font-size: 20px;
    font-weight: bold;
    background: url(../images/line.png)no-repeat left center;
    padding-left: 15px;
    float: left;
}

.title-con .more {
    font-size: .875rem;
    color: #739ad2;
    float: right;
    margin-right: 10px;
    transition: .5s;
}

.title-con .more:hover {
    color: #1151af;
}

.row {
    overflow: hidden;
    padding-top: 10px;
    margin-bottom: 40px;
}

.statistics {
    background-color: #f5f9ff;
    overflow: hidden;
}

.statistics .sp a {
    float: left;
    width: 48.5%;
}

.statistics .sp a:last-child {
    float: right;
}

.statistics .item {
    width: 48%;
    float: left;
    position: relative;
    border-top: 4px #1151af solid;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #FFF;
    height: 370px;
    margin-right: 4%;
    margin-bottom: 40px;
}

.statistics .item:nth-child(even) {
    margin-right: 0;
}

.statistics .item::after {
    content: '';
    position: absolute;
    left: 0;
    height: 4px;
    width: 120px;
    background-color: #f6d074;
    top: -4px;
}

.statistics .item ul {
    padding: 0 25px;
}

.statistics .item li {
    line-height: 58px;
    overflow: hidden;
    border-bottom: 2px solid #e1e9f5;
    position: relative;
}

.statistics .item li:last-child {
    border-bottom: 0;
}

.statistics .item li * {
    transition: .5s;
}

.statistics .item li h2 {
    float: left;
    width: calc(100% - 90px);
    font-size: 1rem;
    color: #333333;
    padding-left: 15px;
    position: relative;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: url(../images/arrow.png)no-repeat left center;
    padding-left: 15px;
}

.statistics .item li .date {
    float: right;
    font-size: .875rem;
    color: #999999;
}

.statistics .item li:before {
    content: "";
    background: #1151af;
    width: 0;
    transition: width .5s;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.statistics .item li:hover:before {
    width: 100%;
}

.statistics .item li:hover h2 {
    color: #1151af;
}

.statistics .item li:hover .date {
    color: #1151af;
}

.chart-content {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    width: 100%;
    background-color: #FFF;
    margin-top: 50px;
    padding-top: 0;
}

.chart-content .hd {
    width: 295px;
    height: 427px;
    background-color: #1151af;
    float: left;
    margin-right: 30px;
}

.chart-content .hd li {
    border-bottom: 1px rgba(255, 255, 255, 0.4) solid;
    line-height: 71px;
    height: 71px;
    cursor: pointer;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-left: 70px;
}

.chart-content .hd li:last-child {
    border-bottom: 0;
}

.chart-content .hd li.on {
    background-color: #f6d074;
}

.chart-content .hd li.on::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    width: 0;
    height: 0;
    border-top: 6px transparent solid;
    border-bottom: 6px transparent solid;
    border-left: 6px #f6d074 solid;
    margin-top: -3px;
}

.chart-content .hd li .icon {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.2);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 50%;
    margin-top: -19px;
}


/**/

.slsj1-l {
  float: left;
  width: 295px;
  height: 427px;
}

.slsj1-l ul li {
  line-height: 63px;
  color: #fff;
  background: #1151af;
  font-size: 18px;
  position: relative;
  border-top: 1px solid rgba(93, 135, 197, .8);
  padding-left: 30px;
}

.slsj1-l ul li:first-child {
  margin-top: 0;
}

.slsj1-l ul li::after {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.slsj1-l ul li.on {
  background: #1151af;
  background-position: center center;
  color: #fff;
}

.slsj1-l ul li:hover::after {
  border-left-color: #216dd5;
}

.slsj1-r {
  overflow: hidden;
  background: #fff;
}

.slsj1-r div h3 {
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #111;
}




.data-t{margin-top: 30px;}

.slsj1-l .hd {
    width: 295px;
    height: 427px;
    background-color: #1151af;
    float: left;
    margin-right: 30px;
}

.slsj1-l ul li {
    border-bottom: 1px rgba(255, 255, 255, 0.4) solid;
    line-height: 71px;
    height: 71px;
    cursor: pointer;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-left: 70px;
}

.slsj1-l ul li:last-child {
    border-bottom: 0;
}

.slsj1-l ul li:hover {
    background-color: #f6d074;
}

.slsj1-l ul li:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    width: 0;
    height: 0;
    border-top: 6px transparent solid;
    border-bottom: 6px transparent solid;
    border-left: 6px #f6d074 solid;
    margin-top: -3px;
}



/**/



.chart-content .hd li:nth-child(1) .icon {
    background-image: url(../images/icon1.png);
}

.chart-content .hd li:nth-child(1).on .icon {
    background-image: url(../images/icon1-on.png);
    background-color: rgba(255, 255, 255, 0.3);
}

.chart-content .hd li:nth-child(2) .icon {
    background-image: url(../images/icon2.png);
}

.chart-content .hd li:nth-child(2).on .icon {
    background-image: url(../images/icon2-on.png);
    background-color: rgba(255, 255, 255, 0.3);
}

.chart-content .hd li:nth-child(3) .icon {
    background-image: url(../images/icon3.png);
}

.chart-content .hd li:nth-child(3).on .icon {
    background-image: url(../images/icon3-on.png);
    background-color: rgba(255, 255, 255, 0.3);
}

.chart-content .hd li:nth-child(4) .icon {
    background-image: url(../images/icon4.png);
}

.chart-content .hd li:nth-child(4).on .icon {
    background-image: url(../images/icon4-on.png);
    background-color: rgba(255, 255, 255, 0.3);
}

.chart-content .hd li:nth-child(5) .icon {
    background-image: url(../images/icon5.png);
}

.chart-content .hd li:nth-child(5).on .icon {
    background-image: url(../images/icon5-on.png);
    background-color: rgba(255, 255, 255, 0.3);
}

.chart-content .hd li:nth-child(6) .icon {
    background-image: url(../images/icon6.png);
}

.chart-content .hd li:nth-child(6).on .icon {
    background-image: url(../images/icon6-on.png);
    background-color: rgba(255, 255, 255, 0.3);
}



.chart-content .bd {
    width: calc(100% - 295px - 30px);
    float: left;
}

.chart-content .bd .title {
    text-align: center;
    font-size: 24px;
    line-height: 2;
    margin-top: 20px;
}

.chart-content .bd .chart {
    margin-top: 15px;
}


/* 主体 */