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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a2c3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* 配色变量 */
:root {
    --primary: #14b8a6;
    --primary-dark: #0f766e;
    --primary-light: #99f6e4;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --gray-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --border-light: #e2e8f0;
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========================================
   通用组件
======================================== */

/* 按钮 */
.btn-learn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 42px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.btn-learn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(20, 184, 166, 0.4);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 40px 0 80px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    font-weight: 500;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* 隐藏类 */
.hidden {
    display: none;
}

/* 面包屑 */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 8px;
}

/* 页面Banner */
.page-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(20, 184, 166, 0.25) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.banner-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 分类筛选标签（通用） */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-tab,
.filter-btn {
    padding: 8px 24px;
    border-radius: 40px;
    background: white;
    border: 1px solid var(--border-light);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.filter-tab:hover,
.filter-btn:hover,
.filter-tab.active,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* 章节标题 */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 56px;
    color: #0f172a;
}

.section-title span {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* ========================================
   导航栏
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(0, 197, 204, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo img {
    height: 44px;
    filter: brightness(0) invert(1);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 1rem;
    color: white;
    padding: 8px 0;
    transition: 0.2s;
    display: inline-block;
}

.nav-menu li>a:hover {
    color: white;
    background-color: #14b8a6;
    padding: 8px 16px;
    border-radius: 32px;
    margin: -8px -16px;
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: 48px;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    min-width: 260px;
    border-radius: 20px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
    border: 1px solid rgba(20, 184, 166, 0.2);
    padding: 12px 0;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu li a {
    color: #1e293b;
    padding: 10px 24px;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: #14b8a6;
}

/* 二级下拉 */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 85%;
    width: 40px;
    height: 100%;
    background: transparent;
    z-index: 101;
}

.sub-dropdown {
    position: absolute;
    top: -8px;
    left: 100%;
    background: white;
    min-width: 240px;
    border-radius: 16px;
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    padding: 10px 0;
    z-index: 200;
    margin-left: 4px;
}

.dropdown-submenu:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
}

/* 搜索区域 */
.nav-right {
    display: flex;
    align-items: center;
}

.search-icon {
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.search-icon:hover {
    background: #14b8a6;
    color: white;
}

/* 搜索浮层 */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.search-overlay.active {
    visibility: visible;
    opacity: 1;
}

.search-box {
    width: 60%;
    max-width: 700px;
    background: white;
    border-radius: 80px;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 28px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.2rem;
    padding: 18px 0;
}

.search-box button {
    background: #14b8a6;
    border: none;
    padding: 12px 32px;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-menu {
    display: none;
}

/* ========================================
   首页 Hero 轮播
======================================== */

.hero-swiper {
    width: 100%;
    height: 90vh;
    min-height: 600px;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.65) 0%, rgba(20, 184, 166, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    color: white;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.92;
}

/* 分页器样式 */
.swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.2s;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    background: #14b8a6;
    width: 48px;
    opacity: 1;
}

.news-pagination .swiper-pagination-bullet {
    background: #cbd5e1;
}

.news-pagination .swiper-pagination-bullet-active {
    background: #14b8a6;
    width: 32px;
}

/* ========================================
   首页产品展示区
======================================== */

.section {
    padding: 90px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.product-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    border: 1px solid #eef2ff;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: #14b8a640;
}

.product-img {
    aspect-ratio:1/1;
    background-color: #f1f5f9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* .product-card:nth-child(1) .product-img {
    background-image: url('../images/产品1.jpg');
}

.product-card:nth-child(2) .product-img {
    background-image: url('../images/产品2.jpg');
}

.product-card:nth-child(3) .product-img {
    background-image: url('../images/产品1.jpg');
}

.product-card:nth-child(4) .product-img {
    background-image: url('../images/产品2.jpg');
}

.product-card:nth-child(5) .product-img {
    background-image: url('../images/产品1.jpg');
}

.product-card:nth-child(6) .product-img {
    background-image: url('../images/产品2.jpg');
} */

.product-info {
    padding: 28px 24px 32px;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-link {
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   首页新闻区域
======================================== */

.news-wrapper {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.news-carousel {
    flex: 1.3;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.news-list {
    flex: 1;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
}

.news-item {
    padding: 24px 28px;
    border-bottom: 1px solid #eef2ff;
    transition: 0.2s;
}

.news-item:hover {
    background: #f8fafc;
}

.news-date {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.news-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}


.news-slide {
    background: linear-gradient(125deg, #ffffff, #f9fdfe);
    padding: 28px;
    border-radius: 24px;
}

.news-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.news-slide:hover img {
    transform: scale(1.02);
}

.news-slide h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.news-slide p {
    color: #475569;
    line-height: 1.5;
    margin-bottom: 16px;
}


/* 新闻头部 */
.show-news .news-header {
	/* margin-bottom: 32px; */
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 24px;
}
.show-news .news-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	color: var(--text-muted);
	font-size: 0.85rem;
}
.show-news .news-meta span i {
	margin-right: 6px;
	color: var(--primary);
}
/* 新闻封面图 */
.show-news .news-cover {
	/* margin-bottom: 32px; */
	border-radius: 24px;
	overflow: hidden;
}
.show-news .news-cover img {
	width: 100%;
	display: block;
}

/* 新闻正文 */
.show-news .news-content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--text-muted);
	/* margin-bottom: 48px; */
}
.show-news .news-content p {
	margin-bottom: 20px;
}
.show-news .news-content h2 {
	font-size: 1.5rem;
	margin: 32px 0 16px;
	color: var(--text-dark);
}
.show-news .news-content h3 {
	font-size: 1.2rem;
	margin: 24px 0 12px;
	color: var(--text-dark);
}
.show-news .news-content img {
	max-width: 100%;
	border-radius: 20px;
	margin: 20px 0;
}

/* 上一篇下一篇导航 */
.post-navigation {
	display: flex;
	justify-content: space-between;
	padding: 24px 0;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	margin-bottom: 48px;
}
.nav-prev, .nav-next {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-dark);
	transition: 0.2s;
	font-size: 0.9rem;
}
.nav-prev:hover, .nav-next:hover {
	color: var(--primary);
}
 .nav-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}
/* 侧边栏 - 相关新闻 */
.sidebar-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--primary);
	display: inline-block;
}
.related-news-list {
	list-style: none;
}
.related-news-item {
	padding: 16px 0;
	border-bottom: 1px solid var(--border-light);
	transition: 0.2s;
}
.related-news-item:hover {
	padding-left: 8px;
}
.related-news-item a {
	display: block;
}
.related-news-title {
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-dark);
	line-height: 1.4;
}
.related-news-date {
	font-size: 0.7rem;
	color: var(--text-muted);
}

/* 热门新闻/标签等可扩展 */
@media (max-width: 768px) {
	/* .news-detail-page {
		padding-top: 100px;
	} */
	.news-title {
		font-size: 1.5rem;
	}
	.post-navigation {
		flex-direction: column;
		gap: 16px;
	}
}

/* ========================================
   首页关于我们板块
======================================== */

.about-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/medical.jpg') center/cover no-repeat;
    color: white;
    border-radius: 40px;
    margin: 40px 0;
    padding: 64px 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 32px;
    padding: 24px 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #14b8a6;
}

/* ========================================
   产品列表页
======================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.product-list-card {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.product-list-card .product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.product-list-card .product-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    z-index: 2;
    transition: all 0.35s ease;
    border-radius: 20px;
}

.product-list-card .product-label h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    padding: 0 12px;
}

.product-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: #14b8a6;
}

.product-list-card:hover .product-bg {
    opacity: 1;
}

.product-list-card:hover .product-label {
    background: rgba(0, 0, 0, 0.15);
}

.product-list-card:hover .product-label h3 {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
}

.product-list-card .product-hint {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.product-list-card:hover .product-hint {
    opacity: 1;
    transform: translateY(0);
}

/* 产品子分类导航 */
.category-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}

.category-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: thin;
}

.category-scroll::-webkit-scrollbar {
    height: 4px;
}

.category-scroll a {
    font-weight: 500;
    color: #475569;
    transition: 0.2s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    flex-shrink: 0;
    white-space: nowrap;
}

.category-scroll a:hover,
.category-scroll a.active {
    color: #14b8a6;
    border-bottom-color: #14b8a6;
}

/* ========================================
   产品详情页
======================================== */

.product-detail-main {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.product-gallery {
    flex: 1;
    min-width: 280px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: #f1f5f9;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #f1f5f9;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-item.active {
    border-color: var(--primary);
}

.product-info-detail {
    flex: 1;
    min-width: 300px;
}

.product-info-detail h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-subtitle {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.param-table {
    margin: 24px 0;
    background: var(--gray-light);
    border-radius: 24px;
    padding: 20px;
}

.param-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap:10px;
}

.param-row:last-child {
    border-bottom: none;
}

.param-label {
    width: 120px;
    font-weight: 600;
    color: var(--text-dark);
}

.param-value {
    flex: 1;
    color: var(--text-muted);
}

.btn-contact {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.product-description {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    /* border-bottom: 1px solid var(--border-light); */
}

.product-description h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.product-description p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 相关产品 */
.related-section {
    margin: 60px 0 40px;
}

.related-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 32px;
}

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

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.related-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.related-info {
    padding: 16px;
    text-align: center;
}

.related-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

/* ========================================
   服务与支持页
======================================== */

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-list {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
}

.service-list li {
    margin: 10px 0;
    color: var(--text-muted);
}

/* FAQ区域 */
.faq-section {
    background: var(--gray-light);
    padding: 70px 0;
    margin-bottom: 80px;
    border-radius: 48px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.faq-question {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    padding: 0 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 28px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* 在线留言表单 */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.captcha-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.captcha-code {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 8px;
    padding: 12px 24px;
    border-radius: 20px;
    font-family: monospace;
    cursor: pointer;
}

.captcha-input {
    flex: 1;
    min-width: 160px;
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   活动列表页
======================================== */

.events-table-wrapper {
    background: white;
    border-radius: 28px;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.events-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.events-table th {
    background: #f8fafc;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-light);
}
.events-table tr{border-bottom: 1px solid var(--border-light);}
.events-table td {
    padding: 18px 20px;
    color: var(--text-muted);
    /* vertical-align: top; */
}

.events-table tr:last-child{
    border-bottom: none;
}

.event-date {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.event-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.event-booth {
    background: #e6f7f5;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-dark);
    white-space: nowrap;
}

.event-location {
    display: flex;
    gap: 6px;
    /* align-items: center;
    flex-wrap: wrap; */
}
.event-location i{margin-top:6px;}

.upcoming-highlight {
    margin: 40px 0 30px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.upcoming-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ========================================
   图文新闻列表页
======================================== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.news-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.03);
}

.news-content {
    padding: 20px 18px 24px;
}

.news-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ========================================
   新闻速递页（简洁列表）
======================================== */

.news-list-simple {
    max-width: 900px;
    margin: 0 auto 60px;
}

.news-item-simple {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
    transition: 0.2s;
}

.news-item-simple:hover {
    background: #fafcff;
    padding-left: 12px;
}

.news-date-box {
    flex-shrink: 0;
    width: 100px;
    text-align: right;
}

.news-date-day {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.news-date-year {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ========================================
   视频中心页
======================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.video-thumb {
    position: relative;
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: center;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-card:hover .play-overlay i {
    transform: scale(1.1);
    color: var(--primary);
}

.video-content {
    padding: 18px 16px 22px;
}

.video-category {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.video-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-dark);
}

.video-title span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

/* 视频弹窗 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 80%;
    max-width: 1000px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.modal-content video {
    width: 100%;
    display: block;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-info {
    padding: 16px 20px;
    background: #1e293b;
    color: white;
}

/* ========================================
   下载中心页
======================================== */

.download-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.download-item {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.download-item:hover {
    transform: translateX(6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.download-info {
    flex: 3;
    min-width: 200px;
}

.download-title {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.download-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.download-title span {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 20px;
}

.download-meta {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #94a3b8;
}

.download-btn {
    flex-shrink: 0;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   关于我们页
======================================== */

.intro-section {
    margin-bottom: 60px;
}

.intro-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-stats {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 32px;
    border: 1px solid var(--border-light);
}

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

.stat-block {
    text-align: center;
}

.stat-number-lg {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* 发展历程时间轴 */
.timeline-section {
    background: var(--gray-light);
    padding: 60px 0;
    border-radius: 48px;
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.section-title span {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 100px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
    text-align: right;
    padding-right: 20px;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 资质荣誉 - 网格展示 */
.honor-section {
    margin-bottom: 60px;
}

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

.honor-card {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.honor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.honor-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.honor-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.honor-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 产能数据大看板 (参照截图风格) */
.capacity-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/净化手术室.jpg') center/cover no-repeat;
    border-radius: 48px;
    padding: 48px 40px;
    margin-bottom: 60px;
    color: white;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.capacity-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.capacity-item:last-child {
    border-right: none;
}

.capacity-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.capacity-label {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 8px;
}

.capacity-sub {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 4px;
}

/* 生产基地 + 全球布局 */
.global-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    background: #f8fafc;
    border-radius: 48px;
    padding: 48px;
}

.global-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.global-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.global-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.global-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.global-text {
    flex: 1;
}

.global-text h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.global-text p {
    color: var(--text-muted);
    line-height: 1.7;
}


/* ========================================
   联系我们 Contact
======================================== */



body .contact-page .contact-info {
    flex: 1;
    min-width: 280px;
}
body .contact-page .contact-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}
body .contact-page .contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}
body .contact-page .contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}
body .contact-page .contact-item:last-child {
    border-bottom: none;
}
body .contact-page .contact-item i {
    width: 24px;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}
body .contact-page .contact-item .label {
    font-weight: 600;
    color: var(--text-dark);
}
body .contact-page .contact-item .value {
    color: var(--text-muted);
}

body .contact-page .contact-form-wrap {
    flex: 1.2;
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 40px 44px 44px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
}
body .contact-page .contact-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
body .contact-page .contact-form-wrap .sub {
    color: var(--text-muted);
    margin-bottom: 24px;
}
body .contact-page .form-group {
    margin-bottom: 18px;
}
body .contact-page .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}
body .contact-page .form-group label .required {
    color: #e74c3c;
}
body .contact-page .form-group input,
body .contact-page .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    outline: none;
    transition: 0.2s;
}
body .contact-page .form-group input:focus,
body .contact-page .form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}
body .contact-page .form-group textarea {
    min-height: 120px;
    resize: vertical;
}
body .contact-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
body .contact-page .btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
}
body .contact-page .btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}






/* ========================================
   底部 Footer
======================================== */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 32px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-col a {
    opacity: 0.7;
    transition: 0.2s;
}

.footer-col a:hover {
    opacity: 1;
    color: #14b8a6;
    padding-left: 6px;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.social-links a:hover {
    background: #14b8a6;
    color: #0f172a;
}

.copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   响应式设计
======================================== */

@media (max-width: 1200px) {

    .news-grid,
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .capacity-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

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

    /* 移动端导航 */
    .nav-center {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 20px;
    }

    .news-wrapper {
        display: block;
    }

    .footer .footer-grid {
        display: none;
    }

    .search-box {
        width: 95%;
    }
}

@media (max-width: 992px) {

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

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* 移动端侧边菜单 */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

    .mobile-nav-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .mobile-nav-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: #0f172a;
        z-index: 1002;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 80px 0 40px;
        display: block;
    }

    .mobile-nav-menu.active {
        left: 0;
    }

    .mobile-nav-menu li {
        list-style: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-menu li a {
        display: block;
        padding: 16px 24px;
        color: white;
        font-size: 1rem;
    }

    .mobile-dropdown-menu {
        display: none;
        background: #1e293b;
    }

    .mobile-sub-dropdown {
        display: none;
        background: #334155;
    }

    .mobile-dropdown-menu.active,
    .mobile-sub-dropdown.active {
        display: block;
    }

    .mobile-nav-menu .has-dropdown>a i {
        float: right;
        transition: transform 0.3s;
    }

    .mobile-nav-menu .has-dropdown.active>a i {
        transform: rotate(180deg);
    }

    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .product-grid,
    .service-cards {
        grid-template-columns: 1fr;
    }

    .news-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

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

    .related-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
        padding: 40px 24px;
    }

    .about-section .stat-item div {
        font-size: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .page-banner {
        height: 250px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 28px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 16px;
    }

    .product-detail-main {
        flex-direction: column;
    }

    .news-item-simple {
        flex-direction: column;
        gap: 12px;
    }

    .news-date-box {
        text-align: left;
        width: auto;
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .news-date-day {
        display: none;
    }

    .news-date-year {
        margin-left: 20px;
    }

    .download-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }

    .events-table th,
    .events-table td {
        padding: 12px;
        font-size: 0.85rem;
    }

    .about-page {
        padding-top: 0px;
    }

    .about-page .intro-grid {
        display: block;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 70px;
        font-size: 1rem;
    }

    .honor-grid {
        grid-template-columns: 1fr;
    }

    .capacity-grid {
        grid-template-columns: 1fr;
    }

    .global-section {
        flex-direction: column;
        padding: 28px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-swiper {
        height: 70vh;
        min-height: 500px;
    }
}