/* category.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/category.css ===== */


/* 列表页容器样式 */
.yui-index-info-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;

    box-shadow: none;
    overflow: hidden;
    height: auto;
}

/* 列表左侧容器 - 与详情页保持一致 */
.yui-index-info-list-left { 
    width: 910px;
    min-height: 400px;
    float: left;
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    padding: 0px 10px;
    margin-right: 0;
}

.yui-index-info-list-right { 
    width: 260px;
    float: right;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* 右侧子容器统一宽度自适应 */
.yui-index-info-list-right .bbs-hot,
.yui-index-info-list-right .yui-service,
.yui-index-info-list-right .yui-topic-list,
.yui-index-info-list-right .yui-img-list {
    width: 100%;
    box-sizing: border-box;
}

/* 列表标签样式 */
.yui-list-tabs {
    background: transparent;
    border-radius: 0;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.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: 3px;
    background: #EE3131;
    border-radius: 3px 3px 0 0;

}

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

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

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

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

/* 列表头部样式 */
.list-header {
    display: flex;
    align-items: center;
    padding: 12px 5px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(to bottom, #f9f9f9, #f5f5f5);

}

.list-title {
    flex: 1;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    padding-left: 10px;
    position: relative;
}

.list-meta {
    display: flex;
    min-width: 380px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    justify-content: flex-end;
    margin-right: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.list-meta span {
    width: 76px;
    min-width: 76px;
    max-width: 76px;
    text-align: left;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* 信息列表样式 */
.info-list {
    margin-bottom: 10px;
}

.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.top-item {
    background-image: url(/template/pc/images/icon_title2.gif);
}

.info-list li:hover {
    background-color: #f9f9f9;
}

.info-title {
    flex: 1;

    line-height: 24px;
    position: relative;
}

.info-title a {
    color: #333;
    font-size: 15px;

    display: inline-block;
    position: relative;
}

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

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

.info-meta span {
    width: 76px;
    min-width: 76px;
    max-width: 76px;
    text-align: left;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* 地区列固定宽度 */
.list-meta span.col-area,
.info-meta span.area {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    box-sizing: border-box;
}

/* 有效期列固定宽度 */
.list-meta span.col-validity,
.info-meta span.validity {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    box-sizing: border-box;
}

/* 时间列固定宽度 */
.list-meta span.col-time,
.info-meta span.time {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    box-sizing: border-box;
}

/* 自定义字段中的数字样式 - 列表页 */
.info-meta .custom-field .field-number {
    color: #ff4d4f;
    font-weight: bold;
    display: inline; /* 确保是inline，不产生额外间距 */
    margin: 0;
    padding: 0;
}

.info-meta span.price {
    color: #ff5722;
    font-weight: 500;
}

.info-meta span.red,
.info-meta span.price b.red {
    color: #EE3131;
    font-weight: bold;
}

/* 置顶信息样式 */
.info-list.pinned {
    background: #fff9f9;
    border: 1px solid #ffe7e7;
    border-radius: 4px;
    margin-bottom: 15px;
}

.info-list.pinned li {
    border-bottom: 1px solid #ffe7e7;
}

.info-list.pinned li:last-child {
    border-bottom: none;
}

.info-list.pinned li:hover {
    background: #fff5f5;
}

.info-list.pinned .info-title:before {
    content: '置顶';
    display: inline-block;
    padding: 0 6px;
    height: 20px;
    line-height: 20px;
    background: #EE3131;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    margin-right: 8px;
    transform: scale(0.9);
}

/* 图文列表样式 */
.info-imglist {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.info-imglist li {
    display: flex;
    padding: 12px 15px 12px 5px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    align-items: stretch;
}

.info-imglist li:hover {
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 列表右上角置顶标签 */
.list-top-tag {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: inline-block;
    padding: 0;
    background-color: #EE3131;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    line-height: 20px;
    text-align: center;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
}

.info-img {
    width: 150px;
    height: 112px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    align-self: center;
}

.info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.info-img:hover img {
    transform: scale(1.05);
}

/* 图片上的置顶标签 */
.img-top-tag {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
}

.info-imgcontent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    min-height: 100px;
}

/* 标题行：左侧标题，右侧日期 */
.info-imgtitle-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.info-imgtitle {
    min-width: 0;
    margin-bottom: 0;
}

.info-imgtitle a {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    line-height: 1.4;
}

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

/* 右侧日期 */
.info-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 15px;
    flex-shrink: 0;
    line-height: 1.6;
}

.info-summary {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 淡蓝色区域：分类、地区、有效期 - 每个标签独立矩形框 */
.info-imgmeta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.info-imgmeta span,
.info-imgmeta .category-label {
    display: inline-block;
    background: rgba(90, 165, 240, .1);
    border-radius: 2px;
    padding: 2px 7px;
    font-size: 14px;
    color: #5aa5f0;
    line-height: 20px;
    border: none;
    white-space: nowrap;
}

/* info-imgmeta 内使用 chuzu-tag 时，以 chuzu-tag 样式为准，覆盖父容器的大字号 */
.info-imgmeta .chuzu-tag {
    padding: 3px 6px;
    font-size: 12px;
    line-height: 18px;
}

.info-imgmeta i {
    margin-right: 4px;
    font-size: 12px;
}

/* 自定义字段区域 */
.info-custom-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #555;
    flex: 1;
    min-width: 0;
}

/* 底部行：自定义字段左对齐，日期右对齐 */
.info-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

/* 右侧：租金+日期垂直排列右对齐 */
.info-price-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    margin-left: 10px;
}

/* 租金大字红色 */
.info-rent {
    white-space: nowrap;
    margin-bottom: 4px;
}

.rent-num {
    font-size: 20px;
    font-weight: bold;
    color: #EE3131;
}

.rent-unit {
    font-size: 13px;
    color: #EE3131;
    margin-left: 2px;
}

/* 底部左侧：tag + 自定义字段垂直排列 */
.info-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.cf-item {
    display: inline-flex;
    align-items: center;
}

.cf-label {
    color: #888;
}

.cf-value {
    color: #333;
}

.cf-value .field-number {
    color: #EE3131;
    font-weight: bold;
}

.cf-unit {
    color: #888;
    font-size: 12px;
    margin-left: 2px;
}

/* 栏目标签 */
.category-label {
    color: #999;
    font-size: 13px;
}

/* 时间样式 */
.info-time {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 15px;
    flex-shrink: 0;
}

/* 图片数量标签 */
.image-count-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 2px 6px;
    font-size: 11px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 0 0 0 4px;
    line-height: 1.2;
}

/* 卡片式列表样式 */
.card-imglist {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.card-imglist li {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;

}

.card-img {
    position: relative;
    height: 150px;
    overflow: hidden;
}

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

}

.card-price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(238, 49, 49, 0.9);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.card-content {
    padding: 12px;
}

.card-title {
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.card-title a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-imglist li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-img:hover img {
    transform: scale(1.08);
}

/* 右侧图片列表样式 - 与详情页保持一致 */
.yui-index-info-list-right .yui-img-list {
    margin-bottom: 10px;
}

.yui-index-info-list-right .yui-img-list img {
    width: 100%;
    height: auto;
    margin: 5px 0;
    box-sizing: border-box;
    display: block;
}

/* 横向网格列表样式 */
.horizontal-grid-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid-item {
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

}

/* 右侧模块样式 - 与详情页保持一致 */
.bbs-hot {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 0 10px 10px 10px;
}

.yui-small-list ul {
    padding: 5px 0;
}

.yui-small-list ul li {
    line-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yui-small-list ul li a {
    color: #666;
    font-size: 14px;
}

.yui-small-list ul li a:hover {
    color: #EE3131;
}

/* 暂无信息样式 */
.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 !important;
}

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

/* 发布按钮样式 */
.index-list-post a {
    display: inline-block;
    padding: 0 20px;
    height: 32px;
    line-height: 32px;
    background: #3092d5;
    color: #fff;
    border-radius: 4px;
}

.index-list-post a:hover {
    opacity: 0.9;
}

.top-tag {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
   
    background-size: contain;
}

.top-tag-category {
    background-image: url('../images/icon_title2.gif');
}

/* 当前分类标签样式 */
.yui_cur2{color:#c4284d;font-weight:700} /* 当前分类高亮 */

/* 横向格子布局样式 */
.horizontal-grid-list{list-style:none;padding:0;margin:0} /* 网格列表容器 */
.grid-item{margin-bottom:20px;border:1px solid #e5e5e5;border-radius:8px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.08)} /* 网格项样式 */
.grid-item:hover{transform:translateY(-3px);box-shadow:0 4px 12px rgba(0,0,0,.15);border-color:#ddd} /* 网格项悬停效果 */
.grid-content{display:flex;background:#fff} /* 网格内容布局 */
.grid-img{width:220px;height:165px;overflow:hidden;flex-shrink:0} /* 图片容器 */
.grid-img img{width:100%;height:100%;object-fit:cover} /* 图片样式 */
.grid-img img:hover{transform:scale(1.1)} /* 图片悬停放大效果 */
.grid-info{padding:15px 20px;flex:1;position:relative} /* 信息区域布局 */
.grid-title{margin:0 0 10px;font-size:18px;line-height:24px;font-weight:600} /* 标题样式 */
.grid-title a{color:#333;text-decoration:none} /* 标题链接样式 */
.grid-title a:hover{color:#c4284d} /* 标题链接悬停效果 */
.grid-desc{margin:0 0 10px;font-size:14px;line-height:22px;color:#666;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical} /* 描述文本样式 */
.grid-meta{display:flex;flex-wrap:wrap;margin-bottom:12px;gap:15px} /* 元数据布局 */
.grid-meta span{font-size:13px;color:#777;display:inline-flex;align-items:center} /* 元数据项样式 */
.grid-meta i{margin-right:4px;font-size:14px} /* 元数据图标样式 */
.grid-price-info{display:flex;justify-content:space-between;align-items:center;margin-top:10px} /* 价格信息布局 */
.grid-price{font-size:15px;color:#333} /* 价格文本样式 */
.price-value{font-size:20px;color:#c4284d;font-weight:700;margin:0 3px} /* 价格数值样式 */
.price-unit{font-size:14px} /* 价格单位样式 */
.grid-contact{display:flex;gap:10px} /* 联系按钮组布局 */
.contact-phone,.btn-view{display:inline-block;padding:5px 12px;font-size:13px;border-radius:4px;text-decoration:none} /* 联系按钮基础样式 */
.contact-phone{background:#f0f7ff;color:#0a66c2;border:1px solid #d1e5ff} /* 电话按钮样式 */
.btn-view{background:#c4284d;color:#fff;border:1px solid #c4284d} /* 查看按钮样式 */
.contact-phone:hover{background:#e0f0ff} /* 电话按钮悬停效果 */
.btn-view:hover{background:#b21d43} /* 查看按钮悬停效果 */

/* 分页样式 */
.pagination{margin:30px 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:60px} /* 上一页下一页按钮样式 */
.pagination .ellipsis{border:none;padding:0 4px;color:#666;min-width:20px} /* 省略号样式 */

/* 加载更多按钮样式 - 简洁版 v2.0 */
.pagination-container {
    margin: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    clear: both;
}

.load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #666;
    text-align: center;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    position: relative;

    margin: 0 auto;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.load-more:before {
    content: '↓';
    font-size: 12px;

    opacity: 0.7;
}

.load-more:hover {
    background: #c4284d;
    border-color: #c4284d;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(196,40,77,0.2);
}

.load-more:hover:before {
    transform: translateY(2px);
}

.load-more.loading {
    color: #999;
    pointer-events: none;
    background: #f8f9fa;
    border-color: #e9ecef;
}

.load-more.loading:before {
    display: none;
}

.load-more.loading:after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #c4284d;
    border-radius: 50%;

}

.load-more-end {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #f8f9fa;
    color: #999;
    text-align: center;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin: 0 auto;
    font-weight: 500;
}

.load-more-end:before {
    content: '✓';
    font-size: 12px;
    color: #28a745;
}



/* 标签样式 */
.top-tag{display:inline-block;padding:0;background-color:#EE3131;color:#fff;font-size:12px;border-radius:2px;margin-right:5px;line-height:20px;vertical-align:middle;text-align:center;width:20px;height:20px;box-sizing:border-box} /* 置顶标签 - 20px正方形小圆角 */
.img-tag{display:inline-block;padding:2px 5px;background-color:#3498db;color:#fff;font-size:12px;border-radius:2px;margin-right:5px} /* 图片标签 */

/* 置顶信息标题样式 - 与首页保持一致 */
.info-list li.top-item .info-title a,
.category-list li.top-item .info-title a,
.info-imglist li.top-item .info-imgtitle a {
    color: #EE3131 !important;
    font-weight: bold;
}

.info-list li.top-item .info-title a:hover,
.category-list li.top-item .info-title a:hover {
    color: #EE3131 !important;
    text-decoration: underline;
}

/* 分类链接保持灰色不变 */
.info-list li .info-title a.category-link,
.info-list li.top-item .info-title a.category-link {
    color: #999 !important;
    text-decoration: none;
    margin-right: 5px;
}

.info-list li .info-title a.category-link:hover,
.info-list li.top-item .info-title a.category-link:hover {
    color: #999 !important;
    text-decoration: none !important;
}

/* ===== 无限滚动加载指示器样式 ===== */
.infinite-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 14px;
    color: #999;
}

/* ===== 搜索专题页面样式 ===== */
/* 专题头部样式 */
.topic-header {
    background: transparent;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    margin-bottom: 12px;
}

.topic-header-content {
    width: 100%;
    margin: 0;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.topic-header-content .title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.topic-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
    flex: 0 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-icon {
    font-size: 20px;
    color: var(--primary-color);
    opacity: 0.95;
}

.topic-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    padding: 0 12px;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-stats {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 0;
    margin-right: 30px;
    align-items: center;
    white-space: nowrap;
}

.topic-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topic-stats span .stat-number {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 4px;
}

/* 图片数量标签 */
.info-title .image-count-tag {
    display: inline-block;
    margin-left: 5px;
    padding: 1px 5px;
    font-size: 12px;
    background-color: #e6f7ff;
    color: #1890ff;
    border-radius: 3px;
    font-weight: normal;
}

/* 过期信息样式 */
.info-title a.expired {
    text-decoration: line-through;
    color: #999;
}

/* 搜索专题空状态样式 */
.topic-no-info {
    text-align: center;
    padding: 60px 20px;
}

.topic-no-info .no-info-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.topic-no-info p:first-of-type {
    font-size: 16px;
    color: #999;
}

.topic-no-info p:last-of-type {
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
}

/* ===== chuzu模板专用样式 ===== */
.chuzu-li {
    display: flex;
    align-items: stretch;
    padding: 14px 15px 14px 5px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.chuzu-li:hover {
    background-color: #f9f9f9;
}

.chuzu-li.top-item {
    background-color: #fffbf5;
}

/* 图片区 */
.chuzu-img {
    width: 150px;
    height: 112px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    align-self: center;
}

.chuzu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.chuzu-img:hover img {
    transform: scale(1.05);
}

/* 中间主内容 */
.chuzu-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
}

/* 标题行 */
.chuzu-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.chuzu-title a {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chuzu-title a:hover {
    color: #EE3131;
}

.chuzu-title a.expired {
    text-decoration: line-through;
    color: #999;
}

/* 置顶标识 */
.chuzu-top-badge {
    display: inline-block;
    padding: 1px 5px;
    font-size: 11px;
    color: #fff;
    background: #EE3131;
    border-radius: 2px;
    flex-shrink: 0;
    line-height: 18px;
}

/* 简介 */
.chuzu-summary {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 自定义字段行 */
.chuzu-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 8px;
}

.chuzu-field-item {
    font-size: 13px;
    color: #555;
    margin-right: 16px;
}

.chuzu-field-item + .chuzu-field-item::before {
    content: '';
}

.chuzu-field-label {
    color: #999;
}

.chuzu-field-value {
    color: #333;
}

.chuzu-field-value .field-number {
    color: #EE3131;
    font-weight: bold;
}

/* 分类/地区标签行 */
.chuzu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.chuzu-tag {
    display: inline-block;
    background: rgba(90, 165, 240, .1);
    border-radius: 2px;
    padding: 3px 6px;
    font-size: 12px;
    color: #5aa5f0;
    line-height: 18px;
}

/* 右侧：租金+日期 */
.chuzu-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
    margin-left: 15px;
    min-width: 90px;
    padding: 2px 0;
}

/* 租金大字红色 */
.chuzu-price {
    text-align: right;
    white-space: nowrap;
}

.chuzu-price-num {
    font-size: 22px;
    font-weight: bold;
    color: #EE3131;
}

.chuzu-price-unit {
    font-size: 13px;
    color: #EE3131;
    margin-left: 2px;
}

/* 日期 */
.chuzu-date {
    font-size: 12px;
    color: #bbb;
    white-space: nowrap;
}
/* ===== template/pc/css/filter.css ===== */
/* 分类与区域筛选美化 - 紧凑版 */
.filter-container {
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.filter-section {
  padding: 7px 12px;
  display: flex;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-label {
  width: 50px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  line-height: 20px;
  padding-top: 0;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
}

.filter-options {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0;
  display: flex;
  align-items: center;
}

.filter-item {
  display: inline-block;
  padding: 2px 8px;
  font-size: 14px;
  color: #076df2;
  border-radius: 3px;
  text-decoration: none;

  line-height: 1.2;
  position: relative;

  margin-bottom: 2px;
  margin-right: 2px;
  border-right: 1px solid #e0e0e0;
  padding-right: 10px;
  margin-right: 8px;
}

.filter-item:last-child {
  border-right: none;
}

.filter-item:hover {
  color: #3092d5;
  background-color: rgba(196, 40, 77, 0.05);
}

.filter-item.active {
  background-color: #3092d5;
  color: #fff;
}

.filter-item span {
  margin-left: 2px;
  font-size: 13px;
  opacity: 0.85;
}

.filter-item.active span {
  color: rgba(255,255,255,0.9);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* 紧凑布局 */
.filter-combined-row {
  display: flex;
  border-bottom: 1px solid #f5f5f5;
}

.compact-section {
  flex: 1;
  border-bottom: none;
  border-right: 1px solid #f5f5f5;
}

.compact-section:last-child {
  border-right: none;
}

/* 清除浮动 */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* 保持左右列表容器宽度一致 - 与详情页保持一致 */
.yui-index-info-list {
  display: flex;
  flex-wrap: nowrap;
}

.yui-index-info-list-left {
  width: 910px;
  min-height: 400px;
  float: left;
  position: relative;
  min-width: 890px;
  padding: 5px 10px;
}

.yui-index-info-list-right {
  width: 260px;
  min-height: 600px;
  float: right;
  flex-shrink: 0;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
  .filter-section {
    flex-direction: column;
  }
  
  .filter-label {
    width: 100%;
    margin-bottom: 5px;
  }
  
  .filter-options {
    width: 100%;
  }
  
  .filter-combined-row {
    flex-direction: column;
  }
  
  .compact-section {
    border-right: none;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .yui-index-info-list {
    flex-direction: column;
  }
  
  .yui-index-info-list-right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
/* ===== 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;
}
