/* view.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/view.css ===== */
/* ====================
   0. 置顶角标样式
===================== */

/* 置顶角标 - 三角形样式，位于左侧容器右上角 */
.top-corner-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 999;
    cursor: pointer;
}

/* 首页置顶角标 - 红色三角形 */
.top-corner-badge.home-top {
    border-top: 50px solid #ff4757;
    border-left: 50px solid transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.top-corner-badge.home-top::after {
    content: '首页置顶';
    position: absolute;
    top: -45px;
    right: 0px;
    color: white;
    font-size: 9px;
 
    transform: rotate(45deg);
    transform-origin: center;
    white-space: nowrap;
    letter-spacing: 0.3px;

}

/* 分类置顶角标 - 蓝色三角形 */
.top-corner-badge.category-top {
    border-top: 50px solid #3742fa;
    border-left: 50px solid transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.top-corner-badge.category-top::after {
    content: '分类置顶';
    position: absolute;
    top: -45px;
    right: 0px;
    color: white;
    font-size: 9px;

    transform: rotate(45deg);
    transform-origin: center;
    white-space: nowrap;
    letter-spacing: 0.3px;

}

/* 角标悬停效果 */
.top-corner-badge:hover {
    transform: scale(1.05);

}

.top-corner-badge.home-top:hover {
    border-top-color: #ff3742;
}

.top-corner-badge.category-top:hover {
    border-top-color: #2f3542;
}

/* 置顶标签样式（已废弃，保留用于兼容性） */
.top-tag {
    display: inline-block;
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 8px;
    font-weight: normal;
    vertical-align: middle;
    line-height: 1.2;
}

/* 根据置顶类型设置不同颜色 */
.yui-info-left .top-tag {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
}

/* 如果是分类置顶，使用蓝色 */
.yui-info-left[data-top-type="category"] .top-tag {
    background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
}

/* 主题适配 */
.theme-red .top-tag {
    background-color: var(--primary-color, #e53935);
}

.theme-blue .top-tag {
    background-color: var(--primary-color, #4285f4);
}

.theme-orange .top-tag {
    background-color: var(--primary-color, #ff6b01);
}

.theme-green .top-tag {
    background-color: var(--primary-color, #4caf50);
}

.theme-purple .top-tag {
    background-color: var(--primary-color, #9c27b0);
}

.theme-pink .top-tag {
    background-color: var(--primary-color, #e91e63);
}



/* ====================
   1. 页面布局与导航
===================== */



/* 主内容区域布局 */
.yui-info { display: flex; justify-content: space-between; }
.yui-info-left { 
    width: 900px; 
    min-height: 400px; 
    float: left; 
    position: relative; 
    padding:15px; 
}
.yui-info-right { width: 260px; min-height: 600px; float: right; }

/* ====================
   2. 信息展示模块
===================== */

/* 信息标题 */
.yui-info-title h1 { font-size: 20px; color: #333; line-height: 50px; }

/* 信息元信息区域 - 关键：必须允许溢出 */
.yui-info-qt { 
    border-bottom: 1px #ebebeb solid; 
    padding: 8px 0;
    color: #888;
    position: relative;
}

.yui-info-qt p { 
    line-height: 35px;
    margin: 0;
    position: relative;
}

.yui-info-qt p span { 
    margin-right: 20px; 
}

/* 详情页第一行"编号/时间/浏览/有效期"挤在一起显示，不需要额外间距 */
.yui-info-qt p.info-meta-line span { 
    margin-right: 5px; 
}

.yui-info-qt a { 
    margin-left: 10px; 
    font-size: 14px; 
}

.yui-info-qt a:hover { 
    opacity: 0.8; 
    text-decoration: none; 
}

/* 管理链接容器 */
.manage-links-wrapper {
    position: absolute;
    right: 0;
    top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.manage-links-wrapper a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s;
}

.manage-links-wrapper a:hover {
    background: #f5f5f5;
    color: #1b68ff;
}

.manage-links-wrapper a i {
    font-size: 13px;
}

/* 管理下拉菜单 */
.manage-dropdown {
    position: relative;
    display: inline-block;
}

.manage-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 13px;
    color: #1b68ff;
    text-decoration: none;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
}

.manage-toggle:hover {
    background: #f5f5f5;
}

.manage-toggle .svg-icon:first-of-type {
    --icon-size: 12px;
}

.manage-toggle .svg-icon:last-of-type {
    --icon-size: 10px;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

/* 悬停时三角图标旋转 */
.manage-dropdown:hover .manage-toggle .svg-icon:last-of-type {
    transform: rotate(180deg);
}

.manage-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 2px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    min-width: 90px;
    z-index: 99999;
    overflow: hidden;
    padding: 0;
}

/* 添加伪元素扩大悬停区域，避免鼠标移动时菜单消失 */
.manage-dropdown::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 6px);
    z-index: 1;
}

.manage-menu a {
    display: block;
    padding: 8px 0;
    margin: 0;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s;
}

.manage-menu a:hover {
    background: #f5f5f5;
    color: #1b68ff;
}

.manage-menu a.manage-delete {
    color: #dc3545;
}

.manage-menu a.manage-delete:hover {
    background: #fff5f5;
    color: #c82333;
}

.manage-dropdown:hover .manage-menu {
    display: block;
}

/* 确保菜单悬停时不消失 */
.manage-menu:hover {
    display: block;
}


/* 信息内容 */
.yui-content-wrap { 
    line-height: 26px; 
    padding: 10px 10px 10px 0; 
    font-size: 14px; 
    word-break: break-all; 
    margin-bottom: 10px;
    position: relative;
}
.yui-content-wrap video { max-width: 890px; }

/* 响应式视频容器 - 解决iframe视频高度和黑边问题 */
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 890px;
    margin: 15px 0;
}

.video-container::before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 宽高比 */
}

.video-container iframe,
.video-container video,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 特殊处理 - 为保持向后兼容，对edui-faked-video类也应用响应式处理 */
.yui-content-wrap .edui-faked-video {
    max-width: 100%;
    height: auto;
}

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

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

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

/* 确保视频容器在小屏幕设备上正确显示 */
@media (max-width: 768px) {
    .video-container,
    p.video-container {
        max-width: 100vw;
        width: 100%;
        margin: 15px 0;
        overflow: visible;
        position: relative;
    }
    
    .video-container iframe,
    .video-container video,
    .video-container embed,
    p.video-container iframe,
    p.video-container video,
    p.video-container embed {
        max-width: 100vw;
        width: 100% !important;
        height: auto !important;
        position: static;
        border: none;
    }
    
    /* 修复直接使用iframe的视频 */
    .yui-content-wrap iframe[width][height] {
        width: 100% !important;
        height: auto !important;
    }
    
    .yui-content-wrap .edui-faked-video {
        max-width: 100% !important;
        height: auto !important;
    }
}
.yui-content-wrap img, .yui-content-wrap p img { max-width: 500px; margin-bottom: 10px; }

/* 自定义字段单列布局 - 极简风格 */
.custom-fields-list {
    margin: 5px 0;
}

.custom-fields-list .field-item {

    line-height: 1.8;
}

.custom-fields-list .field-label {
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.custom-fields-list .field-value {
    color: #333;
    font-size: 14px;
}

/* 自定义字段中的数字样式 - 详情页 */
.custom-fields-list .field-value .field-number {
    color: #ff4d4f;
    font-weight: bold;
}

/* 联系方式标题 */
.contact-info h2 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

/* 号码归属地 */
.phone-location {
    color: #999;
    font-size: 12px;
    margin-left: 8px;
}

/* 使用须知 */
.posting-notice {
    margin-bottom: 25px;
}

/* 使用须知样式 */
.infoquote { margin-bottom: 25px; }
.infoquote p { line-height: 1.6; }
.infoquote .t { font-weight: bold; }

/* 标签样式 - 小尺寸淡色徽章风格 */
.info-tags { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 6px;
    margin-top: 8px;
}

.info-tag { 
    display: inline-flex; 
    align-items: center; 
    padding: 0 3px; 
    background-color: #f5f5f5; 
    color: #999; 
    border-radius: 3px; 
    font-size: 11px; 
    line-height: 18px;
    height: 18px;
    border: 1px solid #e8e8e8;
}

.info-tag a {
    color: inherit;
    text-decoration: none;
}

.info-tag a:hover {
    opacity: 0.8;
}

/* 主区域标签 */
.info-tag.main-area { 
    background-color: #f0f9ff; 
    color: #76b3e0;
    border-color: #e3f2fd;
}

/* 子区域标签 - 去掉箭头 */
.info-tag.sub-area { 
    background-color: #f5f5f5; 
    color: #999;
    border-color: #e8e8e8;
}

/* 主分类标签 */
.info-tag.main-category { 
    background-color: #f0f9ff; 
    color: #76b3e0;
    border-color: #e3f2fd;
}

/* 子分类标签 - 去掉箭头 */
.info-tag.sub-category { 
    background-color: #f5f5f5; 
    color: #999;
    border-color: #e8e8e8;
}

/* 置顶标签 - 在info-tags中显示 */
.info-tag.top-tag {
    padding: 0 8px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    border-radius: 3px;
}

/* 首页置顶 - 红色 */
.info-tag.top-tag.home-top {
    background-color: #fff1f0;
    color: #cf1322;
    border-color: #ffccc7;
}

/* 分类置顶 - 紫色 */
.info-tag.top-tag.category-top {
    background-color: #f9f0ff;
    color: #722ed1;
    border-color: #d3adf7;
}

/* 标题后的置顶标签样式 */
.title-top-tag {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    line-height: 20px;
    text-align: center;
    box-sizing: border-box;
}

/* 首页置顶 - 红色背景 */
.title-top-tag.home-top {
    background-color: #ff4d4f;
    color: white;
}

/* 分类置顶 - 紫色背景 */
.title-top-tag.category-top {
    background-color: #8e44ad;
    color: white;
}

/* 图片画廊样式 - 用于展示信息图片集 */
.image-gallery { margin: 20px 0; width: 100%; }
.gallery-grid { display: flex; flex-wrap: wrap; margin: -10px; }
.gallery-item { width: calc(33.333% - 20px); margin: 10px; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: relative; }
.gallery-item img { width: 100%; height: 200px; object-fit: fill; display: block; cursor: pointer; }
.gallery-item img:hover { transform: scale(1.05); }

/* 图片说明隐藏 */
.gallery-caption {
    display: none;
}

/* 隐藏的元数据 */
.hidden-metadata {
    display: none;
}

/* 联系信息 */
.contact-box { display: flex; gap: 20px; margin-bottom: 15px; }
.contact-item { font-size: 14px; }
.contact-item strong { color: #333; font-weight: bold; }

/* 信息状态 */
.expired-stamp { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-25deg); z-index: 10; opacity: 0.7; }
.expired-text { color: #e74c3c; }

/* ====================
   3. 右侧边栏
===================== */

/* 右侧模块样式 - 与列表页保持一致 */
.bbs-hot { 
    background: #fff; 
    margin-bottom: 10px; 
    padding: 0 10px 10px 10px;
    border-radius: 4px;
}
.yui-img-list { 
    margin-bottom: 10px; 
}
.yui-img-list img { 
    width: 100%; 
    height: auto;
    margin: 5px 0; 
    box-sizing: border-box;
    display: block;
}
.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; 
}

/* ====================
   4. 交互元素
===================== */

/* 弹窗样式 */
#yui-popup { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 250px; height: auto; background-color: #FFF; border: 1px solid #ccc; box-shadow: 0 2px 4px rgba(0,0,0,0.2); z-index: 9999; padding: 0 0 10px; }
#yui-popup .title { height: 42px; line-height: 42px; border-bottom: 1px solid #eee; font-size: 14px; color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; background-color: #F8F8F8; border-radius: 2px 2px 0 0; padding: 0 80px 0 20px; }
#yui-popup .image { text-align: center; }
#yui-popup .image img { width: 250px; height: 230px; }
#yui-popup .button { text-align: right; margin-right: 10px; margin-top: 10px; }
#yui-popup button { background-color: #2e8ded; color: #fff; height: 28px; line-height: 28px; border: 1px solid #dedede; border-radius: 2px; font-weight: 400; cursor: pointer; text-decoration: none; border-color: #4898d5; margin: 0 6px; padding: 0 15px; }
.yui_mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 9998; display: none; }

/* 灯箱样式 - 用于图片放大预览 */
.lightbox-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; flex-direction: column; cursor: pointer; }
.lightbox-container { position: relative; max-width: 90%; max-height: 90vh; background-color: #fff; border-radius: 6px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); overflow: hidden; cursor: default; margin: 0 auto; padding: 10px; opacity: 0; }
.lightbox-content { max-width: 100%; max-height: 70vh; object-fit: contain; display: block; border: none; margin: 0 auto; }
.lightbox-caption { color: #333; font-size: 16px; padding: 10px; text-align: center; width: 100%; background-color: #fff; margin-top: 10px; }
.lightbox-close { position: absolute; top: 5px; right: 10px; color: #333; font-size: 30px; font-weight: bold; cursor: pointer; z-index: 10000; line-height: 30px; width: 30px; height: 30px; text-align: center; border-radius: 50%; }
.lightbox-close:hover { color: #EE3131; background-color: rgba(0, 0, 0, 0.1); }
/* 切换箭头固定在视窗两侧，不随图片大小变化位置 */
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); color: #fff; font-size: 28px; font-weight: bold; cursor: pointer; padding: 15px; background-color: rgba(0, 0, 0, 0.6); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; z-index: 10001; border: 2px solid rgba(255, 255, 255, 0.3); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-prev:hover, .lightbox-next:hover { background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.6); transform: translateY(-50%) scale(1.1); }
/* 只有一张图片时隐藏切换箭头 */
.lightbox-overlay.single-image .lightbox-prev,
.lightbox-overlay.single-image .lightbox-next { display: none; }
/* 响应式设计：在小屏幕上调整箭头位置 */
@media (max-width: 768px) {
    .lightbox-prev { left: 15px; width: 45px; height: 45px; font-size: 24px; }
    .lightbox-next { right: 15px; width: 45px; height: 45px; font-size: 24px; }
}

/* 操作提示弹出层样式 */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; z-index: 10000; }
.modal-content { background: #fff; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); width: 330px; height: 220px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; box-sizing: border-box; }
.modal-icon { font-size: 48px; margin: 0 0 12px; flex-shrink: 0; }
.error-icon { color: #ff4757; }
.success-icon { color: #2ed573; }
.modal-title { font-size: 16px; font-weight: bold; margin: 0 0 8px; color: #333; flex-shrink: 0; }
.modal-message { font-size: 13px; color: #666; margin: 0 0 16px; padding: 0 20px; line-height: 1.5; flex-shrink: 0; }
.modal-buttons { padding: 0 20px; flex-shrink: 0; }
.modal-btn { background: #2e8ded; color: #fff; border: none; padding: 8px 24px; border-radius: 4px; cursor: pointer; font-size: 13px; }
.modal-btn:hover { background: #1e7bd7; }
.modal-btn.primary { background: #2e8ded; }

/* 加载提示样式 */
.loading-modal { padding: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.loading-spinner { width: 40px; height: 40px; border: 4px solid #f3f3f3; border-top: 4px solid #2e8ded; border-radius: 50%; margin: 0 0 12px; flex-shrink: 0; animation: spin 1s linear infinite; }
.loading-text { font-size: 13px; color: #666; margin: 0; flex-shrink: 0; }

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

/* ====================
   5. 通用样式
===================== */

/* 通用按钮样式 */
button { background: none; border: 0; outline: none; padding: 0; cursor: pointer; }

/* 辅助类 */
.mt10 { margin-top: 10px; }
.pt20 { padding-top: 20px; }
.yui-clear { clear: both; }

/* 弹出层样式 */
.password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.password-modal-content {
    position: relative;
    width: 360px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);

}



.modal-header {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #999;
    cursor: pointer;

    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

.close-modal:hover {
    color: #666;
}

.modal-body {
    padding: 20px;
}

.password-input-group {
    margin-bottom: 15px;
}

.password-input-group input {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;

    box-sizing: border-box;
}

.password-input-group input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
    outline: none;
}

.error-message {
    color: #f44336;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.modal-footer button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;

    border: none;
    margin-left: 10px;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-cancel:hover {
    background: #e8e8e8;
}

.btn-submit {
    background: #0066cc;
    color: #fff;
}

.btn-submit:hover {
    background: #0052a3;
}

/* 管理链接样式 */
.manage-links a {
    margin-left: 15px !important;
    text-decoration: none;
}

.manage-links a:first-child {
    margin-left: 0 !important;
}

.manage-links a:hover {
    opacity: 0.8;
}

/* ====================
   6. 联系方式区域样式
===================== */

/* 联系方式区域样式 */
.contact-info {
    margin: 15px 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.contact-item {
    margin-bottom: 8px;
    line-height: 24px;
    font-size: 14px;
}

.contact-label {
    display: inline-block;
    width: 60px;
    color: #666;
}

.contact-value {
    color: #333;

}

.contact-value .phone-text {
    font-weight: bold;
}

.expired-text {
    color: #ff4d4f;
    font-weight: normal;
}

/* 温馨提示样式 - 简洁大方版 */
.contact-tip {
    margin-top: 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    font-size: 14px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
}

.contact-tip i {
    font-size: 16px;
    color: #007bff;
    flex-shrink: 0;
}

.contact-tip span {
    flex: 1;
    line-height: 1.5;
}

.contact-tip a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-tip a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ========================================
   发布须知/使用须知样式
   ======================================== */
.posting-notice {
    margin: 0 0 15px;
    background: #fff8db;
    border: 1px solid #ffd77a;
    border-radius: 4px;
    box-sizing: border-box;
}

.notice-title {
    margin: 0;
    padding: 8px 12px;
    background: #fff5cc;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffd77a;
}

.notice-title .svg-icon {
    color: #ff9900;
    --icon-size: 14px;
    margin-right: 6px;
}

.notice-title span {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.notice-content {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.notice-content p {
    margin: 0 0 4px;
    padding-left: 16px;
    position: relative;
}

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

.notice-content p:before {
    content: "①";
    position: absolute;
    left: 0;
    color: #ff9900;
}

.notice-content p:nth-child(2):before { content: "②"; }
.notice-content p:nth-child(3):before { content: "③"; }
.notice-content p:nth-child(4):before { content: "④"; }
.notice-content p:nth-child(5):before { content: "⑤"; }
.notice-content p:nth-child(6):before { content: "⑥"; }
.notice-content p:nth-child(7):before { content: "⑦"; }
.notice-content p:nth-child(8):before { content: "⑧"; }

.notice-content p.highlight {
    color: #f56c6c;
    font-weight: 500;
}

.notice-content .agreement-link {
    color: #0066cc;
    text-decoration: none;
}

.notice-content .agreement-link:hover {
    color: #f60;
    text-decoration: underline;
}

/* 电话号码图片样式 */
.phone-image {
    height: auto;
    max-height: 28px;
    vertical-align: middle;
    margin-left: 0;
}

/* 联系认证标签 */
.contact-verify {
    margin: 10px 0;
}

.verify-tag {
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    color: #666;
}

.verify-tag img {
    vertical-align: middle;
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.user-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23666' d='M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'%3E%3C/path%3E%3C/svg%3E");
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23666' d='M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z'%3E%3C/path%3E%3C/svg%3E");
}

.address-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23666' d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'%3E%3C/path%3E%3C/svg%3E");
}

.phone-call-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    margin-left: 5px;
}

/* ====================
   7. 通用样式与辅助类
   注意:所有模态框和弹窗样式已移至 view-modals.css
===================== */

/* 通用按钮样式 */
button { background: none; border: 0; outline: none; padding: 0; cursor: pointer; }

/* 辅助类 */
.mt10 { margin-top: 10px; }
.pt20 { padding-top: 20px; }

/* ====================
   8. 内联 SVG 图标（替代 font-awesome）
===================== */
.svg-icon {
    width: var(--icon-size, 1em);
    height: var(--icon-size, 1em);
    vertical-align: middle;
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* SVG 旋转动画（替代 fa-spin） */
.svg-spin {
    animation: svg-spin 1s linear infinite;
}
@keyframes svg-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.yui-clear { clear: both; }
/* ==================== 相关信息列表（原内联样式外置） ==================== */
.related-posts { margin: 20px 0; }
.related-posts h3 { font-size: 15px; font-weight: 600; color: #333; border-left: 3px solid #1890ff; padding-left: 10px; margin-bottom: 12px; }
.related-posts ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.related-posts li { border-bottom: 1px solid #f0f0f0; padding: 8px 0; }
.related-posts .rp-link { color: #333; font-size: 14px; text-decoration: none; display: flex; justify-content: space-between; align-items: center; }
.related-posts .rp-title { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; padding-right: 10px; }
.related-posts .rp-date { color: #999; font-size: 12px; flex-shrink: 0; }
.related-posts .rp-more-wrap { text-align: right; margin-top: 8px; }
.related-posts .rp-more { font-size: 13px; color: #1890ff; text-decoration: none; }

/* ===== template/pc/css/view-modals.css ===== */
/**
 * 详情页面弹窗样式 - 统一设计系统
 */

/* ====================
   统一模态框样式 - 所有弹窗使用一套设计
===================== */

/* 模态框容器 */
.unified-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* 模态框内容 */
.unified-modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 420px;
    max-width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

/* 模态框头部 */
.unified-modal-header {
    padding: 12px 20px 10px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: #fafbfc;
    height: 42px;
    box-sizing: border-box;
}

.unified-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* 模态框关闭按钮 */
.unified-modal-close {
    font-size: 20px;
    cursor: pointer;
    color: #999;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: transparent;
    border: none;
    transition: all 0.2s;
}

.unified-modal-close:hover {
    color: #666;
    background: #f5f5f5;
}

/* 模态框主体 */
.unified-modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
}

/* 模态框底部 */
.unified-modal-footer {
    padding: 12px 20px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-shrink: 0;
    background: #fafbfc;
}

/* 统一按钮样式 */
.unified-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unified-btn-cancel {
    background: #fff;
    color: #666;
    border: 1px solid #e0e0e0;
}

.unified-btn-cancel:hover {
    background: #f8f9fa;
    border-color: #999;
    color: #333;
}

.unified-btn-primary {
    background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
    color: #fff;
    border: none;
}

.unified-btn-primary:hover {
    background: linear-gradient(135deg, #0070e0 0%, #1890ff 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

.unified-btn-primary:active {
    transform: translateY(0);
}

.unified-btn-primary:disabled {
    background: #d9d9d9;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.unified-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border: none;
}

.unified-btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.unified-btn-warning {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
}

.unified-btn-warning:hover {
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.unified-btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #ff4757 100%);
    color: #fff;
    border: none;
}

.unified-btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* 统一输入框样式 */
.unified-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.unified-input:focus {
    outline: none;
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

/* 统一文本域样式 */
.unified-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    resize: vertical;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.6;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.unified-textarea:focus {
    outline: none;
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

/* 统一错误提示样式 */
.unified-error {
    color: #ff4757;
    font-size: 12px;
    padding: 8px 12px;
    background: #fff1f0;
    border-radius: 4px;
    border-left: 3px solid #ff4757;
}

/* 动画效果 */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================
   密码验证模态框特有样式
===================== */

.password-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;

}

.password-input-group .unified-input {
    height: 40px;
    font-size: 14px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s;
    background: #fff;
}

.password-input-group .unified-input:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

.password-input-group .unified-input::placeholder {
    color: #999;
}

/* 操作说明样式 - 全新简洁设计（无左侧边框） */
.action-description {
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;

    border: 1px solid #e8e8e8;
}

.action-description.refresh {
    background: #e6f4ff;
    border-color: #91d5ff;
}

.action-description.refresh p {
    color: #0050b3;
}

.action-description.edit {
    background: #f0f9ff;
    border-color: #95de64;
}

.action-description.edit p {
    color: #237804;
}

.action-description.delete {
    background: #fff1f0;
    border-color: #ffa39e;
}

.action-description.delete p {
    color: #cf1322;
}

.action-description p {
    margin: 0;
    font-weight: 500;
}

/* ====================
   举报模态框特有样式
===================== */

.report-section {
    display: flex;
    flex-direction: column;
}

.report-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.report-type-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    background: #fff;
}

.report-type-item:hover {
    background-color: #f8f8f8;
    border-color: #999;
}

.report-type-item input[type="radio"] {
    margin-right: 8px;
}

.report-type-item:has(input:checked) {
    background-color: #f5f5f5;
    border-color: #666;
    color: #333;
}

/* ====================
   置顶模态框样式
===================== */

.top-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.top-modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ========== 模态框头部 ========== */
.top-modal-banner {
    position: relative;
    padding: 16px 40px 16px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.top-modal-banner-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.top-modal-banner-sub {
    font-size: 12px;
    color: #999;
}

/* 支付成功时绿色头部 */
.top-modal-banner.banner-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a589 100%);
    border-bottom-color: transparent;
}

.top-modal-banner.banner-success .top-modal-banner-title {
    color: #fff;
}

.top-modal-banner.banner-success .top-modal-banner-sub {
    color: rgba(255,255,255,0.9);
}

.top-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    transition: all 0.2s;
}

.top-modal-close:hover {
    color: #333;
    background: #eee;
}

.top-modal-body {
    padding: 0 0 18px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    box-sizing: border-box;
    max-height: calc(90vh - 80px);
}

/* 置顶状态提示区域 */
.top-status-section {
    margin: 0 16px 16px;
    flex-shrink: 0;
}

.status-alert {
    padding: 6px 12px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
    border: none;
    background: transparent;
}

.status-alert i {
    font-size: 14px;
    flex-shrink: 0;
}

.status-alert strong {
    font-weight: 600;
}

.status-alert.status-info {
    background-color: transparent;
    border-color: transparent;
    color: #0050b3;
}

.status-alert.status-info i {
    color: #1890ff;
}

.status-alert.status-success {
    background-color: transparent;
    border-color: transparent;
    color: #135200;
}

.status-alert.status-success i {
    color: #52c41a;
}

.status-alert.status-warning {
    background-color: transparent;
    border-color: transparent;
    color: #ad6800;
}

.status-alert.status-warning i {
    color: #faad14;
}

.status-alert.status-error {
    background-color: transparent;
    border-color: transparent;
    color: #a8071a;
}

.status-alert.status-error i {
    color: #f5222d;
}

#topConfigs {
    min-height: 0;
    max-height: none;
    height: auto;
    position: relative;
    margin-bottom: 15px;
    overflow: visible;
    flex-shrink: 0;
}

.top-type-tabs {
    display: flex;
    padding: 0 16px;
    margin: 10px 0 12px;
    gap: 0;
    flex-shrink: 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-type-tab {
    flex: 1;
    padding: 10px 16px 11px;
    border: 1px solid transparent;
    border-bottom: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: #999;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
    margin-bottom: -1px;
    transition: all 0.2s;
    text-align: center;
}

.top-type-tab i {
    margin-right: 4px;
    font-size: 13px;
}

.top-type-tab.active {
    color: #333;
    background: #fff;
    border-top-color: #e0e0e0;
    border-left-color: #e0e0e0;
    border-right-color: #e0e0e0;
    border-bottom-color: #fff;
    font-weight: 600;
}

.top-type-tab:hover:not(.active) {
    color: #666;
    background: #f5f5f5;
}

.config-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    padding: 0 16px;
    margin-bottom: 0;
    align-items: stretch;
}

.config-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    grid-gap: 8px;
    row-gap: 8px;
    column-gap: 8px;
    padding: 0;
    margin-bottom: 0;
}

.placeholder-item {
    border: 1px dashed #d9d9d9;
    border-radius: 6px;
    padding: 8px 6px;
    min-height: 48px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.config-item {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 14px 8px 12px;
    cursor: pointer;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('/static/images/goods_k-d.png') center/cover no-repeat;
    transition: all 0.2s;
}

.config-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.config-item.selected {
    border-color: #c0392b;
    background: url('/static/images/goods_k_h.png') center/cover no-repeat;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* 推荐图标 */
.recommend-badge-img {
    position: absolute;
    top: -10px;
    left: -6px;
    width: 58px;
    height: auto;
    z-index: 3;
}

/* 选中角标 */
.config-check {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    padding: 5px 9px;
    background: #c0392b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    border-radius: 6px 0 8px 0;
    display: none;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.config-check i {
    color: #fff;
    font-size: 11px;
}

.config-item.selected .config-check {
    display: flex;
}

.config-content {
    text-align: center;
    width: 100%;
}

.config-title {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 1.3;
}

.config-price {
    color: #ff4757;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.config-daily {
    color: #888;
    font-size: 11px;
    line-height: 1.3;
    margin-top: 2px;
}

.config-days {
    color: #666;
    font-size: 10px;
    margin-top: 2px;
    line-height: 1;
}

.discount-corner {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    font-size: 8px;
    font-weight: bold;
    padding: 1px 3px;
    border-radius: 0 4px 0 4px;
    min-width: 14px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(255, 71, 87, 0.3);
}

.payment-section {
    border-top: 1px solid #e0e0e0;
    padding: 12px 16px 16px;
    margin-top: auto;
    min-height: 75px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.section-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: center;
    align-items: center;
}

.payment-methods.inline {
    display: inline-flex !important;
    margin-bottom: 0 !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    vertical-align: middle !important;
}

.payment-method {
    flex: 0 0 auto;
    min-width: 85px;
    max-width: 105px;
    border: 1px solid #d9d9d9;
   
    
    text-align: center;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.payment-method:hover {
    border-color: #007bff;
    box-shadow: 0 2px 4px rgba(0,123,255,0.12);
    transform: translateY(-1px);
    background: #f8fbff;
}

.payment-method.selected {
    border-color: #007bff;
    background: #f0f8ff;
    box-shadow: 0 2px 4px rgba(0,123,255,0.12);
}

.payment-image {
    width: 100%;
    height: auto;
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 4px;
    padding: 0;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 10px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0;
    box-shadow: 0 2px 6px rgba(0,123,255,0.2);
}

.submit-btn:hover:not(:disabled) {
    background: #0056b3;
    box-shadow: 0 3px 8px rgba(0,123,255,0.3);
    transform: translateY(-1px);
}

.submit-btn:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 1;
    box-shadow: none;
}

.loading, .error, .no-configs {
    text-align: center;
    padding: 15px;
    color: #666;
    font-size: 12px;
}

.error {
    color: #dc3545;
}

.success {
    color: #28a745;
}

/* 支付相关样式 */
.order-details {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.order-info {
    flex: 1;
    margin-bottom: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
}

.order-item.total {
    font-weight: 600;
    font-size: 18px;
    border-top: 2px solid #007bff;
}

/* ====================
   扫码支付页面 - 简洁大方设计
===================== */

.payment-qrcode-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px 0 0;
}

/* 主体区域 - 二维码展示 */
.qr-main-section {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
padding-bottom: 15px;
    min-height: 0;
}

/* 二维码容器 */
.qr-code-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.qr-code-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 支付金额 */
.payment-price {
    font-size: 28px;
    font-weight: 700;
    color: #ff4757;
    margin-bottom: 6px;
    letter-spacing: 1px;
    animation: fadeInUp 0.5s ease;
    line-height: 1.2;
}

/* 支付提示 */
.payment-hint {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-bottom: 0px;
    animation: fadeInUp 0.6s ease;
    line-height: 1.4;
}

/* 状态区域 */
.qr-status-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.status-indicator {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.countdown-timer {
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
}

.countdown-timer span {
    color: #ff4757;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* 操作按钮区域 */
.qr-actions-section {
    display: flex;
    gap: 12px;
padding: 20px;
    background: #fff;
}

.qr-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qr-action-btn i {
    font-size: 14px;
}

.qr-btn-check {
    background: #fff;
    color: #666;
    border: 1px solid #e0e0e0;
}

.qr-btn-check:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.15);
}

.qr-btn-switch {
    background: #fff;
    color: #666;
    border: 1px solid #e0e0e0;
}

.qr-btn-switch:hover {
    background: #f8f9fa;
    border-color: #1677ff;
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(22, 119, 255, 0.15);
}

.qr-btn-done {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border: none;
}

.qr-btn-done:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.qr-btn-done:active {
    transform: translateY(0);
}

/* 动画效果 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ====================
   支付处理中提示样式
===================== */

.payment-processing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 8px;
}

.payment-processing-content {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.25s ease-out;
}

.payment-processing-icon {
    margin-bottom: 16px;
}

.payment-processing-text h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.payment-processing-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.payment-processing-text p i {
    margin-right: 6px;
    color: #007bff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 旧样式兼容保留 */

/* ========== 支付成功页面样式 ========== */
.payment-success {
    padding: 6px 0;
}

.success-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.success-icon-small {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-small i {
    color: #28a745;
    font-size: 22px;
}

.success-title-small {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
}

.order-detail-card {
    background: transparent;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 0 16px 14px;
}

.detail-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.detail-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.detail-label {
    font-size: 13px;
    color: #333;
    font-weight: 700;
    white-space: nowrap;
    min-width: 70px;
}

.detail-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.detail-value.price {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 700;
}

.detail-order-no {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e9ecef;
    font-size: 11px;
    color: #999;
}

.detail-order-no .detail-value {
    color: #666;
    font-weight: 400;
    font-family: monospace;
    font-size: 12px;
}

.success-actions {
    margin-top: 4px;
}

/* ===== 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;
}

/* ===== static/css/notification.css ===== */
/**
 * 通知组件样式
 * 适用于前台和会员中心
 */

/* 通知容器 */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

/* 通知项 */
.notification {
    min-width: 0;
    width: auto;
    max-width: 320px;
    margin-bottom: 10px;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.notification-show {
    opacity: 1;
    transform: translateX(0);
}

.notification-hide {
    opacity: 0;
    transform: translateX(400px);
}

/* 通知内容 */
.notification-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-message {
    flex: none;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    word-break: break-word;
}

.notification-close {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #f5f5f5;
    color: #001a4e;
}

/* 通知类型样式 */
.notification-success {
    border-left-color: #3ad29f;
}

.notification-success .notification-icon {
    color: #3ad29f;
}

.notification-error {
    border-left-color: #f82f58;
}

.notification-error .notification-icon {
    color: #f82f58;
}

.notification-warning {
    border-left-color: #eea303;
}

.notification-warning .notification-icon {
    color: #eea303;
}

.notification-info {
    border-left-color: #17a2b8;
}

.notification-info .notification-icon {
    color: #17a2b8;
}

/* 确认对话框 */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-modal-show {
    opacity: 1;
}

.notification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.notification-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    min-width: 400px;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-modal-show .notification-modal-content {
    transform: scale(1);
}

.notification-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #001a4e;
}

.notification-modal-header i {
    color: #eea303;
    font-size: 20px;
}

.notification-modal-body {
    padding: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #001a4e;
}

.notification-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.notification-modal-footer .btn {
    min-width: 80px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notification-modal-footer .btn-primary {
    background: #1b68ff;
    color: #ffffff;
    border: 1px solid #1b68ff;
}

.notification-modal-footer .btn-primary:hover {
    background: #0045ce;
    border-color: #0045ce;
}

.notification-modal-footer .btn-outline {
    background: transparent;
    color: #1b68ff;
    border: 1px solid #1b68ff;
}

.notification-modal-footer .btn-outline:hover {
    background: #1b68ff;
    color: #ffffff;
}

/* 居中提示样式 */
.notification-center {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.notification-center-show {
    opacity: 1;
}

.notification-center-hide {
    opacity: 0;
}

.notification-center-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.notification-center-content {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 24px 32px;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: scale(0.9);
    transition: transform 0.15s ease;
}

.notification-center-show .notification-center-content {
    transform: scale(1);
}

.notification-center-icon {
    font-size: 48px;
    line-height: 1;
}

.notification-center-success .notification-center-icon {
    color: #3ad29f;
}

.notification-center-error .notification-center-icon {
    color: #f82f58;
}

.notification-center-warning .notification-center-icon {
    color: #eea303;
}

.notification-center-info .notification-center-icon {
    color: #17a2b8;
}

.notification-center-message {
    font-size: 16px;
    color: #001a4e;
    text-align: center;
    line-height: 1.5;
}

.notification-center-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-center-close:hover {
    background: #f5f5f5;
    color: #001a4e;
}

/* ==================== 纯 CSS 吐司图标（不依赖 Font Awesome） ==================== */
.notification-glyph { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; font-size: 16px; font-weight: 700; font-family: Arial, "Microsoft YaHei", sans-serif; line-height: 1; }
.notification-glyph-success { background: #52c41a; }
.notification-glyph-error { background: #f5222d; }
.notification-glyph-warning { background: #fa8c16; }
.notification-glyph-info { background: #1890ff; }
.notification-glyph-close { font-size: 14px; color: #999; cursor: pointer; font-family: Arial, sans-serif; }

/* ==================== 提示框紧凑化（缩小） ==================== */
.notification-center-content { padding: 12px 18px; min-width: 0; max-width: 320px; border-radius: 22px; flex-direction: row; align-items: center; gap: 10px; }
.notification-center-icon { width: 28px; height: 28px; margin: 0; flex-shrink: 0; }
.notification-glyph { width: 28px; height: 28px; font-size: 14px; }
.notification-center-message { font-size: 13px; line-height: 1.4; text-align: left; }
.notification-center-close { top: 4px; right: 8px; font-size: 12px; }

/* ==================== 提示框布局回调：文字在上、关闭按钮在下 ==================== */
.notification-center-content { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "nc-icon nc-msg" "nc-close nc-close"; column-gap: 10px; row-gap: 6px; align-items: center; padding: 14px 22px; min-width: 0; max-width: 340px; border-radius: 12px; }
.notification-center-icon { grid-area: nc-icon; width: 30px; height: 30px; margin: 0; }
.notification-glyph { width: 30px; height: 30px; font-size: 15px; }
.notification-center-message { grid-area: nc-msg; font-size: 14px; line-height: 1.5; text-align: left; }
.notification-center-close { grid-area: nc-close; position: static; justify-self: center; margin-top: 2px; font-size: 13px; }

/* ==================== 标准消息样式（顶部居中横排、自动消失、不遮罩） ==================== */
.notification-container { position: fixed; top: 24px; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 99999; pointer-events: none; }
.notification-center { position: static; pointer-events: auto; }
.notification-center-overlay { display: none; }
.notification-center-content { display: flex; flex-direction: row; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 4px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); max-width: 70vw; min-width: 0; border: 1px solid #ebeef5; }
.notification-center-icon { width: auto; height: auto; margin: 0; flex-shrink: 0; }
.notification-glyph { width: auto; height: auto; background: none; font-size: 16px; font-weight: 700; line-height: 1; }
.notification-glyph-success { color: #67c23a; }
.notification-glyph-error { color: #f56c6c; }
.notification-glyph-warning { color: #e6a23c; }
.notification-glyph-info { color: #909399; }
.notification-center-message { font-size: 14px; color: #333; line-height: 1.5; text-align: left; }
.notification-center-close { display: none; }
.notification-center-success > .notification-center-content, .notification-center-success .notification-center-content { background: #f0f9eb; }
.notification-center-error .notification-center-content { background: #fef0f0; }
.notification-center-warning .notification-center-content { background: #fdf6ec; }
.notification-center-info .notification-center-content { background: #f4f4f5; }

/* ==================== 吐司居中显示（覆盖右上角落定位） ==================== */
.notification-container { top: 40%; left: 50%; right: auto; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.notification { transform: translateY(-14px) scale(.96); margin-bottom: 0; }
.notification-show { transform: translateY(0) scale(1); }
.notification-hide { transform: translateY(-10px) scale(.96); }

/* ==================== SVG 图标尺寸（更醒目） ==================== */
.notification-glyph { width: 40px; height: 40px; }
.notification-glyph svg { width: 24px; height: 24px; display: block; }
.notification-modal-header .notification-glyph { width: 30px; height: 30px; }
.notification-modal-header .notification-glyph svg { width: 19px; height: 19px; }

/* ==================== 黑透底吐司（更醒目） ==================== */
.notification { background: rgba(0, 0, 0, 0.72); border: none; border-radius: 10px; padding: 14px 22px; box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35); }
.notification-message { color: #ffffff; font-size: 15px; }
.notification-glyph { background: transparent; width: 30px; height: 30px; }
.notification-glyph svg { width: 26px; height: 26px; }
.notification-glyph-success { color: #6ee7a0; }
.notification-glyph-error { color: #ff7875; }
.notification-glyph-warning { color: #ffc53d; }
.notification-glyph-info { color: #69c0ff; }
.notification-close { color: rgba(255, 255, 255, 0.7); }
.notification-close:hover { color: #ffffff; }
.notification-modal-overlay { background: rgba(0, 0, 0, 0.55); }

/* ==================== 关闭按钮修正（黑透底上透明圆底） ==================== */
.notification-close { background: transparent; width: 22px; height: 22px; line-height: 22px; text-align: center; border-radius: 50%; font-size: 16px; }
.notification-close:hover { background: rgba(255, 255, 255, 0.18); color: #ffffff; }

/* ==================== 置顶套餐选中文本角标 ==================== */
.duration-card { position: relative; overflow: hidden; }
.duration-card.selected::after { content: "\2713  已选"; position: absolute; right: 0; bottom: 0; background: #e74c3c; color: #ffffff; font-size: 12px; font-weight: 700; line-height: 1; padding: 5px 10px; border-top-left-radius: 8px; letter-spacing: 1px; }

/* ===== template/pc/css/highslide.css ===== */
/**
 * Highslide CSS - 图片灯箱样式
 * 从原图片位置放大到屏幕中心的动画效果
 */

/* 灯箱包装器 */
.hs-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
}

/* 灯箱展开时启用点击 */
.hs-wrapper[style*="pointer-events: auto"] {
    pointer-events: auto;
}

/* 灯箱展开时显示 */
.hs-wrapper.hs-active {
    display: flex;
}

/* 背景遮罩 - 隐藏 */
.hs-overlay {
    display: none;
}

/* 灯箱图片 */
.hs-image {
    position: fixed;
    z-index: 9999;
    object-fit: contain;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    border: 8px solid white;
    pointer-events: auto;
}

/* 放大镜光标 */
.gallery-item img {
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMiIvPjxsaW5lIHgxPSIxOCIgeTE9IjE4IiB4Mj0iMjgiIHkyPSIyOCIgc3Ryb2tlPSIjMDAwMDAwIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=") 12 12, auto;
}

