* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
}

.container {
    width: 1500px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background: #fff;
  
    top: 0;
    z-index: 100;
}

.header-top {
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    align-items: center;
}

.header-info span {
    font-size: 12px;
    color: #666;
    margin-right: 24px;
}

.header-user {
    display: flex;
    align-items: center;
}

.header-user a {
    font-size: 12px;
    color: #666;
    margin: 0 8px;
}

.header-user a:hover {
    color: #0091d7;
}

.header-user span {
    font-size: 12px;
    color: #ccc;
}

.header-main {
    height: 180px;
    background: url("../images/1-01.jpg") no-repeat center center;
    background-size: cover;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    align-items: center;
    margin-top: 20px;
}

.logo img {
    height: 100px;
    margin-right: 15px;
}

.logo-text {
    font-size: 16px;
    color: #1a6bc7;
    margin-top: 0;
    padding-left: 10px;
}

.logo-text p {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.5px;
}

.header-tools {
    display: flex;
    align-items: center;
}

.header-tools img {
    margin-right: 10px;
}

.header-tools a {
    margin:0 10px;
    font-size: 16px;
}

.header-tools a:hover {
    color: #0091d7;
}

.mobile-bar,
.mobile-overlay,
.nav-close-wrap {
    display: none;
}

.search-box {
    display: flex;
    overflow: hidden;
     justify-content: flex-end;
     margin-bottom: 30px;
}

.search-box form {
    display: flex;
}

.search-box-input {
    position: relative;
    display: flex;
}

.search-box-input img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.search-box input {
    width: 240px;
    padding: 10px 20px;
    outline: none;
    font-size: 14px;
    border: #dddddd 1px solid;
    border-right: 0px;
    padding-left: 40px;
    background: #fff !important;
    caret-color: #333;
}

.search-box input:focus {
    background: #fff !important;
    box-shadow: none;
}

.search-box input:-webkit-autofill,
.search-box input:-webkit-autofill:hover,
.search-box input:-webkit-autofill:focus {
    -webkit-text-fill-color: #333;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.search-box button {
    padding: 0 25px;
    background: #0191d8;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #1261bb;
}

.header-nav {
    background: #1a6bc7;
}

.header-nav .container {
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    width: 100%;
}

.nav > li {
    position: relative;
    flex: 1;
    text-align: center;
}

.nav > li > a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 18px 0;
    display: block;
    transition: background 0.3s;
}

.nav > li > a:hover,
.nav > li.active > a {
    background: #1261bb;
}

.nav > li .arrow {
    font-size: 10px;
    margin-left: 4px;
}

.nav > li:hover .subnav {
    display: block;
}

.subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3d577c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    border-top: #fff 2px solid;
}

.subnav li {
    padding: 0;
}

.subnav li a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.subnav li a:hover {
    background: #f0f5ff;
    color: #0091d7;
}

/* Banner */
.banner {
    position: relative;
    overflow: hidden;
}

.banner .swiper {
    width: 100%;
    height: 570px;
}

.banner .swiper-slide {
    position: relative;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner .swiper-slide a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.banner .banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 70px));
    color: #fff;
    font-size: 54px;
    font-weight: bold;
    text-align: center;
    z-index: 999;
}

.banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.banner .banner-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
	margin-top:-56px;
  
	font-family: "Times New Roman", Times, serif;
	text-transform: uppercase;
}

.banner .banner-text p {
    font-size: 16px;
   
}

.banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.banner .swiper-pagination-bullet-active {
    background: #fff;
}

.banner .swiper-button-prev {
    left: 30px;
    top: calc(50% - 46px);
    transform: translateY(-50%);
}

.banner .swiper-button-next {
    right: 30px;
    top: calc(50% - 46px);
    transform: translateY(-50%);
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

/* News Page Banner */
.banner .news-banner {
    height: 370px;
}

.news-banner .banner-text h2 {
    font-size: 52px;
	font-family: "Times New Roman", Times, serif;
	text-transform: uppercase;
	font-weight: normal;
}

.news-banner .banner-text p {
    font-size: 24px;
}

/* Stats */
.stats {
    background: #fff;
    box-shadow: 0 11px 10px rgba(0, 0, 0, 0.05);
     width: 1500px;
    margin: 0 auto;
    margin-top: -89px;
    position: relative;
    z-index: 111111;
}

.stats .container {
    background: #fff;
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: "";
    position: absolute;
    top: 17%;
    left: -137%;
    width: 1px;
    height: 50px;
    background: #afafaf;
    border-radius: 50%;
}

.stat-item:first-child::after {
  display: none;
}



.stat-item .number {
    font-size: 40px;
    font-weight: bold;
    color: #1a6bc7;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 18px;
    color: #666;
}

/* TZGG Section */
.tzgg {
    background: #fff;
    padding: 20px 0;
}

.tzgg-top {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.tzgg-tag {
    background:#e02424;
    color: #fff;
    padding: 20px 45px;
    font-size: 19px;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
}

.tzgg-tag img {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translate(-50%, -50%);
}

.tzgg-list {
    flex: 1;
    border: 1px solid #eee;
    padding-left: 20px;
    overflow: hidden;
    height: 88px;
}

.tzgg-scroll {
    animation: tzggScrollUp 20s linear infinite;
}

.tzgg-list:hover .tzgg-scroll {
    animation-play-state: paused;
}

.tzgg-list ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.tzgg-list ul li {
    padding: 10px 0;
    height: 44px;
    box-sizing: border-box;
    overflow: hidden;
}

@keyframes tzggScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.tzgg-list ul li:last-child {
    border-bottom: none;
}

.tzgg-list ul li a {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-decoration: none;
}

.tzgg-list ul li a:hover {
    color: #0091d7;
}

.tzgg-date {
    font-size: 16px;
    color: #999;
    margin-right: 15px;
}

.tzgg-bottom {
    display: flex;
    justify-content: space-between;
}

.tzgg-left {
    width: 45%;
}

.tzgg-swiper {
    width: 100%;
    height: 500px;
}

.tzgg-swiper .swiper-slide {
    position: relative;
}

.tzgg-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tzgg-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(35, 112, 199, 0.6);
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
}

.tzgg-swiper .swiper-pagination {
    bottom: 40px;
    text-align: right!important;
    padding-right: 20px;
}


.tzgg-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 5);
    border-radius: 50%;
}

.tzgg-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

.tzgg-right {
    width: 53%;
}

.tzgg-tabs {
    display: flex;
    margin-bottom: 15px;
}

.tzgg-tab {
    flex: 1;
    padding: 14px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tzgg-tab span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
   }
.tzgg-tab span img{
    margin-right: 10px;
}



.tzgg-tab.active {
    background: #e53935;
    color: #fff;
    border-bottom-color: #e53935;
    position: relative;
}

.tzgg-tab:first-child.active {
    background:#e53935;
    border-bottom-color: #e53935;
    position: relative;
}

.tzgg-tab.active::after {
    content: "";
     width: 15px;
    height: 6px;
    background: url("../images/1-_03.jpg") no-repeat center center;
    border-bottom-color: #e53935;
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translate(-50%, -50%);

}

.tzgg-tab:not(.active) {
    background: #1a6bc7;
    color: #fff;
}

.tzgg-tab:not(.active):hover {
    background: #e53935;
}

.tzgg-content {
    height: 432px;
    overflow: hidden;
}

.tzgg-panel {
    display: none;
}

.tzgg-panel.active {
    display: block;
}

.tzgg-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tzgg-panel ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    font-size: 16px;
}

.tzgg-panel ul li:last-child {
    border-bottom: none;
}

.tzgg-panel ul li a {
    color: #333333;
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 15px;
}

.tzgg-panel ul li a:hover {
    color: #0091d7;
}

.tzgg-panel ul li span {
    color: #999;
    font-size: 16px;
    flex-shrink: 0;
}

.tzgg-panel.active ul li::before {
    content: "";
    margin-right: 15px;
    width: 6px;
    height: 6px;
    background: #e53935;
    border-radius: 50%;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.ads {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

.ads a {
    width: 32%;
}

.main-left {
    width: 100%;
}

.main-right {
    width: 360px;
}

/* Section Title */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.section-title h3 {
    font-size: 20px;
    font-weight: bold;
    background: #1a6bc7;
    color: #fff;
    position: relative;
    height: 47px;
    width: 350px;
    line-height: 45px;
    padding-left: 25px;
    margin-left: 15px;
}


.section-title h3 span{
    font-size: 16px;
    margin-left: 20px;
    font-weight: 500;
       color: #a3c4e9;
}

.section-title h3::after {
    content: "";
    display: inline-block;
    width: 27px;
    height: 45px;
    background: url(../images/index_54.png) no-repeat center center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -22px;
}


.section-title h3::before {
        content: "";
    width: 10px;
    height: 47px;
    background: #e02424;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -14px;
}




.section-title .more {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
}




.section-title .more:hover {
    color: #0091d7;
}

/* News List */
.news-list {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item .news-image {
    width: 150px;
    height: 100px;
    margin-right: 15px;
    flex-shrink: 0;
}

.news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.news-item .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item .news-content h4 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-item .news-content h4:hover {
    color: #0091d7;
}

.news-item .news-content p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.news-item .news-content .news-time {
    font-size: 12px;
    color: #bbb;
}

/* News Sidebar */
.news-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-sidebar .tab-header {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.news-sidebar .tab-header li {
    padding: 8px 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    margin-right: 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.news-sidebar .tab-header li.active {
    color: #0091d7;
    border-bottom-color: #0091d7;
    font-weight: 500;
}

.news-sidebar .tab-content .tab-panel {
    display: none;
}

.news-sidebar .tab-content .tab-panel.active {
    display: block;
}

.news-sidebar .tab-panel ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.news-sidebar .tab-panel ul li:last-child {
    border-bottom: none;
}

.news-sidebar .tab-panel ul li a {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-sidebar .tab-panel ul li a:hover {
    color: #0091d7;
}

.news-sidebar .tab-panel ul li span {
    display: block;
    font-size: 12px;
    color: #bbb;
    margin-top: 5px;
}
    .news-info .time{
        display: none;
    }

/* Platforms */
.platforms {
    margin-top: 30px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-item {
    background: #fff;
    border-radius: 14px;
  
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    padding-bottom: 30px;
    border: solid 1px #d1d1d1;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.platform-item .platform-icon {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-item .platform-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 100%;
    object-fit: contain;
}

.platform-item .platform-icon .icon-default {
    z-index: 1;
}

.platform-item .platform-icon .icon-hover {
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
      width: 54px;
    height: 53px;
}



.platform-item:hover .platform-icon .icon-hover {
    opacity: 0.7;
    width: 54px;
    height: 53px;
}

.platform-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1a6bc7;
    margin-bottom: 8px;
}

.platform-item h4 a {
    color: #1a6bc7;
}

.platform-item p {
    font-size: 16px;
    color: #666666;
    width: 80%;
    line-height: 1.62;
    text-align: center;
    margin-left: 10%;
}

/* Activities */
.activities {
    margin-top: 30px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-item {
    background: url(../images/index_62.png) no-repeat center center/cover;
    background-size: cover;
    border-radius: 4px;
    color: #fff;
    padding: 20px;
    position: relative;
}

.activity-item .more {
    position: absolute;
    bottom: 20px;
    right: 25px;
}

.activity-item:hover {
    padding: 20px;
    border-radius: 4px;
}


.activity-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    margin-left: 20px;
    margin-top: 0px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;

}

.activity-item h4:hover {
    color: #0091d7;
}

.activity-item .activity-info {
    font-size: 12px;
    color: #999;
    margin-left: 20px;
}

.activity-item .activity-info span {
    display: block;
    margin-bottom: 5px;
    color: #000;
}

/* Hot Activities */
.hot-activities {
    margin-top: 30px;
}

.hot-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hot-item {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    border: solid 1px #d1d1d1;
    display: flex;
    transition: transform 0.3s;
    position: relative;
}

.hot-item:hover {
    transform: translateY(-5px);
}

.hot-item .more {
    position: absolute;
    bottom: 20px;
    right: 25px;
}

.hot-item .hot-image {
    width: 250px;
    height: 160px;
    margin-right: 15px;
    flex-shrink: 0;
}

.hot-item .hot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.hot-item .hot-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hot-item .hot-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

.hot-item .hot-content h4:hover {
    color: #0091d7;
}

.hot-item .hot-content .hot-meta {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.hot-item .hot-content .hot-meta span {
    display: block;
    margin-bottom: 11px;
}


.huiyuan{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Member Showcase */
.member-showcase {
   width: 1150px;
}

.hyright{
    width: 320px;
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.member-slider {
    position: relative;
    border: #eee 1px solid;
    padding: 25px 30px;
}

.member-swiper {
    overflow: hidden;
}

.member-swiper .swiper-wrapper {
}

.member-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    line-height: 1;
}

.member-arrow:hover {
    background: #0091d7;
    color: #fff;
    border-color: #0091d7;
}

.member-prev {
    left: -20px;
}

.member-next {
    right: -20px;
}

.member-item {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}

.member-item .member-image {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
}

.member-item .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.member-item h4 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

.member-item h4:hover {
    color: #0091d7;
}

.member-item p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

/* Sidebar Actions */
.sidebar-actions {
    margin-top: 20px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.action-item {
    background: #0091d7;
    padding: 20px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    transition: background 0.3s;
}

.action-item:hover {
    background: #1261bb;
}

.action-item .action-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.action-item span {
    display: block;
    font-size: 13px;
}

/* Footer */
.footer {
    background: #0091d7;
    color: #fff;
}

.footer-links {
    background: #1866bf;
    padding: 20px 0;
}

.footer-links .container {
    display: flex;
    align-items: center;
}

.footer-links .links-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    margin-right: 20px;
    font-weight: bold;
}

.footer-links a {
    font-size: 16px;
    color: #fff;
    margin-right: 20px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

.footer-main {
    padding: 50px 0;
    background: #1a6bc7;
}

.footer-main .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
}

.footer-left .footer-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 19px;
}

.footer-left p {
    font-size: 14px;
    color: #fff;
    line-height: 2;
    margin: 0;
}

.footer-left p strong {
    color: #fff;
    font-weight: normal;
}

.footer-center {
    flex: 0 0 auto;
    margin-right: 200px;
    margin-top:60px;
}

.footer-center p {
    font-size: 14px;
    color: #fff;
    line-height: 2;
    margin: 0;
    text-align: left;

}

.footer-center a,
.footer-center a:visited,
.footer-center a:hover {
    color: #fff;
}

.footer-center .beian-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
}

.footer-right {
    flex: 0 0 auto;
    text-align: center;
    margin-top:30px;
}

.footer-right .qr-code {
    width: 100px;
    height: 100px;
    margin: 0 auto 8px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-right .qr-code img {
    width: 100px;
    height: 100px;   
}

.footer-right p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 48px;
    height: 56px;
    background: #0091d7;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.back-to-top img{
    width: 32px;
    height: auto;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}



.back-to-top .top-icon {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 2px;
}

.back-to-top .top-text {
    font-size: 12px;
    line-height: 1;
}

/* News Category Bar */
.news-category {
    margin-top: -60px;
    position: relative;
    z-index: 1111;
}

.news-category .category-tabs {
    display: flex;
    justify-content: flex-start;
}

.news-category .category-tabs li {
    flex: 1 0 auto;
}

.news-category .category-tabs li a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: relative;
    transition: color 0.3s;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-left: 1px solid #fff;
}

.news-category .category-tabs li:first-child > a {
    border-left: none;
}

.news-category .category-tabs li a:hover {
      color: #fff;
    font-weight: bold;
    background: #0191d8;
    text-align: center;
}

.news-category .category-tabs li.active a {
    color: #fff;
    font-weight: bold;
    background: #0191d8;
    text-align: center;
}



/* News List Page */
.news-page .main-content {
    padding: 40px 0;
}

.news-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.news-page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    
    padding-bottom: 20px;
    border-bottom: 1px solid #0091d7;
}

.news-page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

 .breadcrumb {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}
.breadcrumb img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}



.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #0091d7;
}

.news-page-right .search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.news-page-right .search-box form {
    display: flex;
    width: 100%;
}

.news-page-right .search-box input {
    width: 200px;
    padding: 8px 15px;
    border: none;
    outline: none;
    font-size: 13px;
}

.news-page-right .search-box button {
    padding: 8px 20px;
    background: #0091d7;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s;
}

.news-page-right .search-box button:hover {
    background: #1261bb;
}

.news-featured {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.news-featured .featured-image {
    width: 45%;
    height: 360px;
}

.news-featured .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured .featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-date {
    display: flex;
        align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    
}

.featured-date .month-name {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}
.featured-date .day {
    font-size: 48px;
    font-weight: bold;
    color: #0091d7;
    line-height: 1;
    border-bottom: 2px solid #0091d7;
}

.featured-date .month {
    font-size: 14px;
    color: #999;
    letter-spacing: 1px;
    padding-top: 5px;
}

.news-featured .featured-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-featured .featured-content h3 a {
    color: inherit;
}

.news-featured .featured-content h3 a:hover {
    color: #0091d7;
}

.news-featured .featured-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-view {
        display: flex;
    padding: 10px 25px;
    background: #0091d7;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
    align-self: flex-start;
    align-items: center;
}

.btn-view img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}






.news-list {
    background: #fff;
    padding: 0px;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
}

.news-list .news-item {
    display: flex;
    padding: 30px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.news-list .news-item:last-child {
    border-bottom: none;
}

.news-list .news-item:hover {
    background: #f8fbff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.news-date-block {
    width: 80px;
    flex-shrink: 0;
    text-align: center;
    border-radius: 8px;
    margin-right: 25px;
    transition: all 0.3s;
}

.news-list .news-item:hover .news-date-block {
    transform: translateY(-2px);
}

.news-date-block .day {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
    background: #e2e6ea;
    padding: 11px 10px;
    transition: all 0.3s;
}

.news-list .news-item:hover .news-date-block .day {
    background: #0091d7;
    color: #fff;
}

.news-date-block .full-date {
    font-size: 12px;
    color: #000;
    display: block;
    padding: 5px 10px;
    background: #e2e6ea;
    margin-top: 5px;
    transition: all 0.3s;
}

.news-list .news-item:hover .news-date-block .full-date {
    background: #0091d7;
    color: #fff;
}

.news-info {
    flex: 1;
}

.news-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s;
}

.news-list .news-item:hover .news-info h4 {
    color: #0091d7;
}

.news-info p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    min-height: calc(1.8em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-list .news-item:hover .news-info p {
    color: #666;
}

.news-page .pagination,
.news-page .pagination ul,
.news-page .pagination ol {
    list-style: none;
    padding: 0;
}

.news-page .pagination li {
    list-style: none;
}

.news-page .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.news-page .pagination a {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.news-page .pagination a:hover,
.news-page .pagination a.active {
    background: #0091d7;
    color: #fff;
    border-color: #0091d7;
}

/* News Detail Page */
.news-detail .main-content {
    padding: 40px 0;
}

.news-detail .news-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.news-detail .news-page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #0191d7;
}

.news-detail .news-page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.news-detail .breadcrumb {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}
.news-detail .breadcrumb img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}



.news-detail .breadcrumb a {
    color: #666;
}

.news-detail .breadcrumb a:hover {
    color: #0091d7;
}

.news-detail .news-detail-container {
    background: #fff;
    padding: 40px;
    border: 1px solid #eeeeee;
}

.news-detail .news-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 12px;
}

.news-detail .news-subtitle {
    font-size: 18px;
    font-weight: normal;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
	
	
	
}

.news-detail .news-meta {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-detail .news-meta span {
    margin: 0 15px;
}

.news-detail .news-body {
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.news-detail .news-body p {
    margin-bottom: 20px;
   
}

.news-detail .news-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

.news-detail .attachment-box {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.news-detail .attachment-box h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    margin-top: 0;
}

.news-detail .attachment-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    text-decoration: none;
    transition: all 0.3s;
}

.news-detail .attachment-item:hover .file-name {
    color: #e94707;
}

.news-detail .attachment-item .file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e94707;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}

.news-detail .attachment-item .file-name {
    font-size: 14px;
    color: #333;
}

.news-detail .news-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.news-detail .news-tags span {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-right: 0;
    display: block;
    margin-bottom: 10px;
}

.news-detail .news-tags a {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.news-detail .news-tags a:hover {
    color: #e94707;
}

.news-detail .news-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.news-detail .news-nav a {
    color: #666;
}

.news-detail .news-nav a:hover {
    color: #0091d7;
}

.news-detail .related-news {
    margin-top: 40px;
    padding-top: 30px;
}

.news-detail .related-news h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.news-detail .related-news ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.news-detail .related-news ul li:last-child {
    border-bottom: none;
}

.news-detail .related-news ul li a {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.news-detail .related-news ul li a:hover {
    color: #e94707;
}

/* Enterprise List Page */
.enterprise-page .main-content {
    padding: 40px 0;
}

.enterprise-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0091d7;
}

.enterprise-page .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.enterprise-page .page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.enterprise-page .filter-section {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
}

.enterprise-page .filter-row {
    margin-bottom: 20px;
        display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.enterprise-page .filter-row:last-child {
    margin-bottom: 0;
}

.enterprise-page .filter-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
    width: 60px;
}

.enterprise-page .filter-options {
    display: flex;
    flex-wrap: wrap;
}

.enterprise-page .filter-option {
    padding: 3px 15px;
    margin-right: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 20px;
}
.enterprise-page .filter-option b{
    font-weight: normal;
}
.enterprise-page .filter-option:hover,
.enterprise-page .filter-option.active {
    background: #e94707;
    border-radius: 20px;
}
.enterprise-page .filter-option:hover a,
.enterprise-page .filter-option.active a {
    color: #fff;
}

.enterprise-page .enterprise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.enterprise-page .pagination,
.enterprise-page .pagination ul,
.enterprise-page .pagination ol {
    list-style: none;
    padding: 0;
}

.enterprise-page .pagination li {
    list-style: none;
    display: inline-block;
}

.enterprise-page .pagination {
    text-align: center;
	margin-top:20px;
}

.enterprise-page .pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px;
    font-size: 14px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.enterprise-page .pagination a:hover,
.enterprise-page .pagination a.active {
    background: #0091d7;
    color: #fff;
    border-color: #0091d7;
}

.enterprise-page .enterprise-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.enterprise-page .enterprise-item-link:hover {
    text-decoration: none;
}

.enterprise-page .enterprise-item-link:hover .enterprise-item {
    transform: translateY(-5px);
}

.enterprise-page .enterprise-item {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    display: flex;
    transition: transform 0.3s;
    border: 1px solid #eeeeee;
}

.enterprise-page .enterprise-item:hover {
    transform: translateY(-5px);
}

.enterprise-page .enterprise-item .enterprise-image {
    width: 180px;
    height: 120px;
    margin-right: 20px;
    flex-shrink: 0;
}

.enterprise-page .enterprise-item .enterprise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.enterprise-page .enterprise-item .enterprise-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.enterprise-page .enterprise-item .enterprise-info h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    margin-top:24px;
}

.enterprise-page .enterprise-item .enterprise-info h3:hover {
    color: #0091d7;
}

.enterprise-page .enterprise-item .enterprise-info .enterprise-tags {
    display: flex;
    flex-wrap: wrap;
}

.enterprise-page .enterprise-item .enterprise-info .enterprise-tags span {
    padding: 4px 12px;
    background: #ddd;
    color: #000;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 28px;
}

/* Enterprise Detail Page */
.enterprise-detail .main-content {
    padding: 40px 0;
}

.enterprise-detail .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0091d7;
}

.enterprise-detail .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.enterprise-detail .page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.enterprise-detail .breadcrumb {
    font-size: 13px;
    color: #999;
}

.enterprise-detail .breadcrumb a {
    color: #666;
}

.enterprise-detail .breadcrumb a:hover {
    color: #0091d7;
}

.enterprise-detail .enterprise-detail-container {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eeeeee;
}

.enterprise-detail .enterprise-main {
    flex: 1;
    min-width: 0;
}

.enterprise-detail .enterprise-center {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.enterprise-detail .enterprise-logo-center {
    margin-bottom: 20px;
}

.enterprise-detail .enterprise-logo-center img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.enterprise-detail .enterprise-center h1 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

.enterprise-detail .enterprise-center .enterprise-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    text-indent: 2em;
}

.enterprise-detail .enterprise-content {
    font-size: 15px;
    color: #333;
    line-height: 2;
}

.enterprise-detail .enterprise-content p {
    margin-bottom: 15px;
}

.enterprise-detail .enterprise-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

.enterprise-detail .enterprise-sidebar {
    width: 320px;
    flex-shrink: 0;
    border-left: 1px dashed #eeeeee;
    padding-left: 30px;
}

.enterprise-detail .sidebar-logo {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.enterprise-detail .sidebar-logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.enterprise-detail .sidebar-section {
    margin-bottom: 25px;
}

.enterprise-detail .sidebar-section h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
    display: block;
}

.enterprise-detail .info-item {
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.enterprise-detail .info-item:last-child {
    border-bottom: none;
}

.enterprise-detail .info-item .label {
    color: #333;
    margin-right: 5px;
}

.enterprise-detail .info-item .value {
    color: #333;
    font-weight: 500;
}

.enterprise-detail .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.enterprise-detail .tags span {
    padding: 4px 12px;
    background: #f0f5ff;
    color: #0091d7;
    font-size: 12px;
    display: inline-block;
}

.enterprise-detail .contact-form {
    margin-top: 0;
    padding-top: 20px;
    border-top: none;
}

.enterprise-detail .contact-form h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.enterprise-detail .contact-form .form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.enterprise-detail .contact-form .form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    width: 60px;
}

.enterprise-detail .contact-form .form-group input,
.enterprise-detail .contact-form .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
}

.enterprise-detail .contact-form .form-group input:focus,
.enterprise-detail .contact-form .form-group select:focus {
    outline: none;
    border-color: #0091d7;
}

.enterprise-detail .verify-row {
    display: flex;
    gap: 10px;
}

.enterprise-detail .verify-row input {
    flex: 1;
}

.enterprise-detail .verify-code {
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.enterprise-detail .contact-form .btn-submit {
    width: 100%;
    padding: 12px 40px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.enterprise-detail .contact-form .btn-submit:hover {
    background: #c62828;
}

/* Project List Page */
.project-page .main-content {
    padding: 40px 0;
}

.project-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0091d7;
}

.project-page .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.project-page .page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.project-page .breadcrumb {
    font-size: 13px;
    color: #999;
}

.project-page .breadcrumb a {
    color: #666;
}

.project-page .breadcrumb a:hover {
    color: #0091d7;
}

.project-page .filter-section {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
}

.project-page .filter-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.project-page .filter-row:last-child {
    margin-bottom: 0;
}

.project-page .filter-label {
    display: block;
    width: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-right: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 32px;
}

.project-page .filter-options {
    display: inline-block;
}

.project-page .filter-option {
    display: inline-block;
    padding: 4px 12px;
    margin: 4px 8px 4px 0;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
}

.project-page .filter-option:hover,
.project-page .filter-option.active {
    background: #e94707;
    border-radius: 20px;
}
.project-page .filter-option:hover a,
.project-page .filter-option.active a {
    color: #fff;
}

.project-page .project-list {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
}

.project-page .project-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
}

.project-page .project-item-link:last-child {
    margin-bottom: 0;
}

.project-page .project-item-link:hover {
    text-decoration: none;
}

.project-page .project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #f5f5f5;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.project-page .project-item:last-child {
    margin-bottom: 0;
}

.project-page .project-item:hover {
    background: #e8f4fc;
    border-color: #0091d7;
    box-shadow: 0 2px 10px rgba(0, 145, 215, 0.15);
    transform: translateY(-2px);
}

.project-page .project-item:hover .project-name {
    color: #0091d7;
}

.project-page .project-name {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.project-page .project-name:hover {
    color: #0091d7;
}

.project-page .project-status {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

.project-page .project-status.status-building {
    background: #e94707;
    color: #fff;
}

.project-page .project-status.status-invest {
    background: #e3f2fd;
    color: #1565c0;
}

.project-page .project-status.status-planning {
    background: #f3e5f5;
    color: #7b1fa2;
}

.project-page .project-status.status-done {
    background: #e8f5e9;
    color: #2e7d32;
}

.project-page .pagination,
.project-page .pagination ul,
.project-page .pagination ol,
.expert-page .pagination,
.expert-page .pagination ul,
.expert-page .pagination ol,
.resource-page .pagination,
.resource-page .pagination ul,
.resource-page .pagination ol {
    list-style: none;
    padding: 0;
}

.project-page .pagination li,
.expert-page .pagination li,
.resource-page .pagination li {
    list-style: none;
    display: inline-block;
}

.project-page .pagination {
    text-align: center;
}

.project-page .pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px;
    font-size: 14px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.project-page .pagination a:hover,
.project-page .pagination a.active {
    background: #0091d7;
    color: #fff;
    border-color: #0091d7;
}

/* Expert List Page */
.expert-page .main-content {
    padding: 40px 0;
}

.expert-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0091d7;
}

.expert-page .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.expert-page .page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.expert-page .filter-section {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
}

.expert-page .filter-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.expert-page .filter-row:last-child {
    margin-bottom: 0;
}

.expert-page .filter-label {
    display: block;
    width: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 32px;
}

.expert-page .filter-options {
    display: inline-block;
}

.expert-page .filter-option {
    display: inline-block;
    padding: 4px 12px;
    margin: 4px 8px 4px 0;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
}

.expert-page .filter-option:hover,
.expert-page .filter-option.active {
    background: #e94707;
    border-radius: 20px;
}
.expert-page .filter-option:hover a,
.expert-page .filter-option.active a {
    color: #fff;
}

.expert-page .expert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.expert-page .expert-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.expert-page .expert-item-link:hover {
    text-decoration: none;
}

.expert-page .expert-item {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
}

.expert-page .expert-item:hover {
    transform: translateY(-2px);
}

.expert-page .expert-info {
    display: flex;
    gap: 20px;
}

.expert-page .expert-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.expert-page .expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-page .expert-detail {
    flex: 1;
    min-width: 0;
}

.expert-page .expert-detail h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.expert-page .expert-detail h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.expert-page .expert-detail h3 a:hover {
    color: #0091d7;
}

.expert-page .expert-title {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    margin-left: 8px;
}

.expert-page .expert-company {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.expert-page .expert-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert-page .expert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.expert-page .expert-tags span {
    padding: 3px 10px;
    background: #ddd;
    color: #333;
    font-size: 12px;
}

.expert-page .pagination {
    text-align: center;
}

.expert-page .pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px;
    font-size: 14px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.expert-page .pagination a:hover,
.expert-page .pagination a.active {
    background: #0091d7;
    color: #fff;
    border-color: #0091d7;
}

/* Expert Detail Page */
.expert-detail .main-content {
    padding: 40px 0;
}

.expert-detail .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0091d7;
}

.expert-detail .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.expert-detail .page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.expert-detail .breadcrumb {
    font-size: 13px;
    color: #999;
}

.expert-detail .breadcrumb a {
    color: #666;
}

.expert-detail .breadcrumb a:hover {
    color: #0091d7;
}

.expert-detail .expert-detail-container {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.expert-detail .expert-main {
    flex: 1;
    min-width: 0;
}

.expert-detail .expert-center {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.expert-detail .expert-center h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.expert-detail .expert-photo {
    max-width: 500px;
    margin: 0 auto;
}

.expert-detail .expert-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.expert-detail .expert-content {
    font-size: 15px;
    color: #333;
    line-height: 2;
}

.expert-detail .expert-content p {
    margin-bottom: 15px;
   
}

.expert-detail .expert-sidebar {
    width: 360px;
    flex-shrink: 0;
    border-left: 1px dashed #ddd;
    padding-left: 30px;
}

.expert-detail .sidebar-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.expert-detail .sidebar-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-detail .sidebar-info {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.expert-detail .sidebar-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.expert-detail .sidebar-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.expert-detail .sidebar-desc {
    font-size: 13px;
    color: #999;
}

.expert-detail .sidebar-section {
    margin-bottom: 25px;
}

.expert-detail .sidebar-section h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.expert-detail .info-row {
    display: flex;
    padding: 8px 0;
    font-size: 13px;
}

.expert-detail .info-label {
    color: #999;
    flex-shrink: 0;
}

.expert-detail .info-value {
    color: #333;
    font-weight: 500;
}

.expert-detail .sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expert-detail .sidebar-tags span {
    display: inline-block;
}

.expert-detail .sidebar-tags a {
    display: block;
    padding: 4px 12px;
    background: #ddd;
    color: #666;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.expert-detail .sidebar-tags a:hover {
    color: #1a6bc7;
    text-decoration: none;
}

.expert-detail .contact-form {
    margin-top: 0;
    padding-top: 20px;
  
}

.expert-detail .contact-form h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.expert-detail .contact-form .form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.expert-detail .contact-form .form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    width: 60px;
}

.expert-detail .contact-form .form-group input,
.expert-detail .contact-form .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
}

.expert-detail .contact-form .form-group input:focus,
.expert-detail .contact-form .form-group select:focus {
    outline: none;
    border-color: #0091d7;
}

.expert-detail .verify-row {
    display: flex;
    gap: 10px;
}

.expert-detail .verify-row input {
    flex: 1;
}

.expert-detail .verify-code {
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.expert-detail .contact-form .btn-submit {
    width: 100%;
    padding: 12px 40px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.expert-detail .contact-form .btn-submit:hover {
    background: #c62828;
}

/* Resource List Page */
.resource-page .main-content {
    padding: 40px 0;
}

.resource-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0091d7;
}

.resource-page .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.resource-page .page-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}


.resource-page .filter-section {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
}

.resource-page .filter-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: flex-start;
}

.resource-page .filter-row:last-child {
    margin-bottom: 0;
}

.resource-page .filter-label {
    display: block;
    width: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 32px;
}

.resource-page .filter-options {
    display: inline-block;
}

.resource-page .filter-option {
    display: inline-block;
    padding: 4px 12px;
    margin: 4px 8px 4px 0;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
}

.resource-page .filter-option:hover,
.resource-page .filter-option.active {
    background: #e94707;
    border-radius: 20px;
}
.resource-page .filter-option:hover a,
.resource-page .filter-option.active a {
    color: #fff;
}

.resource-page .resource-list {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
}

.resource-page .resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fafafa;
    transition: background 0.3s;
    margin-bottom: 10px;
}

.resource-page .resource-item:last-child {
    border-bottom: none;
}

.resource-page .resource-item:hover {
    background: #f9f9f9;
}

.resource-page .resource-title {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    flex: 1;
}

.resource-page .resource-title:hover {
    color: #0091d7;
}

.resource-page .resource-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.resource-page .file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-right: 100px;
}

.resource-page .file-icon img{
  width: 100%;
}

.resource-page .resource-date {
    font-size: 13px;
    color: #999;
}

.resource-page .pagination {
    text-align: center;
}

.resource-page .pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px;
    font-size: 14px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.resource-page .pagination a:hover,
.resource-page .pagination a.active {
    background: #0091d7;
    color: #fff;
    border-color: #0091d7;
}

/* 笔记本屏幕被放大125%时专属优化 */
@media (-webkit-device-pixel-ratio: 1.25) {
    .logo img{
        height: 80px;
        margin-right: 0;
    }
    .banner-title{
        font-size: 44px !important;
    }
    .stats{
        width:1200px;
    }
    .container {
        width: 1200px;
    }
    .ads a img{
        width:100%;
    }
    .platform-item .platform-icon{
        height: 160px;
    }
    .member-showcase{
        width: 900px;
        margin-right:20px;
    }
    .member-item .member-image{
        height:144px;
    }
    .hyright{
        width: 256px;
    }
    .hyright img{
        width:100%;
    }
    .footer-center{
        margin-right: 100px;
    }
}

/* 放大150%时 */
@media (-webkit-device-pixel-ratio: 1.5) {
    .logo img{
        height: 67px;
        margin-right: 0;
    }
    .banner-title{
        font-size: 37px !important;
    }
    .stats{
        width:1000px;
    }
    .container {
        width: 1000px;
    }
    .ads a img{
        width:100%;
    }
    .platform-item .platform-icon{
        height: 133px;
    }
    .member-showcase{
        width: 750px;
        margin-right:16px;
    }
    .member-item .member-image{
        height:120px;
    }
    .hyright{
        width: 213px;
    }
    .hyright img{
        width:100%;
    }
    .footer-center{
        margin-right: 80px;
    }
}

/* Responsive */
@media (max-width: 1501px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .header-info span {
        margin-right: 16px;
        font-size: 11px;
    }
    
    .search-box input {
        width: 180px;
    }
    
    .main-content .container {
        flex-direction: column;
    }
    
    .main-left,
    .main-right {
        width: 100%;
    }
    
    .main-right {
        margin-top: 30px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .platform-item {
        padding: 15px 10px 12px;
        padding-bottom: 12px;
    }

    .platform-item .platform-icon {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        margin: 0 auto 10px;
    }

    .platform-item .platform-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute;
        top: 0;
        left: 0;
        transform: none !important;
        border-radius: 6px;
    }

    .platform-item .platform-icon .icon-hover {
        width: 50px !important;
        height: 50px !important;
        object-fit: contain !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 0;
    }

    .platform-item:hover .platform-icon .icon-hover {
        width: 50px !important;
        height: 50px !important;
        object-fit: contain !important;
    }

    .platform-item h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .platform-item p {
        font-size: 12px;
        width: 100%;
        margin-left: 0;
        line-height: 1.45;
    }

    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-item {
        padding: 15px;
    }

    .activity-item h4 {
        font-size: 14px;
    }

    .footer .container {
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .enterprise-page .enterprise-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-detail .enterprise-detail-container {
        flex-direction: column;
    }
    
    .enterprise-detail .enterprise-sidebar {
        width: 100%;
    }

    /* 移动端导航适配 */
    .header {
        z-index: 999999;
    }

    .header-info {
        display: none;
    }

    .header-main {
        height: auto;
        background: none;
    }

    .header-main .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 10px 15px;
    }

    .logo {
        display: flex;
        flex-direction: row;
        margin-top: 0;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        height: 50px;
        margin-right: 10px;
    }

    .logo-text {
        font-size: 14px;
        margin-top: 0;
        padding-left: 0;
    }

    .header-tools {
        display: none;
    }

    .mobile-bar {
        display: block;
        background: #fff;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .mobile-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
    }

    .mobile-tools {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-tools img {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50%;
        object-fit: cover;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: #333;
        border-radius: 2px;
    }

    .menu-toggle:hover span {
        background: #0091d7;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 9999999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: block;
    }

    .header-nav.mobile-open {
        left: 0;
    }

    .nav-close-wrap {
        display: flex;
        justify-content: flex-end;
        padding: 15px 15px 0;
    }

    .nav-close {
        width: 32px;
        height: 32px;
        background: #f5f5f5;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        color: #666;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        transition: background 0.3s, color 0.3s;
    }

    .nav-close:hover {
        background: #0091d7;
        color: #fff;
    }

    .header-nav .container {
        width: 100%;
        padding: 0;
    }

    .nav {
        flex-direction: column;
        min-width: auto;
        flex-wrap: nowrap;
    }

    .nav > li {
        flex: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .nav > li > a {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
    }

    .nav > li > a:hover {
        background: #f5f5f5;
        color: #0091d7;
    }

    .nav > li.active > a {
        background: #fff;
        color: #0091d7;
        font-weight: bold;
    }

    .nav > li .arrow {
        display: inline-block;
        font-size: 10px;
        color: #999;
        transition: transform 0.3s;
    }

    .nav > li:hover .subnav,
    .nav > li .arrow.open + .subnav {
        display: block;
    }

    .subnav {
        position: static;
        display: none;
        background: #f8f8f8;
        box-shadow: none;
        padding: 0;
        border-top: none;
        z-index: 1;
    }

    .subnav li {
        border-bottom: none;
        text-align: left;
    }

    .subnav li a {
        padding: 12px 35px;
        font-size: 14px;
        color: #666;
        background: none;
    }

    .subnav li a:hover {
        color: #0091d7;
        background: #eef7fb;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9999998;
    }

    .mobile-overlay.show {
        display: block;
    }

    .header {
        z-index: 999999;
    }

    /* 首页模块适配 */
    .banner .swiper {
        height: 250px !important;
    }

    .banner .swiper-pagination-bullet {
        background: rgba(0, 0, 0, 0.3);
    }

    .banner .swiper-pagination-bullet-active {
        background: #0091d7;
    }

    .banner-title {
        font-size: 36px !important;
        transform: translate(-50%, calc(-50% - 50px)) !important;
        white-space: normal !important;
        padding: 0 20px;
        max-width: 80%;
        box-sizing: border-box;
    }

    .stats {
        padding: 20px 0;
        width: 100%;
    }

    .stats .container {
        flex-wrap: wrap;
    }

    .stat-item {
        width: 50%;
        margin-bottom: 0;
    }

    .stat-item .number {
        font-size: 28px;
    }

    .stat-item .label {
        font-size: 12px;
    }

    .tzgg-top {
        background: #e02424;
        padding-bottom: 0;
    }

    .tzgg-tag {
        margin-right: 0;
        padding: 10px;
        font-size: 16px;
    }

    .tzgg-list {
        background: #fff;
        height: 70px;
    }

    .tzgg-list ul li {
        padding: 6px 0;
        height: 70px;
    }

    .tzgg-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .tzgg-left,
    .tzgg-right {
        width: 100%;
    }

    .tzgg-swiper {
        height: 400px;
    }
    .tzgg-slide-text{
        font-size: 12px;
    }

    .tzgg-tabs {
        gap: 0;
    }

    .tzgg-tab {
        padding: 8px 10px;
        font-size: 12px;
    }

    .tzgg-tab span {
        font-size: 12px;
    }

    .tzgg-tab span img {
        width: 18px;
        height: 18px;
    }

    .tzgg-content {
        height: auto;
        max-height: 300px;
    }

    .tzgg-panel ul li {
        padding: 10px 0;
        font-size: 14px;
    }

    .tzgg-panel ul li a {
        font-size: 14px;
    }

    .ads {
        flex-wrap: wrap;
        gap: 10px;
        display: flex;
    }

    .ads a {
        flex: 1 1 calc(33.333% - 10px);
        height: auto;
        margin-bottom: 0;
    }

    .ads a img {
        width: 100%;
    }

    .platforms,
    .activities,
    .hot-activities,
    .member-showcase {
        margin-top: 20px;
    }

    .section-title h3 {
        font-size: 16px;
    }

    .section-title h3 span {
        display: none;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .platform-item {
        padding: 12px 8px;
    }

    .platform-item .platform-icon {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 11;
        margin: 0 auto 8px;
    }

    .platform-item .platform-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        position: absolute;
        top: 0;
        left: 0;
        transform: none !important;
    }

    .platform-item .platform-icon .icon-hover {
        width: 44px !important;
        height: 44px !important;
        object-fit: contain !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .platform-item h4 {
        font-size: 16px;
    }

    .platform-item p {
        font-size: 14px;
        line-height: 1.4;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .activity-item {
        padding: 15px;
    }

    .activity-item h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .activity-item .activity-info {
        font-size: 12px;
    }

    .news-category .category-tabs li a {
        padding: 12px 0;
        font-size: 14px;
    }

    .hot-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hot-item {
        padding: 15px;
    }

    .hot-item .hot-image {
        width: 120px;
        height: 80px;
    }

    .hot-item .hot-content h4 {
        font-size: 13px;
    }

    .hot-item .hot-content .hot-meta {
        font-size: 11px;
    }

    .hyright {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 15px;
    }

    .hyright a {
        flex: 1;
        display: block;
    }

    .hyright img {
        width: 100%;
        display: block;
    }

    .member-showcase {
        width: 100%;
    }

    .huiyuan {
        width: 100%;
        display: block;
    }

    .member-slider {
        padding:25px 0;
    }

    .member-item {
        padding: 12px 10px 14px;
    }

    .member-item .member-image {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .member-item .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .member-item h4 {
        font-size: 14px;
    }

    .member-item p {
        font-size: 12px;
        line-height: 1.4;
    }

    .member-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
        display: block;
    }

    .member-arrow.member-prev {
        left: 5px;
    }

    .member-arrow.member-next {
        right: 5px;
    }

    /* 列表页适配 */
    .news-page-header {
        gap: 15px;
    }

    .news-page-right {
        align-items: flex-start;
    }

    .news-page-title {
        font-size: 18px;
    }

    .search-box {
        justify-content: space-between;
    }

    .search-box input {
        width: 100%;
        background: #fff;
    }

    .search-box button {
        min-width: 100px;
    }

    .news-featured {
        flex-direction: column;
    }

    .news-featured .featured-image {
        width: 100%;
        min-height: 200px;
    }

    .news-featured .featured-content {
        padding: 25px;
    }

    .featured-date .day {
        font-size: 36px;
    }

    .news-list .news-item {
        flex-direction: column;
        padding: 20px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item .news-image {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .news-date-block {
        width: auto;
        display: none;
        align-items: baseline;
        gap: 8px;
        margin-right: 0;
        margin-bottom: 15px;
        padding: 0;
    }

    .news-info .time {
        display: block;
    }

    .news-date-block .day {
        font-size: 24px;
        margin-bottom: 0;
    }

    /* 企业页适配 */
    .enterprise-page .enterprise-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-page .enterprise-item {
        flex-direction: column;
        padding: 10px;
    }

    .enterprise-page .enterprise-item .enterprise-info .enterprise-tags span {
        margin-bottom: 0;
    }

    .enterprise-page .enterprise-item .enterprise-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .enterprise-page .page-header,
    .enterprise-detail .page-header {
        flex-direction: column;
        gap: 15px;
    }

    .enterprise-page .page-right,
    .enterprise-detail .page-right {
        align-items: flex-start;
    }

    .enterprise-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .enterprise-page .filter-row {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .enterprise-page .filter-label {
        font-size: 13px;
        width: 100%;
        background: #0191d8;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .enterprise-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .enterprise-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .enterprise-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .enterprise-page .filter-row.open .filter-options {
        display: flex;
    }

    .enterprise-page .filter-option {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .enterprise-page .filter-option:hover,
    .enterprise-page .filter-option.active {
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .enterprise-page .filter-option:hover a,
    .enterprise-page .filter-option.active a {
        color: #fff;
    }

    /* 专家页适配 */
    .expert-page .expert-grid {
        grid-template-columns: 1fr;
    }

    .expert-page .expert-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .expert-page .expert-tags {
        justify-content: center;
    }

    .expert-page .page-header,
    .expert-detail .page-header {
        flex-direction: column;
        gap: 15px;
    }

    .expert-page .page-right,
    .expert-detail .page-right {
        align-items: flex-start;
    }

    .expert-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .expert-page .filter-row {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .expert-page .filter-label {
        font-size: 13px;
        width: 100%;
        background: #0191d8;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .expert-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .expert-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .expert-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .expert-page .filter-row.open .filter-options {
        display: flex;
    }

    .expert-page .filter-option {
        flex: 0 0 auto;
        margin: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .expert-page .filter-option:hover,
    .expert-page .filter-option.active {
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .expert-page .filter-option:hover a,
    .expert-page .filter-option.active a {
        color: #fff;
    }

    /* 项目页适配 */
    .project-page .page-header {
        flex-direction: column;
        gap: 15px;
    }

    .project-page .page-right {
        align-items: flex-start;
    }

    .project-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .project-page .filter-row {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .project-page .filter-label {
        font-size: 13px;
        width: 100%;
        background: #0191d8;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .project-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .project-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .project-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .project-page .filter-row.open .filter-options {
        display: flex;
    }

    .project-page .filter-option {
        flex: 0 0 auto;
        margin: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .project-page .filter-option:hover,
    .project-page .filter-option.active {
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .project-page .filter-option:hover a,
    .project-page .filter-option.active a {
        color: #fff;
    }

    .project-page .project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 15px;
    }

    .project-page .project-status {
        align-self: flex-start;
    }

    /* 资源页适配 */
    .resource-page .page-header {
        flex-direction: column;
        gap: 15px;
    }

    .resource-page .page-right {
        align-items: flex-start;
    }

    .resource-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .resource-page .filter-row {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .resource-page .filter-label {
        font-size: 13px;
        width: 100%;
        background: #0191d8;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .resource-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .resource-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .resource-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .resource-page .filter-row.open .filter-options {
        display: flex;
    }

    .resource-page .filter-option {
        flex: 0 0 auto;
        margin: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .resource-page .filter-option:hover,
    .resource-page .filter-option.active {
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .resource-page .filter-option:hover a,
    .resource-page .filter-option.active a {
        color: #fff;
    }

    .resource-page .resource-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .resource-page .resource-meta {
        width: 100%;
        justify-content: space-between;
    }

    .resource-page .file-icon {
        margin-right: 0;
    }

    /* 详情页适配 */
    .news-detail .news-detail-container {
        padding: 20px;
    }

    .news-detail .news-title {
        font-size: 22px;
    }

    .news-detail .news-body {
        font-size: 15px;
        line-height: 1.8;
    }

    .news-detail .news-nav {
        flex-direction: column;
        gap: 10px;
    }

    .news-detail .related-news ul li a {
        font-size: 14px;
    }

    .expert-detail .expert-detail-container,
    .enterprise-detail .enterprise-detail-container {
        flex-direction: column;
        padding: 20px;
    }

    .expert-detail .expert-sidebar,
    .enterprise-detail .enterprise-sidebar {
        width: 100%;
        padding-left: 0;
        border-left: none;
    }

    /* 分页适配 */
    .news-page .pagination,
    .enterprise-page .pagination,
    .expert-page .pagination,
    .project-page .pagination,
    .resource-page .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .news-page .pagination a,
    .enterprise-page .pagination a,
    .expert-page .pagination a,
    .project-page .pagination a,
    .resource-page .pagination a {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0;
    }

    /* Footer 适配 - 完全重置默认样式 */
    .footer {
        margin-top: 20px;
    }

    .footer-main {
        padding: 30px 0;
    }

    .footer-main .container {
        flex-direction: column;
        gap: 0;
    }

    .footer-left {
        flex: none;
        width: 100%;
        text-align: left;
        margin-top: 0;
    }

    .footer-left .footer-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-left p {
        font-size: 13px;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 5px;
    }

    .footer-center {
        flex: none;
        width: 100%;
        margin-right: 0;
        margin-top: 20px;
        text-align: left;
    }

    .footer-center p {
        font-size: 13px;
        line-height: 1.8;
        text-align: left;
    }

    .footer-right {
        flex: none;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        display: none;
    }

    .footer-right .qr-code {
        margin: 0 auto 10px;
    }

    .footer-links .container {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-links .links-label {
        font-size: 14px;
        margin-right: 10px;
    }

    .footer-links a {
        font-size: 13px;
        margin-right: 15px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 15px;
    }

    .back-to-top .top-text {
        font-size: 10px;
    }
}

/* iPad / 平板专属优化（769-1501px）：在移动端基础上让网格多列、字号略大、间距更合理 */
@media (min-width: 769px) and (max-width: 1501px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 15px;
    }

    .header-main .container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 8px 12px;
    }

    .mobile-bar .container {
        padding: 6px 12px;
    }

    .logo {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        justify-content: center;
        align-items: flex-start;
    }

    .logo img {
        height: 50px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .logo-text {
        font-size: 14px;
        margin-top: 0;
        padding-left: 0;
    }

    .banner .swiper {
        height: 300px !important;
    }

    .banner .banner-text h2 {
        font-size: 44px;
    }

    .banner .banner-text p {
        font-size: 20px;
    }

    .stats .container {
        flex-wrap: nowrap;
    }

    .stat-item {
        width: 25%;
    }

    .stat-item::after {
        left: 0;
        top: 15%;
        height: 40px;
    }

    .stat-item .number {
        font-size: 32px;
    }

    .stat-item .label {
        font-size: 13px;
    }

    .platform-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .platform-item {
        padding: 15px 10px;
    }

    .platform-item h4 {
        font-size: 15px;
    }

    .platform-item p {
        font-size: 12px;
    }

    .activity-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .activity-item h4 {
        font-size: 14px;
    }

    .hot-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .news-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .news-item .news-image {
        width: 200px;
        height: 130px;
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .news-featured {
        flex-direction: row;
    }

    .news-featured .featured-image {
        width: 50%;
        min-height: 240px;
    }

    .news-featured .featured-content {
        padding: 30px;
        flex: 1;
    }

    .featured-date .day {
        font-size: 44px;
    }

    .news-list .news-item {
        flex-direction: row;
        padding: 20px;
    }

    .news-date-block {
        display: flex;
        width: auto;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .news-info .time {
        display: none;
    }

    .news-date-block .day {
        font-size: 32px;
    }

    .enterprise-page .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .enterprise-page .enterprise-item {
        flex-direction: row;
        padding: 20px;
    }

    .enterprise-page .enterprise-item .enterprise-image {
        width: 160px;
        height: 110px;
        margin-right: 15px;
        margin-bottom: 0;
    }

    .expert-page .expert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .expert-page .expert-info {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .expert-page .expert-avatar {
        width: 110px;
        height: 110px;
    }

    .expert-page .expert-tags {
        justify-content: flex-start;
    }

    .project-page .project-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 16px 20px;
    }

    .project-page .project-status {
        align-self: center;
    }

    .project-page .filter-section,
    .expert-page .filter-section,
    .enterprise-page .filter-section,
    .resource-page .filter-section {
        display: block;
        position: static;
    }

    .project-page .filter-row,
    .expert-page .filter-row,
    .enterprise-page .filter-row,
    .resource-page .filter-row {
        flex: none;
        width: 100%;
        margin-bottom: 12px;
        border-radius: 6px;
        overflow: hidden;
    }

    .project-page .filter-label,
    .expert-page .filter-label,
    .enterprise-page .filter-label,
    .resource-page .filter-label {
        width: auto;
        background: #f5f5f5;
        color: #333;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: bold;
        text-align: left;
        border-radius: 6px;
        position: static;
    }

    .project-page .filter-label::after,
    .expert-page .filter-label::after,
    .enterprise-page .filter-label::after,
    .resource-page .filter-label::after {
        display: none;
    }

    .project-page .filter-options,
    .expert-page .filter-options,
    .enterprise-page .filter-options,
    .resource-page .filter-options {
        display: flex;
        position: static;
        padding: 10px 15px;
        background: #fff;
        border: 1px solid #eee;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: wrap;
        gap: 8px;
        box-shadow: none;
        overflow: visible;
    }

    .project-page .filter-option,
    .expert-page .filter-option,
    .enterprise-page .filter-option,
    .resource-page .filter-option {
        flex: 0 0 auto;
        padding: 6px 14px;
        font-size: 13px;
        border: 1px solid #ddd;
        border-radius: 20px;
        background: #fff;
    }

    .resource-page .resource-item {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .resource-page .resource-meta {
        width: auto;
        justify-content: flex-start;
    }

    .news-detail .news-title {
        font-size: 26px;
    }

    .news-detail .news-body {
        font-size: 16px;
        line-height: 2;
    }

    .expert-detail .expert-detail-container,
    .enterprise-detail .enterprise-detail-container {
        padding: 30px;
    }

    /* Footer - 移动端纵向布局 */
    .footer-main {
        padding: 20px 0;
    }

    .footer-main .container {
        flex-direction: column;
        gap: 0;
    }

    .footer-left {
        flex: none;
        width: 100%;
        text-align: left;
        margin-top: 0;
    }

    .footer-left .footer-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-left p {
        font-size: 13px;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 4px;
    }

    .footer-center {
        flex: none;
        width: 100%;
        margin-right: 0;
        margin-top: 15px;
        text-align: left;
    }

    .footer-center p {
        font-size: 13px;
        line-height: 1.8;
        text-align: left;
    }

    .footer-right {
        flex: none;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        display: none;
    }

    .footer-links .container {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-links .links-label {
        font-size: 14px;
        margin-right: 10px;
    }

    .footer-links a {
        font-size: 13px;
        margin-right: 15px;
    }

    .member-showcase {
        width: 100%;
    }

    .huiyuan {
        width: 100%;
        display: block;
    }

    .member-item {
        padding: 12px 10px 14px;
    }

    .member-item .member-image {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .member-item .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .member-item h4 {
        font-size: 14px;
    }

    .member-item p {
        font-size: 12px;
        line-height: 1.4;
    }

    .member-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
        display: block;
    }

    .member-arrow.member-prev {
        left: 5px;
    }

    .member-arrow.member-next {
        right: 5px;
    }

    .hyright {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 15px;
    }

    .hyright a {
        flex: 1;
        display: block;
    }

    .hyright img {
        width: 100%;
        display: block;
    }

    .banner-title {
        font-size: 28px !important;
        transform: translate(-50%, calc(-50% - 50px)) !important;
        white-space: normal !important;
        padding: 0 20px;
        max-width: 80%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .header {
        z-index: 999999;
    }

    .header-info {
        display: none;
    }
    
    .header-main .container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 8px 12px;
    }

    .header-main {
        height: auto;
    }

    .logo {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        justify-content: center;
        align-items: flex-start;
    }

    .logo img {
        height: 50px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .logo-text {
        font-size: 14px;
        margin-top: 0;
        padding-left: 0;
    }

    .header-tools {
        display: none;
    }

    /* Mobile bar: hamburger + login/register */
    .mobile-bar {
        display: block;
        background: #fff;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .mobile-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
    }

    .mobile-tools {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-tools img {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50%;
        object-fit: cover;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: #333;
        border-radius: 2px;
    }

    .menu-toggle:hover span {
        background: #0091d7;
    }

    /* Nav: slide-in from left */
    .header-nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 9999999;
        overflow-y: auto;
        transition: left 0.3s ease;
       /* box-shadow: 2px 0 12px rgba(0,0,0,0.15);*/
        display: block;
    }

    .header-nav.mobile-open {
        left: 0;
    }

    .nav-close-wrap {
        display: flex;
        justify-content: flex-end;
        padding: 15px 15px 0;
    }

    .nav-close {
        width: 32px;
        height: 32px;
        background: #f5f5f5;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        color: #666;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        transition: background 0.3s, color 0.3s;
    }

    .nav-close:hover {
        background: #0091d7;
        color: #fff;
    }

    .header-nav .container {
        width: 100%;
        padding: 0;
    }

    .nav {
        flex-direction: column;
        min-width: auto;
        flex-wrap: nowrap;
    }

    .nav > li {
        flex: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .nav > li > a {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
    }

    .nav > li > a:hover {
        background: #f5f5f5;
        color: #0091d7;
    }

    .nav > li.active > a {
        background: #fff;
        color: #0091d7;
        font-weight: bold;
    }

    .nav > li .arrow {
        display: inline-block;
        font-size: 10px;
        color: #999;
        transition: transform 0.3s;
    }

    .nav > li:hover .subnav,
    .nav > li .arrow.open + .subnav {
        display: block;
    }

    .subnav {
        position: static;
        display: none;
        background: #f8f8f8;
        box-shadow: none;
        padding: 0;
        border-top: none;
        z-index: 1;
    }

    .subnav li {
        border-bottom: none;
        text-align: left;
    }

    .subnav li a {
        padding: 12px 35px;
        font-size: 14px;
        color: #666;
        background: none;
    }

    .subnav li a:hover {
        color: #0091d7;
        background: #eef7fb;
    }

    /* Overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9999998;
    }

    .mobile-overlay.show {
        display: block;
    }
    
    .search-box input {
        width: 100%;
        background: #fff;
    }

    .search-box button{
        min-width: 100px;
    }
    
    .project-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .project-page .filter-row{
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .project-page .filter-label{
        font-size: 13px;
        width: 100%;
        background: #0091d7;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .project-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .project-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .project-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .project-page .filter-row.open .filter-options {
        display: flex;
    }

    .project-page .filter-option{
        flex: 0 0 auto;
        margin: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .project-page .filter-option:hover,
    .project-page .filter-option.active{
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .project-page .filter-option:hover a,
    .project-page .filter-option.active a {
        color: #fff;
    }

    .banner .swiper {
        height: 250px !important;
    }

    .banner .swiper-pagination-bullet {
        background: rgba(0, 0, 0, 0.3);
    }

    .banner .swiper-pagination-bullet-active {
        background: #0091d7;
    }
    
    .banner .banner-text h2 {
        font-size:36px;
		font-family: "Times New Roman", Times, serif;
		text-transform: uppercase;
		 margin-bottom: 5px;
	margin-top:10px;
    }
    
    .stats .container {
        flex-wrap: nowrap;
    }

    .stat-item {
        width: 25%;
        margin-bottom: 0;
    }

    .stat-item::after {
        left: 0;
        top: 15%;
        height: 35px;
    }

    .stat-item .number {
        font-size: 26px;
    }

    .stat-item .label {
        font-size: 12px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item .news-image {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .platform-grid,
    .activity-grid,
    .hot-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-arrow {
        display: none;
    }
    
    .hot-item {
    }

    .hot-item .hot-content .hot-meta span{
        margin-bottom: 0;
    }

    .member-showcase{
        width: 100%;
    }

    .huiyuan{
        width: 100%;
        display: block;
    }

    .hot-item .hot-image {
            width: 209px;
            height: 148px;
            margin-right: 15px;
            flex-shrink: 0;
    }
    
    .news-page-header {
        gap: 15px;
    }
    
    .news-page-right {
        align-items: flex-start;
    }

    .news-page-title{
        font-size: 18px;
    }

    .search-box{
        justify-content: space-between;
    }
    
    .news-featured {
        flex-direction: column;
    }
    
    .news-featured .featured-image {
        width: 100%;
        min-height: 200px;
    }
    
    .news-featured .featured-content {
        padding: 25px;
    }
    
    .featured-date .day {
        font-size: 36px;
    }
    
    .news-list .news-item {
        flex-direction: column;
        padding: 20px;
    }
    
    .news-date-block {
        width: auto;
        display: none;
        align-items: baseline;
        gap: 8px;
        margin-right: 0;
        margin-bottom: 15px;
        padding: 0px;
    }

    .news-info .time{
        display: block;
    }
    
    .news-date-block .day {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .enterprise-page .enterprise-item {
        flex-direction: column;
        padding: 10px;
    }

    .enterprise-page .enterprise-item .enterprise-info .enterprise-tags span{
        margin-bottom: 0px;
    }
    
    .enterprise-page .enterprise-item .enterprise-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .news-detail .news-detail-container {
        padding: 20px;
    }
    
    .news-detail .news-title {
        font-size: 22px;
    }
    
    .news-detail .news-body {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .news-detail .news-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-detail .related-news ul li a {
        font-size: 14px;
    }
    
    .enterprise-page .page-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .enterprise-page .page-right {
        align-items: flex-start;
    }
    
   
    
    .enterprise-detail .page-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .enterprise-detail .page-right {
        align-items: flex-start;
    }
    
    .enterprise-detail .enterprise-detail-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .enterprise-detail .enterprise-sidebar {
        width: 100%;
        padding-left: 0;
        border-left: none;
    }
    
    .project-page .page-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-page .page-right {
        align-items: flex-start;
    }
    
    
    .project-page .project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 15px;
    }
    
    .project-page .project-status {
        align-self: flex-start;
    }
    
    .expert-page .page-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .expert-page .page-right {
        align-items: flex-start;
    }
    
    .expert-page .filter-label{
        width: 100%;
        background: #0091d7;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    }
    

    .expert-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .expert-page .filter-row{
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .expert-page .filter-label{
        font-size: 13px;
        width: 100%;
        background: #0191d8;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .expert-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .expert-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .expert-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .expert-page .filter-row.open .filter-options {
        display: flex;
    }

    .expert-page .filter-option{
        flex: 0 0 auto;
        margin: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .expert-page .filter-option:hover,
    .expert-page .filter-option.active{
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .expert-page .filter-option:hover a,
    .expert-page .filter-option.active a {
        color: #fff;
    }

    .expert-page .expert-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-page .expert-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .expert-page .expert-tags {
        justify-content: center;
    }
    
    .expert-detail .page-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .expert-detail .page-right {
        align-items: flex-start;
    }
    
    .expert-detail .expert-detail-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .expert-detail .expert-sidebar {
        width: 100%;
        padding-left: 0;
        border-left: none;
    }
    
    .resource-page .page-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .resource-page .page-right {
        align-items: flex-start;
    }
    
    .resource-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .resource-page .filter-row{
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .resource-page .filter-label{
        font-size: 13px;
        width: 100%;
        background: #0191d8;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .resource-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .resource-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .resource-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .resource-page .filter-row.open .filter-options {
        display: flex;
    }

    .resource-page .filter-option{
        flex: 0 0 auto;
        margin: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .resource-page .filter-option:hover,
    .resource-page .filter-option.active{
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .resource-page .filter-option:hover a,
    .resource-page .filter-option.active a {
        color: #fff;
    }
    
    .resource-page .resource-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .resource-page .resource-meta {
        width: 100%;
        justify-content: space-between;
    }

    .resource-page .file-icon {
        margin-right: 0;
    }
    
    .banner .swiper {
        height: 200px !important;
    }

    .banner .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #999;
        opacity: 1;
    }

    .banner .swiper-pagination-bullet-active {
        background: #fff;
    }

    .banner .swiper-button-prev,
    .banner .swiper-button-next {
        display: none;
    }

    .banner-title {
        font-size: 30px !important;
        transform: translate(-50%, calc(-50% - 40px)) !important;
        white-space: normal !important;
        padding: 0 15px;
        max-width: 90%;
        box-sizing: border-box;
    }

    .stats {
        padding: 20px 0;
        width: 100%;
    }
    
    .stat-item .number {
        font-size: 28px;
    }
    
    .stat-item .label {
        font-size: 12px;
    }

    .tzgg-top{
            background: #e02424;
            padding-bottom: 0px;
    }

    
    .tzgg-tag {
        margin-right: 0;
        padding: 10px;
        font-size: 16px;
    }

    .tzgg-list{
        background: #fff;
        height: 70px;
    }

    .tzgg-list ul li{
        padding: 6px 0;
        height: 70px;
    }

    
    .tzgg-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .tzgg-left,
    .tzgg-right {
        width: 100%;
    }
    
    .tzgg-swiper {
        height: 200px;
    }
    .tzgg-slide-text{
        font-size: 12px;
    }
    .tzgg-tabs {
        gap: 0;
    }
    
    .tzgg-tab {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .tzgg-tab span {
        font-size: 12px;
    }
    
    .tzgg-tab span img {
        width: 18px;
        height: 18px;
    }
    
    .tzgg-content {
        height: auto;
        max-height: 300px;
    }
    .tzgg-panel ul li{
        padding: 10px 0;
        font-size: 14px;
    }

    .tzgg-panel ul li a{
        font-size: 14px;
    }
    .ads {
        flex-wrap: wrap;
        gap: 10px;
        display: flex;
    }
    
    .ads a {
        flex: 1 1 calc(33.333% - 10px);
        height: auto;
        margin-bottom: 0;
    }
    
    .ads a img{
       width: 100%;
    }
    
    .platforms,
    .activities,
    .hot-activities,
    .member-showcase {
        margin-top: 20px;
    }
    
    .section-title h3 {
        font-size: 16px;
    }
    
    .section-title h3 span {
        display: none;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .platform-item {
        padding: 12px 8px;
    }
    
    .platform-item .platform-icon {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 11;
        margin: 0 auto 8px;
    }

    .platform-item .platform-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        position: absolute;
        top: 0;
        left: 0;
        transform: none !important;
    }

    .platform-item .platform-icon .icon-hover {
        width: 44px !important;
        height: 44px !important;
        object-fit: contain !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .platform-item h4 {
        font-size: 16px;
    }
    
    .platform-item p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .activity-item {
        padding: 15px;
    }
    
    .activity-item h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .activity-item .activity-info {
        font-size: 12px;
    }

    .news-category .category-tabs li a{
           padding: 12px 0;
    font-size: 14px;
    }

    .news-category{
        margin-top: 20px;
    }
    
    .hot-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hot-item {
        padding: 15px;
    }
    
    .hot-item .hot-image {
        width: 120px;
        height: 80px;
    }
    
    .hot-item .hot-content h4 {
        font-size: 13px;
    }
    
    .hot-item .hot-content .hot-meta {
        font-size: 11px;
    }

    .hyright{
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 15px;
    }

    .hyright a{
        flex: 1;
        display: block;
    }

    .hyright img{
        width: 100%;
        display: block;
    }
    .member-showcase {
        width: 100%;
    }

    .member-slider {
        padding:10px 10px;
    }

    .member-item {
        padding: 12px 10px 14px;
    }

    .member-item .member-image {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .member-item .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .member-item h4 {
        font-size: 14px;
    }

    .member-item p {
        font-size: 12px;
        line-height: 1.4;
    }

    .member-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
        display: block;
    }

    .member-arrow.member-prev {
        left: 5px;
    }

    .member-arrow.member-next {
        right: 5px;
    }

    .footer-main .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        text-align: center;
        
        margin-top: 10px;
    }
    
    .footer-right .qr-code {
        margin: 0 auto 10px;
    }

    .footer-right{
        display: none;
    }

    .enterprise-page .filter-section {
        display: flex;
        gap: 8px;
        position: relative;
    }

    .enterprise-page .filter-row{
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
        overflow: visible;
    }

    .enterprise-page .filter-label{
        font-size: 13px;
        width: 100%;
        background: #0191d8;
        color: #fff;
        padding: 8px 30px 8px 10px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

    .enterprise-page .filter-label::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #fff;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .enterprise-page .filter-row.open .filter-label::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .enterprise-page .filter-options {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 6px 6px;
        flex-wrap: nowrap;
        gap: 6px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .enterprise-page .filter-row.open .filter-options {
        display: flex;
    }

    .enterprise-page .filter-option{
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 0;
        padding: 5px 8px;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #f5f5f5;
        text-align: center;
        white-space: nowrap;
    }

    .enterprise-page .filter-option:hover,
    .enterprise-page .filter-option.active{
        background: #e94707;
        color: #fff;
        border-color: #e94707;
    }

    .enterprise-page .filter-option:hover a,
    .enterprise-page .filter-option.active a {
        color: #fff;
    }

    .news-page .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }

    .news-page .pagination a {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0;
    }

    .enterprise-page .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .enterprise-page .pagination a {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0;
    }

    .expert-page .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .expert-page .pagination a {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0;
    }

    .project-page .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .project-page .pagination a {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0;
    }

    .resource-page .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .resource-page .pagination a {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .banner-title {
        font-size: 22px !important;
        transform: translate(-50%, calc(-50% - 30px)) !important;
        padding: 0 10px;
        max-width: 95%;
    }

    .header-main .container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 6px 10px;
    }

    .logo {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        justify-content: center;
        align-items: flex-start;
    }

    .logo img {
        height: 40px;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .logo-text {
        font-size: 13px;
    }

    .mobile-bar .container {
        padding: 6px 15px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2.5px;
    }

    .mobile-tools img {
        width: 24px !important;
        height: 24px !important;
    }

    .nav-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .nav > li > a {
        font-size: 15px;
        padding: 14px 16px;
    }

    .subnav li a {
        padding: 10px 30px;
    }

    .banner .swiper {
        height: 160px;
    }
    
    .stats {
        padding: 0;
        margin-top: 0px;
    }
    
    .stats .container{
        padding: 0;
    }
    .stat-item {
        width: 25%;
        padding: 10px 0;
    }
    .stat-item::after{
        display: none;
    }
    
    .stat-item .number {
        font-size: 24px;
    }
    
    .stat-item .label {
        font-size: 11px;
    }
    
    .tzgg {
        padding: 15px 0;
    }

    .tzgg-list ul li {
        padding: 6px 0;
    }
    
    .tzgg-list ul li a {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .tzgg-date {
        font-size: 11px;
        margin-right: 8px;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .platform-item {
        padding: 12px 8px 10px;
    }

    .platform-item .platform-icon {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 11;
        margin: 0 auto 8px;
    }

    .platform-item .platform-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        position: absolute;
        top: 0;
        left: 0;
        transform: none !important;
    }

    .platform-item .platform-icon .icon-hover {
        width: 40px !important;
        height: 40px !important;
        object-fit: contain !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .platform-item h4 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .platform-item p {
        font-size: 11px;
        width: 100%;
        margin-left: 0;
    }

    .member-item {
        padding: 10px 8px 12px;
    }

    .member-item .member-image {
        width: 100%;
        height: 120px;
        margin-bottom: 8px;
        overflow: hidden;
    }

    .member-item .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .member-item h4 {
        font-size: 12px;
    }

    .member-arrow {
        display: none;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .ads a {
        flex: 1 1 100%;
    }

    .ads a img {
        width: 100%;
    }
    
    .section-title {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .section-title h3 {
                font-size: 15px;
        width: auto;
        padding-right: 30px;
    }
    
    .section-title .more {
        font-size: 12px;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 30px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top .top-icon {
        font-size: 14px;
    }
    
    .back-to-top .top-text {
        font-size: 10px;
    }
    
    .footer-links .container {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 12px;
        margin-right: 12px;
    }
    
    .footer-main {
        padding: 20px 0;
    }
    
    .footer-left p,
    .footer-center p {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }

    .news-page .pagination {
        gap: 4px;
    }

    .news-page .pagination a {
        padding: 5px 8px;
        font-size: 11px;
    }

    .enterprise-page .pagination a {
        padding: 5px 8px;
        font-size: 11px;
        margin: 0;
    }

    .expert-page .pagination a {
        padding: 5px 8px;
        font-size: 11px;
        margin: 0;
    }

    .project-page .pagination a {
        padding: 5px 8px;
        font-size: 11px;
        margin: 0;
    }

    .resource-page .pagination a {
        padding: 5px 8px;
        font-size: 11px;
        margin: 0;
    }
}