/* 基础重置样式 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body,
#app,
html {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: #000;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #000;
}

/* ====== CSS变量 ====== */
:root {
    /* 颜色 */
    --primary-color: #2d65bc;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --bg-white: #fff;
    --border-color: #eee;
    --bg-overlay: rgba(0, 0, 0, 0.5);

    /* 字体大小 */
    --font-xs: 14px;
    --font-sm: 16px;
    --font-md: 24px;
    --font-lg: 32px;
    --font-xl: 48px;

    /* 间距 */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 30px;
    --spacing-lg: 40px;
    --spacing-xl: 50px;

    /* 容器宽度 */
    --container-width: 1600px;
}

/* ====== 布局组件 ====== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

/* ====== 标题组件 ====== */
.section-title {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title .en-title {
    font-size: var(--font-xl);
    color: rgba(0, 0, 0, 0.2);
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.section-title h3 {
    font-size: var(--font-lg);
    color: var(--text-primary);
    margin-top: 15px;
    font-weight: 500;
}

/* ====== 图片组件 ====== */
.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover:hover img {
    transform: scale(1.05);
}

/* ====== 按钮组件 ====== */
.btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: var(--font-sm);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 1px solid var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
}

.btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* ====== 动画组件 ====== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translate(0);
}

/* ====== 文本组件 ====== */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* ====== 遮罩组件 ====== */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, var(--bg-overlay));
    transition: opacity 0.3s ease;
}

/* ====== 阴影组件 ====== */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


html,
body {
    margin: 0;
    padding: 0;
    touch-action: none;
    -ms-touch-action: none;
    -webkit-touch-callout: none;
    /*-webkit-user-select: none;*/
    /*-khtml-user-select: none;*/
    /*-moz-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* 禁用双指缩放 */
body {
    touch-action: pan-y pan-x;
    min-width: 1200px;
}

/* 禁用文本选择 */
:not(input):not(textarea) {
    /*-webkit-user-select: none;*/
    /*-moz-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
}

/* 禁用图片拖拽 */
img {
    /*-webkit-user-drag: none;*/
    /*-khtml-user-drag: none;*/
    /*-moz-user-drag: none;*/
    /*-o-user-drag: none;*/
    /*user-drag: none;*/
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-3px);
}

.arrow-up {
    width: 12px;
    height: 12px;
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    transform: rotate(45deg);
    margin-top: 4px;
    display: block;
}

/* 面包屑导航 */
.breadcrumb {
    max-width: 1440px;
    margin: 0px auto;
    padding: 20px 20px 20px 0px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2f66bd;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* 导航栏固定定位和基础样式 */
.nav-wrapper {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 95px;
    /* 固定导航高度 */
}

/* 导航栏内容布局 */
.nav {
    max-width: 1440px;
    margin: 0 auto;
    height: 95px;
    /* 与nav-wrapper高度一致 */
    display: flex;
    align-items: center;
    justify-content: space-between;

}


/* .logo区域 */
.logo {
    width: 188.3px;
    height: 95.2px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
}



.logo .logoPicture {
    width: 80px;
    height: 60px;
}

.logo .logoTitle {
    width: 160px;
    height: 60px;
    margin-left: 10px;
}



/* ====== 二级菜单核心样式 开始 ====== */

.has-submenu {
    position: relative;
}

/* 优化一级菜单的交互区域 */
/* 菜单 */
.nav-menu {
    display: flex;
    list-style: none;
    position: relative;
}

.nav-menu>li {
    position: relative;
    margin: 0 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 30px 0;
    display: block;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu>li>a {
    position: relative;
    padding: 30px 2px;
    z-index: 2;
    color: #000;
}

/* 添加悬停效果的过渡 */
.nav-menu>li>a::before {
    z-index: 2;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #0030A6;
    transition: width 0.3s ease;
}

.nav-menu>li>a::after {
    z-index: 1;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #C02025;
    transition: width 0.3s ease 0.1s;
}


/* 悬停和激活状态显示下划线 */
.nav-menu>li>a:hover::before,
.nav-menu>li.active>a::before {
    width: 78%;
}

.nav-menu>li>a:hover::after,
.nav-menu>li.active>a::after {
    width: 100%;
}


/* 下拉菜单样式 */
.submenu-list {
    position: absolute;
    top: 95px;
    left: -65%;
    background: #1a2234;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 160px;
    border-radius: 4px;
    display: block;
}

/* 添加顶部三角形 */
.submenu-list::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1a2234;
}

.has-submenu:hover .submenu-list {
    opacity: 1;
    visibility: visible;
}

.submenu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-list li:last-child {
    border-bottom: none;
}

.submenu-list li a {
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
    display: block;
    text-align: center;
}

.submenu-list li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ====== 二级菜单核心样式 结束 ====== */

/* ====== 全局底部样式 ====== */
.footer {
    width: 100%;
    height: auto;
    padding: 60px 0 40px;
    background: #000E32;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
}

.footer-section {
    margin-right: 60px;
    width: 20%;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}


/* 版权信息 */
.copyright {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.copyright-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.copyright-info,
.friend-links {
    display: flex;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 15px 0;
    font-size: 14px;
    margin-right: 20px;
}

/* 友情链接 */
.friend-links {
    margin-bottom: 15px;
}

.friend-links span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-right: 10px;
}

.friend-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.friend-links a:hover {
    color: #fff;
}

/* 法律声明 */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* 二维码区域 */
#footer-bodyQr {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.qr-codes {
    display: flex;
    gap: 20px;
    margin-left: 55px;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 110px;
    height: 110px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.qr-code p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 2;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* 关注或联系我们 */
.phone-icon {
    background-image: url('../images/foot1.png');
}

.email-icon {
    background-image: url('../images/foot2.png');
}

.mobile-icon {
    background-image: url('../images/foot3.png');
}

.address-icon {
    background-image: url('../images/foot4.png');
}


/* 其他页面轮播图片 */
.banner-Img {
    width: 100%;
    height: 500px;
}

.banner-Img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */

}

/* 公共页面样式 */
/*开始*/
.services-section {
    padding: 60px 0;
    background: #fff;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;

}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066FF 30%, #FF3366 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-left: 15px;
    flex-shrink: 0;
}

.service-content {
    width: 70%;
    position: relative;
}

.service-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-link {
    display: inline-block;
    padding: 6px 16px;
    background: #0066FF;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    background: #0052cc;
}

/* 添加描述文本在hover时的效果 */
.service-card:hover .service-description {
    margin-bottom: 20px;
}

/* 主营业务区域样式------结束*/

/* 资质荣誉区域样式-----开始 */
.honor-swiper-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.honor-swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 120px;
}

.honor-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.honor-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF 30%, #FF3366 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.honor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.honor-item:hover::after {
    transform: scaleX(1);
}

.honor-item .img-wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.honor-item .img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.honor-item .img-wrapper::after {
    content: '查看';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.honor-item:hover .img-wrapper::before {
    background: rgba(0, 0, 0, 0.5);
}

.honor-item:hover .img-wrapper::after {
    opacity: 1;
}

.honor-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.honor-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 15px 20px 5px;
}

.honor-desc {
    font-size: 14px;
    color: #666;
    padding: 0 20px 25px;
}

/* Swiper导航按钮和分页器的容器 */
.honor-swiper .swiper-pagination,
.honor-swiper .swiper-button-prev,
.honor-swiper .swiper-button-next {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.honor-swiper .swiper-pagination-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Swiper导航按钮样式 */
.honor-swiper .swiper-button-next,
.honor-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    margin: 0;
    background-color: #f0f0f0;
    border-radius: 50%;
    border: none;
    box-shadow: none;
}

.honor-swiper .swiper-button-next:after,
.honor-swiper .swiper-button-prev:after {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.honor-swiper .swiper-button-next:hover,
.honor-swiper .swiper-button-prev:hover {
    background-color: #e5e5e5;
}

/* Swiper分页器样式 */
.honor-swiper .swiper-pagination {
    width: auto;
    position: static;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin: 0 10px;
}

.honor-swiper .swiper-pagination-fraction {
    position: static;
    transform: none;
}

.honor-swiper .swiper-pagination-current {
    font-size: 20px;
    color: #000;
    font-weight: bold;
}


/* 图片放大弹窗样式 */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-popup.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.8);
}

.image-popup .popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.image-popup.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

.image-popup img {
    width: 405px;
    height: 540px;
    display: block;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.image-popup.active img {
    opacity: 1;
    transform: translateY(0);
}

.image-popup .close-btn {
    position: absolute;
    top: -35px;
    right: -30px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotate(-180deg);
}

.image-popup.active .close-btn {
    opacity: 1;
    transform: rotate(0);
    transition-delay: 0.3s;
}

.image-popup .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* 资质荣誉区域样式-----结束 */


/* 合作伙伴区域样式-----开始 */
.partner-swiper-container {
    /* width: 1920px; */
    margin: 0 auto;
    padding: 0;
    position: relative;
}

#services-partner {
    max-width: 1600px;
}

.partner-swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 0 90px;
    margin: 0 auto;
    max-width: 1600px;
}

.partner-item {
    background: #fff;
    border-radius: 8px;
    height: 158px;
    border: 1px solid #E6E6E6;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-item img {
    width: 166px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.5);
    transition: all 1.5s ease;
}

/* 新的导航按钮样式 */
.partner-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.partner-swiper .swiper-button-next,
.partner-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E6E6E6;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.partner-swiper .swiper-button-prev {
    left: 10px;
}

.partner-swiper .swiper-button-next {
    right: 10px;
}

.partner-swiper .swiper-button-next:after,
.partner-swiper .swiper-button-prev:after {
    font-size: 20px;
    color: #666;
    font-weight: bold;
}

.partner-swiper .swiper-button-next:hover,
.partner-swiper .swiper-button-prev:hover {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */

/* 合作伙伴区域样式-----结束 */


/* 新闻资讯区域样式-----开始 */
.news-container {
    max-width: 1440px;
    margin: 0 auto;

}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;

}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.3);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #C02025;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    height: 48px;
}

.news-item:hover .news-title {
    color: #C02025;
}

.news-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 14px;
}

/* 查看更多按钮 */
.news-more {
    text-align: center;
    margin-top: 40px;
}

.more-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #C02025;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #C02025;
}

.more-btn:hover {
    background: #fff;
    color: #C02025;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

/* 新闻资讯区域样式-----结束 */