/* style.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/index.css ===== */
/* ===== 基础全局样式 ===== */
/* 注意：body 的全局样式已在 common.css 中定义，此处不再重复定义以避免样式冲突 */

/* 防止布局偏移 */
img {
    max-width: 100%;
    height: auto;
    background: #f0f0f0;
    border-radius: 2px;
}

/* ===== 容器布局样式 ===== */


.yui-content {
 min-height: 600px;
}

.yui-index {
    display: flex;
    gap: 10px;
    margin-top: 5px;

}

.yui-index-l {
    flex: 1;
    max-width: 878px;
}

.yui-index-r {
    width: 310px;
    flex-shrink: 0;
}

/* 加载状态样式 */
.loading {
    text-align: center;
    padding: 50px;
    color: #999;
}

/* 骨架屏样式 */
.skeleton {
    background: #f0f0f0;
}

/* 公告样式 */
.gonggao {
    background: #fff;


}

/* 轮播图容器 */
.flash-img {
    width: 302px;
    height: 200px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

/* ===== 第一屏 ===== */
.yui-index-l{ width: 878px; float: left; }
.yui-index-c{ width: 580px; overflow:hidden; padding-top: 10px; float: left;}
.yui-index-r{ width: 310px; float: right;}

/* 左侧第一屏布局 */
.left-top-section { display: flex; margin-bottom: 10px; }
.left-top-section .gonggao-wrap { width: 288px; border-radius: 4px; }
.left-top-section .news-wrap { width: 580px; padding-top: 10px;margin-left: 10px; border-radius: 4px; }

/* 中间 区域 */
.yui-index-topnews{ height: 80px;}
.yui-top-img{ width: 81px; height: 81px;}
.yui-top-text{width: 485px; height: 81px; }
.yui-top-text a{ font-size: 20px; font-weight: bold; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.yui-top-text .intro{color: #f2f2f2;}
.yui-top-text p{color:#888;LINE-HEIGHT: 20PX;}


.yui-index-news ul{margin:10px;}
.yui-index-news ul li{line-height: 36px;}
.yui-index-news .yui-lm-name{ padding-right: 5px; border-right: 1px solid #f2f2f2; margin-right: 5px;color: red;}
.yui-index-news ul li a{font-size: 14px;}
.yui-index-news  .yui-post-time{ float: right; color: #888;}
.yui-one2-news{ 
    line-height: 60px; 
    font-size: 20px; 
    text-align: center; 
    font-weight: bold; 
    white-space: nowrap; 
    word-break: break-all; 
    overflow: hidden; 
    text-overflow: ellipsis;
    padding-left: 20px; 
    padding-right: 20px;
}

.gonggao {
    padding: 0px 10px 10px 10px;
}

.gonggao .yui-small-list ul {
    height: 128px;
    overflow: hidden;
}

.gonggao .yui-small-list ul li {
    position: relative;
    padding-left: 12px;
    line-height: 32px;
    border-bottom: 1px dashed #f0f0f0;
    height: 32px;
}

.gonggao .yui-small-list ul li:nth-child(3) {
    border-bottom: none;
}

.gonggao .yui-small-list ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: #EE3131;
    border-radius: 50%;
}

.gonggao .yui-small-list ul li a {
    display: block;
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 便民、热帖 */
.bbs-hot{
    background-color: white;
    margin-bottom: 10px;
    padding: 0px 10px;
    border-radius: 4px;
}
.bbs-hot a{color: #266392;}

/* 热门信息样式 */
.bbs-hot .yui-small-list ul {
    height: auto;
    overflow: hidden;
}

.bbs-hot .yui-small-list ul li {
    position: relative;
    padding-left: 12px;
    line-height: 28px;
    border-bottom: 1px dashed #f0f0f0;
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bbs-hot .yui-small-list ul li:last-child {
    border-bottom: none;
}

.bbs-hot .yui-small-list ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: #EE3131;
    border-radius: 50%;
}

.bbs-hot .yui-small-list ul li a {
    display: block;
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 10px;
}

.bbs-hot .yui-small-list ul li .view-count {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}

.bbs-hot .yui-small-list ul li .news-date {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}
.bianmin {
    background-color: white;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 0px 10px;
    border-radius: 4px;
}

.bianmin .yui-h-title {
    margin-bottom: 12px;
}

.bianmin ul {
    margin: 0 -3px;
    overflow: hidden;  /* 清除浮动 */
}

.bianmin ul li {
    width: 86px;
    margin: 0 3px 10px;
    height: 36px;
    line-height: 36px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    text-align: center;
    background: #f8f8f8;
    float: left;
}

.bianmin ul li:hover {
    border-color: #EE3131;
    background: #fff;
}

.bianmin ul li a {
    color: #666;
    font-size: 13px;
    display: block;
    padding: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bianmin ul li:hover a {
    color: #EE3131;
    text-decoration: none !important;
}

.bianmin-tel {
    padding: 0px 10px 10px 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.bianmin-tel .yui-h-title {
    margin-bottom: 15px;
}

.bianmin-tel .tel-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.bianmin-tel .tel-card {
    padding: 10px 8px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.bianmin-tel .tel-card:hover {
    opacity: 0.85;
}

.bianmin-tel .tel-card.blue {
    background: #1890ff;
}

.bianmin-tel .tel-card.purple {
    background: #9c6ade;
}

.bianmin-tel .tel-card.red {
    background: #e74c3c;
}

.bianmin-tel .tel-card .tel-name {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bianmin-tel .tel-card .tel-number {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

/* 轮播图优化 */
#slider-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 200px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

/* 调整轮播图区域整体高度 */
.flash-img {
    width: 302px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* 轮播图控制按钮样式 */
.slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    z-index: 10;
    opacity: 0;
    pointer-events: auto;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.flash-img:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.6);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* 轮播图小圆点样式 */
.slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.slider-dots .dot.active {
    background: #fff;
    width: 16px;
    border-radius: 4px;
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.8);
}

/* 分类信息列表 */
.index-new-list { overflow: hidden; margin-top: 20px; }
.index-new-list-left { width: 858px; float: left;  border-radius: 4px;}
.index-new-list-right { width: 310px; float: right; }
.index-new-title{ height: 50px; line-height: 50px;border-bottom: 1px #F5F5F5 solid;font-size: 14px; color: #EE3131;}
.index-new-title h3{border-bottom: 2px solid #EE3131; display: inline-block;line-height: 49px;}
.index-new-title a{ font-size: 16px; margin-left: 20px;color:#0000FF;}
.index-new-list-left .ding  li{background:url(../images/icon_title2.gif) left no-repeat;}
.index-new-list-left .ding li a{ color: #EE3131}
.index-new-list-left ul li{ width: 413px; float: left; line-height: 30px; margin-bottom: 5px;background:url(../images/icon_title1.gif) left no-repeat; padding-left: 15px; color: #888888; }
.index-new-list-left span{ margin-left: 5px;}
.index-new-list-left ul li .ding{padding: 0; font-size: 12px;background-color: #EE3131; color: #fff; border-radius: 2px; margin-right: 10px; display: inline-block; width: 20px; height: 20px; line-height: 20px; text-align: center; vertical-align: middle;}
.index-new-list-left .text-dot{ 
    float: right;
    margin-right: 10px;
}

.index-new-list-left ul li a{font-size: 15px; color: #266392;  margin-right: 10px;}
.index-new-list-left ul li a:hover{text-decoration:underline}

/* 友情链接样式 */
.friend-links {
    margin: 10px 0;
    padding: 0px 10px;
    border-radius: 4px;
}
.friend-links ul {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0;

}
.friend-links ul li {

    margin: 0 6px;
    line-height: 24px;
    text-align: center;
}
.friend-links ul li a {
    color: #666;
    font-size: 13px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.friend-links ul li a:hover {
    color: #EE3131;
    text-decoration: underline;
}
.clearfix:after {content: ""; display: table; clear: both;}

/* 全局链接悬停样式 */
a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #EE3131 !important;
    text-decoration: underline !important;
}

/* 移除之前的特定悬停样式 */
.bianmin ul li a:hover,
.friend-links ul li a:hover,
.index-new-list-left ul li a:hover {
    color: #EE3131;
    text-decoration: underline;
}

/* 特殊链接不需要下划线 */
.tel-item:hover a,
.yui-fabu a:hover,
.btns:hover {
    text-decoration: none !important;
}

/* 发布按钮文字颜色保持白色 - 提高优先级 */
.yui-fabu button a:hover,
.yui-fabu .fabu-btn:hover {
    color: #fff !important;
    text-decoration: none !important;
}

/* 专题专栏 */
.zhuanti {
    background-color: white;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 0px 10px;
    border-radius: 4px;
}

.zhuanti-content {
    overflow: hidden;
}

.zhuanti-item {
    margin-bottom: 10px;
}

.zhuanti-red-box {
    border: 2px solid #EE3131;
    padding: 10px;
    background-color: #fff;
}

.zhuanti-red-box h4 {
    font-size: 14px;
    color: #EE3131;
    font-weight: bold;
    border-bottom: 1px dashed #f0f0f0;
    padding-bottom: 8px;
    margin-bottom: 8px;
    text-align: center;
}

.zhuanti-red-box p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 5px;
    color: #333;
}

.zhuanti-red-box .label {
    font-weight: bold;
    color: #EE3131;
}

.zhuanti-game {
    border: 1px solid #eee;
    padding: 10px;
    background-color: #f9f9f9;
}

.zhuanti-game a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-logo {
    width: 50px;
    height: 50px;
    background: url(../images/icon_title1.gif) no-repeat center;
    background-size: contain;
    float: left;
    margin-right: 10px;
}

.zhuanti-game h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.zhuanti-game p {
    font-size: 13px;
    line-height: 20px;
    color: #666;
}

.zhuanti-game .people-count {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}


.bianmin-query{ padding: 0px 5px; border-radius: 4px;}
.bianmin-query .query-list ul {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 5px;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 15px;
}

.bianmin-query .query-list ul::-webkit-scrollbar {
    display: none;
}

.bianmin-query .query-list li {
    flex: 0 0 auto;
    text-align: center;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
}

.bianmin-query .query-list li:not(:last-child):after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #ddd;
}

.bianmin-query .query-list li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;

}

.bianmin-query .query-list li a:hover {
    color: #EE3131;
    text-decoration: 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;
}
