/**
 * 轻站风格主题样式文件
 * 
 * 主色调：#5B6EF8 紫蓝色
 * 为保持与小程序风格统一，可根据需要调整为 #0081ff 淡蓝色
 */

@charset "utf-8";

/* ========================================
   1. 基础布局（参考轻站 2026/cmc.css）
   ======================================== */

/* 页面背景色 - 浅灰蓝色 */
body {
    background: #EFF4FB;
}

/* 页面宽度容器 - 轻站标准 1440px */
.width {
    max-width: 1440px;
    min-width: 1440px;
    margin: 0 auto;
}

/* ========================================
   2. 固定顶部导航栏（参考轻站样式）
   ======================================== */

/* 顶部背景色 - 轻站紫色渐变 */
.bg-color {
    background: #615DFA;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.07);
    min-width: 1440px;
}

/* 固定定位 */
.ui-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

/* 头部容器 - 轻站 80px 高度 */
.header {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Logo样式 */
.logo {
    margin-right: 20px;
    max-width: 300px;
}

.logo img {
    max-height: 80px;
    vertical-align: middle;
}

/* 导航菜单样式 - 轻站风格 */
.header .ui-nav {
    border: 0;
}

/* 一级菜单容器 - 水平排列 */
.header .ui-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .ui-nav > ul > li {
    position: relative;
}

/* 一级菜单链接样式 */
.header .ui-nav > ul > li > a {
    color: #fff;
    padding: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.header .ui-nav > ul > li > a:hover,
.header .ui-nav > ul > li.active > a {
    color: #5EDFFF;
}

/* 二级下拉菜单容器 - 轻站风格（垂直排列） */
.header .ui-nav ul li ul {
    display: block;
    padding: 10px 0;
    border-radius: 10px;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* 下拉菜单顶部三角箭头 */
.header .ui-nav ul li ul:before {
    position: absolute;
    top: 0;
    left: 35px;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border: 0;
    background: #fff;
    transform: translateX(-50%) translateY(-50%) rotate(-140deg);
    z-index: -1;
}

/* 二级菜单项 - 垂直显示每行一个 */
.header .ui-nav ul li ul li {
    display: block;
    width: 100%;
}

/* 二级菜单链接 */
.header .ui-nav ul li ul li a,
.header .ui-nav ul li.active ul li a {
    display: block;
    color: #333;
    padding: 12px 25px;
    text-align: left;
    white-space: nowrap;
    font-size: 14px;
}

.header .ui-nav ul li ul li a:hover {
    color: #fff;
    background: #615DFA;
    border-radius: 6px;
}

/* 搜索框样式 - 轻站风格 */
.header .search {
    font-size: 0;
}

.header .search input[type=text] {
    background: #534FEE;
    border-radius: 38px;
    border: 0;
    color: #fff;
    padding: 0 25px;
    line-height: 45px;
    height: 45px;
    width: 240px;
    font-size: 15px;
    overflow: hidden;
    vertical-align: middle;
}

.header .search input[type=text]::-webkit-input-placeholder {
    color: #fff;
}

.header .search button[type=submit] {
    background: #5EDFFF;
    color: #fff;
    border: 0;
    border-radius: 38px;
    margin-left: -44px;
    width: 38px;
    height: 38px;
    font-size: 15px;
    overflow: hidden;
    vertical-align: middle;
    cursor: pointer;
}

.header .search button .ui-icon-search {
    color: #fff;
    font-size: 16px;
}

/* ========================================
   3. Banner轮播图（轻站风格）
   ======================================== */

.banner-wrap {
    margin: 20px auto;
    padding-top: 80px; /* 为固定头部留出空间（80px高度） */
}

.banner {
    width: 100%;
    z-index: 10;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.banner .ui-carousel-item a {
    height: 500px;
    display: block;
    width: 100%;
}

.banner .ui-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .ui-carousel-page {
    bottom: 25px;
}

.banner .ui-carousel-page li {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    transition: all 1s;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
}

.banner .ui-carousel-page li.active {
    width: 40px;
    background: #fff;
}

/* 轮播图左右箭头 - 轻站风格 */
.ui-carousel-prev,
.ui-carousel-next {
    width: 80px;
    opacity: 0.8;
}

.ui-carousel-prev:hover,
.ui-carousel-next:hover {
    opacity: 1;
}

.ui-carousel-prev-icon,
.ui-carousel-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,.3);
    background-size: 50% 50%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

/* 保留 ui.css 的 SVG 箭头图标 */
.ui-carousel-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.ui-carousel-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ========================================
   4. 推荐内容区域
   ======================================== */

/* 标题栏样式 - 轻站风格 */
.ui-menu,
div.ui-menu,
.box .ui-menu,
.ui-menu.ui-menu-color {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: none;
    border-bottom: 1px solid #eaeaea; /* 灰色延伸线 */
    background: transparent;
}

.ui-menu-color .ui-menu-name {
    color: #615DFA;
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -1px; /* 使紫色下划线覆盖灰色线 */
    border-bottom: 2px solid #615DFA; /* 紫色下划线 2px */
}

.ui-menu-color .ui-menu-more a {
    padding-bottom: 10px;
    display: block;
}

.ui-menu-color {
    position: relative;
}

/* 移除原来的:after伪元素，使用border代替 */
.ui-menu-color .ui-menu-name:after,
.ui-menu-color:after {
    display: none !important;
    content: none !important;
}

.ui-menu-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.ui-menu-more a {
    color: #666;
    font-size: 14px;
}

.ui-menu-more a:hover {
    color: #615DFA;
}

/* 推荐内容滚动区域包装器 - 1440px 宽度无需抵消 */
.scroll-wrapper {
    overflow: hidden;
}

/* 推荐内容卡片容器 - 轻站 2026/cmc.css 样式 */
.nicebox {
    overflow: hidden;
    flex-wrap: nowrap;
}

/* 卡片使用固定宽度 345px - 轻站标准 */
.nicebox .ui-col-3 {
    flex: 0 0 345px;
    max-width: 345px;
    margin: 0 20px 0 0;
    padding: 0;
}

/* 卡片样式增强 */
.nicebox .ui-card {
    border: 0;
    border-radius: 4px;
}

.nicebox .ui-card-image {
    height: 220px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.nicebox .ui-card-image img {
    border-radius: 4px 4px 0 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .5s;
}

.nicebox .ui-card-image:hover img {
    transform: scale(1.4);
}

.nicebox .ui-card-title {
    height: 50px;
    overflow: hidden;
}

.nicebox .ui-card-text {
    height: 50px;
    overflow: hidden;
}

.ui-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.ui-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91,110,248,0.15);
}

.ui-card-image {
    overflow: hidden;
}

.ui-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.ui-card:hover .ui-card-image img {
    transform: scale(1.05);
}

.ui-card-body {
    padding: 15px;
    height: 130px;  /* 固定高度，确保卡片高度统一 */
    display: flex;
    flex-direction: column;
}

.ui-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
    height: 48px;  /* 固定标题高度（2行） */
    overflow: hidden;
}

.ui-card-title a {
    color: #333;
}

.ui-card-title a:hover {
    color: #5B6EF8;
}

.ui-card-text {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;  /* 自动填充剩余空间 */
}

/* ========================================
   5. 左右分栏布局（轻站风格）
   ======================================== */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0 40px 0;
}

/* 左侧内容区 - 轻站 1075px */
.container-left {
    width: 1075px;
}

/* 右侧边栏 - 轻站 345px */
.container-right {
    width: 345px;
}

/* 内容框样式 - 轻站风格 */
.box {
    padding: 20px 25px;
    box-shadow: 0px 0px 30px rgba(28,31,33,0.1);
    background: #fff;
    border-radius: 14px;
    position: relative;
}

/* 列表样式 - 轻站风格 */
.ui-media-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ui-media {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.ui-media:last-child {
    border-bottom: 0;
}

.ui-media-img {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.ui-media-img img {
    border-radius: 4px;
    transition: all .5s;
    border: 0;
    padding: 0;
    object-fit: cover;
}

.ui-media-img:hover img {
    transform: scale(1.4);
}

.ui-media-body {
    flex: 1;
    overflow: hidden;
}

.ui-media-header {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.ui-media-header a {
    color: #333;
}

.ui-media-header a:hover {
    color: #3377FF;
}

.ui-media-text {
    font-size: 14px;
    color: #666; /* 加深颜色，与轻站一致 */
    line-height: 1.8;
    margin-bottom: 10px;
    word-break: break-all;
}

.ui-media-other {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.ui-media-other .tags-area {
    flex: 1;
    overflow: hidden;
}

.ui-media-other .date-area {
    white-space: nowrap;
    margin-left: 15px;
}

/* 迷你列表 - 轻站风格 */
.ui-media-list-min .ui-media {
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.ui-media-list-min .ui-media .ui-media-header {
    font-size: 16px;
    max-height: 46px;
}

/* Tags标签区域 */
.label {
    padding: 10px 0;
}

.label a.ui-btn {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px 5px 5px 0;
    background: #f5f7fa;
    color: #666;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 0;
}

.label a.ui-btn:hover {
    background: #5B6EF8;
    color: #fff;
}

/* 联系方式列表 */
.ui-list {
    list-style: none;
    margin: 0;
    padding: 15px 0;
}

.ui-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.ui-list li:last-child {
    border-bottom: 0;
}

.ui-list li div {
    color: #666;
    font-size: 14px;
}

.ui-list li i {
    margin-right: 10px;
}

/* ========================================
   6. 友情链接（轻站风格）
   ======================================== */

/* 公共底部友情链接区域 */
.footer-links {
    background: #fff;
    padding: 20px 25px;
    box-shadow: 0px 0px 30px rgba(28,31,33,0.1);
    border-radius: 14px;
    margin-top: 20px;
}

.link {
    margin-top: 20px;
}

.link a {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 8px 15px;
    background: #fff;
    color: #666;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.link a:hover {
    border-color: #ccc;
}

/* ========================================
   7. 底部版权区域（轻站风格）
   ======================================== */

.copyright {
    background: #fff;
    min-width: 1440px;
    padding: 40px 0 20px 0;
    margin-top: 20px;
    line-height: 35px;
    font-weight: 400;
}

.copyright .ui-text-center {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 2;
}

.copyright a {
    color: #666;
}

.copyright a:hover {
    color: #615DFA;
}

.footnav {
    color: #999;
    font-family: 宋体;
    margin-bottom: 10px;
}

.footnav a {
    color: #666;
    margin: 0 10px;
}

.footnav a:hover {
    color: #615DFA;
}

/* ========================================
   8. 右侧悬浮工具条（轻站风格）
   ======================================== */

.ui-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 998;
}

.ui-sidebar ul {
    margin-top: 35px;
    list-style: none;
    padding: 0;
}

.ui-sidebar ul li {
    position: relative;
    margin-bottom: 5px;
}

.ui-sidebar ul li a {
    width: 70px;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px 0 0 6px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.08);
    color: #615DFA;
    transition: all 0.3s ease;
}

.ui-sidebar ul li a:hover {
    background: #615DFA;
    border-color: #615DFA;
    color: #fff;
}

.ui-sidebar ul li.active a {
    background: #615DFA;
    border-color: #615DFA;
    color: #fff;
}

.ui-sidebar ul li a i {
    font-size: 28px;
}

.ui-sidebar ul li div {
    line-height: 60px;
    font-size: 16px;
    min-width: 120px;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 0 15px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ui-sidebar ul li:hover div {
    right: 80px;
    opacity: 1;
    visibility: visible;
}

.ui-sidebar-color ul li a {
    color: #615DFA;
}

.ui-sidebar-color ul li a:hover {
    background: #615DFA;
    border-color: #615DFA;
    color: #fff;
}

/* ========================================
   9. 文字工具类
   ======================================== */

.ui-text-hide {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-text-hide-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ui-text-center {
    text-align: center;
}

.ui-text-right {
    text-align: right;
}

.ui-text-gray {
    color: #999;
}

/* ========================================
   10. 间距工具类
   ======================================== */

.ui-mt { margin-top: 10px; }
.ui-mt-10 { margin-top: 10px; }
.ui-mt-15 { margin-top: 15px; }
.ui-mt-20 { margin-top: 15px; }
.ui-mt-30 { margin-top: 20px; }
.ui-mb { margin-bottom: 10px; }
.ui-mb-10 { margin-bottom: 8px; }
.ui-mb-20 { margin-bottom: 15px; }
.ui-mr { margin-right: 15px; }
.ui-mr-20 { margin-right: 20px; }
.ui-mr-sm { margin-right: 8px; }

/* ========================================
   11. 按钮样式 - 使用 ui.css 原生样式，不再覆盖
   ======================================== */

/* ========================================
   12. 轮播组件增强（使用 ui.css 原生样式）
   ======================================== */

/* 轮播图样式由 ui.css 提供，此处只做微调 */

/* ========================================
   12.1 推荐内容水平滚动组件
   ======================================== */

/* 滚动完全由 ui.js 原生的 animate 方法处理 */
/* 不添加 CSS transition，避免与 jQuery animate 冲突导致抖动 */

/* ========================================
   13. 提示工具
   ======================================== */

.ui-tips {
    position: relative;
}

/* ========================================
   14. 内容详情页样式 - 见第20节
   ======================================== */

/* ========================================
   15. 分页样式
   ======================================== */

/* 分页样式 - 轻站风格 */
.ui-page {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.ui-page ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.ui-page ul li {
    margin: 0;
}

.ui-page ul li a,
.ui-page ul li span {
    display: block;
    padding: 8px 16px;
    border-right: 1px solid #e5e5e5;
    color: #666;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s;
    line-height: 1.5;
}

.ui-page ul li:last-child a,
.ui-page ul li:last-child span {
    border-right: 0;
}

.ui-page ul li a:hover {
    background: #f5f5f5;
    color: #333;
}

.ui-page ul li span.current,
.ui-page ul li .active {
    background: #2196F3;
    border-color: #2196F3;
    color: #fff;
}

/* 禁用状态 */
.ui-page ul li span.disabled,
.ui-page ul li a.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
}

/* ========================================
   16. 响应式适配（可选）
   ======================================== */

@media screen and (max-width: 1280px) {
    .width {
        min-width: auto;
        padding: 0 20px;
    }
    
    .bg-color,
    .copyright {
        min-width: auto;
    }
}

/* ========================================
   17. 内页Banner区域
   ======================================== */

/* 面包屑导航容器 - 轻站风格 */
.breadcrumb-wrap {
    padding-top: 100px; /* 为固定导航留空间 */
    padding-bottom: 20px;
    background: #f8f9fc;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #333;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #615DFA;
}

.breadcrumb .sep {
    margin: 0 10px;
    color: #999;
}

/* ========================================
   18. 左侧导航菜单
   ======================================== */

.ui-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.ui-box-radius {
    border-radius: 16px 0 0 0;
}

.ui-box-title {
    background: linear-gradient(90deg, #5B6EF8 0%, #7B8BFF 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 25px;
}

.ui-box-title span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    margin-top: 5px;
}

.ui-box-h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.ui-box-h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #5B6EF8 0%, #7B8BFF 100%);
}

.ui-box-body {
    padding: 25px;
}

/* 折叠菜单 */
.ui-collapse-menu {
    padding: 10px 0;
}

.ui-collapse-menu-title {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.ui-collapse-menu-title:hover,
.ui-collapse-menu-title.active {
    background: #f8f9ff;
    color: #5B6EF8;
    padding-left: 25px;
}

.ui-collapse-menu-body {
    background: #fafafa;
}

.ui-collapse-menu-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ui-collapse-menu-body ul li {
    border-bottom: 1px solid #f0f0f0;
}

.ui-collapse-menu-body ul li:last-child {
    border-bottom: 0;
}

.ui-collapse-menu-body ul li a {
    display: block;
    padding: 10px 20px 10px 35px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.ui-collapse-menu-body ul li a:hover,
.ui-collapse-menu-body ul li.active a {
    color: #5B6EF8;
    background: #f0f4ff;
}

.ui-collapse-menu-body ul li i {
    margin-right: 8px;
    color: #999;
}

/* ========================================
   18.1 侧边栏分类导航 - 轻站风格
   ======================================== */

.side-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav-item {
    border-bottom: 1px solid #f5f5f5;
}

.side-nav-item:last-child {
    border-bottom: 0;
}

.side-nav-item a {
    display: block;
    padding: 15px 0;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.side-nav-item a:hover,
.side-nav-item.active a {
    color: #615DFA;
}

.side-nav-sub a {
    padding-left: 15px;
    font-size: 14px;
    color: #666;
}

/* ========================================
   19. 文章列表样式
   ======================================== */

/* 文章列表 - 轻站风格 */
.artlist {
    margin: 0;
    padding: 0;
}

.artlist-item {
    position: relative;
    padding: 25px 0;
    border-bottom: 1px solid #f5f5f5;
}

.artlist-item:first-child {
    padding-top: 0;
}

.artlist-item:last-child {
    border-bottom: 0;
}

.artlist-item-image {
    float: left;
    width: 200px;
    margin-right: 25px;
}

.artlist-item-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.artlist-item-body {
    overflow: hidden;
}

.artlist-item-body .title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.artlist-item-body .title:hover {
    color: #615DFA;
}

.artlist-item-body a {
    color: inherit;
    text-decoration: none;
}

.artlist-item-body a:hover .title {
    color: #615DFA;
}

.artlist-item-body .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artlist-item-body .tags {
    margin-top: 15px;
}

.artlist-item-body .tags a {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #615DFA;
    background: #f5f6ff;
    border: 1px solid #e0e3ff;
    border-radius: 4px;
}

.artlist-item-body .tags a:hover {
    background: #615DFA;
    color: #fff;
}

.artlist-item-date {
    position: absolute;
    right: 0;
    bottom: 25px;
    color: #999;
    font-size: 13px;
}

.artlist-item-date:before {
    content: "◷";
    margin-right: 5px;
}

/* 加载更多 */
.pagemore {
    text-align: center;
    padding: 30px 0;
}

.pagemore a {
    display: inline-block;
    padding: 12px 40px;
    background: #f5f7fa;
    color: #666;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.pagemore a:hover {
    background: #5B6EF8;
    color: #fff;
}

/* ========================================
   20. 文章详情页样式
   ======================================== */

.artshow {
    padding: 0;
}

.artshow h1 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.artshow .info {
    color: #999;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.artshow .info .date {
    margin-right: 15px;
}

.artshow .info .hits {
    display: inline-block;
    background: #f37b1d;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 8px;
}

.artshow .info .hits-text {
    color: #999;
}

.artshow .content {
    line-height: 2;
    font-size: 16px;
    color: #555;
}

.artshow .content p {
    margin-bottom: 20px;
}

.artshow .content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}

.artshow .content a {
    color: #5B6EF8;
}

.artshow .content a:hover {
    text-decoration: underline;
}

.artshow .tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.artshow .tags a {
    display: inline-block;
    padding: 6px 15px;
    background: #f5f7fa;
    color: #666;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.artshow .tags a:hover {
    background: #5B6EF8;
    color: #fff;
}

/* 文章操作按钮 */
.artshow .action {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.artshow .action a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
    color: #999;
    transition: all 0.3s ease;
}

.artshow .action a i {
    font-size: 28px;
    margin-bottom: 8px;
}

.artshow .action a:hover {
    color: #5B6EF8;
}

/* ========================================
   21. 表单样式
   ======================================== */

.ui-form-group {
    margin-bottom: 20px;
}

.ui-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.ui-form-ip,
.ui-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.ui-form-ip:focus,
.ui-form-input:focus {
    border-color: #5B6EF8;
    box-shadow: 0 0 0 3px rgba(91,110,248,0.1);
}

textarea.ui-form-ip,
textarea.ui-form-input {
    min-height: 120px;
    resize: vertical;
}

/* 按钮样式 - 完全使用轻站原始样式 */
/* 基础按钮样式在 ui.css 中已定义，这里不再覆盖 */

/* ========================================
   22. 用户中心样式
   ======================================== */

.user-nav {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.user-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-nav ul li {
    border-bottom: 1px solid #f5f5f5;
}

.user-nav ul li:last-child {
    border-bottom: 0;
}

.user-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #666;
    font-size: 15px;
    transition: all 0.3s ease;
}

.user-nav ul li a:hover,
.user-nav ul li.active a {
    color: #5B6EF8;
    background: #f8f9ff;
}

.user-nav ul li a i {
    margin-right: 10px;
    font-size: 18px;
}

/* ========================================
   23. 搜索页样式
   ======================================== */

.search-box {
    background: linear-gradient(135deg, #5B6EF8 0%, #7B8BFF 100%);
    padding: 60px 0;
    margin-top: 70px;
}

.search-box .search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .search-title {
    text-align: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
}

.search-box .search-input-group {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.search-box .search-input-group input {
    flex: 1;
    border: 0;
    padding: 18px 25px;
    font-size: 16px;
}

.search-box .search-input-group button {
    background: linear-gradient(90deg, #5B6EF8 0%, #7B8BFF 100%);
    border: 0;
    padding: 18px 40px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 搜索结果区域 */
.search-result {
    margin-top: 20px;
}

/* 搜索关键词高亮 - 轻站风格蓝色 */
.search-result .artlist-item-body .title em,
.search-result .artlist-item-body .desc em,
.artlist-item-body .title em,
.artlist-item-body .desc em {
    color: #615DFA;
    font-style: normal;
}

/* ========================================
   24. 在线留言样式 - 轻站风格（独立卡片）
   ======================================== */

.book-list {
    margin-top: 10px;
}

.book-empty {
    padding: 40px;
    text-align: center;
    color: #999;
}

/* 每个留言独立卡片 */
.book-item {
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.book-item:last-child {
    margin-bottom: 0;
}

/* 卡片头部 - 用户名和日期 */
.book-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.book-name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.book-date {
    font-size: 13px;
    color: #999;
}

/* 留言内容 */
.book-content {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding: 20px;
}

/* 回复区域 */
.book-reply {
    font-size: 14px;
    color: #333;
    padding: 15px 20px;
    background: #f9f9f9;
    border-top: 1px solid #f0f0f0;
}

.book-reply strong {
    color: #333;
}

/* ========================================
   25. 网站地图页面样式
   ======================================== */

/* 网站地图项目 */
.sitemap-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sitemap-item:last-child {
    border-bottom: none;
}

.sitemap-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sitemap-title a {
    color: #333;
}

.sitemap-title a:hover {
    color: #1890FF;
}

.sitemap-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #1890FF;
    border-radius: 50%;
    margin-right: 12px;
}

.sitemap-links {
    padding-left: 24px;
}

.sitemap-links .ui-btn {
    margin-bottom: 10px;
}

/* 右侧网站地图导航 */
.side-nav-group {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.side-nav-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.side-nav-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.side-nav-title a {
    color: #333;
}

.side-nav-title a:hover {
    color: #1890FF;
}

.side-nav-item {
    padding: 8px 0;
    padding-left: 15px;
}

.side-nav-item a {
    color: #666;
    font-size: 14px;
}

.side-nav-item a:hover {
    color: #1890FF;
}

/* ========================================
   26. 固定侧边栏增强
   ======================================== */

.ui-fixed-s {
    position: sticky;
    top: 90px;
}

