/* 自定义样式 */

@media (min-width: 1536px) and (max-width: 1664px){
    .container{
       padding-left:30px  !important;
	   padding-right:30px  !important;
    }
}


/* 自定义颜色变量 */
:root {
    --primary-blue: #0269B6;
    --primary-red: #f3342f;
    --primary-gray: #505050;
    --blue-light: #0284c7;
    --primary-blue-dark: #1e40af;
    --red-light: #dc2626;
    --red-dark: #991b1b;
    --gray-light: #6b7280;
    --gray-dark: #374151;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-dark);
}

/* 自定义颜色工具类 */
.text-primary-blue {
    color: var(--primary-blue);
}
.text-primary-blue-dark {
    color: var(--blue-dark);
}
.text-primary-red {
    color: var(--primary-red);
}

.text-primary-gray {
    color: var(--primary-gray);
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}


.bg-primary-blue-dark {
    background-color: var(--primary-blue-dark);
}
.bg-primary-red {
    background-color: var(--primary-red);
}

.bg-primary-gray {
    background-color: var(--primary-gray);
}

.border-primary-blue {
    border-color: var(--primary-blue);
}
.border-primary-blue-dark {
    border-color: var(--primary-blue-dark);
}
.border-primary-red {
    border-color: var(--primary-red);
}

.border-b-primary-blue {
    border-bottom-color: var(--primary-blue);
}

.border-b-white {
    border-bottom-color: white;
}


.border-primary-gray {
    border-color: var(--primary-gray);
}

/* 悬停效果 */
.hover\:text-primary-blue:hover {
    color: var(--primary-blue);
}
.hover\:text-primary-blue-dark:hover {
    color: var(--primary-blue-dark);
}

.hover\:primary-blue:hover {
    color: var(--primary-blue);
}
.hover\:primary-blue-dark:hover {
    color: var(--primary-blue-dark);
}

.hover\:bg-primary-blue:hover {
    background-color: var(--primary-blue);
}
.hover\:bg-primary-blue-dark:hover {
    background-color: var(--primary-blue-dark);
}

.hover\:bg-primary-red:hover {
    background-color: var(--primary-red);
}

.hover\:bg-primary-red-dark:hover {
    background-color: var(--primary-red-dark);
}

.hover\:border-primary-blue-dark:hover {
    border-color: var(--primary-blue-dark);
}
.hover\:border-primary-red-dark:hover {
    border-color: var(--red-dark);
}

/* Group hover 效果 */
.group:hover .group-hover\:bg-primary-blue {
    background-color: var(--primary-blue);
}
/* 悬停样式 */
.hover\:bg-primary-blue:hover {
    background-color: var(--primary-blue);
}

.hover\:text-white:hover {
    color: white;
}

.hover\:bg-primary-blue-dark:hover {
    background-color: var(--primary-blue-dark);
}
/* 基础边框颜色类 */
.border-primary-blue {
    border-color: var(--primary-blue);
}

.hover\:border-primary-blue:hover {
    border-color: var(--primary-blue);
}

.group:hover .group-hover\:border-primary-blue {
    border-color: var(--primary-blue);
}
.group:hover .group-hover\:border-primary-red {
    border-color: var(--primary-red);
}

.group:hover .group-hover\:text-white {
    color: white;
}

.group:hover .group-hover\:text-primary-blue {
    color: var(--primary-blue);
}

.group:hover .group-hover\:border-white {
    border-color: white !important;
}

/* 文本截断样式 */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 文本截断样式 */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 渐变遮罩层 */
.gradient-overlay {
    background: linear-gradient(to right, rgba(2, 105, 182, 1) 0%, rgba(2, 105, 182, 1) 20%, transparent 100%);
}


.wow {
    visibility: hidden;
}

.wow.animate__animated {
    visibility: visible;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* 移动端禁用特定WOW动画 */
@media (max-width: 767px) {
    .wow[data-mobile-disable="true"] {
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
    }
    
    .wow[data-mobile-disable="true"].animate__animated {
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
    }
}


/* 导航栏样式 */
.navbar{border-bottom:1px solid #e1e1e1;}


/* 导航链接悬停效果 */
.nav-link {
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

/* 导航下划线动画 - 紧贴导航栏底部 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* 悬停和激活状态：显示红色下划线 */
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* 激活状态的导航链接 */
.nav-link.active,.nav-link:hover {
    color: var(--primary-blue);
}


/* 微信提示框样式 */
.social-icon .wechat-tooltip {
    transform-origin: top center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
    white-space: nowrap;
}







/* 轮播图样式 */
.hero-swiper {
    width: 100%;
    height: 100%;
}
.hero-swiper .swiper-slide {
    overflow: hidden;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.hero-swiper-button-next,
.hero-swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    color: white;
    transition: transform 0.5s ease, background-color 0.5s ease;
}
.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background-color: var(--primary-blue-dark);
    transform: scale(1.1);
}
.hero-swiper-button-next::after,
.hero-swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}
.hero-swiper-pagination {
    margin-top: 20px;
    text-align: center;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255, 0.6);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 4px;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue-dark);
    transform: scale(1.2);
}
.hero-swiper-button-next{
    right: 80px;
}
.hero-swiper-button-prev {
left: 80px;
}

@media (max-width: 1024px) {
    
    .hero-swiper-button-next,
    .hero-swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .hero-swiper-button-next{
        right: 20px;
    }
.hero-swiper-button-prev {
    left: 20px;
}
}
@media (max-width: 768px) {
        
    .hero-swiper-button-next::after,
    .hero-swiper-button-prev::after {
        font-size: 16px;
    }
}



/* 产品Swiper*/
.products-swiper {
    overflow: hidden;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.products-swiper .swiper-slide .product-card {
    width: 100%;
}
/* 产品Swiper分页器样式 - progressbar类型 */
.products-swiper-pagination {
    position: relative;
    background: #e5e7eb;
    border-radius: 10px !important;
    height: 2px !important;
    overflow: hidden;
}

.products-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-blue);
    border-radius: 10px !important;
    transition: transform 0.3s ease;
}



/* 产品卡片样式 */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .product-image {
    overflow: hidden;
    flex-shrink: 0;
}

.product-card .product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img{
    transform: scale(1.05);
}

.product-card .product-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* 
.product-card .product-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
    z-index: 1;
}

/* 蓝色动画边框 - 使用 ::after 
.product-card .product-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-blue);
    transition: width 0.5s ease;
    z-index: 2;
}
.product-card:hover .product-title::after {
    width: 100%;
}
*/



/* 视差效果样式 */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 移动端禁用视差效果 */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}
/* 成就项目样式 */
.achievement-item {
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    min-height: 1.5rem;
}

.achievement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary-blue);
    border-radius: 50%;
}

.achievement-item::after {
    content: '';
    position: absolute;
    left: 0.375rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
}




.parallax-images-swiper-button-next,
.parallax-images-swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    color: white;
    transition: transform 0.5s ease, background-color 0.5s ease;
}
.parallax-images-swiper-button-next:hover,
.parallax-images-swiper-button-prev:hover {
    background-color: var(--primary-blue-dark);
}
.parallax-images-swiper-button-next::after,
.parallax-images-swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}


/* 修复视差图片轮播在移动端的宽度问题 */
.parallax-images-swiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.parallax-images-swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

.parallax-images-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* 确保在网格布局中也能正常显示 */
.grid .parallax-images-swiper-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.grid .parallax-images-swiper-container .swiper {
    width: 100% !important;
    max-width: 100% !important;
}

.grid .parallax-images-swiper-container .swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

.grid .parallax-images-swiper-container .swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* 新闻列表容器 - 完全按照SBM网站实现 */
.news-card-image{
    aspect-ratio: 3 / 2;
    max-height:500px;
}

/* 新闻卡片统一高度样式 */
.news-left-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.news-left-swiper .swiper-slide a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-left-swiper .swiper-slide .relative {
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-left-swiper .swiper-slide .p-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-left-swiper .swiper-slide .p-4 .inline-flex {
    align-self: flex-start;
    width: auto;
}
    
.news-left-swiper{

    height: 100%;
    overflow: hidden;
    position: relative;
}


.news-right-swiper {
    
    height: 100%;
    overflow: hidden;
    padding-bottom: 48px;
    max-height: 500px;
    position: relative;
}



.news-right-swiper .swiper-scrollbar {
	border-radius: 10px;
	touch-action: none;
	position: absolute;
	width: 4px;
	height: 100%;
    background: #e5e7eb;
	right: 0;
	top: 0;
	z-index: 1;
}
.news-right-swiper .swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	border-radius: 10px;
	background: var(--primary-blue);
}


.news-right-swiper .news-right-swiper-button-next {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 48px;
	background: #fff url(../images/next_ico.webp) no-repeat center;
    z-index: 10;
    border:1px solid #dddddd;
}


.news-right-swiper .swiper-slide:last-child a {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .news-left-swiper{
        width: 66.3%;
    }
    .news-right-swiper {
        width: 32.26%;
        margin-left: 1.61%;
        max-height: 387px;
    }
}

@media (min-width: 1280px) {
    .news-right-swiper {
    max-height:447px;
}
}
@media (min-width: 1536px) {
    .news-right-swiper {
    max-height:503px;
}
}



/* 产品列表页面样式 */
.product-category .category-toggle{
    transition: color 0.5s ease;
}
.product-category.active .category-toggle,.product-category:hover .category-toggle {
    color: var(--primary-blue);
}
.product-category.active .category-toggle svg {
    color: var(--primary-blue);
}

.category-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}
.category-toggle-btn svg {
    transform: rotate(0deg) !important;
    transition: transform 0.5s ease;
}
.category-toggle-btn:hover svg {
    color: var(--primary-blue);
}
.category-toggle-btn svg.rotate-180 {
    transform: rotate(90deg) !important;
}

#mobile-nav-toggle {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#mobile-nav-panel {
    max-width: 320px;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}
#mobile-nav-overlay {
    backdrop-filter: blur(2px);
}
/* 移动端导航中的分类样式调整 */
#mobile-nav-content {
    -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 100% !important;
}



#mobile-nav-content .category-toggle {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

#mobile-nav-content .category-content {
    padding-left: 1rem;
}

/* 移动端导航滚动条样式 */
#mobile-nav-content::-webkit-scrollbar {
    width: 4px;
}

#mobile-nav-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

#mobile-nav-content::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 2px;
}

#mobile-nav-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}

/* 确保移动端导航内容可以滚动 */
@media (max-width: 1023px) {
    #mobile-nav-panel {
        height: 100vh !important;
        max-height: 100vh !important;
    }
    
    #mobile-nav-content {
        flex: 1 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* 防止移动端滚动穿透 */
body.overflow-hidden {
    overflow: hidden;
}

/* 成就项目样式 */
.product-achievement-item {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
    min-height: 1.25rem;

}

.product-achievement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.85rem;
    height: 0.85rem;
    border: 1px solid #c6c7c9;
    border-radius: 50%;
    transition: transform 0.5s ease,border-color 0.5s ease;
}
.product-achievement-item:hover::before {
    border-color: var(--primary-blue);
}





/* 产品详情轮播图样式 */
.product-swiper-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.product-swiper {
    width: 100%;
    height: auto;
}

.product-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

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


/* 产品轮播图分页器样式 */
.product-swiper-pagination {
    margin-top: 20px;
    text-align: center;
}

.product-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    opacity: 1;
    transition: transform 0.5s ease;
    margin: 0 4px;
    border: 1px solid var(--primary-blue);
}

.product-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}



/* 产品导航样式 */
.product-nav-btn {
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}
.product-nav-btn.active,.product-nav-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    border-bottom-color: var(--primary-blue);
}




/* 产品特点轮播样式 */
.features-swiper {
    width: 100%;
}
/* 产品特点轮播卡片统一高度 */
.features-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.features-swiper .swiper-slide > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.features-swiper .swiper-slide p {
    flex-grow: 1;
    align-items: top;
    text-align: center;
    line-height: 1.6;
}
/* 产品Swiper分页器样式 - progressbar类型 */
.features-swiper-pagination {
    position: relative;
    background: #e5e7eb;
    border-radius: 10px !important;
    height: 2px !important;
    overflow: hidden;
}
.features-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-blue);
    border-radius: 10px !important;
    transition: transform 0.3s ease;
}

/* 相关产品轮播样式 */
.related-swiper {
    overflow: hidden;
}
.related-swiper .swiper-slide {
    height: auto;
}
/* 产品Swiper分页器样式 - progressbar类型 */
.related-swiper-pagination {
    position: relative;
    background: #e5e7eb;
    border-radius: 10px !important;
    height: 2px !important;
    overflow: hidden;
}

.related-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-blue);
    border-radius: 10px !important;
    transition: transform 0.3s ease;
}



/* 产品详情表格容器支持横向滚动 */
.canshu{ font-size: 14px;}
/* 表格容器支持横向滚动 */
.canshu .table-container p {
    margin: 20px 0;
    font-size:14px;
}

.canshu .table-container h3{
font-size: 16px;
font-weight: 600;
margin-bottom: 1.25rem;
position: relative;
}

.canshu .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

}

/* 自定义滚动条样式 - 让滚动条更细 */
.canshu .table-container::-webkit-scrollbar {
    height: 6px; /* 水平滚动条高度 */
}

.canshu .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.canshu .table-container::-webkit-scrollbar-thumb {
    background: #1E579E;
    border-radius: 3px;
}

.canshu .table-container::-webkit-scrollbar-thumb:hover {
    background: #0f3d6b;
}

.canshu table{
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 16px;
    border-radius: 8px;
    min-width: 720px;
    white-space: nowrap;
}
.canshu table tr:first-child{
background-color: var(--primary-blue);
color: white !important;
}
.canshu table tr:first-child th,
.canshu table tr:first-child td{
color: white !important;
border: 1px solid #e5e7eb;
    }

.canshu th,.canshu td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}
@media (min-width: 1024px) {
.canshu .table-container p {
    font-size:16px;
}
.canshu .table-container h3{
font-size: 18px;
}

.canshu th,.canshu td {
    font-size: 16px;
    padding: 30px 15px;
}
}
.canshu th {
    background-color: #1E579E;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.canshu tr:nth-child(even) {
    background-color: #f8f9fa;
}

.canshu tr:hover {
    background-color: #eef2ff;
}

.canshu td {
    color: #666666;
}





.news-category-btn.active{
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}
/* 灰色边框 - 使用 ::before */
.news-date::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

/* 蓝色动画边框 - 使用 ::after */
.news-date::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.5s ease;
    z-index: 2;
}

.group:hover .news-date::after {
    width: 100%;
}

/* 分页导航 */
.pagination a,
.pagination b {
display: flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
text-decoration: none;
font-weight: 500;
font-size: 0.875rem;
transition: color 0.5s ease,background-color 0.5s ease,border-color 0.5s ease;
cursor: pointer;
user-select: none;
position: relative;
overflow: hidden;
}
.pagination a {
color: #374151;
background-color: white;
border: 1px solid #d1d5db;
}

.pagination b {
color: white;
background-color: var(--primary-blue);
border: 1px solid var(--primary-blue);
}
.pagination a:hover {
background-color: var(--primary-blue);
border-color: var(--primary-blue);
color: white;
}

@media (max-width: 768px) {

.pagination a,
.pagination b {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.8rem;
}
}

@media (max-width: 480px) {
.pagination a,
.pagination b {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
}
}


.blog-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    line-height: 1.4;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.8rem;
    line-height: 1.4;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    line-height: 1.4;
}

.blog-content p,
.blog-content li {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-gray);
    font-size: 16px;
}

.blog-content img {
    display: block;
    height: auto !important;
    margin: 2rem auto;
    max-width: 100% !important;
    border-radius: 8px;
}
.blog-content a{
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 600;
}
.blog-content a:hover{
    color: var(--primary-blue-dark);
}

.blog-content .table-container {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    max-height: none;
    height: auto;
}

.blog-content .table-container::-webkit-scrollbar {
    height: 3px;
    width: 0px;
}

.blog-content .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.blog-content .table-container::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.blog-content .table-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}

.blog-content .table-container {
    overflow-y: hidden !important;
}

.blog-content table {
    width: 100% !important;
    min-width: 700px !important;
    border-collapse: collapse !important;
    margin: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none !important;
    height: auto !important;
    max-height: none !important;
}

.blog-content table th,
.blog-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    vertical-align: top;
    white-space: nowrap;
    height: auto;
}

.blog-content table th:last-child,
.blog-content table td:last-child {
    border-right: none;
}

.blog-content table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(---text-dark);
    font-size: 14px;
    border-bottom: 2px solid #d1d5db;
}

.blog-content table td {
    color: var(---text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.blog-content table tr:hover {
    background-color: #f9fafb;
}

.blog-content table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .blog-content h2 {
        font-size: 24px;
        margin-bottom: 1.2rem;
        margin-top: 2rem;
    }
    
    .blog-content h3 {
        font-size: 20px;
        margin-bottom: 1rem;
        margin-top: 1.8rem;
    }
    
    .blog-content p,
    .blog-content li {
        font-size: 16px;
        margin-bottom: 1.2rem;
    }
    
    .blog-content img {
        margin: 1.5rem auto;
    }
    
    .blog-content .table-container {
        margin: 1.5rem 0;
    }
    
    .blog-content table {
        font-size: 13px;
    }
    
    .blog-content table th,
    .blog-content table td {
        padding: 8px 12px;
        font-size: 13px;
    }
}



/* 新闻详情页轮播样式 */
.news-swiper {
    width: 100%;
}
.news-swiper-pagination {
    position: relative;
    background: #e5e7eb;
    border-radius: 10px !important;
    height: 2px !important;
    overflow: hidden;
}
.news-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-blue);
    border-radius: 10px !important;
    transition: transform 0.3s ease;
}




/* 关于我们航样式 */
.about-nav-btn {
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}
.about-nav-btn.active,.about-nav-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    border-bottom-color: var(--primary-blue);
}




/* About页面导航标签 - 移动端左右滑动 */
.about-nav-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.about-nav-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.about-nav-wrapper {
    display: flex;
    min-width: max-content;
    justify-content: center;
}

@media (max-width: 640px) {
    .about-nav-wrapper {
        justify-content: flex-start;
    }
}




/* 公司实力轮播全屏图片样式 */
.rd-nav-btn.active,.rd-nav-btn:hover{
    border-bottom:2px solid var(--primary-blue);
}
.rd-swiper .swiper-slide {
    overflow: hidden;
}











/* 新闻详情页轮播样式 */
.honor-swiper {
    width: 100%;
}
.honor-swiper-pagination {
    position: relative;
    background: #e5e7eb;
    border-radius: 10px !important;
    height: 2px !important;
    overflow: hidden;
}
.honor-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-blue);
    border-radius: 10px !important;
    transition: transform 0.3s ease;
}






/* 视频播放按钮Z轴缩放动画 */
@keyframes playButtonScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

#play-button {
    animation: playButtonScale 2.5s infinite ease-in-out;
}

#play-button:hover {
    animation-play-state: paused;
    transform: scale(1.15);
}
