@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .2rem 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #1766A2;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.menu-btn {
    display: none;
    background: url(/images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(/images/close.svg);
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    height: 1.4rem;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2rem;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header .logo img {
    height: .8rem;
}

.header .top {
    color: rgba(255, 255, 255, .7);
    justify-content: flex-end;
    font-size: .14rem;
}

.header .top span {
    margin: 0 .1rem;
}

.header .top a {
    color: rgba(255, 255, 255, .7);
}

.header .search-btn {
    background: url(/images/search.svg)no-repeat left center;
    cursor: pointer;
    padding-left: 25px;
}

.header.fixed::after {
    height: 100%;
}

.menu-btn {
    display: none;
    background: url(/images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(/images/close.svg);
}

.left-nav{
	display: none;
	background: #0159AB;
	margin: 0.26rem 0.2rem 0 0.2rem;
	color: #ffffff;
	font-size: 0.3rem;
	padding: 0.15rem 0.25rem;
}
.left-nav .show{
	width: 0.5rem;
	height: 0.56rem;
	font-size: 0.5rem;
	justify-content: flex-end;
}
.left-nav .close{
	display: none;
}
.left-nav .close-text{
	width: 0.5rem;
	height: 0.56rem;
	font-weight: bold;
	justify-content: flex-end;
}
.mobile-menu{
	display: none;
	background-color: #025AAD;
	font-size: 0.3rem;
	margin: 0 0.2rem;
	padding: 0.15rem 0.25rem;
	line-height: 0.8rem;
}
.mobile-menu li>a{
	color: #ffffff;
}
.mobile-menu li.on{
	/*background: url(/images/arrow.svg)no-repeat right;
	background-size: 0.32rem 0.32rem;*/
}
.mobile-menu li.on a{color: #46ADFF;}
.nav {
    justify-content: flex-end;
}

.nav li>a {
    line-height: .6rem;
    margin: 0 .25rem;
    color: #FFF;
}

.nav li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: .1rem;
    width: 0%;
    height: 1px;
    background-color: #FFF;
    transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.nav li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 0;
    background-color: #FFF;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.nav li:last-child>a {
    margin-right: 0;
}

.nav .drop {
    width: 100%;
    left: 0;
    top: .6rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #FFF;
    /* line-height: 2.4; */
    font-size: .18rem;
}

.nav .about-sub {
    width: 7.2rem;
    padding: .35rem;
    background-color: #FFF;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    left: -1.5rem;
}
.nav li:nth-last-child(-n+2) .about-sub{
	left: -5.5rem;
	right: 0;
}

.nav .about-sub .pic {
    width: 3rem;
    height: 2.1rem;
    overflow: hidden;
    margin-right: .5rem;
}

.nav .about-sub .pic img {
    width: 100%;
}

.nav .about-sub a {
    width: 50%;
}

.search-content {
    background: #025AAD;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(/images/close.svg)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.search-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 7rem;
    height: .7rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .18rem;
    background: none;
    padding-left: .15rem;
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(/images/search.svg)no-repeat center;
    background-size: .3rem;
}

.footer {
    background: url(/images/f-bg.jpg)no-repeat center;
    background-size: cover;
    border-top: 7px #46ADFF solid;
    padding-top: .4rem;
    font-size: .16rem;
    color: #FFF;
    position: relative;
    z-index: 99;
}

.footer .copyright {
    border-top: 1px rgba(255, 255, 255, .2) solid;
    padding: .3rem 0;
    margin-top: .4rem;
}

.footer .copyright a {
    color: rgba(255, 255, 255, .6);
    margin: 0 .1rem;
}

.footer .logo img {
    height: .8rem;
}

.footer .link {
		position: relative;
    width: 2.8rem;
}

.select-wrapper {
    width: 100%;
    height: .5rem;
    position: relative;
    cursor: pointer;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #e3e3e3;
		
		background-color: rgba(255, 255, 255, .05);
		color: #FFF;
		font-size: .16rem;
		padding: 0 0.3rem 0 0.1rem;
		-webkit-appearance: none; /* for Chrome, Safari */
		-moz-appearance: none;    /* for Firefox */
		-ms-appearance: none;     /* for IE10+ */
		appearance: none;         /* for standard browsers */
}

.select-wrapper option{
	color: #000000;
}

.link::after {
  content: '';            /* 下拉箭头字符 */
  font-size: 14px;         /* 字体大小 */
  position: absolute;      /* 绝对定位 */
  top: 50%;                /* 在select中垂直居中 */
	color: #ffffff;
	right: 0.3rem;
  pointer-events: none;    /* 防止箭头区域影响select的点击事件 */
	
	height: 8px;
	width: 8px;
	overflow: hidden;
	border-left: 1px #FFF solid;
	border-bottom: 1px #FFF solid;
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-moz-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	-o-transform: translateY(-50%) rotate(-45deg);
}

.select-button {
    width: 100%;
    height: .5rem;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    padding: 0 .3rem 0 .1rem;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    background-color: rgba(255, 255, 255, .05);
    color: #FFF;
    font-size: .16rem;
    line-height: .4rem;
}

.select-down {
    position: absolute;
    top: .15rem;
    right: .2rem;
    height: 8px;
    width: 8px;
    overflow: hidden;
    border-left: 1px #FFF solid;
    border-bottom: 1px #FFF solid;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.select-list {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 3px #ddd;
    border-radius: 3px;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    top: .4rem;
    overflow: hidden;
}

.select-list ul {
    overflow-x: hidden;
    overflow-y: auto;
    line-height: .4rem;
    max-height: 240px;
}

.select-list ul li {
    width: auto;
    padding-left: .1rem;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    line-height: .4rem;
    color: #333;
}

.footer p {
    margin-top: .2rem;
}

.footer .info p {
    padding-left: 30px;
    background-position: left center;
    background-repeat: no-repeat;
}

.footer .info .address {
    background-image: url(/images/address.svg);
}

.footer .info .tel {
    background-image: url(/images/tel.svg);
}

.footer .info .fax {
    background-image: url(/images/fax.svg);
}

.footer .info .code {
    background-image: url(/images/code.svg);
}

.banner {
    overflow: hidden;
}

.banner img {
    width: 100%;
    transition: all 5s;
    -webkit-transition: all 5s;
    -moz-transition: all 5s;
    -ms-transition: all 5s;
    -o-transition: all 5s;
}

.banner .swiper-slide-active img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.banner .swiper-pagination {
    width: 4.4rem;
    height: .9rem;
    /* background-color: #1766A2; */
    left: auto;
    right: 0;
    bottom: 0;
    padding-right: 0.6rem;
    justify-content: flex-end;
}

.banner .swiper-pagination::before {
    content: '';
    position: absolute;
    width: .8rem;
    height: .8rem;
    opacity: 0.4;
    background: linear-gradient(135deg, #0077AA -26%, #2288D0 72%);
    left: -.4rem;
    top: -.4rem;
    display: none;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 0 .15rem !important;
}

.banner .swiper-pagination-bullet-active {
    background-color: #fff;
    margin: 0 .3rem !important;
    position: relative;
}

.banner .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    width: .32rem;
    height: .32rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: url(/images/q.png)no-repeat center;
    background-size: 100% 100%;
}

@font-face {
    font-family: 'SourceHanSerifCN-Regular';
    src: url('/fonts/SourceHanSerifCN-Bold.otf');
}

@font-face {
    font-family: 'Georgia';
    src: url('/fonts/Georgia.ttf');
}

.home-title {
    padding-left: 1rem;
    background-position: left center;
    background-repeat: no-repeat;
}

.home-title span {
    background: url(/images/tbg.png)no-repeat right bottom;
    font-size: .46rem;
    font-family: 'SourceHanSerifCN-Regular';
    padding-right: .35rem;
    background-size: 1.43rem;
}

.home-title .more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: url(/images/more.svg)no-repeat right center;
    padding-right: .2rem;
    background-size: .14rem;
    color: #1766A2;
    border-bottom: 1px #1766A2 solid;
    font-size: .18rem;
    padding-bottom: .05rem;
}

.home-news,
.home-focus {
    margin-top: .7rem;
}

.home-focus {
    width: 9.2rem;
}

.home-focus .home-title {
    background-image: url(/images/t1.png);
    background-size: 1.11rem;
}

.home-focus .focus {
    margin-top: .4rem;
    z-index: 10;
}

.home-focus .focus::after {
    content: '';
    position: absolute;
    left: .2rem;
    right: .2rem;
    bottom: -.1rem;
    height: .4rem;
    background-color: #1766A2;
    z-index: -1;
}

.home-focus .focus .swiper-container {
    -webkit-clip-path: polygon(90% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(90% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}

.home-focus .focus .swiper-slide {
    height: 5.56rem;
    overflow: hidden;
}

.home-focus .focus .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.8rem;
    background: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.home-focus .focus .swiper-pagination {
    text-align: right;
    bottom: .5rem;
    padding-right: .35rem;
}

.home-focus .focus .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, .6);
    margin: 0 .15rem !important;
}

.home-focus .focus .swiper-pagination-bullet-active {
    background-color: #FFF;
    margin: 0 .3rem !important;
    position: relative;
}

.home-focus .focus .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    width: .32rem;
    height: .32rem;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF dashed;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.home-focus .item {
    margin-top: .4rem;
}

.home-focus .date {
    font-family: 'Georgia';
    color: #1766A2;
    font-size: .24rem;
}

.home-focus .tit {
    font-size: .28rem;
    font-weight: bold;
    margin-top: .3rem;
}

.home-focus .des {
    color: #999;
    line-height: 1.8;
    margin-top: .25rem;
    border-top: 1px dashed #015098;
    padding-top: .2rem;
}

.home-focus .view {
    background: url(/images/more1.svg)no-repeat right center;
    padding-right: .25rem;
    color: #1766A2;
    font-size: .18rem;
    margin-top: .4rem;
    background-size: .14rem;
    text-align: right;
}

.home-news {
    width: 5.45rem;
}

.home-news .home-title {
    background-image: url(/images/t2.png);
    padding-left: 1.15rem;
    background-size: 1.02rem;
}

.home-news .content {
    background-color: #F4F8FF;
    border-top: 4px #1766A2 solid;
    padding: 0 .5rem .6rem .5rem;
    margin-top: .4rem;
}

.home-news .item {
    padding-top: .4rem;
    padding-bottom: .4rem;
    border-bottom: 1px #AEC6E4 solid;
}

.home-news .item::before {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    width: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    bottom: -1px;
    background-color: #1766A2;
}

.home-news .item .date {
    font-family: 'Georgia';
    margin-right: .3rem;
    color: #979797;
    font-size: .18rem;
}

.home-news .item .date span {
    color: #1766A2;
    font-size: .32rem;
}

.home-notice {
    width: 100%;
    background: url(/images/bg.jpg)no-repeat center;
    height: 7.2rem;
    background-size: cover;
    /* margin-top: 1rem; */
    align-items: flex-end;
}
.news-box{
	position: relative;
	padding-bottom: 1rem;
}
.home-notice .home-title {
    background-image: url(/images/t3.png);
    padding-left: 1.15rem;
    position: absolute;
    right: 1.6rem;
    width: 4.6rem;
    top: 1.6rem;
    background-size: 1rem;
}

.home-notice .swiper-container {
    padding-top: 1.9rem;
}

.home-notice .swiper-slide {
    background-color: rgba(255, 255, 255, .95);
    height: 2rem;
    padding: .6rem .4rem 0 .4rem;
    width: 4.7rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-notice .swiper-slide .tit {
    margin-right: .45rem;
}

.home-notice .swiper-slide .date {
    font-family: 'Georgia';
    color: #0077AA;
    font-size: .18rem;
    text-align: right;
    border-top: 3px #0077AA solid;
    padding-left: .1rem;
    white-space: nowrap;
    padding-top: .05rem;
}

.home-notice .swiper-slide .date span {
    font-size: .32rem;
}

.home-notice .swiper-slide .des {
    display: none;
    font-size: .16rem;
    color: rgba(255, 255, 255, .8);
    margin-top: .2rem;
    line-height: 1.9;
}

.home-notice .swiper-slide .btn {
    display: none;
    margin-top: .4rem;
    width: 100%;
}

.home-notice .swiper-slide .btn span {
    width: 2.6rem;
    line-height: .56rem;
    color: #FFF;
    background-color: #47ACFF;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.home-notice .swiper-slide .icon {
    position: absolute;
    left: -.4rem;
    top: -.4rem;
    width: 1.12rem;
    height: 1.3rem;
    background: url(/images/icon1.png)no-repeat center;
    background-size: cover;
    display: none;
}

.home-notice .button {
    position: absolute;
    right: 4.45rem;
    bottom: .6rem;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #E1AC36;
    z-index: 10;
}

.home-notice .button .swiper-button-white {
    background-size: 10px;
}

.home-notice .button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 1px;
    height: .3rem;
    background-color: rgba(255, 255, 255, .3);
}

.home-notice .swiper-button-next {
    right: 0;
}

.home-notice .swiper-button-prev {
    left: 0;
}

.home-notice .swiper-pagination {
    left: 1.6rem;
    right: 1.6rem;
    width: auto;
    bottom: -.45rem;
    height: 1px;
    background-color: rgba(0, 0, 0, .3);
}

.home-notice .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #0077AA;
		height: 3px;
		top: -1px;
}

.home-photo {
    margin-top: .7rem;
    background: url(/images/bg1.png)no-repeat center;
    background-size: cover;
    height: 10.05rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    padding-top: 1.3rem;
}

.home-photo .l-con {
    width: 9.2rem;
    margin-right: .1rem;
}

.home-photo .r-con {
    align-items: flex-end;
    padding-top: 2.5rem;
}

.home-photo .pic::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 50%;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .5));
    z-index: 2;
}

.home-photo .pic .text {
    color: #FFF;
    font-size: .28rem;
    bottom: .3rem;
    position: absolute;
    left: 0;
    z-index: 10;
    width: 100%;
}

.home-photo .pic .text-con {
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(39, 110, 193, .8);
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-photo .pic .text-con .flex-column {
    width: 100%;
    height: 100%;
}

.home-photo .pic .text-con .icon {
    width: .9rem;
    height: .9rem;
}

.home-photo .pic .text-con .tit {
    color: #FFF;
    font-size: .28rem;
    margin-top: .1rem;
}

.home-photo .pic .text-con .line1 {
    position: absolute;
    left: .1rem;
    bottom: .1rem;
    border-left: 2px rgba(255, 255, 255, .2) solid;
    border-bottom: 2px rgba(255, 255, 255, .2) solid;
    width: .3rem;
    height: .3rem;
    z-index: 10;
}

.home-photo .pic .text-con .line2 {
    position: absolute;
    top: .1rem;
    right: .1rem;
    border-right: 2px rgba(255, 255, 255, .2) solid;
    border-top: 2px rgba(255, 255, 255, .2) solid;
    width: .3rem;
    height: .3rem;
    z-index: 10;
}

.home-photo .pic-con1 {
    align-items: flex-end;
}

.home-photo .pic-con2 {
    justify-content: flex-end;
    margin-top: .1rem;
}

.home-photo .pic {
    overflow: hidden;
}

.home-photo .pic1 {
    width: 6.8rem;
    height: 4.08rem;
}

.home-photo .pic1 .text {
    padding-left: .4rem;
}

.home-photo .pic2 {
    width: 2.28rem;
    height: 2.28rem;
}

.home-photo .pic3 {
    width: 2.28rem;
    height: 2.28rem;
    margin-right: .1rem;
}

.home-photo .pic4 {
    width: 4.08rem;
    height: 2.28rem;
}

.home-photo .pic5 {
    width: 49%;
    height: 4rem;
}

.home-photo .pic5:last-child {
    margin-bottom: .7rem;
}

.home-photo .pic1 .text-con .icon img {
    height: .89rem;
}

.home-photo .pic2 .text-con .icon img {
    height: .82rem;
}

.home-photo .pic3 .text-con .icon img {
    height: .84rem;
}

.home-photo .pic4 .text-con .icon img {
    height: .9rem;
}

.home-photo .pic5 .text-con .icon img {
    height: .84rem;
}

.home-content {
    background: url(/images/bg2.jpg)no-repeat center top;
    background-size: cover;
    overflow: hidden;
    padding-bottom: .9rem;
}

.home-special {
    margin-top: 1.25rem;
}

.home-special .home-title {
    background-image: url(/images/t4.png);
    margin-left: 6.15rem;
    background-size: 1rem;
}

.home-special .content {
    margin-top: .7rem;
}

.home-special .swiper-slide {
    height: 4.8rem;
    overflow: hidden;
    -webkit-clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-special .swiper-slide::before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .25;
    pointer-events: none;
    /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .53) 100%); */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 3;
}

.home-special .swiper-slide:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.home-special .swiper-slide img {
    width: 100%;
    height: 100%;
}

.home-special .swiper-slide-next {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
}

.home-special .swiper-slide-active {
    -webkit-clip-path: none;
    clip-path: none;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-special .swiper-slide-prev {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}

.home-special .swiper-slide-next+.swiper-slide {
    -webkit-clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
}

.home-special .swiper-button {
    width: .65rem;
    height: .65rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: .05rem .05rem .1rem rgba(0, 86, 123, .4);
    background: #FFF;
    left: -.9rem;
    margin-top: 0;
    top: 2.2rem;
}

.home-special .swiper-button::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/images/prev.svg)no-repeat center;
}

.home-special .button-r {
    right: -.9rem;
    left: auto;
}

.home-special .button-r::after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-special .button {
    width: 100%;
    height: 1.02rem;
    background: url(/images/line.png)no-repeat center;
    background-size: 100%;
    margin-top: .15rem;
}

.home-special .button>div {
    position: absolute;
    left: 50%;
    bottom: -.3rem;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #E1AC36;
    z-index: 10;
}

.home-special .swiper-button-white {
    background-size: 8px;
}

.home-special .button>div::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 1px;
    height: .3rem;
    background-color: rgba(255, 255, 255, .3);
}

.home-special .button .swiper-button-prev {
    left: 0;
}

.home-special .button .swiper-button-next {
    right: 0;
}

.home-media {
    margin-top: 1rem;
    padding-left: 1.6rem;
}

.home-media .home-title {
    background-image: url(/images/t5.png);
    background-size: .95rem;
    height: .78rem;
}

.home-media .content {
    height: 7.2rem;
    margin-top: .4rem;
    border-radius: 0px 3.6rem 3.6rem 0px;
    -webkit-border-radius: 0px 3.6rem 3.6rem 0px;
    -moz-border-radius: 0px 3.6rem 3.6rem 0px;
    -ms-border-radius: 0px 3.6rem 3.6rem 0px;
    -o-border-radius: 0px 3.6rem 3.6rem 0px;
    background: linear-gradient(270deg, #E1ECFB 0%, rgba(226, 238, 252, 0) 100%);
    padding-right: 1.25rem;
}

.home-media .sns {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: url(/images/tbg2.png)no-repeat center;
    background-size: 4.28rem;
    margin-left: .5rem;
}

.home-media .sns .icon {
    width: 100%;
    height: 100%;
}

.home-media .sns .icon img {
    height: .6rem;
}

.home-media .sns .item {
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    z-index: 9;
    cursor: pointer;
}

.home-media .sns .item span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
    box-shadow: .05rem .05rem .1rem rgba(0, 86, 123, .4);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 11;
}

.home-media .sns .item.wx {
    top: 2px;
    left: 2rem;
}

.home-media .sns .item.wx span {
    background-image: url(/images/wx.svg);
    background-size: .4rem;
}

.home-media .sns .item.wb {
    top: .7rem;
    left: .6rem;
}

.home-media .sns .item.wb span {
    background-image: url(/images/wb.svg);
    background-size: .4rem;
}

.home-media .sns .item.dou {
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home-media .sns .item.dou span {
    background-image: url(/images/dou.svg);
    background-size: .34rem;
}

.home-media .sns .item.bili {
    bottom: .7rem;
    left: .6rem;
}

.home-media .sns .item.bili span {
    background-image: url(/images/bili.svg);
    background-size: .38rem;
}

.home-media .sns .item.sp {
    bottom: 2px;
    left: 2rem;
}

.home-media .sns .item.sp span {
    background-image: url(/images/sp.svg);
    background-size: .4rem;
}

.home-media .sns .item .erwma {
    position: absolute;
    left: 50%;
    width: 1.2rem;
    height: 1.2rem;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
    padding: .05rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #FFF;
    bottom: .8rem;
    display: none;
}

.home-media .sns .item .erwma::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -.1rem;
    width: 0;
    height: 0;
    border-left: .1rem transparent solid;
    border-right: .1rem transparent solid;
    border-top: .1rem #FFF solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.home-media .sns .item .erwma img {
    width: 100%;
    height: 100%;
}

@keyframes ani_turn2 {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes q1 {
    0% {
        width: 100%;
        height: 100%;
    }
    100% {
        width: 140%;
        height: 140%;
    }
}

.home-media .sns .line {
    width: 100%;
    height: 100%;
    border: 1px #006198 dashed;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    animation: 40s linear infinite ani_turn2;
    -webkit-animation: 40s linear infinite ani_turn2;
}

.home-media .sns .line span {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    z-index: 2;
}

.home-media .sns .line span:nth-child(1) {
    background-color: #F0B83C;
    width: .3rem;
    height: .3rem;
    left: .05rem;
    top: 1.4rem;
}

.home-media .sns .line span:nth-child(2) {
    background-color: #009376;
    width: .38rem;
    height: .38rem;
    right: .17rem;
    top: 1.05rem;
}

.home-media .sns .line span:nth-child(3) {
    background-color: #47ACFF;
    width: .2rem;
    height: .2rem;
    right: 1.4rem;
    bottom: .1rem;
}

.home-media .sns .item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    width: 100%;
    height: 100%;
    background-color: #10A957;
    opacity: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-media .sns .item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    width: 100%;
    height: 100%;
    background-color: #10A957;
    opacity: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-media .sns .item.wb::before,
.home-media .sns .item.wb::after {
    background-color: #E71F19;
}

.home-media .sns .item.dou::before,
.home-media .sns .item.dou::after {
    background-color: #0DD6CA;
}

.home-media .sns .item.bili::before,
.home-media .sns .item.bili::after {
    background-color: #FF509B;
}

.home-media .sns .item.sp::before,
.home-media .sns .item.sp::after {
    background-color: #FF6734;
}

.home-media .video {
    height: 3.5rem;
    overflow: hidden;
}

.home-media .video::after,
.home-media .pic::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    z-index: 1;
    height: 80%;
}

.home-media .video .text {
    position: absolute;
    z-index: 2;
    color: #FFF;
    width: 100%;
    bottom: 0;
    padding: .3rem .4rem;
}

.home-media .video span {
    width: .82rem;
    height: .82rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: url(/images/play.png)no-repeat center;
    background-size: 100%;
    z-index: 9;
    cursor: pointer;
}

.home-media .thumbs {
    width: 3.8rem;
    height: 3.5rem;
    margin-right: .1rem;
    background-color: #1766A2;
    padding: .4rem;
}

.home-media .thumbs::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/images/img13.png)no-repeat center;
    z-index: 1;
    background-size: cover;
}

.home-media .thumbs .swiper-container {
    z-index: 11;
    height: 100%;
}

.home-media .thumbs .swiper-slide {
    height: 100%;
}

.home-media .thumbs .icon {
    margin-right: .2rem;
}

.home-media .thumbs .icon img {
    height: .25rem;
}

.home-media .thumbs .date {
    color: #FFF;
    font-family: 'Georgia';
    font-size: .18rem;
}

.home-media .thumbs .tit {
    font-size: .22rem;
    margin-top: .3rem;
    color: #FFF;
    line-height: 1.8;
}

.home-media .thumbs .view {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px #FFF solid;
    background: url(/images/more2.png)right 5px no-repeat;
    padding-bottom: .15rem;
    color: #FFF;
    font-size: .18rem;
}

.home-media .thumbs .swiper-pagination {
    right: 0;
    top: 0;
    width: auto;
    bottom: auto;
    left: auto;
}

.home-media .thumbs .swiper-pagination-bullet {
    background: #FFF;
}

.home-media .pic {
    height: 3.6rem;
    margin-top: .1rem;
    overflow: hidden;
}

.home-media .pic:last-child {
    width: 4.3rem;
    margin-left: .1rem;
}

.home-media .pic .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 .4rem;
    z-index: 10;
    color: #FFF;
}

.home-media .pic .text-con .tool {
    margin-top: .15rem;
    font-size: .18rem;
    border-bottom: 5px #10A957 solid;
    padding-bottom: .2rem;
}

.home-media .pic .text-con .tool .icon {
    margin-right: .15rem;
}

.home-media .pic .text-con .tool .icon img {
    height: .17rem;
}

.maskBg {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0
}

.videoShow {
    width: 100%;
    height: 7.6rem;
    position: fixed;
		max-height: 100vh;
    left: 50%;
    top: 50%;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.container[data-container]{
	background-color: transparent !important;
}

.maskBg.active {
    opacity: 1;
}

.videoShow.active {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.videoShow .close {
    color: #FFF;
		height: 0.2rem;
    position: absolute;
    right: 0;
    top: -.3rem;
    background: url(/images/close.svg)no-repeat left center;
    background-size: .2rem;
    padding-left: .3rem;
    cursor: pointer;
}

.home-link {
    z-index: 10;
    margin-top: .9rem;
    font-size: .18rem;
}

.home-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: .75rem;
    width: 100%;
    height: 1px;
    border-top: 1px #0077AA dashed;
    z-index: -1;
}

.home-link .item {
    margin: 0 1rem;
}

.home-link .item .icon {
    height: 1.2rem;
    width: 1.2rem;
    background: #FFF;
    margin-left: auto;
    margin-right: auto;
    border: 1px #105199 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 10;
}

@keyframes line1 {
    0% {
        width: 1.2rem;
        height: 1.2rem;
    }
    60% {
        width: 1.5rem;
        height: 1.5rem;
        opacity: .1;
    }
    100% {
        width: 1.2rem;
        height: 1.2rem;
        opacity: 0;
    }
}

.home-link .item .line1 {
    border: 1px #105199 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    animation: 2s linear infinite line1;
    -webkit-animation: 2s linear infinite line1;
}

.home-link .item .line2 {
    border: 1px #105199 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    animation: 4s linear infinite line1;
    -webkit-animation: 4s linear infinite line1;
}

.home-link .item .line3 {
    border: 1px #105199 solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: .1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    animation: 6s linear infinite line1;
    -webkit-animation: 6s linear infinite line1;
}

.home-link .item .tit {
    margin-top: .1rem;
}

.home-link .item:nth-child(1) .icon svg {
    width: .67rem;
}

.home-link .item:nth-child(2) .icon svg {
    width: .75rem;
}

.home-link .item:nth-child(3) .icon svg {
    width: .68rem;
}

.home-link .item:nth-child(4) .icon svg {
    width: .61rem;
}

.icon-path {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-link .item :hover .icon-path {
    animation: icon-path-animation 8s ease-in forwards;
    -webkit-animation: icon-path-animation 8s ease-in forwards;
}

@keyframes icon-path-animation {
    0% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 4917;
        fill: #fff;
    }
    40% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 0;
        fill: #fff;
    }
    60% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 0;
        fill: #105199;
    }
    100% {
        stroke-dasharray: 4917;
        stroke-dashoffset: 0;
        fill: #105199;
    }
}

@media (min-width:1025px) {
    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .nav li:hover a::after {
        width: 100%;
    }
    .nav li:hover a::before {
        height: .1rem;
    }
    .footer .copyright a:hover {
        color: #FFF;
    }
    .home-news .item:hover::before {
        width: 100%;
    }
    .home-news .item:hover .tit {
        font-weight: bold;
    }
    .home-focus .focus .swiper-slide:hover img,
    .home-photo .pic:hover img,
    .home-media .pic:hover img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-notice .swiper-slide:hover {
        width: 6.8rem;
        padding: .6rem .5rem 0 .5rem;
        color: #FFF;
        background-color: #1766A2;
        height: 3.4rem;
        margin-top: -1.4rem;
    }
    .home-notice .swiper-slide:hover .des,
    .home-notice .swiper-slide:hover .btn,
    .home-notice .swiper-slide:hover .icon {
        display: block;
    }
    .home-notice .swiper-slide:hover .date {
        color: #FFF;
        border-top-color: #FFF;
    }
    .home-special .swiper-button:hover {
        background-color: #0077AA;
    }
    .home-special .swiper-button:hover::after {
        background-image: url(/images/prev-hover.svg);
    }
    .home-special .swiper-slide:hover img {
        width: 110%;
        height: 110%;
    }
    .home-media .sns .item:hover .erwma {
        display: block;
    }
    .home-media .sns .item.wx:hover span {
        background-image: url(/images/wx1.svg);
        background-color: #10A957;
    }
    .home-media .sns .item.wb:hover span {
        background-image: url(/images/wb1.svg);
        background-color: #E71F19;
    }
    .home-media .sns .item.dou:hover span {
        background-image: url(/images/dou1.svg);
        background-color: #0DD6CA;
    }
    .home-media .sns .item.bili:hover span {
        background-image: url(/images/bili1.svg);
        background-color: #FF509B;
    }
    .home-media .sns .item.sp:hover span {
        background-image: url(/images/sp1.svg);
        background-color: #FF6734;
    }
    .home-media .sns .item:hover::after {
        animation: 2s linear infinite q1;
        -webkit-animation: 2s linear infinite q1;
        opacity: .25;
        z-index: -1;
    }
    .home-media .sns .item:hover::before {
        animation: 5s linear infinite q1;
        -webkit-animation: 5s linear infinite q1;
        opacity: .1;
        z-index: -2;
    }
    .home-special .swiper-slide:hover {
        clip-path: polygon(0 5%, 95% 0%, 100% 100%, 10% 100%);
    }
    .home-special .swiper-slide-prev:hover {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    }
    .home-special .swiper-slide-next:hover {
        clip-path: polygon(5% -15%, 100% 5%, 90% 100%, 5% 95%);
    }
    .home-photo .pic:hover .text-con {
        opacity: 1;
    }
    .home-photo .pic:hover .text {
        opacity: 0;
    }
}

@media (max-width:1399){
	.navbar-wrapper::before{
		height: 4.2rem;
	}
}
@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .menu-btn {
        display: block;
    }
    .header {
        height: 1.2rem;
        padding-left: .2rem;
        padding-right: .9rem;
    }
    .header .search-btn {
        font-size: 12px;
    }
    .header.on {
        background-color: #025AAD;
    }
    .header .top a,
    .header .top span,
    .nav .about-sub .pic,
    .home-special .swiper-button,
    .header.on::after,
    .home-media .sns {
        display: none;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.2rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #025AAD;
        z-index: 999;
        height: calc(100vh - 1.2rem);
        padding: .2rem .3rem;
        border-top: 1px rgba(255, 255, 255, .3) solid;
    }
    .nav li>a {
        font-size: 16px;
        margin: 0;
        line-height: .9rem;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: .9rem;
        width: .6rem;
    }
    .nav .arrow::after {
        content: '';
        background: url(/images/arrow.svg)no-repeat center;
        background-size: 100%;
        width: .32rem;
        height: .32rem;
        position: absolute;
        left: .1rem;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        padding-top: 0;
        background: none;
        padding-bottom: 0;
        padding-left: .2rem;
    }
    .nav .about-sub {
        box-shadow: none;
        padding: 0;
        padding-left: .2rem;
    }
    .nav .about-sub a {
        width: 100%;
    }
    .nav .drop a {
        color: #FFF;
    }
    .search-content .content input[type='text'],
    .nav .drop,
    .footer,
    .select-button,
    .home-focus .date,
    .home-link {
        font-size: 14px;
    }
    .home-focus .tit {
        font-size: 16px;
    }
    .home-focus .view,
    .home-news .item .date,
    .home-title .more,
    .home-notice .swiper-slide .date,
    .home-media .thumbs .date,
    .home-media .thumbs .view,
    .home-media .pic .text-con .tool {
        font-size: 12px;
    }
    .home-news .item .date span,
    .home-notice .swiper-slide .date span {
        font-size: 18px;
    }
    .home-focus {
        width: 8.7rem;
    }
    .home-title span {
        font-size: 28px;
    }
    .home-notice .home-title {
        width: 5.8rem;
        right: .2rem;
    }
    .home-notice .button {
        width: .8rem;
        height: .8rem;
        right: .2rem;
        bottom: .5rem;
    }
    .home-notice .swiper-pagination {
        display: none;
    }
    .home-photo {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .home-special .home-title {
        margin-left: 0;
    }
    .home-special .button>div {
        width: .8rem;
        height: .8rem;
        bottom: -.2rem;
    }
    .home-media {
        padding-left: .2rem;
    }
    .home-media .content {
        padding-right: .2rem;
    }
    .home-link .item {
        margin: 0 .7rem;
    }
}

@media (max-width:767px) {
    .footer .logo,
    .footer .info,
    .home-focus,
    .home-news {
        width: 100%;
    }
    .footer .link {
        margin-top: .3rem;
        width: 100%;
    }
    .select-wrapper {
        height: .6rem;
    }
    .select-button {
        height: .6rem;
        line-height: .6rem;
    }
    .select-list {
        top: .6rem;
    }
    .footer .text {
        display: none;
    }
    .home-title span {
        font-size: 24px;
    }
    .home-notice {
        height: 5.2rem;
        margin-top: .3rem;
    }
    .home-notice .home-title {
        width: auto;
        left: .2rem;
        top: .4rem;
    }
    .home-notice .swiper-slide {
        padding: .4rem .4rem 0 .4rem;
    }
    .home-photo {
        padding-top: .4rem;
        display: block;
        height: auto;
        padding-bottom: .4rem;
        margin-top: 0rem;
    }
    .home-photo .l-con {
        margin-right: 0;
        width: 100%;
    }
    .home-photo .pic1 {
        flex: 1;
        margin-right: .1rem;
    }
    .home-photo .r-con {
        padding-top: 0;
        width: 100%;
        margin-top: .1rem;
    }
    .home-media .content {
        height: auto;
    }
    .home-media .content .flex-1 {
        min-width: 100%;
        max-width: 100%;
    }
    .home-media .pic:last-child {
        width: 100%;
        margin-left: 0;
    }
    .home-media .thumbs {
        width: 100%;
    }
    .home-media .video {
        margin-top: .1rem;
    }
    .home-link .item {
        margin: 0 .2rem;
    }
    .home-notice .button {
        left: auto;
        bottom: auto;
        top: .9rem;
        right: .2rem;
    }
}

.n-banner {
    overflow: hidden;
}

.n-banner img {
    height: 5rem;
}

.wrap {
    background: url(/images/bg3.png) no-repeat center bottom;
    padding-bottom: 1.7rem;
    padding-top: .45rem;
    background-size: 100%;
}

.aside {
    width: 3.2rem;
    background: url(/images/bg4.png)no-repeat left top;
    margin-right: .8rem;
    background-size: 100%;
}

.aside::after {
    content: '';
    position: absolute;
    width: .4rem;
    height: .4rem;
    background-color: #0068B6;
    opacity: .3;
    left: -.2rem;
    top: -.2rem;
}

.aside .title {
    font-size: .32rem;
    font-weight: bold;
    color: #FFF;
    line-height: 1.1rem;
    padding-left: .65rem;
}

.aside ul {
    margin-left: .25rem;
    min-height: 5rem;
    background: url(/images/bg5.png)no-repeat left top;
    padding-top: .4rem;
    background-size: cover;
}

.aside li {
    border-bottom: 1px rgba(0, 0, 0, .05) solid;
    line-height: .7rem;
    padding-left: .4rem;
    position: relative;
}

.aside li:first-child {
    border-top: 1px rgba(0, 0, 0, .05) solid;
}

.aside li.on {
    font-weight: bold;
    background: url(/images/more3.png)no-repeat 90% center;
}

.aside li.on a {
    color: #1D65B8;
}

.aside li.on::before {
    content: '';
    position: absolute;
    left: -.25rem;
    top: 0;
    width: .25rem;
    height: 100%;
    background-color: #E1AC36;
}

.pub-title {
    border-bottom: 1px #eee solid;
		flex-wrap: wrap;
}

.pub-title .title {
    font-size: .28rem;
    line-height: 1.1rem;
}

.pub-title .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-image: linear-gradient(90deg, #0159AB, #419FEF);
    z-index: 9;
}

.crumbs {
    background: url(/images/cru.png)no-repeat left center;
    padding-left: .3rem;
    background-size: .18rem;
    font-size: .16rem;
    color: #666;
}

.crumbs a {
    color: #666;
}

.crumbs span {
    color: #1D65B8;
}

.img-list .item {
    margin-top: .5rem;
    width: 30%;
    margin-right: 5%;
    background-color: #F9F9F9;
}

.img-list .item:nth-of-type(3n) {
    margin-right: 0;
}

.img-list .item .pic {
    width: 100%;
    height: 2.15rem;
    overflow: hidden;
}

.img-list .item .text-con {
    padding: .2rem .3rem;
}

.img-list .item .tit {
    height: .6rem;
}

.img-list .item .date {
    font-family: 'Georgia';
    color: #1766A2;
    font-size: .18rem;
    text-align: right;
    margin-top: .2rem;
}

.img-list .item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0159AB, #419FEF);
}

.page {
    margin-top: .8rem;
    font-size: .14rem;
    color: #666;
}

.page a {
    line-height: .3rem;
    padding: 0 .1rem;
    margin: 0 .05rem;
    border: 1px #D5DADA solid;
    color: #666;
}

.page input {
    width: .5rem;
    height: .3rem;
    border: 1px #D5DADA solid;
    background: none;
    margin: 0 .1rem;
}

.page .home,
.page .prev,
.page .next,
.page .last {
    border-color: #1D65B8;
    color: #1D65B8;
}

.page .on {
    background: linear-gradient(90deg, #0159AB, #409FEF);
    color: #FFF;
}

.text-list .item {
    margin-top: .25rem;
    border: 1px #C3D3EE solid;
    padding: .2rem 1.4rem .2rem .4rem;
    height: 1.2rem;
    z-index: 20;
}

.text-list .item .date {
    font-family: 'Georgia';
    color: #1B70BD;
    font-size: .18rem;
    padding-right: .5rem;
    margin-right: .4rem;
}

.text-list .item .date span {
    font-size: .32rem;
}

.text-list .item .line {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    width: 3px;
    height: .6rem;
    background-color: #1B70BD;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.text-list .item .date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: .9rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-left: 2px dotted #C3D3EE;
    z-index: 1;
}

.text-list .item .date::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    z-index: 2;
    background-color: #C3D3EE;
}

.text-list .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    width: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    background-color: #1766A2;
}

.text-list .item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: .6rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .4rem;
    height: .4rem;
    background: url(/images/more4.png)no-repeat center;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.pic-list .item {
    padding: .3rem;
    background-color: #FFF;
    z-index: 20;
}

.pic-list .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    width: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    background-color: #1766A2;
}

.pic-list .item .pic {
    overflow: hidden;
    width: 3.55rem;
    height: 2.3rem;
    margin-right: .4rem;
}

.pic-list .item .tit {
    font-weight: bold;
    margin-top: .1rem;
}

.pic-list .item .des {
    font-size: .16rem;
    color: #666;
    margin-top: .2rem;
    line-height: 1.8;
    height: .6rem;
}

.pic-list .item .line {
    margin-top: .4rem;
    border-top: 1px dotted rgba(39, 110, 193, .2);
}

.pic-list .item .line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: .4rem;
    height: .4rem;
    background: url(/images/more5.png)no-repeat center;
    background-size: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.pic-list .item .date {
    background: url(/images/date1.svg)no-repeat left center;
    background-size: .18rem;
    padding-left: .3rem;
    color: #1766A2;
    font-family: "Georgia";
    margin-top: .3rem;
}

.wx-dialog{
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	display: none;
	top: 0;
	left: 0;
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.wx-dialog-show{
	display: flex;
}

.wx-img{
	width: 2.7rem;
	height: 2.7rem;
}

#qrid{
	padding: 0.08rem;
	background: #fff;
	border-radius: 0.05rem;
}

.details .info-con {
    margin-top: .4rem;
    z-index: 10;
    padding-bottom: .5rem;
    padding-top: .3rem;
}

.details .info-con::after {
    content: '';
    position: absolute;
    left: .3rem;
    bottom: .2rem;
    right: 0;
    top: 0;
    background-color: #F0F6FE;
    z-index: 1;
}

.details .info-con::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: .8rem;
    background: linear-gradient( #015AAC, #419FEF);
}

.details h1 {
    z-index: 11;
    font-weight: normal;
    font-size: .24rem;
}

.details .info {
    color: #999;
    font-size: .16rem;
    z-index: 11;
    margin-top: .2rem;
		flex-wrap: wrap;
}

.details .info span {
    padding-left: .3rem;
    background-position: left center;
    background-repeat: no-repeat;
    margin-right: .3rem;
}

.details .info .time {
    background-image: url(/images/date1.svg);
    background-size: .19rem;
}

.details .info .edit {
    background-image: url(/images/icon3.svg);
    background-size: .2rem;
}

.details .info .click {
    background-image: url(/images/icon4.svg);
    background-size: .25rem;
}

.details .info .font {
    margin-right: .2rem;
}
.details .info .font span{
	padding: 0;
	margin: 0;
	cursor: pointer;
}
.details .info .font span.on{
	color: #1D65B8;
}

.details .info .font span:nth-child(2) {
    margin: 0 .1rem;
    font-style: normal;
}

.details .info .sns a {
    width: .32rem;
    height: 0.32rem;
    margin-right: .1rem;
}

.details .info .sns a>img {
    width: 100%;
}

.details .info .sns .erwma {
    position: absolute;
    left: 50%;
    top: .34rem;
    width: 1rem;
    height: 1rem;
    padding: .05rem;
    background-color: #FFF;
    display: none;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.details .info .sns .erwma img {
    width: 100%;
}

.details .info .sns a:hover .erwma {
    /* display: block */
}

.details .v_news_content .big{
	font-size: .2rem  !important;
}
.details .v_news_content {
		font-size: .18rem;
    margin-top: .3rem;
    line-height: 2;
}
.details .v_news_content .small{
	font-size: .16rem  !important;
}

.details .v_news_content p {
    margin-bottom: .1rem;
    text-indent: .36rem;
}

.details .v_news_content img {
    max-width: 100%;
    /*margin-top: .3rem;*/
}

.details .prev {
    border-top: 1px #EEEEEE solid;
    margin-top: .5rem;
    padding-top: .3rem;
    padding-left: .2rem;
    font-size: .16rem;
    line-height: 2;
}

.details .prev::after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 4px;
    width: 1.2rem;
    background: linear-gradient(90deg, #0159AB 14%, #419FEF 87%);
}

.details .prev span {
    color: #1D65B8;
}

.about {
    font-size: .16rem;
    line-height: 2;
}

.about .text-con {
    margin-top: .4rem;
    color: #555;
}

.about .text-con .pic {
    float: right;
    width: 3.9rem;
    height: 2.8rem;
    margin-left: .1rem;
    margin-bottom: .1rem;
}

.about .text-con .text {
    text-indent: .32rem;
}

.about .text-con1 {
    margin-top: .4rem;
    background-color: #E5F0FF;
    padding: .4rem;
    text-indent: .32rem;
}

.about .text-con2 {
    background-color: #025BAD;
    color: #FFF;
}

.about .text-con2 .pic {
    width: 4.3rem;
    height: 3.2rem;
}

.about .text-con2 .text {
    padding: .3rem;
    text-indent: .32rem;
}

.about .text-con3 {
    margin-top: .4rem;
    text-indent: .32rem;
}

.about .text-con4 {
    margin-top: .4rem;
    background-color: #E5F0FF;
    padding: .4rem .3rem;
}

.about .text-con4 .pic {
    width: 3.9rem;
    height: 2.8rem;
}

.about .text-con4 .text {
    text-indent: .32rem;
    margin-right: .2rem;
}

.about .text-con4 .text p {
    text-align: right;
    margin-top: .2rem;
}

.jigou .content {
    margin-top: .4rem;
    background: #FFF url(../images/tbg4.png)no-repeat right bottom;
    background-size: 4.3rem;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
}

.jigou .content:nth-child(2) {
    background-image: url(/images/tbg5.png);
    background-size: 3.62rem;
}

.jigou .content:nth-child(3) {
    background-image: url(/images/tbg6.png);
    background-size: 2.28rem;
}

.jigou .content .title {
    width: .92rem;
    background-color: #0E61B0;
    color: #FFF;
    font-size: .26rem;
    font-weight: bold;
    writing-mode: vertical-rl;
}

.jigou .text-con {
    padding-left: .6rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
}

.jigou .text-con .item {
    width: 33.333%;
    background: url(/images/dot.svg)no-repeat left center;
    background-size: .18rem;
    padding-left: .3rem;
    line-height: .9rem;
}

.pub-content {
    min-width: 0;
}

.photo {
    margin-top: .6rem;
}

.photo .view {
    width: 9.2rem;
    height: 5.35rem;
    overflow: hidden;
    margin: 0;
}

.photo .view .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    z-index: 1;
    background: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.photo .view .text {
    font-size: .28rem;
    color: #FFF;
    position: absolute;
    left: 0;
    bottom: .3rem;
    width: 100%;
    padding: 0 .3rem;
    z-index: 10;
}

.photo .preview {
    position: absolute;
    right: 0;
    top: 0;
    height: 5.35rem;
    width: 2rem;
}

.preview .swiper-container {
    width: 100%;
    height: 5.35rem;
}

.preview .swiper-slide {
    height: 1.068rem;
    cursor: pointer;
    padding: .1rem;
    overflow: hidden;
    width: 100%;
    padding-left: .5rem;
}

.preview .arrow-left {
    background: #FFF url(../images/top.png)no-repeat center;
    position: absolute;
    left: .9rem;
    top: -.3rem;
    width: .6rem;
    height: .3rem;
    z-index: 10;
    z-index: 9;
    box-shadow: 0 0 .1rem rgba(0, 86, 123, .4);
    cursor: pointer;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    overflow: hidden;
    background-size: .18rem;
}

.preview .arrow-right {
    background: #FFF url(../images/down1.png)no-repeat center;
    position: absolute;
    left: .9rem;
    bottom: -.3rem;
    width: .6rem;
    height: .3rem;
    z-index: 10;
    z-index: 2;
    box-shadow: 0 0 .1rem rgba(0, 86, 123, .4);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    background-size: .18rem;
}

.preview .active-nav {
    background-color: #105CB6;
}

@media (min-width:1025px) {
    .img-list .item:hover .pic img,
    .pic-list .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .pic-list .item:hover .tit {
        text-decoration: underline;
    }
    .page a:hover {
        background: linear-gradient(90deg, #0159AB, #409FEF);
        color: #FFF;
    }
    .text-list .item:hover {
        border-color: #1766A2;
        color: #FFF;
    }
    .text-list .item:hover::after,
    .pic-list .item:hover::after {
        width: 100%;
    }
    .text-list .item:hover .line {
        background-color: #E1AC36;
    }
    .text-list .item:hover .date {
        color: #FFF;
    }
    .text-list .item:hover::before {
        content: '';
        position: absolute;
        top: 50%;
        right: .6rem;
        transform: translateY(-50%) rotate(180deg);
        -webkit-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        -o-transform: translateY(-50%) rotate(180deg);
        width: .4rem;
        height: .4rem;
        background: url(/images/more4.png)no-repeat center;
    }
    .text-list .item:hover::before {
        transform: translateY(-50%) rotate(180deg);
        -webkit-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        -o-transform: translateY(-50%) rotate(180deg);
        opacity: 1;
    }
    .pic-list .item:hover .tit {
        color: #FFF;
    }
    .pic-list .item:hover .des {
        color: #C8C8C8;
    }
    .pic-list .item:hover .line {
        border-top-color: rgba(255, 255, 255, .2);
    }
    .pic-list .item:hover .line::after {
        background-image: url(/images/more6.png);
        transform: translateY(-50%) rotate(180deg);
        -webkit-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        -o-transform: translateY(-50%) rotate(180deg);
    }
    .pic-list .item:hover .date {
        background-image: url(/images/date2.svg);
        color: #FFF;
    }
    .jigou .text-con .item:hover {
        font-weight: bold;
    }
    .jigou .text-con .item:hover::after {
        content: '';
        position: absolute;
        left: .08rem;
        bottom: .26rem;
        width: 1.34rem;
        height: .1rem;
        background: url(/images/line2.png)no-repeat left top;
        background-size: 100%;
    }
    .preview .arrow-left:hover {
        background-color: #1D65B8;
        background-image: url(/images/top1.png);
    }
    .preview .arrow-right:hover {
        background-color: #1D65B8;
        background-image: url(/images/down2.png);
    }
}

@media (max-width:1199px) {
    .img-list .item .date,
    .page,
    .crumbs,
    .text-list .item .date,
    .pic-list .item .des,
    .details .info {
        font-size: 12px;
    }
    .pub-title .title {
        font-size: 24px;
    }
    .text-list .item .date span,
    .details h1 {
        font-size: 18px;
    }
    .details .v_news_content,
    .details .prev,
    .about {
        font-size: 14px;
    }
    .jigou .content .title {
        font-size: 20px;
    }
		
}

@media (max-width:950px) {
    .page a {
        line-height: .4rem;
    }
    .img-list .item {
        width: 49%;
        margin-right: 2%;
    }
    .img-list .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .img-list .item:nth-child(even) {
        margin-right: 0;
    }
    .img-list .item .pic {
        height: 3rem;
    }
		
		.videoShow .close{
			background-size: 0.3rem;
			height: 0.3rem;
			top:0.35rem;
			right: 0.1rem;
			z-index: 9;
		}
}

@media (max-width:767px) {
    .aside,
    .details .info .sns,
    .page>div,
    .details .info .font,
    .details .info-con::before {
        display: none;
    }
    .img-list .item {
        width: 100%;
        margin-right: 0%;
    }
    .img-list .item .pic {
        height: 3.8rem;
    }
    .img-list .item .tit {
        height: auto;
    }
    .text-list .item {
        padding-right: .4rem;
    }
    .pic-list .item {
        padding: 0;
        margin-top: .3rem;
    }
    .pic-list .item .pic {
        margin-right: 0;
        width: 100%;
        height: 3.8rem;
    }
    .pic-list .item .tit {
        margin-top: .3rem;
    }
    .pic-list .item .des {
        height: auto;
    }
    .details .info-con::after {
        left: 0;
        bottom: 0;
    }
    .about .text-con .pic {
        width: 100%;
        height: auto;
        float: none;
        margin-left: 0;
    }
    .about .text-con2 .pic,
    .about .text-con4 .pic {
        width: 100%;
        height: auto;
    }
    .about .text-con4 .pic {
        order: 1;
    }
    .about .text-con4 .text {
        order: 2;
        margin-right: 0;
        padding: .3rem;
    }
    .about .text-con4 {
        padding: 0;
    }
    .jigou .text-con .item {
        width: 50%;
    }
    .photo .view {
        width: 100%;
        height: auto;
    }
    .photo .preview {
        width: 100%;
        height: 1.1rem;
        position: relative;
        right: auto;
        margin-top: .3rem;
    }
    .preview .swiper-slide {
        width: auto;
        height: 1.1rem;
        overflow: hidden;
        padding: .05rem;
    }
    .preview .arrow-left {
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        -webkit-transform: translateY(-50%) rotate(-90deg);
        -moz-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
        -o-transform: translateY(-50%) rotate(-90deg);
        left: 0;
    }
    .preview .arrow-right {
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        -webkit-transform: translateY(-50%) rotate(-90deg);
        -moz-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
        -o-transform: translateY(-50%) rotate(-90deg);
        right: 0;
        left: auto;
    }
		
		.videoShow{
			width: 100%;
		}
		
		.crumbs{
			margin-top: 0.15rem;
			margin-bottom: 0.15rem;
		}
		
		.left-nav{
			display: block;
		}
}


/* 新增 */


.navbar-wrapper {
    position: absolute;
    right: .45rem;
    top: 0;
    z-index: 12;
    width: .44rem;
    height: 100%;
    padding-top: 2.2rem;
		transition: all .5s;
}
.navbar-wrapper-none{
	animation-duration: .5s;
	opacity: 0;
}

.navbar-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 2.2rem;
    background-color: #DBE4E5;
}

.navbar-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 4.2rem;
    background-color: #DBE4E5;
}
/* .navbar-wrapper.isStuck::before{
	height: 52.08vw;
} */


.navbar-wrapper li {
    font-size: .16rem;
    margin-bottom: .8rem;
}

.navbar-wrapper li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -.8rem;
    width: 1px;
    height: .8rem;
    background-color: #DBE4E5;
}

.navbar-wrapper .dot {
    width: .14rem;
    height: .14rem;
    border-radius: 50%;
    /*
    background: url(/images/dot1.svg)no-repeat center;

    background: #E7AC2A;
*/
    background-size: .07rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 21;
    border: 0.03rem solid #E7AC2A;
    background: #fff;
}

.navbar-wrapper .dot img {
    display: none;
    width: .15rem;
}

.navbar-wrapper .tit {
    display: none;
    writing-mode: vertical-rl;
    line-height: 2;
    letter-spacing: 2px;
}

.navbar-wrapper .active::after {
    bottom: -.9rem;
}

.navbar-wrapper .active .tit {
    display: block;
}

.navbar-wrapper .active .dot {
    width: .32rem;
    height: .32rem;
    background: linear-gradient(141deg, #FFB919 17%, #E7AC2A 84%);
    margin-bottom: .15rem;
}

.navbar-wrapper .active .dot img {
    display: block;
}

.navbar-wrapper .active .dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: linear-gradient(141deg, #FFB919 17%, #E7AC2A 84%);
    width: .38rem;
    height: .38rem;
    opacity: .3;
    z-index: -1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media (max-width:1199px) {
    .navbar-wrapper {
        display: none;
    }
}


.pb_sys_style1 .p_no_d {
    background: linear-gradient(90deg, #0159AB, #409FEF) !important;
    border: 1px #D5DADA solid !important;
}

.pb_sys_common .p_t{color: #666;}
.pb_sys_common .p_fun_d, .pb_sys_common .p_no_d, .pb_sys_common .p_no_o {
    color: #666;
}

.pb_sys_common .p_fun a, .pb_sys_common .p_no a {
    color: #666 !important;
}
.pb_sys_common .p_fun_d, .pb_sys_common .p_no_d, .pb_sys_common .p_no_o, .pb_sys_common .p_fun a, .pb_sys_common .p_no a{border: 1px solid #D5DADA !important;}

.pb_sys_common .p_goto a, .pb_sys_common .p_search a{    color: #666 !important;}

.pb_sys_common{    margin-top: .6rem !important;}

/*.details .body p {
    font-size: .27rem !important;
    text-indent: .32rem !important;
    margin-bottom: .1rem;
    line-height: 2 !important;
    color: #333;
    font-family: "Microsoft Yahei" !important;
}
*/

.details .body p {

      text-indent: .32rem;
    margin-bottom: .1rem;
   
    color: #555;
    font-family: "Microsoft Yahei" !important;
   font-size: .16rem;
   line-height: 2;
}


.details .body p span{    font-size: .16rem !important; color: #333;    font-family: "Microsoft Yahei" !important;}

.nav li:first-child a::before{     background: none;}
.nav li:first-child a::after{     background: none;}

.nav .p_r:nth-child(6) a::before{ background: none;}
.nav .p_r:nth-child(6) a::after{background: none;}

.select-list ul li:nth-child(1){    display: none;}

/* 取消ie下拉框箭头 */
select::-ms-expand {display: none;}