/*新闻列表*/
.news-list {
    margin:2% 0;
}
.news-list ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2%;
}

.news-list ul li {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 49%;
    background: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 2%;
    padding:2%;
}
.news-list ul li a {
    display: block;
    width: 100%;
}
.news-list ul li .pic {
    float: left;
    width: 40%;
    height: 0;
    padding-top: 28%;
    overflow: hidden;
    position: relative;
}
.news-list ul li .pic .news-pic {
	position: absolute;
    top: 0%;
    left: 0%;
	width:100%;
	height:100%;
}
.news-list ul li .pic .news-pic img {
    display: block;
    width: 100%;
	height:100%;
	border-radius: 4px;
    object-fit: cover;
    transition: all 0.6s ease;
}
.news-list ul li .pic .news-pic:after {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transition: all 0.3s;
}

.news-list ul li .item {
    float: right;
    width: 60%;
    padding:0 5%;
}
.news-list ul li .item h3 {
    width: 100%;
    height: 70px;
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    font-weight: bold;
}
.news-list ul li:hover .item h3{
    color: #0aaf58;
}
.news-list ul li .item p {
    width:100%;
    height: 90px;
    margin: 1% 0 1%;
    font-size: 14px;
    color: #999;
    line-height:1.8;
    overflow: hidden;
}

.news-list ul li .item .more {
	border-top: 1px solid #eee;
    border-radius: 0 0 5px 5px;
    padding: 2% 2%;
    line-height: 30px;
    transition: 0.3s;
}
.news-list ul li .item .more time {
	color:#999;
	font-family: "Futura-Light";
}
.news-list ul li .item .more span {
	float: right;
    display: block;
    font-size: 14px;
    color: #999;
    font-family: "Futura-Light";
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.news-list ul li .item .more span i {
    padding: 0 0 0 10px;
    font-family:"宋体";
    font-style: normal;
}



/*特效*/
.news-list ul li:hover {
    *background: #0aaf58;
}
.news-list ul li:hover .pic .link {
    transform: translate(-50%,-50%);
    opacity: 1;
    filter: alpha(opacity=100);
}
.news-list ul li:hover .pic img {
    opacity: 1;
    filter: alpha(opacity=80);
    transform: scale(1.01);
}
.news-list ul li:hover .item .more time {
}
.news-list ul li:hover .item .more {

}
.news-list ul li:hover .item .more span {
}
.news-list ul li:hover .item p {
}
@media screen and (max-width:1024px){
.news-list {
}
.news-list ul {
}
.news-list ul li {
    float: left;
    width: 98%;
    margin:5% 1%;
}

.news-list ul li .pic {
    width: 100%;
    padding-top: 60%;
}
.news-list ul li .pic .news-pic {
}

.news-list ul li .pic .link {
	display:none;
}
.news-list ul li .pic img {
}

.news-list ul li .item {
    width: 100%;
    padding: 8% 5% 5%;
}
.news-list ul li .item h3 {
    font-size: 18px;
	color:#074425;
}
.news-list ul li .item p {
    width:100%;
    height: 95px;
    line-height:1.6;
    font-size: 14px;
    margin: 3% 0 10%;
}
}
/*新闻列表*/


/*新闻详情页*/
.news-artilce {
    padding:2% 0;
}
.news-box {
    width:70%;
    padding:4% 8%;
    background:#fff;
}
.news-title{
    text-align: center;
    padding-bottom:3%;
    border-bottom: 1px solid #e5e5e5;
}
.news-title h1 {
    line-height: 40px;
    font-size: 28px;
    color: #231815;
    font-weight: 600;
    margin-bottom: 1%;
    overflow: hidden;
}
.news-title span {
    display:inline-block;
    padding:0 20px;
}
.news-content {
    padding: 2.5% 0;
    max-width:1056px;
    margin: 0 auto;
    line-height: 30px;
    font-size: 14px;
    color: #666;
    overflow: hidden;
}
.news-content>p {
    padding: 0 0 1% 0;
}
.news-content span {display:inline;}
.news-content img {
    max-width:100% !important;
    height:auto !important;
}
.goback {
    margin: 2% 0 0 0;
}
.goback a {
    display: block;
    position: relative;
	max-width: 160px;
    line-height: 50px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 38px;
	font-size:14px;
    color: #999;
    text-align: center;
    overflow: hidden;
}
.goback a:hover {
    color: #fff;
}
.goback a:before {
    position: absolute;
    content: '';
    left: -5px;
    right: -5px;
    top: 0;
	z-index:-1;
    height: 100%;
    background: #0066cb;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform-origin: right center;
}
.goback a:hover:before{
	transform-origin: left center;
	transform: scaleX(1);-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
}
.goback a span {
	padding-left:10px;
    font-family: 'å®‹ä½“';
}

/*上下篇*/
.pre-next {
    margin:5% 0 0 0;
    padding: 2% 0;
    border-top: 1px solid #e5e5e5;
}
.pre-next a {
    display: block;
    padding:5px 0px ;
    font-size: 14px;
    color:#666;
}
.pre-next a:hover {
    color: #0066cb;
}


/*TAG标签*/
.tag {}
.tag span {}
.tag a {
    display: inline-block;
    padding: 0px 20px;
    border-radius: 50px;
    color: #0066cb;
    border: 1px solid #0066cb;
}
.tag a:hover {
    color: #fff;
    background: #0066cb;
}
/*TAG标签 end*/


/*推荐新闻*/
.hot-news-list {
    width:24%;
    padding:10px;
    background: #fff;
}
.hot-news-list h2 {
    font-size: 20px;
    color: #555;
    line-height: 27px;
    padding: 5%;
}
.hot-news-list ul {
}
.hot-news-list ul li {
    float: left;
    width: 98%;
    margin: 1%;
}
.hot-news-list ul li .pic {
    width: 100%;
    height: 0;
    padding-top: 69%;
    overflow: hidden;
    position: relative;
}
.hot-news-list ul li .pic .news-pic {
	position: absolute;
    top: 0%;
    left: 0%;
	width:100%;
	height:100%;
}
.hot-news-list ul li .pic .link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,0);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.6s ease;
}
.hot-news-list ul li .pic .link .tit {
    color: #fff;
    font-size: 40px;
    line-height: 30px;
	font-family:"å®‹ä½“";
}
.hot-news-list ul li .pic img {
    width: 100%;
    display: block;
    transition: all 0.6s ease;
}
.hot-news-list ul li .item {
    padding: 8% 5% 5%;
    background: #fff;
}
.hot-news-list ul li .item h3 {
    width:100%;
    font-size: 20px;
    color: #555555;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.hot-news-list ul li .item p {
    width:100%;
    height: 95px;
    line-height:26px;
    color: #999999;
    font-size: 14px;
    margin: 3% 0 10%;
    overflow: hidden;
}
.hot-news-list ul li .item .more {
	border-top: 1px solid #eee;
    border-radius: 0 0 5px 5px;
    padding: 4% 2%;
    line-height: 30px;
    transition: 0.3s;
}
.hot-news-list ul li .item .more time {
	color:#999;
}
.hot-news-list ul li .item .more span {
	float: right;
    display: block;
    color: #0066cb;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.hot-news-list ul li .item .more span i {
    padding: 0 0 0 10px;
    font-family:"å®‹ä½“";
    font-style: normal;
}
/*ç‰¹æ•ˆ*/
.hot-news-list ul li:hover .pic .link {
    transform: translate(-50%,-50%);
    opacity: 1;
    filter: alpha(opacity=100);
}
.hot-news-list ul li:hover .pic img {
    opacity: 1;
    filter: alpha(opacity=80);
    transform: scale(1.1);
}
.hot-news-list ul li:hover .item span {
    color: #0066cb;
}
.hot-news-list ul li .item span i {
    padding: 0 0 0 10px;
    font-family:"å®‹ä½“";
    font-style: normal;
}
.hot-news-list ul li .item span::after {
    content: '';
    width: 100%;
    height: 0%;
    background:#fff;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
    transition: all 0.6s ease;
}
.hot-news-list ul li:hover .item span::after {
    height:100%;
}
/*è‡ªé€‚åº”æ ·å¼*/
@media screen and (max-width:1024px){
.news-artilce {
    padding:2% 0;
}
.news-box {
    width:100%;
    padding:4% 4%;
    background:#fff;
}
.news-title{
    text-align: center;
    padding-bottom:3%;
    border-bottom: 1px solid #e5e5e5;
}
.news-title h1 {
    line-height: 30px;
    font-size: 18px;
    color: #231815;
    font-weight: 1231815;
    margin: 4% 1%;
    overflow: hidden;
}
.news-title span {
    display:inline-block;
    padding:0 0px;
}
.news-content {
    padding: 10% 0;
    line-height: 1.8;
    overflow: hidden;
}
.news-content>p {
    padding: 0 0 1% 0;
}


.news-content span {display:inline;}
.news-content img {
    max-width:100% !important;
    height:auto !important;
}
.goback {
    margin: 2% 0 0 0;
}
.goback a {
	max-width: 120px;
    line-height: 40px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 38px;
	font-size:12px;
    color: #999;
    text-align: center;
    overflow: hidden;
}
.goback a:hover {
    color: #fff;
    background: #0066cb;
}
/*æ–°é—»è¯¦æƒ…é¡µ-æŽ¨èæ–°é—»*/
.hot-news-list {
    width:100%;
    padding:10px;
	margin-top:5%;
    background: #fff;
}
.hot-news-list h2 {
    font-size: 20px;
    color: #555;
    line-height: 27px;
    padding: 5%;
}
.hot-news-list {
}
.hot-news-list ul {
}
.hot-news-list ul li {
    float: left;
    width: 98%;
    margin:5% 1%;
}
.hot-news-list ul li .pic {
}
.hot-news-list ul li .pic .news-pic {
}
.hot-news-list ul li .pic .link {
	display:none;
}
.hot-news-list ul li .pic img {
}
.hot-news-list ul li .item {
    padding: 8% 5% 5%;
    background: #fff;
}
.hot-news-list ul li .item h3 {
    font-size: 18px;
	color:#231815;
}
.hot-news-list ul li .item p {
    width:100%;
    height: 95px;
    line-height:1.6;
    font-size: 14px;
    margin: 3% 0 10%;
}
}

/*自适应样式 end*/