﻿@charset "utf-8";
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/*Html5*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
/*Base*/
@font-face {
    font-family: "syht";
    src: url("../fonts/sourcehansanscn-regular.woff2") format("woff2"),
        url("../fonts/sourcehansanscn-regular.woff") format("woff"),
        url("../fonts/sourcehansanscn-regular.ttf") format("truetype"),
        url("../fonts/sourcehansanscn-regular.eot") format("embedded-opentype"),
        url("../fonts/sourcehansanscn-regular.svg") format("svg"),
        url("../fonts/SourceHanSansCN-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

br{
    opacity: 0;
}

html, body{
    font-size: 14px;
    line-height: 22px;
    /*font-family: SYST;*/

}
html {
    color: #000;
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; /*修正手持设备字体变化*/
}
* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    background: transparent; /*修正win8系统IE连接灰色背景*/
    outline:none;
    blr:expression(this.onFocus=this.blur());
}
a:focus,*:focus {
    outline: 0;
}
a:active,
a:hover {
    outline: 0;
}

h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}
img {
    border: 0;
    vertical-align: middle;
    -ms-interpolation-mode:bicubic;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
/*legend*/
button,
input,
select,
textarea {
    font-family: inherit; 
    font-size: 100%; 
    margin: 0;
    outline:none;
}
button,
input {
    line-height: normal;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"], 
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; 
    cursor: pointer; 
}

button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; 
    padding: 0; 
}
input[type="search"] {
    -webkit-appearance: textfield; 
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; 
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input.submit {
    cursor: pointer;
}
input.radio {
    width: 13px;
    height: 13px;
}
input[type="text"],
input[type="number"]{
    -webkit-appearance: none;
}
textarea {
    overflow: auto; 
    vertical-align: top;
    resize: none;
    -webkit-appearance: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
}
tbody{display: block;}
ul,
ol,
li { 
    list-style: none;
}
i, em{
    font-style: normal;
}
/*清除浮动*/
.clear {
    clear: both;
}
.f-cb{
    zoom: 1;
}
.f-cb:after{
    display:block;
    height:0;
    clear:both;
    /*visibility:hidden;*/
    overflow:hidden;
    content:".";
}
.fl {
    float:left;
    display: inline;
}
.fr {
    float:right;
    display: inline;
}
.por{
    position: relative;
}
.poa{
    position: absolute;
}
.pof{
    position: fixed;
}
.poa-f{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.ovh{
    overflow: hidden;
}
.noselect{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.curp{
    cursor: pointer;
}
.z1{
    z-index: 1;
}
.z2{
    z-index: 2;
}
.z3{
    z-index: 3;
}
.dn{
    display: none;
}
.dib{
    display: inline-block;
}
.w-f{
    width: 100%;
}
.h-f{
    height: 100%;
}
.fwn{
    font-weight: normal;
}
.tac{
    text-align: center;
}
.t-f{
    transition: all 0.5s;
}
.t-c{
    transition: color 0.5s;
}
.t-bg{
    transition: background 0.5s;
}
.load-bg{
    background: url(../images/loadings.gif) no-repeat center;
}
.loader{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    border-top: 1px solid rgba(0,0,0, 0.08);
    border-right: 1px solid rgba(0,0,0, 0.08);
    border-bottom: 1px solid rgba(0,0,0, 0.08);
    border-left: 1px solid rgba(0,0,0, 0.5);
    border-radius: 50%;
    animation: spinner 700ms infinite linear;
}
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.animation{
    -moz-transform: translate(0,80px);
    -o-transform: translate(0,80px);
    -webkit-transform: translate(0,80px);
    transform: translate(0,80px);
    opacity: 0;
}

.animation.srcospcur{
    -moz-transform: translate(0,0px);
    -o-transform: translate(0,0px);
    -webkit-transform: translate(0,0px);
    transform: translate(0,0px);
    opacity: 1;
    transition: 1.3s;
    -webkit-transition: 1.3s;
    -moz-transition: 1.3s;
    -ms-transition: 1.3s;
    -o-transition: 1.3s;
}

#pgServer_input,#pgServer_btn{display:none;}


/*newsList*/

.module-1{	background: #F4F7F9 ; margin: 30px 0; position: relative;}
.module-1 .hot-news{overflow: hidden; position: relative;}
.module-1 .hot-news .list{}
.module-1 .hot-news .pic{width: 45%; float: left;}
.module-1 .hot-news .pic img{width: 100%; display: block; background-position: center; background-size: cover;}
.module-1 .hot-news .con{width: 52%; float: right; padding-top: 10px; padding-right: 5px;color:#000;}
.module-1 .hot-news .con .title{font-size: 28px; margin-bottom: 20px;}
.module-1 .hot-news a{display: block;}
.module-1 .hot-news a:hover .title{color: #E40012;}
.module-1 .hot-news .con .time{font-size: 12px; margin-bottom: 30px;}
.module-1 .hot-news .con .describe{    font-size: 18px;}
.module-1 .hot-news .con .more{position:relative; left: 0; left: 0; display: inline-block;     margin-top: 30px;
    font-size: 18px;font-weight: bold;  transition: all 0.3s ease-in-out;}
.module-1 .hot-news .con .more .iconfont{position: relative; left: 0; top: 15px; font-size: 16px;  transition: all 0.3s ease-in-out;}
.module-1 .hot-news a:hover .con .more{color: #E40012; left: 5px;}
.module-1 .hot-news a:hover .con .more .iconfont{left: 3px;}
.module-1 .btn-box{ position: absolute; bottom: 36px; left: 0; width: 100%;}
.module-1 .swiper-button-prev,
.module-1 .swiper-button-next{ background-color: #E40012; margin: 0; width: 36px; height: 36px;}
.module-1 .swiper-button-prev{left: 45%; margin-left: -73px;}
.module-1 .swiper-button-next{left: 45%; margin-left: -36px;}
.module-1 .swiper-button-prev:after{font-size: 22px;padding: 15px 10px;color: #fff;border-top-right-radius: 5px;border-bottom-right-radius: 5px;}
.module-1 .swiper-button-next:after, 
.module-1 .swiper-container-rtl .swiper-button-prev:after{font-size: 22px;padding: 15px 10px;color: #fff;border-top-left-radius: 5px;border-bottom-left-radius: 5px;}
.module-1 .swiper-pagination-bullets{display: none;}

.module-2{padding: 20px 0 30px;}
.module-2 .list-box{}
.module-2 .list{border-bottom: 1px solid #e1e1e1; padding: 30px 0; overflow: hidden;}
.module-2 .list .left-box{width: 20%;float: left; }
.module-2 .list .left-box .time{font-size:16px;margin-bottom: 20px;}
.module-2 .list .left-box .time::after{content: ""; display: block; width: 20px; height: 2px; background-color: #E40012; }
.module-2 .list .left-box .classify{display: block;font-size: 18px;}
.module-2 .list .left-box .classify:hover{color: #E40012;}
.module-2 .list .right-box{width: 80%; float: right; display: block;}
.module-2 .list .right-box .title{color:#000;font-size: 28px; margin-bottom: .8em; line-height: 1.5em; transition: all 0.3s ease-in-out;}
.module-2 .list .right-box .describe{font-size:18px;color: #888; transition: all 0.3s ease-in-out;}
.module-2 .list .right-box:hover .title{color: #E40012;}
.module-2 .list .right-box:hover .describe{color: #000;}
.module-2 .list .right-box .pic{float: right; width: 270px; margin-left: 20px;}
.module-2 .list .right-box .pic img{width: 100%; display: block; background-size: cover; background-position: center;}
.mobile{display: none !important;}

@media screen and (max-width: 768px) {
    .module-1{	background: #F4F7F9 ; margin: 50px 0 0; position: relative;}
	.module-1 .hot-news{overflow: hidden; position: relative; padding-bottom: 25px;}
	.module-1 .hot-news .list{}
	.module-1 .hot-news .pic{width: 100%; float: none;}
	.module-1 .hot-news .pic img{width: 100%; display: block; background-position: center; background-size: cover;}
	.module-1 .hot-news .con{width: 100%; float: none; padding:10px 20px;}
	.module-1 .hot-news .con .title{font-size: .7rem; font-weight: bold; color: #E40012; line-height: 1.6; margin-bottom: .1rem;overflow:hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient: vertical;}
	.module-1 .hot-news a{display: block;}
	.module-1 .hot-news a:hover .title{color: #E40012;}
	.module-1 .hot-news .con .time{font-size: 12px; margin-bottom: 0;}
	.module-1 .hot-news .con .describe{ overflow:hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient: vertical; display: none;}
	.module-1 .hot-news .con .more{position:relative; left: 0; left: 0; display: inline-block; margin-top: .2rem; font-weight: bold;  transition: all 0.3s ease-in-out; display: none;}
	.module-1 .hot-news .con .more .iconfont{position: relative; left: 0; top: .15em; font-size: 1.5em;  transition: all 0.3s ease-in-out;}
	.module-1 .hot-news a:hover .con .more{color: #E40012; left: .3em;}
	.module-1 .hot-news a:hover .con .more .iconfont{left: .2em;}
	.module-1 .btn-box{ position: absolute; z-index: 8; top: .6rem; left: 53.2%; display: none;}
	.module-1 .swiper-pagination-bullets{display: block;}
	.module-1 .swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 3px;
		background-color: #fff;
		width: 6px;
		height: 6px;
		opacity: 1;
	}
	
	.module-1 .swiper-pagination-bullets .swiper-pagination-bullet-active {
		background-color: #E40012;
	}
	
	.module-2{padding: .4rem 20px .7rem;}
	.module-2 .list-box{ margin-bottom: 10px;}
	.module-2 .list{border-bottom: 1px solid #f1f1f1; padding: .3rem 0; overflow: hidden;}
	.module-2 .list .left-box{width: 20%; float: left; display: none;}
	.module-2 .list .left-box .time{margin-bottom: .15rem;}
	.module-2 .list .left-box .time::after{content: ""; display: block; width: 20px; height: 2px; background-color: #E40012; }
	.module-2 .list .left-box .classify{display: block; font-size: 13px; color: #888;}
	.module-2 .list .left-box .classify:hover{color: #E40012;}
	.module-2 .list .right-box{width: 100%; float: none; display: block;}
	.module-2 .list .right-box .title{font-size: .6rem; margin-bottom: .15rem; line-height: 1.5em; transition: all 0.3s ease-in-out;overflow:hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient: vertical;}
	.module-2 .list .right-box .describe{color: #888; transition: all 0.3s ease-in-out; overflow:hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:2; -webkit-box-orient: vertical; display: none;}
	.module-2 .list .right-box .time{font-size: .2rem; color: #888;}
	.module-2 .list .right-box:hover .title{color: #E40012;}
	.module-2 .list .right-box:hover .describe{color: #000;}
	.module-2 .list .right-box .pic{float: right; width: 4.5rem; margin-left: .3rem;}
	.module-2 .list .right-box .pic img{width: 100%; display: block; background-size: cover; background-position: center;}
	
}

@media screen and (max-width: 720px) {
	.pc{display: none !important;}
	.mobile{display: block !important;}
	.mobile-wrap{
		margin-top: 0px;
		height: auto;
		overflow-x: hidden;
		overflow-y: hidden;
		padding-bottom: 50px;
	}
	.mobile-wrap.open{
		overflow: hidden;
	}
}
/*newsList end*/