/* 每选集团企业模板样式 */

/* ===== 基础变量 ===== */
:root {
    --primary-color: #2d8659;
    --secondary-color: #4a9d73;
    --accent-color: #6bb88a;
    --dark-color: #1a5c3a;
    --light-color: #e8f5e9;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
}

/* ===== 全局样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 5px 20px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
}

/* ===== 头部导航 ===== */
.meixuan-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--dark-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    margin-right: 5px;
}

.top-social a {
    color: #fff;
    margin-left: 15px;
    font-size: 18px;
}

.top-social a:hover {
    color: var(--accent-color);
}

.main-nav {
    padding: 15px 0;
}

.navbar-brand .logo-img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu .dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.nav-search {
    position: relative;
    margin-left: 20px;
}

#search-btn {
    cursor: pointer;
    font-size: 20px;
    color: var(--text-color);
    padding: 10px;
}

.search-block {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 300px;
    margin-top: 10px;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 5px 10px;
}

.search-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
    font-size: 18px;
}

/* ===== 轮播图 ===== */
.home-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    height: 60vh;
    max-height: 700px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .home-banner {
        height: 70vh;
        max-height: 800px;
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .home-banner {
        height: 50vh;
        max-height: 600px;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .home-banner {
        height: 45vh;
        max-height: 500px;
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .home-banner {
        height: 40vh;
        max-height: 450px;
        min-height: 300px;
    }
}

.banner-swiper {
    height: 100%;
    width: 100%;
    position: relative;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.slide-desc {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-color);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* ===== 按钮样式 ===== */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45,134,89,0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ===== 关于我们 ===== */
.about-section {
    background: #fff;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== 产业板块 ===== */
.industries-section {
    background: var(--bg-light);
}

.industry-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.industry-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.industry-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.industry-link {
    color: var(--primary-color);
    font-weight: 500;
}

.industry-link:hover {
    color: var(--secondary-color);
}

/* ===== 核心优势 ===== */
.advantages-section {
    background: #fff;
}

.advantage-item {
    padding: 30px;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.advantage-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.advantage-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== 新闻动态 ===== */
.news-section {
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-link {
    color: var(--primary-color);
    font-weight: 500;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-image {
    overflow: hidden;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.news-meta i {
    margin-right: 5px;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-title a {
    color: var(--text-color);
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.news-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== 合作伙伴 ===== */
.partners-section {
    background: #fff;
}

.partners-swiper {
    padding: 40px 0;
}

.partner-item {
    text-align: center;
    padding: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item:hover {
    filter: grayscale(0%);
}

.partner-item img {
    max-height: 60px;
    width: auto;
}

/* ===== 页面横幅 ===== */
.banner-area {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45,134,89,0.8);
}

.banner-text {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.8);
}

/* ===== 侧边栏 ===== */
.sidebar {
    margin-bottom: 30px;
}

.widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
    color: var(--text-color);
}

.service-menu {
    list-style: none;
    padding: 0;
}

.service-menu li {
    margin-bottom: 10px;
}

.service-menu li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-menu li a:hover,
.service-menu li.active a {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 20px;
}

.contact-widget p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-widget i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* ===== 列表页 ===== */
.list-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.list-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.list-image {
    overflow: hidden;
    border-radius: 10px;
}

.list-image img {
    transition: transform 0.3s ease;
}

.list-item:hover .list-image img {
    transform: scale(1.1);
}

.list-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.list-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.list-title a {
    color: var(--text-color);
}

.list-title a:hover {
    color: var(--primary-color);
}

.list-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.list-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== 详情页 ===== */
.article-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

.article-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 30px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    margin-right: 10px;
    color: var(--text-light);
}

.tag-item {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.tag-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.article-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-btn {
    padding: 8px 15px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 14px;
}

.share-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.nav-item {
    flex: 1;
}

.nav-label {
    color: var(--text-light);
    font-size: 14px;
}

.nav-item a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-item a:hover {
    color: var(--primary-color);
}

.related-articles {
    margin-top: 50px;
}

.related-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.related-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-image {
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.related-item-title a {
    color: var(--text-color);
}

.related-item-title a:hover {
    color: var(--primary-color);
}

.related-date {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== 页脚 ===== */
.meixuan-footer {
    background: var(--dark-color);
    color: #fff;
    padding-top: 60px;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.company-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.widget-title {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
}

.copyright {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    margin: 5px 0;
    color: rgba(255,255,255,0.6);
}

.copyright a {
    color: rgba(255,255,255,0.8);
}

/* ===== 返回顶部 ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===== 错误页 ===== */
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    padding: 60px 0;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===== 成功页 ===== */
.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    padding: 60px 0;
}

.success-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.success-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.success-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===== 搜索页面 ===== */
.search-section {
    background: var(--bg-light);
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.search-keyword {
    font-size: 18px;
    color: var(--text-light);
}

.search-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-results {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.results-count {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.result-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
}

.result-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-title a {
    color: var(--primary-color);
}

.result-title a:hover {
    color: var(--secondary-color);
}

.result-url {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.result-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.result-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.no-results {
    background: #fff;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.no-results-icon {
    font-size: 60px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.search-tips {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.search-tips h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.search-tips ul {
    list-style: none;
    padding-left: 0;
}

.search-tips ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.search-tips ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

/* ===== 标签页面 ===== */
.tags-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tags-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.tags-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.tags-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.tags-item:last-child {
    border-bottom: none;
}

.tags-image {
    overflow: hidden;
    border-radius: 10px;
}

.tags-image img {
    transition: transform 0.3s ease;
}

.tags-item:hover .tags-image img {
    transform: scale(1.1);
}

.tags-content-item {
    padding: 0 20px;
}

.tags-item-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tags-item-title a {
    color: var(--text-color);
}

.tags-item-title a:hover {
    color: var(--primary-color);
}

.tags-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.tags-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.tags-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== 分页样式 ===== */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.pagination li.active span,
.pagination li a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ===== 栏目页 ===== */
.category-section {
    background: var(--bg-light);
}

.category-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.category-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.category-item-title span {
    color: var(--primary-color);
}

.more-link {
    font-size: 14px;
    color: var(--text-light);
    font-weight: normal;
}

.category-content-list {
    list-style: none;
    padding: 0;
}

.featured-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.featured-image {
    overflow: hidden;
    border-radius: 5px;
}

.featured-image img {
    width: 100%;
    height: auto;
}

.featured-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-title a {
    color: var(--text-color);
}

.featured-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.list-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.item-number {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 24px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 12px;
}

.list-item a {
    flex: 1;
    color: var(--text-color);
}

.list-item a:hover {
    color: var(--primary-color);
}

.item-date {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 10px;
}

/* ===== 标签首页 ===== */
.tags-index-section {
    background: var(--bg-light);
}

.tags-index-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tags-index-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.tags-cloud {
    margin-bottom: 30px;
}

.tags-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list li {
    margin: 0;
}

.tag-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== 产品列表页 ===== */
.product-list-section {
    background: var(--bg-light);
}

.product-filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-option {
    margin-bottom: 20px;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.filter-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tags li {
    margin: 0;
}

.filter-tags a {
    display: inline-block;
    padding: 6px 15px;
    background: var(--bg-light);
    color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-tags a:hover,
.filter-tags a.active {
    background: var(--primary-color);
    color: #fff;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--text-color);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-views {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== 产品详情页 ===== */
.product-detail-section {
    background: var(--bg-light);
}

.product-gallery {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-detail-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.product-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.product-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-color);
}

.product-params {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-params h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.params-list {
    list-style: none;
    padding: 0;
}

.params-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
}

.params-list li:last-child {
    border-bottom: none;
}

.params-list strong {
    width: 100px;
    color: var(--text-color);
}

.params-list span {
    flex: 1;
    color: var(--text-light);
}

.product-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.product-content-body {
    line-height: 1.8;
    color: var(--text-color);
}

.related-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

/* ===== 联系页面 ===== */
.contact-section {
    background: var(--bg-light);
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.contact-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-box p {
    color: var(--text-light);
    margin: 0;
}

.map-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 12px 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45,134,89,0.25);
}

.error-container {
    margin-bottom: 20px;
}

/* ===== 留言板页面 ===== */
.guestbook-section {
    background: var(--bg-light);
}

.guestbook-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.guestbook-form .form-group {
    margin-bottom: 20px;
}

.guestbook-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.guestbook-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 12px 15px;
}

.guestbook-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45,134,89,0.25);
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-desc {
        font-size: 16px;
    }
    
    /* 移动端轮播图样式已在上面统一处理 */
    
    .banner-title {
        font-size: 28px;
    }
    
    .industry-card,
    .advantage-item {
        margin-bottom: 30px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .tags-content {
        padding: 20px;
    }
    
    .tags-content-item {
        padding: 0;
        margin-top: 15px;
    }
    
    .search-results {
        padding: 20px;
    }
    
    .category-item {
        margin-bottom: 30px;
    }
    
    .product-filter {
        padding: 15px;
    }
    
    .filter-tags {
        gap: 5px;
    }
    
    .product-detail-info {
        padding: 20px;
        margin-top: 20px;
    }
    
    .product-detail-title {
        font-size: 22px;
    }
    
    .contact-box {
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper,
    .guestbook-form-wrapper {
        padding: 20px;
    }
    
    .contact-map {
        height: 300px;
    }
}

