.news-container{
    min-height: 300px;
    margin-top: 1.5em;
    margin-bottom: 4em;
    padding-bottom: 1em;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 16px rgba(0,0,0,.1);
    font-size: 1.25em;
}
.news-tabar {
    padding: 0 1.5em;
}
.tab-wrapper {
    padding: 1.2em 0;
    border-bottom: 1px solid #dcdcdc;
}
.tabar-wrapper>span{
    position: relative;
    display: inline-block;
    padding: .5em 0;
    line-height: 1;
    -webkit-transition: color .5s;
    transition: color .5s;
    cursor: pointer;
    text-align: center;
}
.tabar-wrapper>span:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -1.25em;
    background-color: transparent;
}
.tabar-wrapper>span.active:after {
    background-color: #19a179;
}
.tabar-wrapper>span+span{
    margin-left: 2em;
}
.tabar-wrapper>span.active,
.tabar-wrapper>span:hover {
    color: #19a179;
}
.search-bar{
    position: relative;
    width: 12em;
    height: 2em;
    padding: .2em 4em .2em .7em;
    border: 1px solid #cbcbcb;
    border-radius: 1em;
}
.search-bar .search-input{
    border: none;
    height: 100%;
    font-size: 0.8em;
}
.search-bar .search-btn{ 
    width: 3.5em;
    height: 100%;
    position: absolute;
    top:0;
    right: 0;
    border-radius: 1em;
    cursor: pointer;
    text-align: center;
    line-height: 2.2;
    background: #19a179;
}
.search-bar .search-btn:hover {
    background: #24b98d;
}
.search-bar .search-btn .search-btn-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url('../images/news/search-icon.png') center center no-repeat;
    background-size: 100% 100%;
}

.news-wrapper {
    padding: 0 1.5em;
}
.news-wrapper .list-item{
    padding: 1.5em 0;
    border-bottom: 1px solid #cbcbcb;
}
.news-wrapper .list-item:hover{
    border-color: #31caa8;
}
.news-wrapper .list-item .tips-left{
    position: relative;
    width: 14.15em;
    padding-top: 15%;
    margin-right: 1em;
}
.news-wrapper .list-item .tips-left>img{
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.news-wrapper .list-item .tips-right{
    width: 100%;
    overflow: hidden;
}
.news-wrapper .list-item .p-title{
    margin-bottom: 0.3em;
}
.news-wrapper .list-item .p-time{
    font-size: 0.8em;
    margin-bottom: 1.8em;
    color: #999999;
}
.news-wrapper .list-item .p-text{
    line-height: 1.5;
    font-size: 0.83em;
}
.news-wrapper .list-item:hover .p-title {
    color: #31caa8;
}

.no-list{
    color: #666;
    font-size: 0.67em;
    padding: 4em 0;
    text-align: center;
}

.yk-pagination {
    margin: 2em 2em 0;
    text-align: center;
}
.yk-pagination .pagination-wrap{
    display: inline-block;
}
.yk-pagination .page-item {
    float: left;
}
.yk-pagination .page-item .page-link {
    display: block;
    min-width: 2.5em;
    padding: 0.2em 0.5em;
    margin-left: 10px;
    -webkit-transition: all .5s;
    transition: all .5s;
    border: 1px solid #19a179;
    font-size: .83em;
    color: #19a179;
}
.yk-pagination .page-item.active .page-link,
.yk-pagination .page-item.active:hover .page-link {
    background-color: #19a179;
    color: #fff;
}
.yk-pagination .page-item.disabled .page-link {
    pointer-events: none;
    cursor: default;
}
.yk-pagination .page-item.dotted .page-link {border-color: transparent;}
.yk-pagination .page-item:hover .page-link {background-color: #efefef;}
.yk-pagination .page-item.to-page .page-link {background-color: #efefef;}
.yk-pagination .page-item.to-page:hover .page-link {background-color: #19a179;color: #fff;}
.yk-pagination .page-item .input-page {width: 3em;padding: .2em;font-size: .83em;margin-left: 10px;border: 1px solid #19a179;}
.yk-pagination .page-item .page-count {margin-left: 10px;color: #666;font-size: .83em;}

/* 新闻详情 */
.news-detail-wrapper {
    margin: 1.5em;
    padding: 2em 1.5em;
    border-bottom: 1px solid #dcdcdc;
}
.news-detail-wrapper>h2.detail-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #000;
    text-align: center;
}
.news-detail-wrapper .detail-time {
    font-size: 1.2em;
    color: #999;
    margin: 1em 0 2em;
    text-align: center;
}
.news-detail-wrapper .detail-paragraph {
    font-size: 1.2em;
    line-height: 1.8;
    text-indent: 2em;
}
.news-detail-wrapper .detail-img {
    width: 100%;
    margin: 1em auto;
}
.news-detail-wrapper .detail-img>img {
    width: 100%;
}
.change-page {
    margin: 1.5em;
}
.change-page>div:first-of-type {
    margin-bottom: 1em;
}
.change-page a:hover,
.change-page>div:hover {
    color: #047755;
    font-weight: 600;
}

/* 移动端 */
.phone .main-container.maxWidth {
    padding: 0;
}
.phone .news-container {
    margin-top: 0;
    margin-bottom: 2em;
}
.phone .news-tabar, .phone .news-wrapper {
    padding: 0 15px;
}
.phone .tab-wrapper {
    position: relative;
    padding: 3.5em 0 0.5em;
}
.phone .tabar-wrapper>span+span {
    margin-left: 1em;
}
.phone .search-bar {
    position: absolute;
    left: 0;
    top: 1em;
}
.phone .news-wrapper .list-item {
    padding: 1em 0;
}
.phone .news-wrapper .list-item .tips-left {
    width: 100%;
    padding-top: 45%;
    margin-right: 0;
    margin-bottom: 10px;
}
.phone .news-wrapper .list-item .tips-right {
    display: block;
}
.phone .news-wrapper .list-item .p-time {
    margin-bottom: 0.5em;
}
.phone .yk-pagination {
    display: none;
}
.phone .news-detail-wrapper {
    margin: 0;
    padding: 20px 15px;
}
.phone .news-detail-wrapper>h2.detail-title {
    font-size: 1.5em;
}
.phone .news-detail-wrapper .detail-time {
    font-size: 1em;
    margin: 0.5em 0 1em;
}
.phone .change-page {
    margin: 15px 15px 0;
}
.phone .tabar-wrapper>span:after {
    bottom: -0.52em;
}

.layui-laypage {
	padding: 0.2em 0.5em;
	margin: 0 auto;
	font-size: inherit;
}

.layui-laypage a, .layui-laypage span {
	color: #19a179;
	margin: 0 10px 5px 10px !important;
	-webkit-transition: all .5s;
	font-size: 18px !important;
	border: 1px solid #19a179;
}

.layui-laypage-em {
	background-color: #19a179 !important;
}

.layui-laypage-prev, .layui-laypage-btn, .layui-laypage-next {
	color: #19a179 !important;
	border: 1px solid #19a179 !important;
}

.layui-laypage-count {
	color: #999 !important;
}

.layui-laypage-skip>input {
	border: 1px solid #19a179 !important;
}
