/*
	DESTOON Copyright (C)2008-2099 www.destoon.com
	This is NOT a freeware,Use is subject to license.txt
*/
/* article && quote*/
.top-l {width:40%;float:left;margin-right:10px;}
.top-r {width:59%;float:right;}
.headline h2 {text-align:center;font-size:22px;margin:10px 16px 0 16px;height:48px;line-height:48px;overflow:hidden;}
.subline {padding:0 24px;}
.subline li {height:32px;line-height:32px;overflow:hidden;font-size:14px;}
.subline .f_r {font-size:12px;color:#999999;padding-left:16px;font-style:normal;float:right;}
.keytags {font-size:14px;padding:16px 24px;}
/* catlist */
.childlist {padding:10px;line-height:24px;}
.childlist li {font-size:14px;height:28px;line-height:28px;background:url('li_dot.gif') no-repeat 4px 12px;padding:0 10px 0 12px;overflow:hidden;}

.catlist {padding:24px;}
.catlist li {font-size:16px;height:36px;line-height:36px;background:url('li_dot.gif') no-repeat 6px center;padding:0 16px;overflow:hidden;}
.catlist i {font-style:normal;float:right;font-size:12px;color:#666666;}
.catlist .sp {background:#FFFFFF url('dot.gif') repeat-x 0 center;}

.subtitle {padding:10px 16px;margin:20px 0;line-height:32px;font-size:14px;border:#EEEEEE 1px solid;background:#FAFAFA;overflow:hidden;}
.subtitle li {width:50%;height:32px;overflow:hidden;float:left;}

.cate-list {background:#F6F6F6;overflow:hidden;width:100%;z-index:3;position:relative;}
.cate-box {width:440px;background:#FFFFFF;margin:10px 10px 0 0;float:left;border-radius:10px;}
.category_article .slide img{
    width:505px !important;
}

.news-wrap {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}
.news-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 25px;
    border-left: 4px solid #29395b;
    padding-left: 12px;
}
.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.news-item {
    width: calc(33.333% - 16px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.news-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.news-info {
    padding: 16px;
}
.news-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-info h3 a {
    color: #333;
}
.news-info h3 a:hover {
    color: #29395b;
}
.news-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}
.news-time {
    font-size: 12px;
    color: #999;
}

/* 平板响应式 */
@media (max-width: 992px) {
    .news-item {
        width: calc(50% - 12px);
    }
}
/* 手机响应式 */
@media (max-width: 576px) {
    .news-item {
        width: 100%;
    }
    .news-img {
        height: 160px;
    }
}