* {
    margin: 0;
    padding: 0;
}
body { font-family: sans-serif; color: #333;padding: 0px; margin: 0px}
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
#homePg {
    padding-bottom: 100px;
}
#banner {
    position: relative;
}
#adminbuy_cn_img{
    /* 执行动画：时长 1.5秒，平滑过渡，最后停留在结束状态 */
    animation: scaleDown 1s ease-out forwards;
    /* 配合 transform 使用，确保缩放中心在中间 */
    transform-origin: center center;
    overflow: hidden;
    position: relative;
}
.u-font-18 {
    font-size: 18px;
}
.m_font-size {
    
}
.desc_font_size {
    font-size: 16px;
}
.desc_line_height {
    line-height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    color: #FFF;
    white-space: nowrap;
}
.banner-info h3 {
    font-size: 40px;
    transition: all .3s ease;
}
.banner-info p {
    font-size: 16px;
    transition: all .3s ease;
}
/* 定义动画：从 1.1 倍缩小到 1 倍 */
@keyframes scaleDown {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}
.counter {
    display: inline-block;
    min-width: 1ch; /* 防止数字变动时容器抖动 */
}
.banner_content {
    display: flex;
    position: absolute;
    top: 52%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1450px;
}
/* 修改图片样式 */
.homePg1 .banner_img {
    display: block;
    width: 100%;
    height: 100vh; /* 关键：确保高度按比例缩放 */
    object-fit: cover; /* 如果图片比例不一致，这可以防止拉伸 */
}
.banner_right {
    display: flex;
    justify-content: center;
    width: 40%;
    position: relative;
    z-index: 2;
}

/* 在图片背后加一个径向渐变的光晕 */
.banner_right::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.banner_right img {
    width: auto;
    height: 60vh;
    /* 添加柔和的深色投影，让产品脱离背景 */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5)); 
    
    /* 初始动画状态：透明且向右偏一点 */
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
    will-change: transform, opacity, filter;
}
/* 2. 当 Slide 激活时，图片进入的动画 */
.homePg1 .swiper-slide-active .banner_right img {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s; /* 晚于文字出现，增加层次感 */
    
    /* 这里的 animation 是持续的呼吸浮动效果 */
    animation: productFloat 4s ease-in-out infinite alternate;
    animation-delay: 1.7s; /* 等进入动画结束后再开始循环浮动 */
}
/* 1. 设置初始状态：默认放大，并设置过渡效果 */
.homePg1 .swiper-slide .pcimg img.banner_img {
    transform: scale(1.15); /* 初始放大比例 */
    transition: transform 5s ease-out; /* 缩放过程的时间，5秒看起来比较平滑 */
}

/* 2. 当幻灯片激活时，缩放到原始大小 (1.0) */
.homePg1 .swiper-slide-active .pcimg img.banner_img {
    transform: scale(1);
}

/* 3. 这里的溢出隐藏非常重要，防止图片放大超出容器 */
.homePg1 .swiper-slide {
    overflow: hidden;
}

/* 额外优化：如果希望图片在背景层，不影响文字动画 */
.banner_content {
    z-index: 10;
    position: relative;
}

/* 3. 定义循环浮动呼吸动画 */
@keyframes productFloat {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
    }
    100% {
        transform: translateY(-20px); /* 向上浮动20像素 */
        /* 向上浮动时，投影变淡变大，模拟高度增加 */
        filter: drop-shadow(0 35px 40px rgba(0, 0, 0, 0.2));
    }
}
.banner_left {
    flex: 1;
    max-width: 1450px;
}
.banner_left h2 {
    font-size: 82px;
    color: #FFF;
    font-weight: 600;
}
.banner_left p {
    font-size: 68px;
    color: #FFF;
    margin-bottom: 28px;
}
.banner_left a {
    font-size: 28px;
    padding: 16px 38px;
    color: #FFF;
    background-color: #e5031b;
    border-radius: 50px;
    cursor: pointer;
    
    /* 必须属性 */
    position: relative; 
    overflow: hidden;    /* 确保溢出的白色背景被隐藏 */
    display: inline-block; /* 确保 padding 和宽高生效 */
    z-index: 1;          /* 为伪元素层级做准备 */
    transition: color 0.4s; /* 文字颜色过渡 */
}

/* 创建白色背景层 */
.banner_left a::before {
    content: "";
    position: absolute;
    z-index: -1;         /* 放在文字下方 */
    top: 100%;           /* 初始位置在按钮底部之外 */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    transition: transform 0.4s ease; /* 升起动画 */
}

/* 鼠标经过时的状态 */
.banner_left a:hover {
    color: #e5031b;      /* 鼠标经过时文字变红（因为背景变白了） */
}

.banner_left a:hover::before {
    transform: translateY(-100%); /* 向上平移 100%，进入视野 */
}
/* ==============================
   Swiper 进场动画 CSS
   ============================== */

/* 1. 定义初始状态（隐藏且靠下） */
.homePg1 .banner_left h2,
.homePg1 .banner_left p,
.homePg1 .banner_left a {
    opacity: 0;                             /* 完全透明 */
    transform: translateY(40px);            /* 向下移动 40px */
    transition: all 0.8s ease-out;          /* 过渡效果：持续0.8秒，缓出 */
    will-change: transform, opacity;        /* 性能优化 */
}

/* 2. 定义触发状态 (当父级 slide 激活时) */
/* Swiper 会自动给当前 Slide 加上 .swiper-slide-active */
.homePg1 .swiper-slide-active .banner_left h2,
.homePg1 .swiper-slide-active .banner_left p,
.homePg1 .swiper-slide-active .banner_left a {
    opacity: 1;                             /* 变为不透明 */
    transform: translateY(0);              /* 回到原位 */
}

/* 3. 设置交替延时 (Sequence) */
/* 标题立刻开始 (0s) */
.homePg1 .swiper-slide-active .banner_left h2 {
    transition-delay: 0.1s;
}

/* 副标题稍微晚一点 */
.homePg1 .swiper-slide-active .banner_left p {
    transition-delay: 0.3s;
}

/* 按钮最后出来 */
.homePg1 .swiper-slide-active .banner_left a {
    transition-delay: 0.5s;
}

/* 确保容器高度由图片撑开 */
.homePg1 .pcimg {
    height: 100%;
    position: relative;
}
.pcimg img{
    height: 100%;
    object-fit: cover;
}
.hdck {
    position: absolute;
    bottom: 200px;
    left: 80px;
    z-index: 9;
    color: #FFF;
}
.hdck .content {
    position: relative;
}
.hdck .content:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 70px;
    background-color: #FFF;
    left: 50%;
    transform: translateX(-50%);
    top: 19px;
}
.home_title {
    text-align: center;
    padding-bottom: 80px;
}
.home_title h2 {
    color: #333333;
    font-size: 42px;
}
.home_title p {
    color: #999999;
    font-size: 16px;
}
.home_title img {
    width: 64px;
    margin-top: 10px;
}
.homePg2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
}
.fp-tableCell{
    max-width: 1580px;
    margin: 0 auto;
}
.homePg2 .home_about {
    display: flex;
    gap: 112px;
    position: relative;
    justify-content: space-between;
}
.ab_logo {
    position: fixed;
    z-index: -1;
    bottom: -36%;
    right: 0px;
}
.ab_logo img {
    width: 100vw;
}
.homePg2 .ab_txt {
    width: 40%;
}
.homePg2 .ab_txt .main_title h1 {
    font-size: 48px;
    margin-bottom: 8px;
}
.homePg2 .ab_txt .main_title h3 {
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 48px;
}
.homePg2 .ab_txt .main_title img {
    width: 155px;
    margin-top: 14px;
    margin-bottom: 22px;
}
.ab_con_a {
    color: #333;
    text-indent: 2em;
}
.ab_con .ab_more {
    margin-top: 50px;
}
.ab_more {
    color: #808080;
    border-radius: 20px;
    padding: 0 5px 0 10px;
    border: 1px solid #666666;
    background-color: #FFF;
    margin-top: 20px;
    display: flex;
    width: 90px;
    align-items: center;
    gap: 6px;
    transition: all .3s ease;
}
.ab_more:hover {
    border: 1px solid #E5021A;
    color: #fff;
    background-color: #E5021A;
}
.ab_more span {
    font-size: 14px;
}
.ab_more img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}
.homePg2 .ab_bottom {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab_bottom ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
}
.ab_bottom ul li {
    width: calc((50% - 32px - 56px));
    border: 1px solid #9E9E9E;
    padding: 28px;
    background-color: #FFF;
    border-radius: 5px;
}
.ab_bottom ul li,
.ab_bottom ul li b,
.ab_bottom ul li p {
    transition: all .3s ease;
} 
.ab_bottom ul li:hover {
    background-color: #1a338d;
}
.ab_bottom ul li:hover b {
    color: #FFF;
}
.ab_bottom ul li:hover p {
    color: #FFF;
}
.ab_bottom .ab_num {
    font-size: 44px;
    text-align: center;
    color: #1B3695;
}
.ab_bottom ul li p{
    color: #666666;
    text-align: center;
}




.homePg3 {
    width: 100%;
    display: flex;
    position: relative;
    height: 565px;
    margin-top: 120px;
    overflow: hidden;
    
}

.homePg3 .home_left {
    height: 100%;
    left: 0;
}
/* 视频容器 */
.video_wrapper {
    position: relative;
    overflow: hidden; /* 保证图片放大不溢出 */
    cursor: pointer;
    border-radius: 8px; /* 可选：圆角 */
}

/* 封面图基础样式 */
.poster_img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease; /* 顺滑放大 */
}

/* 鼠标经过容器，图片放大 */
.video_wrapper:hover .poster_img {
    transform: scale(1.1);
}

/* 播放按钮居中 */
.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0.9;
}

/* 鼠标经过播放按钮，按钮单独放大并变亮 */
.play_btn:hover {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.5));
}

/* 视频标签充满容器 */
#companyVideo {
    width: 110%;
    height: 110%;
    object-fit: cover;
}
.homePg3 .home_right {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0px;
}
.homePg3 .home_info {
    position: absolute;
    right: 10rem ;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    z-index: 3;
}
.homePg3 .home_info .home_info_logo {
    width: 168px;
    margin-bottom: 43px;
}
.homePg3 .home_info_item {
    display: flex;
    color: #FFF;
    gap: 20px;
}
.homePg3 .home_info_item_img  {
    display: flex;
    align-items: center;
    justify-content: center;
}
.homePg3 .home_info_item h4{
    padding-bottom: 6px;
    font-size: 22px;
}
.homePg3 .home_info_item:nth-child(3) {
    margin: 85px 0;
}




.homePg4 {
    margin-top: 120px;
    width: 100%;
}
.homePg4 .home_product .sl {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
/* --- 基础样式 --- */
.homePg4 .home_product .sl .cat_a {
    width: calc((100% - 32px) / 2);
    transition: all .3s ease-in-out;
}
.homePg4 .home_product .sl .cat_a:hover .cat-thumb-img{
    transform: scale(1.1);
}
/* 1. 第一个和第四个：白色 -> 浅蓝 */
.homePg4 .home_product .sl .cat_a{
    background-color: #ffffff;
}
.homePg4 .home_product .sl .cat_a:hover .cat-thumb{
    background-color: #1a338d;
}
.homePg4 .home_product .sl .cat_a:hover .product_info strong,
.homePg4 .home_product .sl .cat_a:hover .product_info p{
    color: #FFF;
}
.homePg4 .home_product .sl .cat_a:hover .ab_more {
    border: 1px solid #E5021A;
    color: #fff;
    background-color: #E5021A;
}
.cat-thumb-img {
    /*width: 180px;*/
    height: 260px;
    object-fit: cover;
    transition: all .3s ease-in-out;
}
.homePg4 .cat-thumb{
    display: flex;
    justify-content: space-between;
    padding: 28px;
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
    border-radius: 24px;
    transition: all 1.3s ease;
}
.homePg4 .product_info strong {
    color: #333333;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 6px;
}
.homePg4 .product_info p{
    color: #999;
    margin-bottom: 40px;
    width: 90%;
}


.homePg5 {
    margin-top: 120px;
}
.homePg5 .fp-tableCell{
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.homePg5 a {
    color: #000;
}
.homePg5 .home_news_item {
    display: flex;
    padding: 28px;
    background-color: #FFF;
    border-radius: 0px;
    transition: all .3s  ease;
}
.homePg5 .home_news_item:hover {
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
    border-radius: 30px;
}
.homePg5 .home_news_item:hover img{
    transform: scale(1.1);
}
.homePg5 .home_date {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
    margin-right: 28px;
}

.homePg5 .home_date strong {
    font-size: 54px;
    color: #284094;
}
.homePg5 .home_date p {
    font-size: 24px;
    color: #284094;
}
.homePg5 .msg {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.homePg5 .msg p {
    color: #999999;
}
.homePg5 .photo {
    margin-left: 35px;
    width: 343px;
    height: 176px;
    overflow: hidden;
    border-radius: 25px;
}
.homePg5 .photo img {
    width: 343px;
    height: 176px;
    transition: all .3s  ease;
}





.homePg6 {
    margin-top: 120px;
    padding: 48px 0;
}
.homePg6 .container{
    display: flex;
    column-gap: 230px;
    justify-content: space-between;
}
.partner_left {
    width: 55%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.partner_logo {
    margin-bottom: 38px;
}
.partner_logo img{
    width: 195px;
    height: 56px;
}
.partner_content {
    font-size: 18px;
    color: #333;
    line-height: 32px;
    margin-top: 38px;
    margin-bottom: 38px;
}
.partner_list {
    display: flex;
    gap: 21px;
}
.home_partner_item {
    width: calc((100% - 104px) / 5);
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-content: center;
}
.home_partner_item img {
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}
.home_partner_item:hover img {
    transform: scale(1.1);
}
.partner_right {
    width: 39%;
    
}
.partner_right img{
    width: 100%;
}







.homePg7 {
    margin-top: 120px;
}
.homePg7 .fp-tableCell {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.homePg7 .home_contact_left {
    display: flex;
    gap: 40px;
}
.home_contact_left_left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}
.homePg7 .home_contact_left,
.homePg7 .home_contact_right {
    width: 100%;
}
.home_contact_right  {
    margin-top: 12px;
}
.homePg7 .home_contact_left_item h5{
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}
.home_contact_left_item_img {
    width: 60%;
    overflow: hidden;
}
.home_contact_left_item_img img {
    width: 100%;
    transition: all .3s ease;
}
.home_contact_left_item_img:hover img{
    transform: scale(1.1);
}
.homePg7 .home_contact_left_item {
    overflow: hidden;
}
.homePg7 .home_contact_left_item img {
    width: 100%;
    transition: all .3s ease;
    cursor: pointer;
}
.homePg7 .home_contact_left_item:hover img {
    transform: scale(1.1);
}
.homePg7 .home_contact_left_item p .phone{
    font-size: 24px;
    color: #1B3695;
}
.homePg7 .home_contact_left_item p {
    color: #666;
}

.homePg7 .home_contact_right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.homePg7 .home_contact_right_top h5{
    font-size: 24px;
    color: #333333;
    margin-bottom: 8px;
}
.homePg7 .home_contact_right_top p{
    color: #333;
}
.homePg7 .home_contact_right_input {
    display: flex;
    gap: 81px;
}
.homePg7 .home_contact_right_input p{
    font-size: 16px;
    color: #666;
}
.homePg7 .home_contact_right_input input{
    width: 343px;
    padding-bottom: 24px !important;
}
.homePg7 .home_contact_right_input input,
.homePg7 .textarea{
    border-radius: 10px;
    border: 1px solid #999;
    padding: 12px 14px;
    margin-top: 14px;
}
.homePg7 .textarea {
    width: 100% !important;
}
.homePg7 .submit_button {
    display: flex;
    justify-content: center;
}
.homePg7 .submit_button button {
    width: 100px;
    background-color: #1A338D;
    color: #FFF;
    font-size: 16px;
    border-radius: 20px;
    border: none;
    padding: 4px 0;
    cursor: pointer;
}



/* 页脚整体背景 */
.footer {
    background-color: #1a328f; /* 这里的深蓝色根据图片取色 */
    padding: 60px 0;
    padding-bottom: 30px;
    color: #ffffff;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 容器居中且弹性布局 */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* 均匀分布各列 */
    align-items: flex-start;
    padding: 0 20px;
}
.mb_footer {
    text-align: center;
    font-size: 14px;
    padding-top: 30px;
    color: #adb5bd;
}
/* 每一列的样式 */
.footer-col h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #adb5bd; /* 这里的浅灰色文字增加层级感 */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* 二维码列样式 */
.qrcode-col {
    text-align: center;
}

.qrcode {
    background-color: #fff;
    padding: 5px;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.qrcode img {
    width: 100%;
    height: 100%;
}

.qrcode-col p {
    font-size: 14px;
    margin-top: 10px;
}

.main_container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 60px 0;
    /*overflow: hidden;*/
}

.page_head {
    text-align: center;
    margin-bottom: 100px;
    padding-top: 50px;
    position: relative;
}
.page_title{
    font-size: 42px;
    color: #333;
}
.page_remark {
    font-size: 16px;
    color: #999;
    margin-top: 10px;
}
.page_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    margin-top: 12px;
}
.page_bottom_1{
    width: 10px;
    height: 2px;
    background-color: #E5021A;
}
.page_bottom_2{
    width: 40px;
    height: 2px;
    background-color: #1A338D;
}
.page_more {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.page_more p,
.page_more a{
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
}
.page_more img {
    width: 11px;
    height: 11px;
    transition: all .3s ease;
}
.page_more:hover span{
    color:#1a338d;
}
.page_more:hover img {
    transform: translateX(4px);
}
/*联系我们*/
.contact_info {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}
.contact_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc((100% - 60px) / 3);
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
    background: #FFFFFF;
    border-radius: 20px;
    padding-top: 40px;
    padding-bottom: 44px;
}
.contact_item:hover img{
    transform: scale(1.1) !important;
}
.contact_item:hover .contact_item_title {
    transform: scale(1.1) !important;
}
.contact_item:hover .contact_itme_remark{
    transform: scale(1.1) !important;
}
.contact_item img{
    width: 37px;
    height: auto;
    transition: all .3s ease;
}
.contact_item_title {
    font-size: 18px;
    color: #333;
    margin-top: 20;
    margin-bottom: 14px;
    transition: all .3s ease;
}
.contact_itme_remark {
    font-size: 16px;
    color: #999;
    transition: all .3s ease;
}
.contact_address {
    margin-bottom: 70px;
    overflow: hidden;
}
.contact_form_input {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 80px;
}
.contact_form_item {
    width: calc((100% - 50px) / 2);
    display: flex;
    align-items: center;
}
.contact_form_item input {
    flex: 1;
    padding: 18px 29px 18px 29px;
    border-radius: 14px;
    font-size: 18px;
    border: 1px solid #CCC;
}
.contact_form_item input:hover::placeholder {
    color: #1a338d;
}
.contact_form_item input::placeholder {
    font-size: 18px;
    transition: all .3s ease;
}
.contact_form_item p {
    width: 80px;
    font-weight: 600;
}
.contact_form_button {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}
.contact_form_button button {
    padding: 18px 46px;
    font-size: 22px;
    border-radius: 50px;
    border: none;
    transition: all .3s ease;
    cursor: pointer;
    line-height: 23px;
    color: #E5021A;
    background: #FFF;
    border: 1px solid #E5021A;
}
.contact_form_button button:hover  {
    color: #FFF;
    background: #E5021A;
    border: 1px solid #E5021A;
}

.news_1 {
    display: flex;
    gap: 40px;
    margin-bottom: 61px;
}/* 1. 定义放大缩小的呼吸动画 */
@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* 放大到1.1倍，可以根据需要调整 */
    }
    100% {
        transform: scale(1);
    }
}

.news_1_img {
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden; /* 确保图片放大时不会超出容器边界 */
    width: 50%;
    height: 540px;
    position: relative;
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
}

.news_1_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 过渡效果可以让动画开始和结束时更平滑 */
    transition: transform 0.5s ease-in-out; 
}

/* 2. 鼠标经过时触发动画 */
.news_1_img:hover img {
    /* 动画名称 时长 运行曲线 无限循环 */
    animation: breathe 3s linear infinite;
}
.news_1_img_content {
    position: absolute;
    bottom: 0px;
    padding: 0 30px 40px 30px;
    display: flex;
    width: calc(100% - 60px);
}
.news_1_img_title {
    font-size: 24px;
    width: 80%;
    color: #FFF;
    text-overflow: ellipsis;
    white-space: nowrap;       /* 防止文本换行 */
    overflow: hidden;
}
.news_1_img_title a {
    color: #fff;
    font-weight: 600;
}
.news_1_img_date {
    display: flex;
    margin-left: 28px;
}
.news_1_img_month {
    font-size: 34px;
    color: #FFF;
    margin-right: 8px;
    line-height: 45px;
    font-weight: 600;
}
.news_1_img_year_day {
    font-size: 18px;
    color: #FFF;
    line-height: 24px;
}
.news_1_font {
    cursor: pointer;
    width: calc((100% - 50% - 80px) / 2);
    padding: 43px 29px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
    border-radius: 20px;
    transition: all .3s ease;
}
.news_1_font:hover {
    transform: scale(1.06);
}
/* 1. 定义左右晃动的动画 */
@keyframes arrow-move {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px); /* 向左移动5px */
    }
    75% {
        transform: translateX(5px);  /* 向右移动5px */
    }
    100% {
        transform: translateX(0);
    }
}
.news_1_font hr {
    margin-top: 42px;
    margin-bottom: 39px;
    border-color: #EBEBEB;
}
.news_1_font_title a {
    font-size: 24px;
    color: #333;
}

.news_1_font_remark p {
    font-size: 18px;
    color: #999;
    text-indent: 2em;
}
.news_1_font_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_1_font_arrow img {
    width: 22px;
    height: 22px;
    animation: arrow-move 2s ease-in-out infinite;
}
.news_1_font_date_y {
    font-size: 18px;
    color: #999;
}
.news_1_font_date_m {
    font-size: 30px;
    color: #999;
}
.news_2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 59px;
}
.news_2_item {
    display: flex;
    padding: 28px;
    border-radius: 0px;
    transition: all .3s  ease;
    align-items: center;
    justify-content: space-between;
    gap: 47px;
}
.news_2_img {
    overflow: hidden;
    border-radius: 25px;
}
.news_2_item img {
    transition: all .3s  ease;
}
.news_2_item:hover {
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
    border-radius: 30px;
}
.news_2_item:hover img{
    transform: scale(1.1);
}
.news_item_date {
    display: flex;
}
.news_item_date_m {
    font-size: 54px;
    font-weight: 600;
    line-height: 60px;
    color: #284094;
}
.news_item_date_y {
    font-size: 24px;
    color: #284094;
    margin-left: 8px;
}
.news_2_item_content {
    flex: 1;
}
.news_item_title,
.news_item_title a {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}
.news_item_remark {
    font-size: 16px;
    color: #999;
    line-height: 30px;
}
.news_3_news {
    display: flex;
    column-gap: 124px;
    row-gap: 42px;
    flex-wrap: wrap;
}
.news_3_item {
    display: flex;
    width: calc((100% - 124px) / 2);
    gap: 46px;
    transition: all .3s ease;
}
.news_3_item:hover {
    transform: scale(1.06);
}
.news_3_item_date div{
    border-radius: 20px;
    border: 2px solid #284094;
    padding: 25px 27px;
    text-align: center;
}
.news_3_item_date_y {
    font-size: 24px;
    color: #284094;
}
.news_3_item_date_m {
    font-size: 34px;
    color: #284094;
    font-weight: 600;
}
.news_3_item_title,
.news_3_item_title a{
    font-size: 28px;
    color: #333;
}
.news_3_item_remark {
    font-size: 16px;
    color: #999;
    line-height: 30px;
    text-indent: 2em;
}


/*新闻二级列表*/
.newsList_title {
    font-size: 26px;
    color: #333;
    margin-bottom: 40px;
}
.newsList {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.newsList_item {
    width: calc((100% - 96px) / 3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
}
.newsList_item_img {
    width: 100%;
    height: 440px;
    overflow: hidden;
}
.newsList_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.newsList_item:hover img {
    transform: scale(1.1);
}
.newsList_item_content {
    padding: 20px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.newList_item_title,
.newList_item_title a{
    font-size: 18px;
    color: #333;
    margin-bottom: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.newList_item_remark {
    font-size: 14px;
    color: #999;
    line-height: 30px;
}
.newsList_item_bottom {
    display: flex;
    justify-content: space-between;
}
.newsList_item_date {
    font-size: 14px;
    color: #999;
}
.newsList_item_detail,
.newsList_item_detail a{
    font-size: 14px;
    color: #333;
}
.newsList_item:hover .newsList_item_detail a {
    color: #1a338d;
}
.news_detail_title {
    text-align: center;
}
.news_detail_title h1 {
    font-size: 36px;
    color: #1A338D;
}
.news_detail_title p {
    margin-top: 19px;
    color: #999;
    font-size: 16px;
}
.news_detail_hr {
    border: 1px solid #EBEBEB;
    margin-bottom: 38px;
    margin-top: 28px;
}
.news_detail_content {
    min-height: 50vh;
}

/*产品中心*/
.product_main {
    padding: 60px 0;
}
.product_head {
    max-width: 420px;
        display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.product_title {
  display: flex;  
}
.product_title p{
    font-weight: 600;
    font-size: 26px;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 42px;
}
.pt_circle {
    background-color: #1A338D;
    color: #FFF;
}
.pt_circle_line {
    border: 1px solid #1A338D;
}
.pt_sj {
    margin-right: -8px;
}
.product_remark {
    margin-top: 14px;
    margin-left: 12px;
    font-size: 16px;
    color: #666;
}
.product_content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}
.product_left {
    width: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product_left .active {
    background-color: #FFFFFF;
    position: relative;
}
.product_left .active:after {
    height: 40px;
}
.product_cat_item {
    padding: 28px 100px;
    background-color: #f7f7f7;
    text-align: right;
    transition: all .3s ease;
}
.product_cat_item:after {
    width: 4px;
    height: 0px;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E5031B;
    transition: all .3s ease;
}
.product_cat_item:hover {
    background-color: #FFFFFF;
    position: relative;
}
.product_cat_item:hover:after {
    height: 40px;
}
.product_cat_item:hover:after {
    height: 40px;
}
.product_right {
    flex: 1;
}
.product_list {
    display: flex;
    flex-wrap: wrap;
    /*max-width: 1200px;*/
    gap: 32px;
}
.product_middle {
    width: 120px;
}
.product_item {
    /*flex: 1 1 min(100%, 250px);*/
    width: calc((100% - 64px) / 3);
    box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
    border-radius: 20px;
    /*padding: 30px;*/
}
/* 父容器：自动高度 */
.product_item_img {
  position: relative;
  width: 100%;
}

/* a 标签：不写死高度！relative */
.product_item_img a {
  width: 100%;
  position: relative;
  display: block; /* 关键！让 a 能被图片撑开 */
}

/* 高度占位图：撑开高度 */
.product_item_img .first_img_url {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  visibility: visible;
  transition: all .3s ease;
}

/* 第二张图：绝对定位覆盖在上面 */
.product_item_img .two_img_url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all .3s ease;
}

/* hover 切换 */
.product_item:hover .first_img_url {
  opacity: 0;
}
.product_item:hover .two_img_url {
  opacity: 1;
}
.product_item_head {
    display: flex;
    justify-content: space-between;
    padding: 28px 28px 10px 28px;
}
.product_item_head img {
    width: 98px;
    height: 100%;
}
.product_item_more,
.product_item_more a{
    font-size: 16px;
    color: #1A338D;
}
.product_item_img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 15px 0;*/
    overflow: hidden;
}
.product_item_img img {
    width: 100%;
    /*max-height: 290px;*/
    object-fit: cover;
}
.product_item_name {
    font-size: 18px;
    color: #333;
    text-align: center;
    padding: 14px 28px;
}


/*面包屑*/
.innerrtitle {
    padding: 34px 0;
    background-color: #FAFAFA;
}
.navpost {
    max-width: 1580px;
    margin: 0 auto;
}

.innerrtitle a,
.innerrtitle span{
    color: #999;
    font-size: 18px;
}



.product_d_head {
    display: flex;
    gap: 100px;
    margin-top: 40px;
    overflow: hidden;
}
.product_d_head_img {
    /*background-color: #FAFAFA;*/
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    flex-direction: row-reverse;
}
.product_d_head_remark {
    flex: 1;
    overflow: hidden;
}
.product_d_head_img img {
    /*height: 100%;*/
    object-fit: contain;
}
.product_contact hr {
    border-color: #ffffff75;
}
.product_contact {
    padding: 14px 0;
    padding-top: 18px;
}
.product_contact_num {
    padding: 12px 0;
}
.product_contact_num p {
    font-size: 16px;
}
.product_contact_num p:first-child{
    margin-bottom: 12px;
}
.product_button button {
    padding: 12px 38px;
    border-radius: 50px;
    border: 1px solid #1a338d;
    background-color: #FFF;
    color: #1a338d;
    cursor: pointer;
}
.product_button button:first-child {
    margin-right: 12px;
    background-color: #1a338d;
    color: #FFF;
}

.product_d_head_img .swiper-button-next,
.product_d_head_img  .swiper-button-prev {
    background-image: initial;
}
.product_d_head_img .swiper-button-next:after,
.product_d_head_img  .swiper-button-prev:after {
    color: #E5031B;
}
.specs-content {
    margin-top: 12px;
}
.product_d_content {
    padding-left: 28px;
}
.product_d_content p {
    text-indent: 2em;
}
.product_d_content th {
    background-color: rgb(230, 230, 228);
}
.product_d_remark {
    margin-top: 49px;
    border: 1px solid #ddd;
    padding: 28px;
    border-radius: 5px;
}
.product_d_remark h2 {
    position: relative;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
    padding-left: 12px;
    border-left: 4px solid #1a338d;
}
.size-charts-list {
    display: flex;
    flex-direction: column;
}
.size-charts-name {
    display: flex;
    align-items: center;
    gap: 15px
}
.size-charts-name img {
    width: 32px;
    height: 32px;
}
.size-charts-item { 
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    background-color: #FAFAFA;
    padding: 21px 40px;
    display: flex;
    justify-content: space-between;
}



.custom-list {
    list-style: none; /* 隐藏默认圆点 */
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px; /* 为左侧图标留出空间 */
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

/* 构造红色正方形 */
.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px; /* 根据文字行高微调对齐位置 */
    width: 16px;
    height: 16px;
    background-color: #ff0000; /* 红色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px; /* 可选：微圆角让方块更精致 */
}

/* 构造里面的白色右箭头 (使用纯CSS绘图) */
.custom-list li::after {
    content: "";
    position: absolute;
    left: 3px; /* 在方块中心微调 */
    top: 8px; 
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff; /* 白色箭头 */
    border-right: 2px solid #fff;
    transform: rotate(45deg); /* 旋转45度形成箭头形状 */
}





.downloadPdf {
    font-size: 18px;
    cursor: pointer ;
    color: #FFF;
    background-color: #E5021A;
    border-radius: 50px;
    border: none;
    padding: 14px 19px;
}

.about_menu {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99999;
    padding: 59px 0;
    background-color: #FFF;
}
.about_menu_content {
    max-width: 1580px;
    margin: 0 auto;
    display: flex;
    gap: 33px;
    cursor: pointer;
}
.about_menu_content p {
    font-size: 18px;
    color: #666666;
    font-weight: 600;
    position: relative;
}
.about_menu_content .active {
    color: #1A338D;
}
.about_menu_content p:after {
    content: "";
    width: 0px;
    height: 2px;
    background-color: #e5031b;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease;
}

/* 只有在支持鼠标悬停的设备上才生效 */
@media (hover: hover) {
    .about_menu_content p:hover {
        color: #1A338D;
    }
    .about_menu_content p:hover:after {
        width: 31px;
    }
}
.about_menu_content .active:after {
    width: 31px;
}

.gxjj {
    display: flex;
    margin-bottom: 50px;
    gap: 52px;
}
.gxjj_img {
    width: 50%;
    overflow: hidden;
    border-radius: 5px;
}
.gxjj_img:hover img{
    transform: scale(1.1);
}
.gxjj_img img {
    width: 100%;
    transition: all .3s ease;
    object-fit: cover;
    border-radius: 5px;
}
.gxjj_content {
    flex: 1;
}
.gxjj_remark{
    text-indent: 2em;
    line-height: 32px;
    margin-top: 19px;
    margin-bottom: 22px;
}
.qqwh {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 关键属性：固定背景 */
    background-attachment: fixed;

    /* 确保背景覆盖整个屏幕且不重复 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.qqwh_content {
    width: 900px;
    row-gap: 100px;
    column-gap: 88px;
    padding: 100px 0;
    display: flex;
    flex-wrap: wrap;
}
.qqwh_item {
    display: flex;
    width: calc((100% - 100px) / 2);
    align-items: center;
    gap: 19px;
}
.qqwh_item img{
    width: 47px;
    height: 47px;
}
.qqwh_title {
    font-size: 26px;
    color: #FFF;
    margin-bottom: 6px;
}
.qqwh_remark {
    color: #FFF;
}

/* 水平横线 */
.horizontal-line {
  position: absolute;
  top: 65px; /* 对应圆点的位置 */
  left: 0;
  right: 0;
  height: 2px;
  background-color: #d1d9e6;
  z-index: 1;
}
.timeline-wrapper .active .year {
    /*font-size: 52px;*/
    color: #1A338D;
}

.timeline-wrapper {
    /*position: relative;*/
    overflow: hidden;
}
.timeline-item  {
  transform: scale(1) !important;  
}
/* 年份数字 */
.year {
  font-size: 32px;
  font-weight: bold;
  color: #c0c9d8;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.about_data_ul {
    display: flex;
    gap: 130px;
}
.about_data_item {
    width: calc((100% - 650px) / 5);
}
.about_data_item_data {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.about_data_item_data p{
    font-size: 44px;
    line-height: 40px;
    font-weight: 600;
    color: #1B3695;
    position: relative;
}
.about_data_item_data span {
    font-size: 16px;
    color: #1B3695;
    font-weight: 600;
    position: absolute;
    right: -20px;
    top: -10px;
}
.about_data_item_remark {
    font-size: 24px;
    color: #666;
    margin-top: 18px;
    text-align: center;
    white-space: nowrap;
}

/* 轴上的大圆点 */
.dot-content {
    display: flex;
    position: relative;
}
.dot_main_hr {
    position: absolute;
    width: 1px;      /* 线的粗细 */
    height: 176px;   /* 线的高度 */
    background-color: #d1d9e6; /* 颜色 */
    left: 43px;
    margin-top: 8px;
    border: none;    /* 去掉默认边框 */
    z-index: -1;
}
.dot-main {
  width: 12px;
  height: 12px;
  background-color: #d1d9e6;
  border-radius: 50%;
  border: 3px solid #fff;
}

.timeline-item.active .dot-main {
  background-color: #e60012; /* 红色激活点 */
  box-shadow: 0 0 10px rgba(230, 0, 18, 0.5);
}

/* 事件列表 */
.event-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
  margin-top: 50px;
}

.event-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}

.month {
    font-weight: bold;
    margin-right: 10px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* 小空心圆点 */
.month::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid #e60012;
  border-radius: 50%;
  margin-left: 6.6px;
  vertical-align: middle;
}



.cfsb {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.cfsb_item {
    width: calc((100% - 80px) / 3);
    overflow: hidden;
    border-radius: 5px;
}
.cfsb_item:hover img{
    transform: scale(1.1);
}
.cfsb_item img {
    width: 100%;
    transition: all .3s ease;
}
.fzlc {
    margin-bottom: 61px;
    position: relative;
}
.month_no_visi {
    visibility: hidden;
    font-weight: bold;
}
.cert {
    position: relative;
    margin-bottom: 67px;
}
.cert img{
    width: 100%;
}

.mobile-nav {
    position: fixed;
    display: none;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: rgb(26, 51, 141);
    z-index: 999;
    border-top: 2px solid #fff;
}
.mobile-nav .item {
    width: 25%;
    border-left: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav .item:first-child {
    border-left: 0px;
}
.mobile-nav .item p {
    font-size: 12px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 20px;
}
.mobile-nav .item p:before {
    font-family: cmsfont;
    font-size: 14px;
    color: #fff;
    display: block;
    line-height: 16px;
}
/* 一行省略 */
.single {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #ccc;
  margin: 20px 0;
  padding: 8px;
}

/* 三行省略 */
.three_line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  border: 1px solid #ccc;
  padding: 8px;
}












.mobile_banner {
    display: none;
}


@media screen and (max-width: 1669px) {
    .homePg3 .home_info {
        right: 8rem;
    }
}
@media screen and (max-width: 1520px) {
    
    .fp-tableCell {
        padding: 0 28px;
    }
    .homePg3 .home_info {
        right: 6rem;
    }
}
@media screen and (max-width: 1396px) {
    .homePg3 .home_info {
        right: 4rem;
    }
    .product_item {
        width: calc((100% - 32px) / 2);
    }
}
@media screen and (max-width: 1281px) {
    .homePg3 {
        height: auto;
    }
    .homePg3 .home_left {
        width: 100%;
        
    }
    .home_right,
    .homePg3 .home_info {
        display: none;
    }
    .product_left {
        width: 340px;
    }
}
/* 响应式：手机端自动换行 */
@media screen and (max-width: 999px) {
    .product_item {
        width: calc((100% - 32px) / 2);
    }
    .pc_banner {
        display: none;
    }
    .mobile_banner {
        display: block;
    }
    .ab_con_a {
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          text-overflow: ellipsis;
    }
    .homePg4 .product_info strong {
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
          text-overflow: ellipsis;
    }
    .mobile-nav {
        display: flex;
    }
    .kf_container {
        display: none;
    }
    .page_title {
        font-size: 26px;    
    }
    .contact_form_button {
        margin-top: 36px;
    }
    .contact_form_button button {
        padding: 8px 34px;
        font-size: 16px;
    }
    .page_remark {
        font-size: 14px;
        margin-top: 6px;
    }
    .homePg7 .submit_button button {
        padding: 8px 0;
    }
    .page_bottom {
        margin-top: 6px;
    }
    .contact_address {
        margin-bottom: 0px;
    }
    .page_head {
        margin-bottom: 38px;
        padding-top: 20px;
    }
    /*.product_item_img {*/
    /*    height: 215px;*/
    /*}*/
    .product_d_head_img {
        height: auto;
        flex-direction: column;
    }
    .news_2_img {
        width: 100%;
    }
    .news_item_title, .news_item_title a {
        font-size: 22px;
    }
    .news_item_remark {
     margin-top: 16px;   
    }
    #homePg{
        margin-top: 80px;
    }
    .homePg2,
    .homePg3,
    .homePg4,
    .homePg5,
    .homePg6,
    .homePg7
    {
        margin-top: 60px;
        padding: 0px;
    }
    .partner_logo {
        text-align: center;
        margin-bottom: 16px;
    }
    .homePg4 .home_product .sl {
        gap: 12px;
    }
    .main_title {
        display: none;
    }
    .homePg1 .banner_img {
        height: auto;
    }
    .home_title {
        padding-bottom: 38px;
    }
    
    .homePg2 .ab_txt {
        width: 100%;
    }
    .banner_left {
        padding-left: 6%;
    }
    .banner_left h2 {
        font-size: 22px;
        
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .banner_left p {
        font-size: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .banner_left a {
        font-size: 12px;
        padding: 5px 14px;
    }
    .banner_right img {
        height: 120px !important;
    }
    .homePg2 .home_about {
        flex-direction: column;
        gap: 40px;
    }
    .homePg4 .home_product .sl .cat_a {
        width: 100%;
    }
    .homePg4 .product_info p{
        margin-bottom: 30px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          text-overflow: ellipsis;
    }
    .homePg4 .product_info{
        left: 26px;
    }
    .homePg5 .home_news_item {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .homePg5 .home_news_item {
        box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
        border-radius: 30px;
    }
    .homePg5 .photo {
        margin-left: 0px;
        width: 100%;
    }
    .homePg5 .msg {
        width: 100%;
        text-align: center;
    }
    .homePg5 .msg h3 {
        margin-bottom: 4px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .news_1_font hr {
        margin-top: 16px;
        margin-bottom: 20px;
    }
    .news_1_font_title a {
        font-size: 22px;
        font-weight: bold;
    }
    .news_1_font_title p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .news_1_font_date {
        margin-top: 16px;
    }
    .news_1_font_date_flex {
        display: flex;
    }
    .news_1_font_date_m {
        font-size: 18px;
    }
    .homePg5 .msg p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .homePg5 .home_date {
        display: none;
    }
    .homePg6 {
        background-image: none !important;
    }
    .partner_left,
    .partner_right{
        width: 100%;
    }
    .partner_right {
        margin-top: 1.5rem;
    }
    .homePg6 .container {
        flex-direction: column;
    }
    .homePg7 .fp-tableCell {
        flex-direction: column;
        gap: 48px;
    }
    .home_contact_right {
        margin-top: 0;
    }
    .home_contact_right_input {
        flex-direction: column;
    }
    .homePg7 .home_contact_right_input input,
    .homePg7 .textarea {
        width: 100%;
    }
    .homePg7 .home_contact_right_input {
        gap: 24px;
    }
    .homePg7 .home_contact_left {
        gap: 18px;
        flex-direction: column;
    }
    .home_contact_left_item_img {
        width: 100%;
    }
    .homePg7 .home_contact_left_item h5 {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .homePg7 .home_contact_left_item p {
        display: flex;
        flex-direction: column;
    }
    .footer-container {
        flex-wrap: wrap;
        display: none;
    }
    .footer {
        padding: 10px 0;
    }
    .footer-col {
        width: 50%; /* 手机上一行显示两个 */
        margin-bottom: 30px;
    }
    .mb_footer{
        display: block;
        margin-bottom: 50px;
    }
    .main_container {
        padding: 60px 28px;
        width: calc(100% - 56px);
    }
    .about_menu_content {
        gap: 20px;
        overflow-x: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 12px;
    }
    .about_menu{
        padding: 59px 28px;
        padding-bottom: 16px;
        width: calc(100% - 56px);
        overflow-x: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .about_menu_content p {
        white-space: nowrap;    
    }
    .about_menu_content p {
        font-size: 16px;
    }
    .about_data_item_data p {
        font-size: 38px;
    }
    .about_data_item_remark {
        font-size: 20px;
    }
    .gxjj {
        flex-direction: column;
    }
    .gxjj_img {
        width: 100%;
    }
    .about_data {
        padding-bottom: 48px;
    }
    .about_data_ul {
        /*flex-direction: column;*/
        flex-wrap: wrap;
        gap: 0;
        row-gap: 48px;
    }
    .about_data_item {
        width: 50%;
    }
    .qqwh {
        margin-bottom: 48px;
    }
    .qqwh_content {
        flex-direction: column;
        padding: 100px 28px;
        row-gap: 50px;
    }
    .qqwh_title {
        font-size: 20px;
    }
    .gxjj_content strong {
        font-size: 22px;
    }
    .qqwh_item {
        width: 100%;
    }
    .cfsb {
        flex-direction: column;
    }
    .cfsb_item {
        width: 100%;
    }
    .contact_info {
        flex-direction: column;
    }
    .contact_item {
        width: calc(100% - 56px);
        padding-right: 28px;
        padding-left: 28px;
    }
    .contact_form_input {
        flex-direction: column;
        gap: 25px;
    }
    .contact_form_item  {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .contact_form_item p{
        padding-bottom: 12px;
    }
    .contact_form_item input {
        padding: 10px 20px;
        width: 100%;
    }
    .homePg5 .photo {
        height: auto;
    }
    .partner_content {
        font-size: 16px;
        line-height: 28px;
    }
    .homePg5 .photo img{
        width: 100%;
        height: auto;
    }
    .contact_form_item input::placeholder {
        font-size: 14px;
    }
    .product_main {
        padding: 60px 28px;
    }
    .product_head {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    .product_content {
        flex-direction: column;
    }
    .news_1 {
        flex-direction: column;
        gap: 20px;
    }
    .news_1_font {
        width: calc(100% - 56px);
        padding: 20px 29px;
    }
    .news_2_item  {
        flex-direction: column;
    }
    .product_d_head {
        flex-direction: column;
    }
    .product_d_head_img {
        width: 100%;
    }
    .product_d_head {
        gap: 30px;
    }
    .news_item_date {
        display: none;
    }
    .news_3_item {
     flex-direction: column;   
    }
    .news_3_item {
        width: 100%;
    }
    .news_3_item_date {
        display: none;
    }
    .news_2_item {
        gap: 28px;
        box-shadow: 0px 2px 15px 0px rgba(153,153,153,0.35);
        border-radius: 5px;
    }
    .news_item_title, .news_item_title {
        font-size: 18px;
        text-align: center;
        
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .news_item_remark {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .news_1_font {
        border-radius: 5px;
    }
    .news_1_img {
        border-radius: 5px;
        width: 100%;
        height: 320px;
        display: none;
    }
    .page_more p, .page_more a {
        font-size: 12px;
    }
    .page_more img {
        width: 8px;
        height: 8px;
    }
    .product_item_img a {
        width: 100%;
    }
    .product_item_img img {
        width: 100%;
    }
    .product_cat_item {
        padding: 0px;
    }
    .product_left {
        flex-direction: row;
        gap: 28px;
        overflow-x: scroll;
        padding-bottom: 28px;
        width: 100%;
        /* 隐藏 Firefox 的滚动条 */
        scrollbar-width: none; 
        
        /* 隐藏 IE 和 Edge 的滚动条 */
        -ms-overflow-style: none;
    }
    .product_d_remark h2 {
        font-size: 22px;
    }
    .product_button {
        display: flex;
        justify-content: center;
    }
    /* 隐藏 Chrome, Safari, Opera 的滚动条 */
    .product_left::-webkit-scrollbar {
        display: none;
    }
    .product_cat_item {
        background-color: initial;
    }
    .product_left p {
        white-space: nowrap;
    }
    .product_left a:after {
        width: 0px;
        height: 4px;
        top: initial;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    .product_left .active:after {
        width: 40px;
        height: 4px;
    }
    .innerrtitle {
        padding: 34px 28px;
    }
    .homePg4 .cat-thumb  {
        flex-direction: column;
    }
    .newsList {
        flex-direction: column;
        gap: 24px;
    }
    .newsList_title {
        margin-top: 60px;
        text-align: center;
    }
    .news_detail_title h1 {
        padding-top: 60px;
        font-size: 30px;
    }
    .newsList_item  {
        width: 100%;
    }
    .ab_bottom .ab_num {
        font-size: 22px;
    }
    .ab_bottom ul li p {
        font-size: 14px;
    }
    .ab_con {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .ab_more {
        display: none;
    }
    .newsList_item_img {
        height: auto;
    }
    .newList_item_remark {
        line-height: 20px;
        
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .newsList_item_content {
        height: 120px;
    }
    .ab_bottom ul li {
        width: calc((50% - 32px - 17px));
        padding: 16px;
    }
    .news_3_item_title, .news_3_item_title a {
        font-size: 22px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .news_3_item {
        box-shadow: 0px 2px 5px 0px rgba(153,153,153,0.35);
        border-radius: 5px;
        padding: 28px;
    }
    .news_3_item_remark {
        margin-top: 12px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .news_2_item img {
        width: 100%;
    }
    .main_container {
        padding-top: 0px;
    }
    .contact_item_title {
        margin-top: 16px;
        margin-bottom: 6px;
    }
    .contact_itme_remark {
        font-size: 14px;
    }
    .newList_item_title, .newList_item_title a {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .banner-info h3 {
        font-size: 32px;
    }
    .banner-info p {
        font-size: 12px;
    }
    .product_item {
        width: 100%;
    }
}
@media screen and (max-width: 468px) {
    .banner-info h3 {
        font-size: 20px;
    }
    .banner-info p {
        font-size: 10px;
    }
}


@media screen and (max-width: 999px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .homePg2 .ab_bottom {
        width: initial;
    }
}




/*分页*/
.pagebar {
    padding: 20px;
    overflow: hidden;
    clear: both
}

.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    align-items: center;
}

.pagination a {
    color: #666666;
    background: #fff;
    font-size: 12px;
    padding: 8px 10px;
    margin: 0 2px;
    border-radius: 3px;
    line-height: 100%
}

.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}

.pagination a:hover {
    color: #333;
}

.pagination a.page-num-current {
    color: #fff;
    background: #333;
    border: 1px solid #333;
}

.pagination .st { 
    font-family: 宋体;
}