/* article.all.css - 自动生成，勿手改；源清单见 build_assets.php */

/* ===== template/pc/css/common.css ===== */
@charset "utf-8";
/*全局样式*/
body{
    overflow-y: scroll;
    scrollbar-gutter: stable;
    background-color: #F7F7F7;
    /*background-color: #fff;
    background-image: url("../images/nian.gif");*/
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}
body,p,b,form,input,label,h1,h2,h3,h4,div,ul,li,dl,dt,dd,ol,button{margin:0;padding:0;}
body{font: 12px/26px Arial,Hiragino Sans GB,STHeiti,Helvetica Neue,Helvetica,Microsoft Yahei,WenQuanYi Micro Hei,sans-serif;color:#333;height:101%;word-break: break-word;}
ul,ol,li{list-style:none;}
em, cite{font-style:normal;}
img{border:none;vertical-align:top;}
a{text-decoration:none;color:#333;outline: none;}
a:hover{color:#f05a14;}
input{vertical-align:middle;}
.jiange{ padding: 0 30px;}
input[type=checkbox]{ margin-left: 10px; margin-right: 2px;}


.mt10{margin-top:10px;}
.mt20{margin-top:20px;}
.ml10{margin-left:10px;}
.mb10{margin-bottom: 10px;}
/* 加节日背景需要把pd10=0 */
.pd10{ padding: 10px;} 
.pd20{ padding: 20px;}
.pt10{ padding: 10px;}
.pl10{ padding-left: 10px;}

/* 直接子元素全部左浮动 */
.yui-c-box>div{ float: left;}

/* 定义背景 */
.color{color:#EE3131}
.bg{ background-color:darkgoldenrod}
.bg-blue{ background-color: blue;}
.bg-red{ background-color: red;}
.bg-white{ background-color: white;}
/* 浮动定义 */
.yui-left{ float: left;}
.yui-right{ float: right;}
.yui-clear{ clear: both;}

/* 文本定义 */
.yui-text-right{ text-align: right;}

.yui-xian{ border-bottom: 1px #ebebeb solid; height: 2px;}

/********************* 公共样式写在上面 *******************/

/* 头部 */
/* 加节日背景需要把左右width=1220 左右10px */
.yui-1200{ 
    width: 1200px; 
    margin:0 auto; 
    box-sizing: border-box; /* 确保padding不影响总宽度 */
    /* padding: 0 10px;  background-color: white;*/ 
}

.yui-top{ 
    height: 36px; 
    background: #fff;
    line-height: 36px; 
    border-bottom: 1px solid #F5F5F5;
    box-shadow: none;
    box-sizing: border-box; /* 保证与padding计算一致性 */
}
.yui-top-left{ 
    width: 600px; 
    height: 36px; /* 明确高度,确保垂直居中一致 */
    display: flex;
    align-items: center;
    padding-left: 5px;
    box-sizing: border-box; /* 保证padding-left不影响宽度 */
}
.yui-top-left a {
    margin-right: 15px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    line-height: 1; /* 使用无单位值,让flex居中控制垂直位置 */
    height: 36px;
    display: inline-flex; /* 改为flex,更好地控制对齐 */
    align-items: center; /* 内部文本垂直居中 */
}
.yui-top-left a:hover {
    color: #EE3131;
}
.yui-top-right { 
    width: 580px; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 36px;
    box-sizing: border-box; /* 保证宽度计算一致 */
}
.yui-top-right a,
.yui-top-right .yui-top-dropdown {
    margin-left: 0;
    display: inline-block;
}
.yui-top-right a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    padding: 0 15px;
    line-height: 1; /* 使用无单位值,让flex居中控制垂直位置 */
    display: inline-flex; /* 改为flex,更好地控制对齐 */
    align-items: center; /* 内部文本垂直居中 */
    height: 36px;
}
.yui-top-right a:hover {
    background-color: rgba(255,255,255,0.8);
    color: #EE3131;
    text-shadow: none;
}
.yui-top-right span {
    font-size: 13px;
    color: #333;
    line-height: 1; /* 使用无单位值,让flex居中控制垂直位置 */
    display: inline-flex; /* 改为flex,更好地控制对齐 */
    align-items: center; /* 内部文本垂直居中 */
    height: 36px;
}

/* 顶部下拉菜单 */
.yui-top-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.yui-top-dropdown-btn {
    font-size: 13px;
    color: #333;
    cursor: pointer;
    padding: 0 15px;
    position: relative;
    height: 36px;
    display: inline-flex; /* 改为flex,更好地控制对齐 */
    align-items: center; /* 内部文本垂直居中 */
    line-height: 1; /* 使用无单位值 */
}

.yui-top-dropdown-btn:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid #666;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;

}

.yui-top-dropdown:hover .yui-top-dropdown-btn {
    background-color: rgba(255,255,255,0.8);
    color: #EE3131;
    text-shadow: none;
}

.yui-top-dropdown:hover .yui-top-dropdown-btn:after {
    transform: rotate(180deg);
    border-top-color: #EE3131;
}

.yui-top-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    min-width: 100px;
    max-width: 100px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.yui-top-right .yui-top-dropdown-menu {
    left: auto;
    right: 0;
    transform: none;
}

.yui-top-dropdown:hover .yui-top-dropdown-menu {
    display: block;
}

.yui-top-dropdown-menu li {
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid #f5f5f5;
}

.yui-top-dropdown-menu li:last-child {
    border-bottom: none;
}

.yui-top-dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 15px;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    text-align: center;
    text-decoration: none !important;
}

.yui-top-dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: #EE3131;
    text-decoration: none !important;
}

/* 页面切换导航 */
.page-switch-nav {
    background: transparent;
    border-bottom: 2px solid #EE3131;
    padding: 10px 0;
    margin-bottom: 10px;
}
.page-switch-nav .yui-1200 {
    display: flex;
    align-items: center;
}
.page-switch-nav a {
    padding: 5px 20px;
    margin-right: 15px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-radius: 3px;

}
.page-switch-nav a:hover,
.page-switch-nav a.active {
    background: #EE3131;
    color: #fff;
    box-shadow: 0 2px 8px rgba(238, 49, 49, 0.2);
    transform: translateY(-1px);
}


/* 主区域 */ 
/* 加节日背景需要把左右pd=0 */
.yui-content{ padding: 0px; overflow: hidden;} 

.yui-content-bg{ background: url("../images/bg_reg.jpg") no-repeat;} 

/* 面包屑 */

.head_fenleilink{ height:25px; line-height:25px; margin:0px auto; margin-top:10px; margin-bottom:10px; font-size:13px;  color:#999999; position:relative;}
.head_fenleilink_nr{width:550px; height:25px; position:absolute; left:20px;}
.head_fenleilink_nr a{ color:#3366cc}
.head_fenleilink_ico{width:15px; height:16px; position:absolute; background:url(../images/headlink.gif) no-repeat; top:4px;}

/* logo row */
.yui-header{ 

    background: white;
    overflow: hidden;

}

/* 面包屑导航样式 - 扁平化设计 */
.breadcrumb-container {
    margin: 5px 0;
    padding: 10px;
    border: none;
    background-color: #fff;
 
    width: 100%;
    box-sizing: border-box;

}

.breadcrumb {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;

}

.breadcrumb a:hover {
    color: #EE3131;
    text-decoration: none;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: #EE3131;
}

.yui-logo{ width: 260px; height: 86px;}
.yui-logo img { width: 260px; height: 86px; margin-top: 0;}
.yui-cimg{ margin-left: 10px; width: 203px; height: 79px; overflow: hidden; background:url(../images/ctip.png) 10px 5px no-repeat; margin-top: 5px;}
.yui-title{ margin-left: 30px; line-height: 60px; font-size: 22px;  border-left: 1px solid #f2f2f2; padding-left: 30px; margin-top: 20px;}
.yui-fh-index{ line-height: 90px; margin-right: 30px; font-size: 16px;}
/* .yui-bottom-boder{ border-bottom: 1px solid #d6d6d6;} */
/* form-seleft */
.yui-form{
    height: 80px;
    margin-left: 20px;
    width: 520px;
    position: relative;
}
.yui-select{
    position: relative;
    width: 490px;
    height: 40px;
    margin-top: 20px;
    border: 2px solid #3092d5;
    border-radius: 3px;
    display: flex;
    align-items: center;
}
.mod_select{
    position: relative;
    width: 80px;
    height: 40px;
    border-right: 1px solid #f2f2f2;
    background: #fff;
    flex-shrink: 0;
    z-index: 1050;
}
.mod_select .select_box{
    position: relative;
    width: 80px;
    height: 40px;
    cursor: pointer;
}
.mod_select .select_box .select_txt{
    display: flex;
    width: 80px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    justify-content: flex-start;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}
.mod_select .select_box .select_txt:after{
    content:'';
    position:absolute;
    right:8px;
    top:50%;
    margin-top:-2px;
    width:0;
    height:0;
    border-style:solid;
    border-width:5px 5px 0 5px;
    border-color:#999 transparent transparent transparent;

}
.mod_select .select_box:hover .select_txt:after{
    transform:rotate(180deg);
}
.mod_select .select_box:hover .option,
.mod_select .select_box:focus .option,
.mod_select .select_box:active .option{
    display: block !important;
}
.mod_select .select_box .option{
    display: none;
    position: absolute;
    top: 40px;
    left: -2px;
    width: 80px;
    background-color: #fff;
    border: 2px solid #EE3131;
    border-top: none;
    z-index: 1050;
}
.mod_select .select_box .option li{
    padding: 0;
    font-size: 14px;
    line-height: 36px;
    cursor: pointer;
    color: #666;
    text-align: center;
}
.mod_select .select_box .option li:hover{
    background-color: #f5f5f5;
    color: #EE3131;
}
.yui-select .import{
    width: 306px;
    height: 40px;
    border: none;
    outline: none;
    font-size: 14px;
    background: #fff;
    padding: 0 10px;
}
.yui-select .btn-search{
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 40px;
    color: #fff;
    background-color: #3092d5;
    border: 0;
    font-size: 16px;
    cursor: pointer;

}
.yui-select .btn-search:hover{
    background-color: #2980b9;
}
.yui-select .btn-search:disabled{
    background-color: #6c757d !important;
    cursor: not-allowed !important;
}
/* 热门搜索词 */
.yui-select-bottom-text{line-height: 30px;}
.yui-select-bottom-text .hot-label{
    color: #999;
    font-size: 12px;
}
.yui-select-bottom-text .hot-keyword{
    color: #999;
    font-size: 12px;
    text-decoration: none;
    margin: 0 8px;
}
.yui-select-bottom-text .hot-keyword:hover{
    color: #ff6600;
}

/* 发布按钮 */
.yui-fabu{ width: 160px; height: 80px; float: right; margin-right: 20px;}
.yui-fabu button{ 
    background-color: #ff5722; 
    border: none; 
    width: 160px; 
    height: 43px; 
    margin-top: 20px; 
    color: #FFF; 
    font-size: 14px;
    border-radius: 3px;
}
.yui-fabu button:hover{
    background-color: #ff7043;
}
.yui-fabu button a{ 
    color: #FFF;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 43px;
    text-decoration: none;
}

/* 新的发布按钮样式 - 修复双重跳转问题 */
.yui-fabu .fabu-btn {
    background-color: #ff5722; 
    border: none; 
    width: 160px; 
    height: 43px; 
    margin-top: 20px; 
    color: #FFF; 
    font-size: 14px;
    border-radius: 3px;
    display: block;
    line-height: 43px;
    text-align: center;
    text-decoration: none;

}

.yui-fabu .fabu-btn:hover {
    background-color: #ff7043;
    color: #FFF;
}

/* 发布按钮链接悬停时保持白色文字 - 覆盖全局a:hover样式 */
.yui-fabu button a:hover,
.yui-fabu .fabu-btn:hover {
    color: #fff !important;
    text-decoration: none !important;
}

/* 主导航 */
.yui-nav{height:45px;line-height:45px;background-color:#3092d5;border-radius:2px; margin-top: 10px;}
.yui-nav ul li{float:left;line-height:45px;height:45px;position:relative;}
.yui-nav ul li a{display:block;height:45px;line-height:45px;text-align:center;color:#fff;text-decoration:none;font-size:16px;padding:0 15px;}
.yui-nav ul li dl{position:absolute;left:0;top:45px;z-index: 999; width:139px;background-color:#fff;display:none;color:#666;box-shadow:0 3px 8px #666;border-radius:0 0 4px 4px;overflow:hidden;}
.yui-nav ul li dl dd{height:40px;}
.yui-nav ul li dl dd a{display:block;height:40px;line-height:40px;text-align:center;color:#666;border-bottom:1px solid #f2f2f2;}
.yui-nav ul li dl dd a:hover{background:#f2f2f2;color:#666;}
.yui-nav ul li:hover{background:#247BB5;}
.yui-nav ul li:hover > a{color:#fff !important;}
.yui-nav .nav-cur{background:#247BB5;}
.yui-nav .nav-cur > a{color:#fff;}

/* 导航条下广告条 */
.mo-box{ margin-top: 10px;}
.mo-box a{ margin-bottom: 6px; display: block;}
.mo-box img{ width: 1200px;}

/* 首页第一屏 */

/* h3 板块标题 */
.yui-h-title { 
    padding: 10px;
    margin-bottom: 0;
    border-bottom: 1px solid #f5f5f5;
    line-height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.yui-h-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #EE3131;

}
.yui-h-title:hover:after {
    width: 80px;
}
.yui-h-title h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
    position: relative;
    padding-left: 10px;
}
.yui-h-title h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: #EE3131;
    border-radius: 2px;
}
.yui-h-title span { 
    font-size: 12px;
}
.yui-h-title span a { 
    color: #999;

    padding: 4px 8px;
    border-radius: 3px;
}
.yui-h-title span a:hover { 
    color: #EE3131;
    background: #fff5f5;
}
.yui-small-list ul{ display: block;  margin-top: 10px;}
.yui-small-list ul li{ line-height: 30px; margin-left: 5px;overflow: hidden; height: 30px; text-overflow: ellipsis; /* 添加省略号 */}


.yui-small-list ul li a{ font-size: 14px; color: #266392;}
/* h3 板块标题样式二 */
.yui-h-title2{/* border-bottom: 1px solid #EE3131; */height: 35px; line-height: 35px;/* padding-left: 5px; */}
/* .yui-h-title2 ul li{ float: left; height: 33px; padding: 0 10px; font-size: 16px; border: 1px solid #EE3131; border-bottom: 2px solid #fff;color: #EE3131; margin-right: 5px;} */
.yui-h-title2 ul li{ float: left; height: 33px; /* padding: 0 10px; */font-size: 16px; /* border: 1px solid #EE3131; border-bottom: 2px solid #fff;color: #EE3131; */ margin-right: 5px; font-weight: 700;}

/* 发布条例与提示 */
.infoquote { margin: 10px 0px;  padding:8px 13px; background: rgb(248, 245, 218); border: 1px solid rgb(255, 198, 134) ; overflow: hidden; font-size: 14px;line-height: 25px; color: #888;}
.infoquote p{color: #EE3131;}
.infoquote a{ color: blue;}
.fabu_tiaoli { height: 60px;font-size: 13px; line-height: 20px; padding-left: 15px;padding-top: 10px; padding-bottom: 10px;color: rgb(0, 0, 0);margin: 10px 30px; border-width: 1px; border-style: solid;  border-color: rgb(255, 198, 134);border-image: initial; background: rgb(248, 245, 218);}
.notice{ height: auto!important; overflow: hidden;border: 1px solid rgb(255, 198, 134) ;background: rgb(248, 245, 218); padding: 10px; color: #333;}



.aboutMain{text-align:left;overflow:hidden;}
.aboutMainl{float:left;width:190px;height:auto;background-color:#FFF;padding:0;}
.aboutMainl ul li{float:left;width:190px;height:50px;line-height:50px;text-align:center;border-bottom:1px #EEE solid;font-size:16px;}
.aboutMainr{float:right;width:968px;height:auto;background-color:#FFF;padding:0 15px 15px;}
.aboutMainrt{float:left;width:900px;height:50px;line-height:50px;border-bottom:1px #EEE solid;font-weight:700;font-size: 16px; color: #EE3131;display: inline;}
.aboutMainrc{min-height:500px;overflow:hidden;float:left;height:auto;line-height:30px;padding-top:10px;color:#333;}
.aboutMainrc p{font-size:14px;color:#333;}
.aboutMainl ul .aboutOver{font-weight:700;border-top:1px #EEE solid;border-bottom:1px #EEE solid;font-size:16px;}
.aboutMainl ul .aboutOver a{color:#EE3131;}


.yui-dy{  background: white; border-radius: 5px; line-height: 30px; overflow: hidden;font-size:15px; }
.yui-dy h1{font-size: 20px; line-height: 35px; text-align: center; margin-bottom: 20px; margin-top: 20px;}
.yui-dy-qt{ text-align: center; border-bottom: 1px #f2f2f2 solid; height: 30px; padding-bottom: 10px; margin-bottom: 10px;}
.yui-dy-qt span{ margin-right: 30px; font-size: 14px; color: #888;}
.yui-dy-next{ color: #888; height: 50px; margin-top: 30px;}
.yui-dy-next a{color: #266392;}

/* footer 美化 */
.yui-footer {
    /*background-color: #f7f7f7;*/
    margin-top: 10px;
}

.yui-footer .yui-1200 {
    border-top: 2px solid #EE3131;
}

.yui-footer .footer-content {
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.yui-footer .footer-nav {
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.yui-footer p {
    text-align: center; 
    line-height: 20px;
    margin-bottom: 6px;
    font-size: 12px;
    color: #666;
    text-shadow: none;
}

.yui-footer .footer-nav a {
    margin: 0 15px;
    color: #555;
    font-size: 13px;
    position: relative;
    font-weight: 500;
    padding: 3px 5px;
    border-radius: 3px;

}

.yui-footer .footer-nav a:hover {
    color: #EE3131;
    background-color: transparent;
    text-decoration: none;
}

.yui-footer .footer-nav a:not(:last-child):after {
    content: '|';
    position: absolute;
    right: -15px;
    color: #ddd;
}

.yui-footer .footer-disclaimer {
    line-height: 18px;
    color: #999;
    margin-bottom: 8px;
}

.yui-footer .footer-copyright {
    margin-top: 8px;
    color: #999;
    line-height: 18px;
}

.yui-footer p:last-child {
    margin-bottom: 0;
}

.yui-footer p a { 
    margin: 0 8px;
    color: #666;
    text-decoration: none;

    display: inline-block;
    position: relative;
    text-shadow: none;
    font-size: 12px;
}



.yui-footer p a:hover {
    color: #EE3131;
}

.yui-footer p a.db_link {
    font-weight: bold;
    color: #555;
}

/* 特殊链接样式 */
.yui-footer p a[rel="nofollow"] {
    margin: 0 5px;
    color: #888;
}

.yui-footer p a[rel="nofollow"]:hover {
    color: #EE3131;
}

.yui-footer p a[rel="nofollow"]:after {
    content: none;
}

/* 友情链接样式 */
.friend-links {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.friend-links-title {
    display: inline-block;
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-right: 10px;
    vertical-align: top;
    line-height: 26px;
}

.friend-links-list {
    display: inline-block;
    width: calc(100% - 80px);
    line-height: 26px;
}

.friend-links-list a {
    display: inline-block;
    margin: 0 15px 5px 0;
    color: #555;
    font-size: 12px;
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 3px;

    border: 1px solid transparent;
}

.friend-links-list a:hover {
    color: #EE3131;
    background-color: #f8f8f8;
    border-color: #EE3131;
    text-decoration: none;
}

/* 响应式友情链接 */
@media (max-width: 768px) {
    .friend-links-title {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
    }

    .friend-links-list {
        display: block;
        width: 100%;
    }

    .friend-links-list a {
        margin: 0 10px 5px 0;
        font-size: 11px;
        padding: 1px 6px;
    }
}

 /* ========== 简洁页面模板样式（可在其他页面复用）开始 ========== */
        /* 简洁头部样式 */
        .simple-header {
            width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            padding: 0;
            margin-bottom: 10px;
            box-sizing: border-box; /* 确保宽度一致性 */
        }
    

        .simple-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .simple-logo {
            display: flex;
            align-items: center;
        }

        .simple-logo img {
            height: 86px;
            width: 260px;
            margin: 0;
            margin-right: 15px;
            display: block;
        }

        .logo-title-group {
            display: flex;
            align-items: center;
        }

        .title-separator {
            height: 24px;
            width: 1px;
            background-color: #ddd;
            margin: 0 15px;
            display: inline-block;
        }

        .simple-title {
            font-size: 20px;
            color: #555;
            font-weight: normal;
            margin: 0;
        }

        .simple-back {
            font-size: 14px;
            color: #555;
            text-decoration: none;
        }

        .simple-back:hover {
            color: #EE3131;
        }

        /* 简洁内容区域 */
        .simple-content {
            width: 1200px;
            margin: 20px auto;
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            min-height: 400px;
        }

        /* 简洁页脚样式 */
        .simple-footer {
            width: 1200px;
            margin: 20px auto;
            background-color: #fff;
            padding: 20px 0;
            border-top: 1px solid #eee;
        }

        .simple-footer-inner {
            text-align: center;
        }

        .simple-footer-links {
            margin-bottom: 10px;
        }

        .simple-footer-links a {
            color: #555;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
        }

        .simple-footer-links a:hover {
            color: #EE3131;
        }

        .simple-footer-copyright {
            color: #999;
            font-size: 12px;
            line-height: 1.6;
        }
        /* ========== 简洁页面模板样式（可在其他页面复用）结束 ========== */

/* 暂无信息样式 */
.no-info-message {
    padding: 60px 0;
    margin: 20px 0;
    text-align: center;
}

.no-info-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ccc"><path d="M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z"/><path d="M12 17.5a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11zm0-9.5a4 4 0 1 0 0 8 4 4 0 0 0 0-8z"/></svg>') no-repeat center;
}

.no-info-message p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* 关键字专题导航 */
.yui-topic-nav {
    background: #fff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.yui-topic-nav .topic-nav-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-right: 15px;
    margin-left: 15px;
    white-space: nowrap;
}

.yui-topic-nav .topic-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
    padding-right: 15px;
}

.yui-topic-nav .topic-nav-item {
    display: inline-block;
    position: relative;
}

/* 竖线分隔符 */
.yui-topic-nav .topic-nav-item:not(:last-child)::after {
    content: '|';
    color: #ddd;
    margin: 0 10px;
}

.yui-topic-nav .topic-nav-item a {
    display: inline-block;
    padding: 0;
    font-size: 14px;
    color: #999;
    background: transparent;
    border-radius: 0;
    text-decoration: none;
    transition: none;
}

.yui-topic-nav .topic-nav-item a:hover {
    background: transparent;
    color: #EE3131;
    transform: none;
    box-shadow: none;
}

.yui-topic-nav .topic-nav-item.active a {
    background: transparent;
    color: #EE3131;
}

/* 热门专题标签样式 - 紧凑云标签风格 */
.zhuanti-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 首页默认三列 */
    gap: 8px;
    padding: 12px 0;
}

/* 侧边栏中的专题标签两列布局 */
.yui-index-info-list-right .zhuanti-tags {
    grid-template-columns: repeat(2, 1fr);
}

.topic-tag-item {
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    padding: 2px 5px;
    color: #fff !important; /* 强制白色文字 */
    font-size: 12px; /* 统一字号 */
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 云标签固定5色循环，忽略用户自定义颜色 */
.topic-tag-item:nth-child(5n+1) {
    background: #67c23a;
}

.topic-tag-item:nth-child(5n+2) {
    background: #409eff;
}

.topic-tag-item:nth-child(5n+3) {
    background: #f56c6c;
}

.topic-tag-item:nth-child(5n+4) {
    background: #909399;
}

.topic-tag-item:nth-child(5n) {
    background: #e6a23c;
}

.topic-tag-item:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
    color: #fff !important; /* 强制保持白色文字 */
}

.topic-tag-item i {
    margin-right: 4px;
    font-size: 12px;
}

/* 侧边栏专题列表样式 - 简约列表风格 */
.sidebar-topic-list {
    margin-top: 12px;
}

.sidebar-topic-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.sidebar-topic-item:hover {
    background-color: #f5f7fa;
}

.sidebar-topic-item a {
    flex: 1;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.sidebar-topic-item i {
    width: 20px;
    text-align: center;
    margin-right: 12px;
    color: #a0a0a0;
    font-size: 14px;
}

.sidebar-topic-item.active {
    background-color: #e8f4ff;
}

.sidebar-topic-item.active a {
    color: #409eff;
    font-weight: 600;
}

.sidebar-topic-item.active i {
    color: #409eff;
}

.sidebar-topic-item:hover a {
    color: #409eff;
    text-decoration: none !important;
}

.sidebar-topic-item:hover i {
    color: #409eff;
}

/* ==================== 浏览记录下拉样式 ==================== */
/* 扩大下拉容器宽度，强制白色背景防止透明问题 */
.view-history-dropdown .yui-top-dropdown-menu {
    min-width: 290px;
    max-width: 360px;
    background-color: #fff !important;
    background: #fff !important;
}

/* 浏览记录下拉菜单项左对齐 */
.view-history-dropdown .yui-top-dropdown-menu li a {
    justify-content: flex-start;
    text-align: left;
}

/* ==================== 移动端下拉样式 ==================== */
/* 移动端按钮带图标 */
.mobile-dropdown-btn {
    background: url('/static/images/top_icon_mobile.png') no-repeat left center;
    background-size: 16px 16px;
    padding-left: 18px !important;
    padding-right: 5px !important;
}

.mobile-dropdown-menu {
    width: max-content;
    min-width: 0 !important;
    max-width: none !important;
    padding: 15px 10px 10px;
    box-sizing: border-box;
}

/* 二维码行 - 横向排列 */
.mobile-qr-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 10px;
}

/* 单个二维码项 */
.mobile-qr-item {
    text-align: center;
    flex: 0 0 auto;
}

/* 二维码图片 */
.mobile-qr-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
}

/* 二维码标签 */
.mobile-qr-label {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}
/* ===== template/pc/css/article.css ===== */


/* 新闻页面布局 - 两栏布局 */
.news-container {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* 左侧分类导航 - 大气现代化设计 */
.news-sidebar {
    width: 140px;
    flex-shrink: 0;

}

/* 中间新闻列表 - 大气现代化设计 */
.news-main {
    flex: 1;
    background: #fff;
    padding: 0;
    border-radius: 4px;
    box-shadow: none;

    overflow: hidden;
}

/* 栏目标题样式 - 融合在顶部 */
.category-header {
    margin: 0;
    padding: 20px 30px 0 30px;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #EE3131, #ff6b6b);
    border-radius: 1px;
}

/* 左侧分类导航容器 - 简约设计 */
.category-nav {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    border: none;
    overflow: hidden;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    text-align: center;
}

.category-item a:hover {
    background: #f9f9f9;
    color: #333;
}

/* 当前激活状态 */
.category-item.active {
    background: #fff;
}

.category-item.active a {
    background: #4285f4;
    color: #fff;
    font-weight: 600;
}

.category-item.active a:hover {
    background: #4285f4;
    color: #fff !important;
}



/* 空状态样式 */
.empty-list {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-list p {
    font-size: 16px;
    margin: 0;
}

/* 加载更多按钮 */
.load-more {
    text-align: center;
    margin: 30px 0;
}

.load-more-btn {
    padding: 6px 16px;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.load-more-btn:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* 筛选选项卡样式 - 选项卡形式 */
.news-filter {
    display: none;
    margin-bottom: 30px;
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.filter-buttons {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-btn {
    padding: 16px 32px;
    background: transparent;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    position: relative;
    cursor: pointer;
}

.filter-btn:hover {
    color: #333;
    background: rgba(102, 126, 234, 0.05);
}

.filter-btn.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    border-bottom-color: #667eea;
    font-weight: 700;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 20px;
    height: 3px;
    background: #667eea;
    border-radius: 1px;
}

/* 新闻列表容器 */
.news-list {
    padding: 0px 10px;
}

/* 列表标签样式 - 与category.php保持一致 */
.yui-list-tabs {
    background: transparent;
    border-radius: 0;

    border: none;
    padding: 0;
    margin: 0 15px;
}

.tab-header {
    border-bottom: 1px solid #eee;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
 
}

.tab-header ul {
    display: flex;
    gap: 40px;
}

.tab-header li {
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 0 10px;
    height: 56px;
    line-height: 56px;
    position: relative;
}

.tab-header li:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: transparent;
    border-radius: 0;
}

.tab-header li:hover {
    color: #333;
}

.tab-header li:hover:after {
    width: 0;
}

.tab-header li.active {
    color: #000;
    font-weight: bold;
    font-size: 17px;
}

.tab-header li.active:after {
    width: 0;
}

.index-list-post {
    font-size: 14px;
    color: #666;
}

.index-list-post a {
    color: #667eea;
    text-decoration: none;
}

.index-list-post a:hover {
    color: #3366cc;
}

.yui-right {
    float: right;
}

/* 信息列表样式 - 与category.php保持一致 */
.info-list {
    margin-bottom: 10px;
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    border-bottom: 1px solid #f5f5f5;
    line-height: 24px;
    background: url(/template/pc/images/icon_title1.gif) left no-repeat;
    padding-left: 15px;
}

.info-list li:hover {
    background: #fffbe6 url(/template/pc/images/icon_title1.gif) left no-repeat;
}

.info-title {
    flex: 1;
    line-height: 24px;
    position: relative;
}

.info-title a {
    color: #333;
    font-size: 15px;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.info-title a:hover {
    color: #3366cc;
}

.info-meta {
    display: flex;
    min-width: 100px;
    color: #999;
    font-size: 13px;
    justify-content: flex-end;
    margin-right: 0;
}

.info-meta span {
    width: auto;
    text-align: center;
    margin: 0 8px;
    white-space: nowrap;
}

/* 简洁列表样式 - 大栏目 */
.news-list.simple-list {
    padding: 0;
}

.news-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: none;
}

.news-item-simple:first-child {
    padding-top: 10px;
}

.news-item-simple:last-child {
    border-bottom: none;
    padding-bottom: 10px;
}

.news-item-simple:hover {
    background-color: transparent;
}

.news-item-simple .simple-title {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.news-item-simple .title-icon {
    color: #667eea;
    font-size: 12px;
    flex-shrink: 0;
}

.news-item-simple .simple-title a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: none;
}

.news-item-simple .simple-title a:hover {
    color: #667eea;
}

.news-item-simple .simple-title .top-tag,
.news-item-simple .simple-title .rec-tag {
    margin-left: 8px;
    padding: 4px 8px;
    font-size: 11px;
    flex-shrink: 0;
}

.news-item-simple .simple-date {
    color: #999;
    font-size: 13px;
    white-space: nowrap;
    margin-left: 20px;
    flex-shrink: 0;
}


/* 新闻列表样式 - 统一列表设计 */
.news-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    gap: 20px;
    align-items: flex-start;
    transition: none;
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item:hover {
    background: transparent;
    border-radius: 0;
}

/* 左侧缩略图样式 - 与内容高度对齐 */
.news-thumb {
    flex: 0 0 100px;
    width: 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    box-shadow: none;
    border: 1px solid #e9ecef;
}

.news-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    z-index: 1;
}

.news-thumb:hover::before {
    opacity: 0;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-thumb:hover img {
}

/* 新闻内容区域 */
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100px; /* 调整最小高度以适应新的布局 */
}

/* 有缩略图的新闻项 */
.news-item.has-thumb {
    min-height: 110px;
}

/* 无缩略图的新闻项 */
.news-item.no-thumb {
    padding-left: 0;
}

/* 移除左侧边框效果 */

/* 通用新闻元素样式 - 醒目大黑标题 */
.news-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.news-item h3 a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-weight: 600;
    transition: none;
}

.news-item h3 a:hover {
    color: #667eea;
}

/* 标题行布局 */
.news-item .title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 20px;
}

.news-item .title-row h3 {
    flex: 1;
    margin: 0;
}

.news-item .meta {
    color: #718096;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    flex-shrink: 0;
    margin: 0;
}

.news-item .meta span {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
}

.news-item .desc {
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px; /* 调整最小高度以适应更小的字体 */
}

/* 分页样式 - 与category.php保持一致 */
.pagination {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}

.pagination a:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
    color: #c4284d;
}

.pagination .current {
    background-color: #c4284d;
    color: #fff;
    border-color: #c4284d;
    font-weight: 500;
}

.pagination .disabled {
    color: #999;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #e0e0e0;
}

.pagination .prev, .pagination .next {
    padding: 0 12px;
    min-width: 40px;
}

.pagination .ellipsis {
    border: none;
    padding: 0 4px;
    color: #666;
    min-width: 20px;
}
/* 右侧热门信息样式 */
.hot-news {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-radius: 3px;
}

.hot-news h2 {
    font-size: 18px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #EE3131;
    margin-bottom: 10px;
    font-weight: 600;
}

.hot-news-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.hot-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hot-news-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 12px;
}

.hot-news-item .info {
    flex: 1;
    overflow: hidden;
}

.hot-news-item .info h4 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hot-news-item .info h4 a {
    color: #333;
    text-decoration: none;
}

.hot-news-item .info h4 a:hover {
    color: #EE3131;
}

.hot-news-item .info p {
    color: #999;
    font-size: 12px;
}

/* 热门新闻列表样式 */
.hot-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-news-list li {
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.hot-news-list li:last-child {
    margin-bottom: 0;
}

.hot-news-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hot-news-list li a:hover {
    color: #EE3131;
}

.hot-news-list .num {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #ddd;
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
    border-radius: 2px;
    float: left;
}

.hot-news-list li:nth-child(1) .num,
.hot-news-list li:nth-child(2) .num,
.hot-news-list li:nth-child(3) .num {
    background: #EE3131;
}

/* 右侧模块样式 */
.bbs-hot {
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 0 10px 10px 10px;

}

.bbs-hot img {
    width: 100%;
    height: auto;
    margin: 5px 0;
    box-sizing: border-box;
    display: block;
}

/* 新闻详情页样式 */
/* 新闻详情头部 */
.news-detail-header {
    margin-bottom: 20px;

}

/* 旧的新闻详情样式已移除，使用.news-detail-main下的新样式 */

/* 新闻正文 */
.news-detail-content {
    line-height: 1.8; 
    color: #333; 
    font-size: 16px;
    /* white-space: pre-wrap; 保留空白符和换行符 */
}

.news-detail-content p {
    text-indent: 2em; /* 段落首行缩进2个字符 */
}

/* 包含图片的段落不缩进，并居中显示 */
.news-detail-content p:has(img),
.news-detail-content div[style*="text-align: center"] {
    text-indent: 0 !important;
    text-align: center !important;
}

/* 新闻内容中的图片居中显示 */
.news-detail-content img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 3px;
}

/* 图片说明文字 */
.news-detail-content div[style*="text-align: center"] div {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5;
}

.news-detail-content p:last-child {
    margin-bottom: 0;
}

.news-detail-img {
    margin: 20px 0;
    text-align: center;
}

.news-detail-img img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.img-caption {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 10px;
}



/* 上一篇下一篇导航 */
.news-detail-nav {
    margin: 30px 0;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
    padding: 20px 0;
}

.prev-next-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.prev-article, .next-article {
    flex: 1;
    max-width: 48%;
}

.prev-article {
    text-align: left;
}

.next-article {
    text-align: right;
}

.nav-label {
    color: #666;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.nav-title {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    display: block;
    word-break: break-all;
    transition: color 0.3s ease;
}

.nav-title:hover {
    color: #EE3131;
}

.nav-empty {
    color: #999;
    font-size: 14px;
}

/* 相关推荐 */
.news-detail-related {
    margin-top: 30px;
}

.related-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    position: relative;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.related-title span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid #EE3131;
    position: relative;
    bottom: -1px;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.related-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #EE3131;
    border-radius: 50%;
}

.related-list li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.related-list li a:hover {
    color: #EE3131;
}

/* 右侧广告 */
.side-ad {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.side-ad img {
    display: block;
    width: 100%;
    height: auto;
}

/* 旧的响应式样式已移除，使用.news-detail-main下的新样式 */

/* 新闻焦点区域样式 */
.news-focus {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.focus-slide {
    display: flex;
    margin-top: 15px;
    gap: 20px;
}

.focus-img {
    flex: 1.5;
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 3px;
}

.focus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focus-img img:hover {
    
}

.focus-img-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
}

.focus-img-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
}

.focus-list {
    flex: 1;
}

.focus-list-item {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.focus-list-item:last-child {
    border-bottom: none;
}

.focus-list-item h3 {
    font-size: 15px;
    margin: 0 0 5px 0;
    font-weight: normal;
}

.focus-list-item h3 a {
    color: #333;
    text-decoration: none;
}

.focus-list-item h3 a:hover {
    color: #EE3131;
}

.focus-list-item .meta {
    color: #999;
    font-size: 12px;
}

.focus-list-item .meta span {
    margin-right: 10px;
}

/* 栏目新闻样式 */
.cat-news {
    background: #fff;
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cat-news-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.cat-news-item {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.cat-news-item:nth-child(odd) {
    margin-right: 20px;
}

.cat-news-item h3 {
    font-size: 15px;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: normal;
}

.cat-news-item h3 a {
    color: #333;
    text-decoration: none;
}

.cat-news-item h3 a:hover {
    color: #EE3131;
}

.cat-news-item .meta {
    color: #999;
    font-size: 12px;
}

.cat-news-item .meta span {
    margin-right: 10px;
}

/* 通用标题样式 */
.news-title {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.news-title h3 {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 10px;
    color: #333;
    border-bottom: 2px solid #EE3131;
    margin-bottom: -2px;
}

.news-title .more {
    position: absolute;
    right: 0;
    bottom: 10px;
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

.news-title .more:hover {
    color: #EE3131;
}

/* 新闻焦点区域 */
.news-focus {
    margin-bottom: 30px;
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.focus-content {
    display: flex;
    gap: 30px;
}

.focus-main {
    flex: 2;
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 3px;
}

.focus-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focus-main-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.focus-main-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.focus-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.focus-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.focus-item:last-child {
    border-bottom: none;
}

.focus-item a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
}

.focus-item a:hover {
    color: #EE3131;
}

.item-meta {
    color: #999;
    font-size: 13px;
}

.item-meta span {
    margin-right: 15px;
}

/* 新闻区块样式 */
.news-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.news-list {
    border-top: none;
}

/* 头条新闻 */
.headline-news {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.headline-img {
    width: 240px;
    height: 160px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 3px;
}

.headline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headline-info {
    flex: 1;
}

.headline-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.headline-info h3 a {
    color: #333;
    text-decoration: none;
}

.headline-info h3 a:hover {
    color: #EE3131;
}

.headline-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

/* 列表新闻 */
.news-item {
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: normal;
}

.news-item h3 a {
    color: #333;
    text-decoration: none;
}

.news-item h3 a:hover {
    color: #EE3131;
}

/* 右侧模块通用样式 */
.bbs-hot {
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 0 10px 10px 10px;
}

.yui-h-title {
    position: relative;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

/* 面包屑导航样式 - 扁平化设计 */


/* 置顶和推荐标签样式 - 与category.php保持一致 */
.top-tag {
    display: inline-block;
    padding: 0;
    background-color: #EE3131;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    margin-left: 5px;
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
}

.rec-tag {
    display: inline-block;
    padding: 0;
    background-color: #3498db;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    margin-left: 5px;
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
}

/* 分页样式 */
.pagebar {
    margin: 20px 0;
    text-align: center;
    font-size: 0;
}

.pagebar a, .pagebar span {
    display: inline-block;
    padding: 4px 8px; /* 更小的内边距 */
    font-size: 12px;  /* 更小的字体 */
    margin: 0 3px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    text-decoration: none;
    vertical-align: middle;
    border-radius: 3px;
}

.pagebar a:hover {
    background: #f5f5f5;
    color: #EE3131;
    border-color: #EE3131;
}

.pagebar span.current {
    background: #EE3131;
    color: #fff;
    border-color: #EE3131;
}

.pagebar .disabled {
    color: #999;
    cursor: not-allowed;
}

/* 新闻详情页样式 - 大气简洁设计 */
.news-detail-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.news-detail-main {
    background: #fff;
    padding: 20px;

    border-radius: 4px;

}

/* 新闻详情标题 - 大气简洁 */
.news-detail-main .news-detail-title {
    font-size: 28px;
    color: #000;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 0;
}

/* 新闻详情元信息 - 简洁设计 */
.news-detail-main .news-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.news-detail-main .news-detail-meta span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.news-detail-main .news-detail-meta i {
    margin-right: 6px;
    color: #999;
    font-size: 14px;
}



/* 新闻详情正文 - 简洁排版 */
.news-detail-main .news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.news-detail-main .news-detail-content p {
    text-indent: 2em;
}

.news-detail-main .news-detail-content p:first-child {
    text-indent: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* 新闻详情内容中的图片 - 确保不溢出 */
.news-detail-main .news-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid #e9ecef;
    border-radius: 0;
}

/* 新闻详情图片 - 简洁展示 */
.news-detail-main .news-detail-img {
    margin: 30px 0;
    text-align: center;
}

.news-detail-main .news-detail-img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #e9ecef;
    border-radius: 0;
}

.news-detail-main .img-caption {
    margin-top: 10px;
    color: #999;
    font-size: 13px;
    font-style: italic;
}



/* ========== 新闻详情内容响应式样式 ========== */

/* 内容容器 - 处理文字换行 */
.news-detail-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 内容中的图片 - 确保不溢出容器 */
.news-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 内容中的表格 - 响应式处理 */
.news-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    border: 1px solid #ddd;
}

.news-detail-content table td,
.news-detail-content table th {
    padding: 10px;
    border: 1px solid #ddd;
}

.news-detail-content table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

/* 内容中的视频 - 响应式处理 */
.news-detail-content iframe {
    max-width: 100%;
    height: auto;
}

/* 内容中的列表 */
.news-detail-content ul,
.news-detail-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.news-detail-content li {
    margin: 8px 0;
    line-height: 1.6;
}

/* 内容中的代码块 */
.news-detail-content pre {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    overflow-x: auto;
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.4;
}

.news-detail-content code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* 内容中的引用块 */
.news-detail-content blockquote {
    border-left: 4px solid #ddd;
    padding: 10px 15px;
    margin: 15px 0;
    background-color: #f9f9f9;
    color: #666;
}

/* 内容中的标题 */
.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    margin: 20px 0 10px 0;
    line-height: 1.4;
}

/* 视频响应式容器 - 为新闻详情页添加 */
.video-container {
    position: relative;
    width: 100%;
    max-width: 890px; /* 与yui-content-wrap保持一致 */
    margin: 15px auto;
    overflow: hidden;
}

.video-container iframe,
.video-container video,
.video-container embed {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border: none;
}

/* 视频封面图容器 */
.video-cover {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
}

.video-cover::after {
    content: "▶";
    position: absolute;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 隐藏视频元素，直到用户点击封面 */
.video-container video[autoplay="false"] {
    display: none;
}

.video-container.playing video {
    display: block;
}

.video-container.playing .video-cover {
    display: none;
}

/* 针对不同宽高比的视频容器 */
.video-container.ratio-4-3::before {
    padding-bottom: 75%; /* 4:3 宽高比 */
}

.video-container.ratio-1-1::before {
    padding-bottom: 100%; /* 1:1 宽高比，正方形 */
}

.video-container.ratio-21-9::before {
    padding-bottom: 42.86%; /* 21:9 宽高比，超宽屏 */
}

/* 确保视频容器在小屏幕设备上正确显示 */
@media (max-width: 768px) {
    .video-container,
    p.video-container {
        max-width: 100vw;
        width: 100%;
        margin: 15px 0;
        overflow: visible;
        position: relative;
    }
    
    .video-container iframe,
    .video-container video,
    .video-container embed,
    p.video-container iframe,
    p.video-container video,
    p.video-container embed {
        max-width: 100vw;
        width: 100% !important;
        height: auto !important;
        position: static;
        border: none;
    }
}

/* ===== template/pc/css/themes.css ===== */
/* PC端主题CSS变量 */

/* 蓝色主题 */
.theme-blue {
    --primary-color: #3092d5;
    --primary-color-rgb: 48,146,213;
    --primary-hover: #2980b9;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --text-color: #333333;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eaeaea;
    --shadow: none;
    --radius: 3px;
}

/* 红色主题 */
.theme-red {
    --primary-color: #EE3131;
    --primary-color-rgb: 238,49,49;
    --primary-hover: #d62828;
    --secondary-color: #fb8c8a;
    --accent-color: #c62828;
    --text-color: #333333;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eeeeee;
    --shadow: none;
    --radius: 3px;
}

/* 绿色主题 */
.theme-green {
    --primary-color: #00a878;
    --primary-color-rgb: 0,168,120;
    --primary-hover: #008c66;
    --secondary-color: #5bc8ac;
    --accent-color: #408e91;
    --text-color: #333333;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eeeeee;
    --shadow: none;
    --radius: 3px;
}

/* 紫色主题 */
.theme-purple {
    --primary-color: #7b68ee;
    --primary-color-rgb: 123,104,238;
    --primary-hover: #6a5acd;
    --secondary-color: #a290e3;
    --accent-color: #6a5acd;
    --text-color: #333333;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eeeeee;
    --shadow: none;
    --radius: 3px;
}

/* 橙色主题 */
.theme-orange {
    --primary-color: #ff6b01;
    --primary-color-rgb: 255,107,1;
    --primary-hover: #e64a19;
    --secondary-color: #ff9d45;
    --accent-color: #e64a19;
    --text-color: #333333;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eeeeee;
    --shadow: none;
    --radius: 3px;
}

/* 粉色主题 */
.theme-pink {
    --primary-color: #e91e63;
    --primary-color-rgb: 233,30,99;
    --primary-hover: #c2185b;
    --secondary-color: #ff4081;
    --accent-color: #c2185b;
    --text-color: #333333;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eeeeee;
    --shadow: none;
    --radius: 3px;
}

/* 海洋主题 */
.theme-ocean {
    --primary-color: #006994;
    --primary-color-rgb: 0,105,148;
    --primary-hover: #00496b;
    --secondary-color: #48b1bf;
    --accent-color: #00496b;
    --text-color: #333333;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eeeeee;
    --shadow: none;
    --radius: 3px;
}

/* 简约主题 */
.theme-simple {
    --primary-color: #4a90e2;
    --primary-color-rgb: 74,144,226;
    --primary-hover: #3a7bc8;
    --secondary-color: #76aff0;
    --accent-color: #333333;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eeeeee;
    --shadow: none;
    --radius: 3px;
}

/* ===== 主题应用样式 ===== */

/* 主导航栏 */
.yui-nav {
    background-color: var(--primary-color) !important;
}

.yui-nav ul li:hover {
    background: var(--primary-hover) !important;
}

.yui-nav .nav-cur {
    background: var(--primary-hover) !important;
}

/* 搜索框边框与按钮 */
.yui-select {
    border-color: var(--primary-color) !important;
}

.yui-select .btn-search {
    background-color: var(--primary-color) !important;
}

.yui-select .btn-search:hover {
    background-color: var(--primary-hover) !important;
}

/* yui-h-title 红色底部边框 */
.yui-h-title:after {
    background: var(--primary-color) !important;
}

.yui-h-title h3:before {
    background: var(--primary-color) !important;
}

.yui-h-title span a:hover {
    color: var(--primary-color) !important;
    background: rgba(var(--primary-color-rgb), 0.1) !important;
}

/* 栏目页面筛选高亮样式 */
.filter-item.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.filter-item:hover {
    color: var(--primary-color) !important;
    background-color: rgba(var(--primary-color-rgb), 0.05) !important;
}

/* 页面切换导航 */
.page-switch-nav a:hover,
.page-switch-nav a.active {
    background: var(--primary-color) !important;
}

/* 链接悬停颜色 */
a:hover {
    color: var(--primary-color) !important;
}

.yui-top-left a:hover {
    color: var(--primary-color) !important;
}

.yui-top-right a:hover {
    background-color: rgba(255,255,255,0.8) !important;
    color: var(--primary-color) !important;
}

.yui-top-dropdown:hover .yui-top-dropdown-btn {
    background-color: rgba(255,255,255,0.8) !important;
    color: var(--primary-color) !important;
}

.yui-top-dropdown:hover .yui-top-dropdown-btn:after {
    border-top-color: var(--primary-color) !important;
}

.yui-top-dropdown-menu li a:hover {
    background-color: #f9f9f9 !important;
    color: var(--primary-color) !important;
}

/* Footer 链接 */
.yui-footer p a:hover {
    color: var(--primary-color) !important;
}

.yui-footer .footer-nav a:hover {
    color: var(--primary-color) !important;
}

.friend-links-list a:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* 分页样式 */
.pagination a:hover {
    color: var(--primary-color) !important;
}

.pagination .current {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* 加载更多按钮 */
.load-more:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.2) !important;
}

.load-more.loading:after {
    border-top: 2px solid var(--primary-color) !important;
}

/* 标签样式 */
.tab-header li:after {
    background: var(--primary-color) !important;
}

.tab-header li:hover {
    color: var(--primary-color) !important;
}

/* 信息列表 */
.info-title a:hover {
    color: var(--primary-color) !important;
}

.info-imgtitle a:hover {
    color: var(--primary-color) !important;
}

.yui-small-list ul li a:hover {
    color: var(--primary-color) !important;
}

/* 面包屑 */
.breadcrumb a:hover {
    color: var(--primary-color) !important;
}

.breadcrumb .current {
    color: var(--primary-color) !important;
}

/* 置顶标签 */
.top-tag {
    background-color: var(--primary-color) !important;
}

.info-list.pinned .info-title:before {
    background: var(--primary-color) !important;
}

/* 发布按钮 */
.index-list-post a {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.index-list-post a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    opacity: 0.9;
    text-decoration: none !important;
}

/* PC端发布按钮不跟随主题色，固定为橙色 #ff5722 */
/* 发布按钮样式已在 common.css 中定义，此处不再覆盖 */

/* 搜索框下拉选择 */
.mod_select .select_box .option li:hover {
    color: var(--primary-color) !important;
}

/* 卡片悬停 */
.card-title a:hover {
    color: var(--primary-color) !important;
}

/* 简洁页面链接 */
.simple-back:hover {
    color: var(--primary-color) !important;
}

.simple-footer-links a:hover {
    color: var(--primary-color) !important;
}

/* 其他主题色应用 */
.aboutMainrt {
    color: var(--primary-color) !important;
}

.aboutMainl ul .aboutOver a {
    color: var(--primary-color) !important;
}

/* Footer 顶部红色边框 */
.yui-footer .yui-1200 {
    border-top: 2px solid var(--primary-color) !important;
}

.yui-footer .footer-nav a:hover {
    color: var(--primary-color) !important;
}

.yui-footer p a:hover {
    color: var(--primary-color) !important;
}

.yui-footer p a[rel="nofollow"]:hover {
    color: var(--primary-color) !important;
}

/* 发布条例与提示的红色文字 */
.infoquote p {
    color: var(--primary-color) !important;
}

.aboutMainrt {
    color: var(--primary-color) !important;
}

/* 面包屑导航 */
.breadcrumb a:hover {
    color: var(--primary-color) !important;
}

.breadcrumb .current {
    color: var(--primary-color) !important;
}
