/* ==========================================================================
   高端大气淡蓝色主题 CSS - 主样式文件
   ========================================================================== */

/* 基础重置和全局样式 */
:root {
    --primary-color: #4a90e2;     /* 主蓝色 */
    --secondary-color: #6ab0de;   /* 次蓝色 */
    --accent-color: #36c;         /* 强调蓝色 */
    --light-color: #f0f8ff;       /* 淡蓝色背景 */
    --light-gray: #f8f9fa;        /* 浅灰色 */
    --text-color: #333;           /* 主文本色 */
    --text-light: #666;           /* 浅文本色 */
    --border-color: #d1e7ff;      /* 边框颜色 */
    --shadow-color: rgba(74, 144, 226, 0.15); /* 阴影颜色 */
    --gradient-primary: linear-gradient(135deg, #4a90e2, #6ab0de);
    --gradient-light: linear-gradient(to right, #f0f8ff, #e8f4ff);
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 4px 15px var(--shadow-color);
    --box-shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft YaHei", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
    min-height: 100vh;
}

/* 链接样式 */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 容器 */
.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   顶部栏样式
   ========================================================================== */
#top {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 0;
    font-size: 0.875rem;
}

#top .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#top_left a, #top_left button {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

#top_left a:hover, #top_left button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#top_left img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

#top_right #sj_end {
    color: white;
    font-weight: 500;
}

/* ==========================================================================
   头部样式
   ========================================================================== */
#header {
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

#vlogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 公司名字 - 红色加大版本 */
#vlogo h1 {
    font-size: 2.8rem; /* 从2.5rem增加到2.8rem，更大了 */
    color: #ff3333; /* 改成红色 */
    font-weight: 700; /* 从300改成700，加粗了 */
    letter-spacing: 1px;
    text-shadow: 
        1px 1px 0 rgba(255, 255, 255, 0.5),
        2px 2px 5px rgba(255, 51, 51, 0.3); /* 红色阴影 */
    position: relative;
    display: inline-block;
    transition: all var(--transition-fast);
    display: inline-block;
    margin-left: 0; /* 重置左边距，由容器控制 */
    padding-left: 20px; /* 内部留白 */
    
    /* 确保有足够空间防止换行 */
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* 鼠标悬停效果 */
#vlogo h1:hover {
    color: #e60000; /* 悬停时更深红色 */
    transform: scale(1.02); /* 轻微放大 */
    text-shadow: 
        1px 1px 0 rgba(255, 255, 255, 0.5),
        3px 3px 8px rgba(255, 0, 0, 0.4);
}

/* 书名号保持蓝色不变 */
#vlogo h1::before {
    content: "";
    color: var(--secondary-color);
    font-weight: 300; /* 书名号不加粗 */
}

#vlogo h1::after {
    content: "";
    color: var(--secondary-color);
    font-weight: 300; /* 书名号不加粗 */
}

/* 红色下划线效果 */
#vlogo h1::after {
    content: ;
    position: absolute;
    bottom: 8px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff3333 20%, #ff3333 80%, transparent);
    border-radius: 2px;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

#vlogo h1:hover::after {
    height: 4px;
    background: linear-gradient(90deg, transparent, #e60000 20%, #e60000 80%, transparent);
    opacity: 0.9;
}

/* 推荐的简洁优雅方案 */
#vlogo_tel {
    padding: 5px 0;
    text-align: right;
    background: none;
    border: none;
    position: relative;
    padding-left: 30px; /* 为图标留出空间 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: flex-end; /* 右侧对齐 */
    min-height: 40px; /* 最小高度 */
    margin: 0; /* 重置外边距 */
}

/* 微小的电话图标 */
#vlogo_tel::before {
    content: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=24 height=24 viewBox=0 0 24 24 fill=%234a90e2%3E%3Cpath d=M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1zM5 6h1.5c.1 1.2.3 2.4.6 3.5L5.8 10.8C5.4 9.4 5.2 7.7 5 6zm14 14c-1.7-.2-3.4-.4-4.8-.8l1.3-1.3c1.1.3 2.3.5 3.5.6V20z/%3E%3C/svg%3E");
    position: absolute;
    left: 0; /* 左侧对齐 */
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

#vlogo_tel strong {
    display: none;
}

/* 电话号码样式 - 蓝色主题 */
#vlogo_tel var {
    font-style: normal;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c6db3 0%, #4a90e2 50%, #6ab0de 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    font-family: Segoe UI, Helvetica Neue, Arial, sans-serif;
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
    transition: all var(--transition-fast);
    display: inline-block;
    padding: 0; /* 重置内边距 */
    line-height: 1; /* 确保行高正常 */
    vertical-align: middle; /* 垂直居中 */
}

#vlogo_tel a {
    display: flex;
    align-items: center; /* 确保链接内元素垂直居中 */
    text-decoration: none; /* 去掉默认下划线 */
}

#vlogo_tel a:hover var {
    transform: scale(1.03);
    text-shadow: 0 3px 8px rgba(74, 144, 226, 0.3); /* 增强阴影 */
}
/* ==========================================================================
   宣传图片Banner区域 - 宽度1200px，高度400px
   ========================================================================== */
#banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0;
    display: block;
}

#banner {
    width: 100%;
    max-width: 1200px;
    height: 150px; /* 固定高度400px */
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: block;
    background-color: #f0f8ff; /* 背景色，图片加载前显示 */
}

/* 自适应图片容器 */
.banner-image-wrapper {
    width: 100%;
    height: 100%; /* 填充整个容器 */
    position: relative;
    display: block;
}

/* Banner图片样式 - 宽度1200px，高度400px，保持比例填充 */
.banner-image {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    display: block;
    object-fit: cover; /* 裁剪填充整个区域 */
    transition: transform var(--transition-normal);
    margin: 0 auto; /* 水平居中 */
}

/* 鼠标悬停效果 */
#banner:hover .banner-image {
    transform: scale(1.05); /* 轻微放大效果 */
}

/* 渐变遮罩层 */
.banner-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(74, 144, 226, 0.3), rgba(106, 176, 222, 0.1));
    z-index: 1;
    pointer-events: none; /* 允许点击穿透 */
}

/* 移动端响应式调整 */
@media screen and (max-width: 1240px) {
    #banner-container,
    #banner {
        max-width: calc(100% - 40px); /* 在较小屏幕上留出边距 */
        height: 350px; /* 稍微降低高度 */
    }
    
    .banner-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #banner-container,
    #banner {
        max-width: calc(100% - 30px); /* 移动端边距更小 */
        height: 250px; /* 移动端高度更小 */
        border-radius: calc(var(--border-radius) - 2px); /* 移动端圆角稍小 */
        margin: 15px auto;
    }
}

@media screen and (max-width: 480px) {
    #banner {
        height: 200px; /* 小屏幕高度更小 */
    }
}

/* ==========================================================================
   主导航样式
   ========================================================================== */
.mainMenu {
    background: white;
    box-shadow: var(--box-shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
}

.mainMenu .content ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2px;
}

.mainMenu li {
    position: relative;
}

.mainMenu li a {
    display: block;
    padding: 18px 28px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.mainMenu li a:hover {
    color: var(--primary-color);
    background: var(--light-color);
}

.mainMenu li.xz a {
    color: white;
    background: var(--gradient-primary);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.mainMenu li.xz a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* ==========================================================================
   主要内容区
   ========================================================================== */
main.content {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    min-height: 600px;
}

.mainLeft {
    width: 280px;
    flex-shrink: 0;
}

.mainRight {
    flex: 1;
    min-width: 0;
}

/* ==========================================================================
   通用盒子样式
   ========================================================================== */
.box {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-light);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.box_title {
    background: var(--gradient-light);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box_title h2,
.box_title h5 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.box_title h2::before,
.box_title h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.box_title a {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.box_title a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==========================================================================
   侧边栏样式
   ========================================================================== */
/* 分类列表 */
.box_lb {
    list-style: none;
    padding: 15px;
}

.box_lb li {
    margin-bottom: 8px;
}

.box_lb li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    background: var(--light-color);
    border-radius: var(--border-radius);
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.box_lb li a:hover {
    background: white;
    border-left-color: var(--primary-color);
    box-shadow: var(--box-shadow-light);
    transform: translateX(5px);
}

.box_lb li.xz a {
    background: var(--gradient-primary);
    color: white;
    border-left-color: var(--accent-color);
}

/* 新闻列表 */
.box_news_l,
.box_news {
    list-style: none;
    padding: 15px;
}

.box_news_l li,
.box_news li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
}

.box_news_l li:last-child,
.box_news li:last-child {
    border-bottom: none;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.85rem;
    min-width: 60px;
    margin-right: 15px;
    flex-shrink: 0;
    background: var(--light-color);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    text-align: center;
}

.box_news_l li a,
.box_news li a {
    flex: 1;
    color: var(--text-color);
    line-height: 1.5;
    display: block;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.box_news_l li a:hover,
.box_news li a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   图片列表样式
   ========================================================================== */
.box_tp {
    list-style: none;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.box_tp li {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
}

.box_tp li:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.box_tp li a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
}

.box_tp img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.box_tp li:hover img {
    transform: scale(1.05);
}

.box_tp li span {
    display: block;
    padding: 12px 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
}

.box_tp .price {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    background: var(--light-color);
    text-align: center;
    margin: 0;
}

/* ==========================================================================
   内容区域样式
   ========================================================================== */
.box_nr,
.box_txt,
.box_lx {
    padding: 25px;
    line-height: 1.8;
    color: var(--text-color);
}

.box_nr h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.box_sj {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.box_sj::before {
    content: "&#128197;";
    margin-right: 8px;
}

.box_dtp {
    margin: 25px 0;
    text-align: center;
}

.box_dtp img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.box_jg {
    background: var(--gradient-light);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 20px 0;
    display: inline-block;
}

.box_jg strong {
    font-weight: 600;
}

/* ==========================================================================
   轮播样式 - 高度增大
   ========================================================================== */
.carousel {
    position: relative;
    border-radius: var(--border-radius-lg); /* 使用更大的圆角 */
    overflow: hidden;
    margin-bottom: 35px; /* 增加底部间距 */
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 450px; /* 从350px增加到450px，增大100px */
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片填充 */
    transition: transform var(--transition-normal);
}

.carousel-item.active img {
    transform: scale(1.01); /* 激活状态轻微放大 */
}

.carousel-controls {
    position: absolute;
    bottom: 30px; /* 从20px增加到30px，让控制按钮更低一些 */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.8); /* 更显眼的背景色 */
    border: none;
    width: 14px; /* 从12px增加到14px */
    height: 14px; /* 从12px增加到14px */
    border-radius: 50%;
    margin: 0 8px; /* 从5px增加到8px */
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-btn.active {
    background: var(--primary-color);
    transform: scale(1.3); /* 从1.2增加到1.3 */
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* 可选：添加左右箭头导航 */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* 轮播指示器数字样式 */
.carousel-indicators {
    position: absolute;
    bottom: 70px; /* 在控制按钮上方 */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.carousel-indicator-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* 响应式调整 */
@media screen and (max-width: 1240px) {
    .carousel {
        max-width: calc(100% - 40px);
    }
    
    .carousel-inner {
        height: 400px; /* 稍微降低高度 */
    }
}

@media screen and (max-width: 992px) {
    .carousel-inner {
        height: 380px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .carousel {
        max-width: calc(100% - 30px);
        margin-bottom: 25px;
        border-radius: calc(var(--border-radius-lg) - 4px);
    }
    
    .carousel-inner {
        height: 320px; /* 移动端适当降低高度 */
    }
    
    .carousel-controls {
        bottom: 20px;
    }
    
    .carousel-btn {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-indicator-text {
        font-size: 0.9rem;
        padding: 4px 12px;
    }
}

@media screen and (max-width: 480px) {
    .carousel-inner {
        height: 280px; /* 小屏幕进一步降低高度 */
    }
    
    .carousel-prev,
    .carousel-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
        display: none; /* 小屏幕隐藏箭头 */
    }
}

/* ==========================================================================
   分页样式
   ========================================================================== */
.page {
    padding: 20px;
    text-align: center;
}

.page a,
.page strong {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    margin: 0 3px;
    padding: 0 12px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
}

.page a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page strong {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

/* ==========================================================================
   页脚样式
   ========================================================================== */
#footer {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 0 20px;
    margin-top: 0px;
    text-align: center;
}

#footer address {
    font-style: normal;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* 页脚中的公司名字也改红色 */
#footer a {
    color: #ffffff; /* 浅红色 */
    text-decoration: none;
    opacity: 0.9;
    transition: opacity var(--transition-fast);
    font-weight: 500;
}



#footer p {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem; /* 从0.9rem增加到1rem，更大了 */
    opacity: 0.9;
}

#currentYear {
    font-weight: 700; /* 加粗 */
    color: #ffffff; /* 白色更醒目 */
}

/* ==========================================================================
   表单样式
   ========================================================================== */
.wenbenkuang {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--light-color);
}

.wenbenkuang:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    background: white;
}

.form-help {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-note {
    margin-top: 25px;
    padding: 15px;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    line-height: 1.6;
}

input[type="submit"],
input[type="reset"] {
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

input[type="submit"] {
    background: var(--gradient-primary);
    color: white;
}

input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

input[type="reset"] {
    background: var(--light-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    margin-left: 10px;
}

input[type="reset"]:hover {
    background: #e8f4ff;
}

/* 分类信息样式 */
.box_classad {
    padding: 20px;
}

.box_classad dt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.box_classad .date {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.box_classad dd {
    margin-left: 60px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* 辅助样式 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    z-index: 10000;
    text-decoration: none;
    border-radius: 0 0 var(--border-radius) 0;
}

.skip-link:focus {
    top: 0;
}