/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    height: 100%;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部小导航栏 */
.toppic {
    width: 15px;
}

.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-size: 13px;
    color: #666;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-link {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 6px;
    white-space: nowrap;
    position: relative;
}

.top-link:hover {
    color: #2c5aa0;
}

/* 只在左侧普通链接间添加分隔符 */
.top-bar-left .top-link:not(.dropdown-toggle):not(:last-child):after {
    content: '|';
    color: #ccc;
    margin-left: 8px;
    font-size: 12px;
}

/* 右侧分隔符规则：会员登录和会员注册之间不要分隔符，手机端前要有分隔符 */
.top-bar-right .top-dropdown:first-child:after {
    display: none; /* 会员登录后无分隔符 */
}

.top-bar-right .top-dropdown:nth-child(2):after {
    display: none; /* 会员注册后无分隔符 */
}

.top-bar-right .top-link:not(.dropdown-toggle):after {
    content: '|';
    color: #ccc;
    margin-left: 8px;
    font-size: 12px;
}

.top-bar-right .top-dropdown:last-child:after {
    display: none; /* 最后一个下拉菜单后无分隔符 */
}

.top-icon {
    font-size: 12px;
}

/* 总站样式加粗 */
.site-main {
    font-weight: 600;
}

/* 顶部下拉菜单 */
.top-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    background: url("/static/image/down.png") no-repeat;
    background-size: 12px;
    transition: transform 0.3s ease;
    transform: rotate(0deg); /* 默认向下 */
}

.top-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg); /* 悬停时向右 */
}

.top-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    min-width: 120px;
}

.top-dropdown:hover .top-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-dropdown-menu .dropdown-item {
    display: block;
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.top-dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.top-dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #2c5aa0;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.current-lang {
    color: #2c5aa0;
    font-weight: 500;
}

.lang-separator {
    color: #ccc;
}

.lang-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: #2c5aa0;
}

.quick-links {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #e9ecef;
}

.quick-link {
    padding: 4px 12px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quick-link.login {
    color: #666;
    border: 1px solid #ddd;
}

.quick-link.register {
    background: #2c5aa0;
    color: white;
    border: 1px solid #2c5aa0;
}

.quick-link:hover {
    transform: translateY(-1px);
}

.quick-link.login:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
}

.quick-link.register:hover {
    background: #1e3d73;
    border-color: #1e3d73;
}

/* 主导航栏 */
.header {
    background: #2c5aa0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-left {
    flex: 0 0 200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 25px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 280px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-card {
    padding: 20px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.item-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
}

.item-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.item-content p {
    font-size: 14px;
    color: #666;
}

.nav-right {
    flex: 0 0 330px;
    display: flex;
    justify-content: flex-end;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 小搜索框 */
.search-mini {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px;
    transition: all 0.3s ease;
}

.search-mini:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mini-search-input {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    width: 120px;
    outline: none;
}

.mini-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mini-search-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mini-search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 购物车图标 */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart {
    font-size: 20px;
    color: white;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* 分隔符样式 */
.nav-separator {
    color: #ccc;
    font-size: 12px;
    margin: 0 6px;
    flex-shrink: 0;
}

/* 平台logo区域 */
.platform-logo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.main-logo {
    height: 135px;
    object-fit: contain;
    flex-shrink: 0;
}

.platform-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.head-logo {
    width: 250px;
    height: 60px;
    object-fit: contain;
}

.platform-icons {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.icon-item:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.icon-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.icon-item span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* 功能导航区域 */
.function-nav-section {
    background: white;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 999;
    margin-top: 40px;
    padding: 20px 0;
}

.function-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.function-nav-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 右侧导航链接区域 */
.function-nav-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
    padding-left: 30px;
    border-left: 1px solid #e9ecef;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 每行导航样式 - 横着排列 */
.nav-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link-item {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    line-height: 1.4;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 每行第一个栏目样式 - 字体粗、字号大 */
.nav-link-item.first {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.nav-link-item:hover {
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
}


/* 轮播图区域 */
.carousel-section {
    width: 100% !important;
    height: 360px !important;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}

.carousel-container {
    width: 100% !important;
    height: 100% !important;
    max-height: 360px !important;
    position: relative;
    display: block !important;
}

.carousel-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh !important;
    position: relative;
    display: block !important;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 左右切换按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    background: transparent;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* 小圆点指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* 会员相关样式 */
#destoon_member {
    display: flex;
    align-items: center;
    gap: 0;
}

#destoon_member .top-link {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    padding: 8px 6px;
    white-space: nowrap;
    position: relative;
    margin-right: 0;
}

#destoon_member .top-link:hover {
    color: #2c5aa0;
}

/* 在会员链接间添加分隔符 */
#destoon_member .top-link:not(:last-child):after {
    content: '|';
    color: #ccc;
    margin-left: 8px;
    font-size: 12px;
}

/* yikangyang系统自动生成的会员链接样式 */
#destoon_member a {
    color: #666 !important;
    text-decoration: none !important;
    font-size: 12px !important;
    transition: color 0.3s ease;
    padding: 8px 6px !important;
    white-space: nowrap;
    display: inline-block;
    margin-right: 0 !important;
}

#destoon_member a:hover {
    color: #2c5aa0 !important;
}

/* 在yikangyang系统生成的会员链接间添加分隔符 */
#destoon_member a:not(:last-child):after {
    content: '|';
    color: #ccc;
    margin-left: 8px;
    font-size: 12px;
    text-decoration: none;
}

/* 确保destoon_member在右侧显示正确 */
.top-bar-right #destoon_member {
    margin-right: 20px;
}

/* 用户信息容器样式 */
.user-info-container {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.user-info-container:hover {
    background: rgba(255, 255, 255, 0.2);
}

.user-info-container .user-avatar {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.user-info-container:hover .user-avatar {
    border-color: rgba(255, 255, 255, 0.5);
}

.user-info-container .username {
    color: #666;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 500;
}

.user-info-container:hover .username {
    color: #2c5aa0;
}

/* 确保登录状态下的分隔符正确显示 */
#destoon_member .user-info-container + .top-link:before {
    content: '|';
    color: #ccc;
    margin-right: 8px;
    font-size: 12px;
    text-decoration: none;
}

/* 工具函数

// 防抖函数

/* 资讯中心区域样式 */
.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.information-center {
    background: #fff;
    padding: 2px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-title img {
    width: 20px;
    height: auto;
    margin: 0 8px;
    vertical-align: middle;
}

.title-icon {
    font-size: 24px;
}

.title-text {
    color: #333;
    font-weight: normal;
}

.title-divider {
    color: #2c5aa0;
    margin: 0 8px;
    font-weight: bold;
}

.title-en {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
}

.info-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 左侧行业动态样式 */
.info-left {
    flex: 2.5;
}

.news-section {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.news-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.news-title img,
.recommend-title img {
    width: 18px;
    margin-right: 8px;
}

.news-tabs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tab-link {
    color: #999;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 0;
    transition: color 0.3s ease;
    font-size: 14px;
}

.tab-link.active {
    background: transparent;
    color: #2c5aa0;
    font-weight: 500;
}

.tab-link:hover:not(.active) {
    background: transparent;
    color: #666;
}

.more-link {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 14px;
}

.more-link:hover {
    text-decoration: underline;
}

.news-content {
    padding: 0;
}

.main-news {
    position: relative;
    margin-bottom: 20px;
}

.news-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.news-slide.active {
    opacity: 1;
}

.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    min-width: 60px;
}

.date-day {
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 12px;
    margin-top: 2px;
}

.news-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 40px 15px 15px;
    margin: 0;
}

.news-headline {
    font-size: 16px;
    color: white;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.news-indicators {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.news-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-indicator.active {
    background: white;
    transform: scale(1.2);
}

.news-list {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.news-list-content {
    display: block;
}

.news-list-content.active {
    display: block;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-bottom: none;
    /*margin-bottom: 12px;*/
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-date-small {
    text-align: center;
    min-width: 50px;
    flex-shrink: 0;
    background: #e3f2fd;
    padding: 8px 6px;
    border-radius: 4px 0 0 4px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date-small .date-day {
    font-size: 18px;
    font-weight: bold;
    color: #2c5aa0;
    line-height: 1;
}

.news-date-small .date-month {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

.news-title-small {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    cursor: pointer;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 0 4px 4px 0;
    height: 42px;
    display: flex;
    align-items: center;
    margin: 0;
}

.news-title-small:hover {
    color: #2c5aa0;
}

/* 右侧智能推荐资讯样式 */
.info-right {
    flex: 1.5;
}

.recommend-section {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.recommend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.recommend-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.recommend-list {
    padding: 0;
}

/* 移除homepage中的recommend-item flex定义，使用exhibit.css中的传统布局 */

.recommend-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recommend-item:hover .recommend-title-text {
    color: #333;
}

/* 移除homepage中的recommend相关flex定义，使用exhibit.css中的传统布局 */

.recommend-title-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend-date {
    font-size: 12px;
    color: #999;
}

/* 资讯中心响应式设计 */
@media (max-width: 768px) {
    .info-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-header,
    .recommend-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-tabs {
        width: 100%;
        justify-content: space-between;
    }
    
    .news-image {
        height: 150px;
    }
    
    /* 移除响应式中的recommend-item flex样式 */
    
    .recommend-image {
        width: 60px;
        height: 45px;
    }
}

/* 政策解读专栏和互动社区区域 */
.policy-community-section {
    background: #fff;
    padding: 40px 0;
}

.policy-community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

/* 左侧政策解读专栏 */
.policy-column {
    flex: 2.5;
}

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.policy-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.policy-title img {
    width: 18px;
    margin-right: 8px;
}

.policy-list {
    padding: 0;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-item:hover {
    background: #f8f9fa;
}

.policy-dot {
    color: #2c5aa0;
    font-size: 12px;
    flex-shrink: 0;
}

.policy-text {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.policy-date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 10px;
}

/* 右侧互动社区 */
.community-column {
    flex: 1.5;
}

.community-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.community-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.community-title img {
    width: 18px;
    margin-right: 8px;
}

.community-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.community-top {
    display: flex;
    gap: 15px;
}

.community-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 120px;
}

.community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.forum-card {
    background: transparent;
}

.expert-card {
    background: transparent;
}

.community-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.card-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.community-bottom {
    width: 100%;
}

.ugc-card {
    width: 100%;
    background: transparent;
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 80px;
}

.ugc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.ugc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.ugc-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ugc-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.ugc-arrow {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* 案例库区域 */
.case-library-section {
    background: #fff;
    padding:0 0 40px 0;
}

.case-library-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-library-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.case-library-section .section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    margin: 0;
}

.case-library-section .section-title img {
    width: 18px;
    margin-right: 8px;
}

.case-library-section .title-text {
    color: #2c5aa0;
    font-weight: bold;
}

.case-library-section .more-link {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 12px;
    font-weight: normal;
}

.case-library-section .more-link:hover {
    text-decoration: underline;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.case-title {
    padding: 15px;
    font-size: 12px;
    color: #333;
    line-height: 1.5;
    text-align: left;
    background: transparent;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 案例库响应式设计 */
@media (max-width: 1024px) {
    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .case-image {
        height: 150px;
    }
    
    .case-library-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* 热门展会区域 */
.hot-exhibitions-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.hot-exhibitions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hot-exhibitions-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.hot-exhibitions-section .section-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.hot-exhibitions-section .section-title img {
    width: 20px;
    height: auto;
    margin: 0 8px;
    vertical-align: middle;
}

.hot-exhibitions-section .title-text {
    color: #333;
    font-weight: normal;
    font-size: 20px;
}

.hot-exhibitions-section .title-en {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.exhibition-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
}

.exhibition-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    width: 160px;
    height: 180px;
    flex-shrink: 0;
    margin: 15px 0 0 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    z-index: 2;
}

.status-tag.ongoing {
    background: #ff4444;
}

.status-tag.countdown {
    background: #ff9800;
}

.status-tag.ended {
    background: #999;
}

.card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.card-category {
    background: #e3f2fd;
    color: #1976d2;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
}

.card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.info-icon {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.card-price {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    height: 28px;
    line-height: 16px;
    flex: 1;
}

.btn-outline {
    background: transparent;
    border-color: #ff4444;
    color: #ff4444;
}

.btn-outline:hover {
    background: #ff4444;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #ff9800;
    border-color: #ff9800;
}

.btn-secondary:hover {
    background: #ff9800;
    color: white;
}

.btn-primary {
    background: #2196f3;
    color: white;
    border-color: #2196f3;
}

.btn-primary:hover {
    background: #1976d2;
    border-color: #1976d2;
}

/* 热门展会响应式设计 */
@media (max-width: 768px) {
    .exhibitions-grid {
        grid-template-columns: 1fr;
    }
    
    .exhibition-card {
        flex-direction: column;
    }
    
    .card-image {
        width: 100%;
        height: 200px;
    }
    
    .card-actions {
        flex-wrap: wrap;
    }
    
    .btn {
        flex: 1;
        min-width: 80px;
    }
}

/* 免费发布展会信息区域 */
.publish-exhibition-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.publish-banner {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #1e5f99 100%);
    background-image: url('images/fabu.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.publish-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 144, 226, 0.1);
    z-index: 1;
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.banner-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 16px;
    margin: 0 0 25px 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.publish-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 100px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: none;
}

.publish-btn:hover {
    background: white;
    color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .publish-banner {
        height: 150px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .publish-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* 智库中心区域 */
.think-tank-section {
    background: #fff;
    padding: 40px 0;
}

.think-tank-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.think-tank-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.think-tank-section .section-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.think-tank-section .section-title img {
    width: 20px;
    height: auto;
    margin: 0 8px;
    vertical-align: middle;
}

.think-tank-section .title-text {
    color: #333;
    font-weight: normal;
}

.think-tank-section .title-en {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
}

.experts-section {
    background: transparent;
}

.experts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.experts-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.experts-title img {
    width: 18px;
    margin-right: 8px;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.expert-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.expert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.expert-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 2px solid #e0e0e0;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.expert-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.expert-btn {
    background: transparent;
    border: 1px solid #2c5aa0;
    color: #2c5aa0;
    padding: 6px 20px;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100px;
}

.expert-btn:hover {
    background: #2c5aa0;
    color: white;
}

/* 智库中心响应式设计 */
@media (max-width: 1024px) {
    .experts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .expert-card {
        padding: 15px;
    }
    
    .expert-avatar {
        width: 50px;
        height: 50px;
    }
    
    .experts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 行业数据库区域 */
.industry-database-section {
    background: #fff;
    padding: 40px 0;
}

.database-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.database-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.database-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.database-title img {
    width: 18px;
    margin-right: 8px;
}

.database-tabs {
    display: flex;
    align-items: center;
    gap: 30px;
}

.database-tabs .tab-link {
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.database-tabs .tab-link.active {
    color: #2c5aa0;
    font-weight: 500;
}

.database-tabs .tab-link:hover:not(.active) {
    color: #333;
}

.database-content {
    position: relative;
}

.database-list {
    display: block;
}

.database-list.active {
    display: block;
}

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pdf-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pdf-item:hover {
    background: #fff;
    border-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

.pdf-icon {
    flex-shrink: 0;
    width: 50px;
    height: 60px;
    background: #e74c3c;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-label {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.pdf-content {
    flex: 1;
    min-width: 0;
}

.pdf-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdf-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-size {
    font-size: 12px;
    color: #999;
}

.download-btn {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.download-btn:hover {
    color: #1e3d73;
    text-decoration: underline;
}

/* 行业数据库响应式设计 */
@media (max-width: 1024px) {
    .pdf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .database-tabs {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pdf-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .database-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .database-tabs {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .database-tabs .tab-link {
        font-size: 12px;
    }
    
    .pdf-item {
        padding: 15px;
        gap: 12px;
    }
    
    .pdf-icon {
        width: 40px;
        height: 50px;
    }
    
    .pdf-title {
        font-size: 13px;
    }
}

/* 视频课堂区域 */
.video-classroom-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.video-classroom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-classroom-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-classroom-section .section-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.video-classroom-section .section-title img {
    width: 20px;
    height: auto;
    margin: 0 8px;
    vertical-align: middle;
}

.video-classroom-section .title-text {
    color: #333;
    font-weight: normal;
}

.video-classroom-section .title-en {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
}

.video-section {
    margin-bottom: 40px;
}

.video-section:last-child {
    margin-bottom: 0;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    margin-bottom: 30px;
}

.video-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.video-title img {
    width: 18px;
    margin-right: 8px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2c5aa0;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.video-info {
    padding: 15px;
}

.video-title-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-price {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.video-price.free {
    color: #2196f3;
}

.video-price.paid {
    color: #e74c3c;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.video-date {
    color: #999;
}

.video-meta .video-price {
    font-size: 12px;
    margin: 0;
}

/* 视频课堂响应式设计 */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .video-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .video-thumbnail {
        height: 120px;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-title-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail {
        height: 180px;
    }
}

/* 供需交易区域 */
.supply-demand-section {
    background: #fff;
    padding: 40px 0;
}

.supply-demand-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.supply-demand-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.supply-demand-section .section-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.supply-demand-section .section-title img {
    width: 20px;
    height: auto;
    margin: 0 8px;
    vertical-align: middle;
}

.supply-demand-section .title-text {
    color: #333;
    font-weight: normal;
}

.supply-demand-section .title-en {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
}

/* 通栏标题样式 */
.supply-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.supply-main-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.supply-main-title img {
    width: 18px;
    margin-right: 8px;
}

.supply-main-tabs {
    display: flex;
    align-items: center;
    gap: 20px;
}

.supply-demand-content {
    display: flex;
    gap: 40px;
}

/* 左侧最新供应信息 */
.supply-info-left {
    flex: 2.5;
}

.supply-tab {
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.supply-tab.active {
    color: #2c5aa0;
    font-weight: 500;
}

.supply-tab:hover:not(.active) {
    color: #333;
}

.supply-list {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.supply-list.active {
    display: flex;
}

.supply-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.supply-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

/* 移除第一条的特殊样式，让所有条目保持一致 */
.supply-item.featured {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.supply-item.featured:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

.supply-image {
    width: 100px;
    height: 75px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.supply-item:hover .supply-image {
    width: 120px;
    height: 90px;
}

.supply-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supply-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    margin-right: 15px;
}

.supply-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
}

/* 悬停时显示企业信息 - 移除featured的特殊处理 */
.supply-item:hover .supply-meta {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.supply-company,
.supply-time {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.supply-title-text {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.supply-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.contact-btn {
    background: transparent;
    border: 1px solid #4a90e2;
    color: #4a90e2;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 36px;
    white-space: nowrap;
    width: 80px;
}

.contact-btn:hover {
    background: #4a90e2;
    color: white;
}

/* 右侧免费发布供应信息 */
.supply-info-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.publish-supply-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.publish-supply-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.publish-supply-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.company-info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-info-card:hover {
    border-color: #2c5aa0;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

.company-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-content {
    padding: 20px;
}

.company-title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.company-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 5px;
}

.stat-item.highlight .stat-number {
    color: #e74c3c;
}

.stat-label {
    font-size: 12px;
    color: #999;
    display: block;
}

/* 供需交易响应式设计 */
@media (max-width: 768px) {
    .supply-demand-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .supply-main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .supply-main-tabs {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .supply-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .supply-image {
        width: 100%;
        height: 150px;
    }
    
    .supply-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .supply-content {
        width: 100%;
        margin-right: 0;
    }
    
    .contact-btn {
        align-self: flex-start;
        width: auto;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .stat-number {
        margin-bottom: 0;
    }
}

/* 最新需求信息区域 */
.demand-info-section {
    background: #fff;
    padding: 40px 0;
}

.demand-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 通栏标题样式 */
.demand-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.demand-main-title {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.demand-main-title img {
    width: 18px;
    margin-right: 8px;
}

.demand-main-tabs {
    display: flex;
    align-items: center;
    gap: 20px;
}

.demand-content {
    width: 100%;
}

.demand-tab {
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.demand-tab.active {
    color: #2c5aa0;
    font-weight: 500;
}

.demand-tab:hover:not(.active) {
    color: #333;
}

.demand-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.demand-grid.active {
    display: grid;
}

.demand-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 155px;
}

.demand-item:hover {
    border-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

/* 第一行最后一个项目的图片样式 */
.demand-item.image-only {
    padding: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    display: block;
}

.demand-item.image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.demand-item.image-only:hover img {
    transform: scale(1.05);
}

.demand-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.demand-details {
    margin-bottom: auto;
}

.demand-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
}

.demand-right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-shrink: 0;
    height: 100%;
}

.quote-btn {
    background: transparent;
    border: 1px solid #4a90e2;
    color: #4a90e2;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0;
    white-space: nowrap;
}

.quote-btn:hover {
    background: #4a90e2;
    color: white;
}

.demand-title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.demand-quantity,
.demand-location {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.demand-date {
    font-size: 12px;
    color: #999;
}

.demand-status {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 500;
}

.demand-right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-shrink: 0;
    height: 100%;
}

/* 机构展示区域 */
.institution-display-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.institution-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.institution-display-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.institution-display-section .section-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.institution-display-section .section-title img {
    width: 20px;
    height: auto;
    margin: 0 8px;
    vertical-align: middle;
}

.institution-display-section .title-text {
    color: #333;
    font-weight: normal;
}

.institution-display-section .title-en {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
}

/* 分类导航 */
.institution-nav {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.institution-nav .nav-left {
    flex-shrink: 0;
}

.nav-title {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.institution-nav .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.nav-category {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-category.active {
    color: #2c5aa0;
    font-weight: 500;
}

.nav-category:hover:not(.active) {
    color: #333;
}

.nav-more {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.nav-more:hover {
    text-decoration: underline;
}

/* 机构列表容器 */
.institution-content {
    position: relative;
}

.institution-list {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.institution-list.active {
    display: flex;
}

.institution-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.institution-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.institution-image {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.institution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.institution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.institution-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.institution-name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.institution-rating {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 14px;
}

.star.active {
    color: #ffa500;
}

.rating-score {
    font-size: 12px;
    color: #ffa500;
    font-weight: 500;
}

.institution-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.info-icon {
    font-size: 12px;
    width: 16px;
    text-align: center;
}

.info-text {
    line-height: 1.4;
}

.institution-services {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.service-tag {
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.institution-action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.institution-action .contact-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.institution-action .contact-btn:hover {
    background: #357abd;
    transform: translateY(-1px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .institution-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .nav-right {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
    
    .institution-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .institution-image {
        width: 100%;
        height: 200px;
    }
    
    .institution-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .institution-action {
        align-self: flex-start;
    }
    
    .institution-rating {
        position: static;
        margin-top: 10px;
    }
}

/* 人才中心区域 */
.talent-center-section {
    background: #fff;
    padding: 40px 0;
}

.talent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.talent-center-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.talent-center-section .section-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.talent-center-section .section-title img {
    width: 20px;
    height: auto;
    margin: 0 8px;
    vertical-align: middle;
}

.talent-center-section .title-text {
    color: #333;
    font-weight: normal;
}

.talent-center-section .title-en {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
}

/* 内容区域 */
.talent-content {
    display: flex;
    gap: 30px;
}

/* 左侧招聘列表 */
.talent-left {
    flex: 2;
}

.talent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.talent-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.talent-title img {
    width: 18px;
    margin-right: 8px;
}

.title-icon {
    font-size: 14px;
}

.talent-header .more-link {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.talent-header .more-link:hover {
    text-decoration: underline;
}

/* 招聘列表 */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.job-item {
    display: grid;
    grid-template-columns: 2fr 80px 3fr 120px 20px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 20px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.job-item:hover {
    background: #f8f9fa;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.company-info {
    flex: 1;
    min-width: 0;
}

.job-title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.company-name {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.job-salary {
    font-size: 14px;
    color: #e74c3c;
    font-weight: 600;
    text-align: center;
}

.job-location {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.job-date {
    font-size: 12px;
    color: #999;
    text-align: right;
}

.job-expand {
    font-size: 12px;
    color: #999;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.job-expand:hover {
    color: #2c5aa0;
}

/* 职位详情展开区域 */
.job-details {
    grid-column: 1 / -1;
    background: #f8f9fa;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.job-details-content {
    flex: 1;
}

.job-description,
.job-requirements {
    margin-bottom: 20px;
}

.job-details h5 {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.job-details ol {
    margin: 0;
    padding-left: 20px;
}

.job-details li {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.job-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-shrink: 0;
    margin-top: 0;
}

.job-actions .btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-actions .btn-outline:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
}

.job-actions .btn-primary {
    background: #2c5aa0;
    border: 1px solid #2c5aa0;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-actions .btn-primary:hover {
    background: #1e3d73;
    border-color: #1e3d73;
}

/* 右侧广告区域 */
.talent-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ad-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.publish-job {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    padding: 30px 20px;
    color: white;
    text-align: center;
}

.ad-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.ad-content p {
    font-size: 14px;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.publish-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 30px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.publish-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.recruitment-spring,
.recruitment-future {
    height: 150px;
}

.ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .talent-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .talent-right {
        flex-direction: row;
        gap: 20px;
    }
    
    .ad-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .job-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    
    .job-salary {
        text-align: left;
    }
    
    .job-date {
        text-align: left;
    }
    
    .talent-right {
        flex-direction: column;
    }
    
    .talent-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* 页脚联系信息区域 */
.footer-contact-section {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 40px 0;
    color: white;
}

.footer-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    line-height: 1.6;
}

.contact-label {
    color: white;
    font-size: 14px;
    font-weight: normal;
    min-width: 80px;
    white-space: nowrap;
}

.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.contact-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-text {
    color: white;
    font-size: 14px;
}

.contact-right {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-code img {
    width: 120px;
    height: 120px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-text {
    color: white;
    font-size: 13px;
    font-weight: normal;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .contact-label {
        min-width: auto;
    }
    
    .contact-links {
        gap: 15px;
    }
    
    .qr-code img {
        width: 100px;
        height: 100px;
    }
}

/* 面包屑导航样式 */
.breadcrumb-section {
    padding: 15px 0;
    background: #f2f2f2;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #2c5aa0;
}

.breadcrumb-icon {
    font-size: 14px;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 4px;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* 分类导航模块样式 - 严格按照截图效果 */
.category-navigation-section {
    background: #f2f2f2;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-bottom: none;
}

.category-navigation-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0;
}

.category-tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    width: auto; /* 改为自动宽度，让内容决定宽度 */
}

.category-tab {
    display: inline-block;
    padding: 15px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    background: #fff;
    border: none;
    margin-right: 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.category-tab:first-child {
    border-top-left-radius: 0;
}

.category-tab:last-child {
    border-top-right-radius: 0;
    margin-right: 0;
}

.category-tab:hover {
    color: #333;
    background: #fff;
}

.category-tab.active {
    color: #fff;
    background: #ff6600;
    border-color: #ff6600;
    font-weight: normal;
}

.category-tab.active:hover {
    color: #fff;
    background: #ff6600;
    border-color: #ff6600;
}

/* 资讯列表和热榜模块样式 */
.news-content-section {
    background: #f2f2f2;
    padding: 20px 0;
}

.news-content-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 20px;
}

/* 左侧资讯列表 */
.news-list-container {
    width: 900px;
    background: #fff;
    padding: 0;
    flex-shrink: 0;
}

.news-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item-image {
    width: 160px;
    height: 120px;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
}

.news-item-title a {
    color: #333;
    text-decoration: none;
}

.news-item-title a:hover {
    color: #ff6600;
}

.news-item-desc {
    color: #666;
    font-size: 14px;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.news-item-date {
    color: #999;
    font-size: 14px;
}

/* 右侧资讯热榜 */
.news-hot-container {
    width: 300px;
    flex-shrink: 0;
    background: #fff;
    height: 480px; /* 限制高度，约10条内容的高度 */
    overflow: hidden; /* 隐藏超出部分 */
}

.hot-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.hot-title {
    font-size: 18px;
    margin: 0;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hot-icon {
    color: #ff6600;
    font-size: 14px;
    font-weight: bold;
    background: transparent;
    padding: 0;
    margin-left: 8px;
}

.hot-list {
    padding: 10px 0;
    max-height: 420px; /* 减去头部高度后的内容区域高度 */
    overflow: hidden; /* 确保不显示超出的内容 */
}

.hot-item {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    position: relative;
}

.hot-rank {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #ddd;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 10px;
    font-weight: bold;
}

.hot-rank-1, .hot-rank-2, .hot-rank-3 {
    background: #ff6600;
}

.hot-link {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.hot-link:hover {
    color: #ff6600;
}

.hot-views {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
}

/* 右侧侧边栏容器 */
.news-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 调整右侧容器布局 */
.news-hot-container {
    width: 100%;
    flex-shrink: 0;
    background: #fff;
    height: 480px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 本周必读模块样式 */
.weekly-read-container {
    width: 100%;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.weekly-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.weekly-title {
    font-size: 18px;
    margin: 0;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.weekly-icon {
    color: #ff6600;
    font-size: 14px;
    font-weight: bold;
    background: transparent;
    padding: 0;
    margin-left: 8px;
}

.weekly-content {
    padding: 20px;
}

.weekly-main-article {
    margin-bottom: 20px;
}

.weekly-main-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.weekly-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weekly-main-title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.weekly-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.weekly-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
}

.weekly-dot {
    color: #4a90e2;
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 2px;
}

.weekly-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s ease;
}

.weekly-link:hover {
    color: #4a90e2;
}

/* 翻页组件样式 */
.pagination-container {
    width: 100%;
    background: #fff;
    padding: 20px;
    margin-top: 0;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-block;
    padding: 8px 12px;
    min-width: 32px;
    height: 32px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    color: #666;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pagination-btn:hover {
    background: #e9e9e9;
    color: #333;
    border-color: #ccc;
}

.pagination-current {
    background: #4a90e2 !important;
    color: #fff !important;
    border-color: #4a90e2 !important;
}

.pagination-current:hover {
    background: #4a90e2 !important;
    color: #fff !important;
}

.pagination-prev,
.pagination-next {
    padding: 8px 16px;
    min-width: auto;
}

.pagination-dots {
    color: #999;
    font-size: 14px;
    padding: 0 4px;
}

.pagination-info {
    color: #666;
    font-size: 14px;
    margin-left: 20px;
}

.pagination-jump {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.pagination-input {
    width: 40px;
    height: 32px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.pagination-input:focus {
    border-color: #4a90e2;
}

.pagination-go {
    height: 32px;
    padding: 0 16px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pagination-go:hover {
    background: #e55a00;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pagination-container {
        width: 100%;
        padding: 15px;
    }
    
    .pagination-wrapper {
        gap: 4px;
    }
    
    .pagination-btn {
        padding: 6px 10px;
        min-width: 28px;
        height: 28px;
        line-height: 16px;
        font-size: 12px;
    }
    
    .pagination-prev,
    .pagination-next {
        padding: 6px 12px;
    }
    
    .pagination-info {
        margin-left: 10px;
        font-size: 12px;
    }
    
    .pagination-jump {
        margin-left: 10px;
    }
    
    .pagination-input {
        width: 35px;
        height: 28px;
        font-size: 12px;
    }
    
    .pagination-go {
        height: 28px;
        padding: 0 12px;
        font-size: 12px;
    }
}

/* 左侧资讯列表响应式设计 */
@media (max-width: 768px) {
    .news-list-container {
        width: 100%;
    }
}
