﻿/* =========================
   Banner - Responsive Slider
   ========================= */

.banner-btnlinks{ position: absolute; left: 0; bottom: 70px; width: 100%; text-align: center;   z-index: 10; }
.banner-btnlinks a{transition: all .3s ease; height: 72px; line-height: 70px; border:1px solid #111111; border-radius:6px; padding: 0 25px; margin: 0 8px; font-size: 1.1rem;}
.banner-btnlinks a img{ margin-right: 10px; transition: all .3s ease;}

.banner-btnlinks a:hover{
    background:#0068BF;   /* 或换成你的品牌色 #D13E20 */
    color:#ffffff;
    border-color:#0068BF;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,.18);
}

/* 图标变白 */
.banner-btnlinks a:hover img{
    filter: brightness(0) invert(1);
}
.banner-btnlinks a:hover b{ color: #FFFFFF;}


.banner{
  position: relative;
  width: 100%;
  padding: 25px;            /* 你想要留白就保留；要满幅就改成 0 */
  overflow: hidden;
}

/* 关键：wrapper 自带高度（不写死） */
.banner-wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;

  /* ✅ 方案A：现代浏览器，按图片比例自动撑高 */
  aspect-ratio: 1872 / 985;
}

/* ✅ 方案B：兼容写法（不影响方案A），旧浏览器用 padding-top 撑高 */
@supports not (aspect-ratio: 1 / 1){
  .banner-wrapper{
    height: 0;
    padding-top: 52.62%; /* 985/1872 */
  }
}

/* 每一帧叠放 */
.banner-item{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}

.banner-item.active{
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* 图片铺满容器 */
.banner-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PC / Mobile 图片控制 */
.pcimg{ display: block !important; }
.moimg{ display: none !important; }

@media (max-width: 768px){
  .pcimg{ display: none !important; }
  .moimg{ display: block !important; }
  .banner{ margin-top:61px; }
   /* 移动端你可以让banner更“高”一点 */
  .banner-wrapper{ aspect-ratio: 4 / 6; }
  @supports not (aspect-ratio: 1 / 1){
    .banner-wrapper{ padding-top: 75%; }
  }
}


/* 文案层 */
.banner-item-info{
  position:absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 3;
  color:#fff;
}

/* 文案动效（进入时从下浮现） */
.banner-item-info b{ color: #FFFFFF;}
.banner-item-info b,
.banner-item-info p,
.banner-item-info a{
  opacity: 0;
  transform: translateY(26px);
  transition: .7s ease;
}

.banner-item.active .banner-item-info b{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .05s;
}

.banner-item.active .banner-item-info p{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

.banner-item.active .banner-item-info a{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}

/* 文字样式 */
.banner-item-info b{
  font-size: 3.2rem;
  line-height: 1.2;
  display:block;
}

.banner-item-info p{
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* 按钮 */
.banner-item-info a{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-top: 26px;
  background: #ffffff;
  color: #111;
  border-radius: 999px;
  height: 52px;
  padding: 0 44px;
  font-size: 1rem;
  text-decoration: none;
  transition: .25s ease;
}

.banner-item-info a:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.banner-item-info a i{
  color:#0068bf;
}

/* 左右按钮 */
.banner-prev,
.banner-next{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  cursor:pointer;
  z-index: 5;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  transition: .25s ease;
  user-select: none;
  font-size: 1.4rem;
}

.banner-prev{ left: 5%; }
.banner-next{ right: 5%; }



.banner-prev:hover,
.banner-next:hover{
  background: rgba(255,255,255,.24);
}

/* 圆点 */
.banner-dots{
  position:absolute;
  left:50%;
  bottom: 18px;
  transform: translateX(-50%);
  display:flex;
  gap: 10px;
  z-index: 5;
}

.banner-dots span{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor:pointer;
  transition: .25s ease;
}

.banner-dots span.active{
  width: 28px;
  background: #D13E20; /* 你的主色也可以换 */
}

/* 遮罩不拦截点击 */
.banner-item::after{
  pointer-events: none;
}


.home-brand{
    width: 100%;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

/* logo 容器 */
.home-brand a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 18px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

/* logo 图片 */
.home-brand a img{
    width: 100%;
    height: auto;
    transition: all .35s ease;
     filter: grayscale(0%) opacity(1);
   
}

/* 你原来的错位效果保留 */
.home-brand a:nth-child(1),
.home-brand a:nth-child(2),
.home-brand a:nth-child(7),
.home-brand a:nth-child(8){
    margin-top: -80px;
}

/* ======================
   Hover 效果
   ====================== */

.home-brand a:hover{
    transform: translateY(-10px);
  
}

.home-brand a:hover img{
    filter: grayscale(100%) opacity(.65);
    transform: scale(1.05);
}


.home-brand a:hover::after{
    opacity: 1;
}

.home-business{ width: 100%;}
.home-business-top{ width: 100%; height: 60px; background: url(../images/home-business.png) no-repeat center; background-size:cover;}

.home-business-bot{ width: 100%; height: auto; background: #daf3fe; padding-top: 30px;}

.home-business-title{  text-align: center; padding: 50px 240px;}
.home-business-title em{ display: inline-block;  background: #111111; color: #FFFFFF; border-radius:30px; margin-bottom: 15px; height: 36px; line-height: 36px; padding: 0 20px;}
.home-business-title h1{ font-size: 2.2rem; line-height: 48px;}
.home-business-title h1 span{ color: #33A1FF;}
.home-business-title h2{ font-size: 2.2rem; line-height: 48px;}
.home-business-title p{ margin-top: 25px; font-size: 1rem; color: #111111; line-height: 26px;}


.home-business-wrap{ overflow: hidden; padding-top: 50px;position: relative;}
/* 容器：用 relative 才能让 item 叠放 */
.home-business-list{
    position: relative;
    display: flex;
    margin-bottom: -50px;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    min-height: 520px;   /* 控制整体高度 */
    padding: 10px 0;
    z-index: 2;
}

/* 卡片通用 */
.home-business-item{                /* 卡片宽度 */
   width: 33.3%;
    border-radius: 26px;
    padding: 78px 58px 100px 58px; /* 顶部留更多空间给图标 */
    position: relative;
    box-shadow: 0 18px 45px rgba(10, 30, 70, .18);
    transform-origin: center;
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
    overflow: hidden;
}

/* 卡片顶部白色圆图标 */
.home-business-item em{
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.home-business-item h3 { margin-top: 30px;}
/* 标题 */
.home-business-item h3 a.buslinks1{
    margin: 26px 0 14px;
    font-size: 1.4rem;
    line-height: 38px;
    font-weight: 800; color: #111111;
    letter-spacing: .2px;
}
.home-business-item h3 a.buslinks1:hover{ text-decoration: underline;}

/* 右侧小装饰图（你现在是 i 里放 img，也可以继续用） */
.home-business-item h3 i{
    margin-left: 12px;
    display: inline-flex;
    vertical-align: middle;
    opacity: .95;
    transform: translateY(-2px);
}

/* 文案 */
.home-business-item p{
    margin: 0;
    font-size: 15px;
    line-height: 26px;
    opacity: .95;
    max-width: 92%;
}

/* 按钮 */
.home-business-item a.buslinks2{
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 26px;
    height: 46px;
    line-height: 46px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0,0,0,.10);
    transition: transform .25s ease, box-shadow .25s ease;
}
.home-business-item a.buslinks2 i{
    margin-left: 2px;
    font-size: 18px;
}
.home-business-item a.buslinks2:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

/* =========================
   三张卡片：颜色 + 倾斜叠放
   ========================= */

/* 左卡（浅蓝） */
.home-business-item:nth-child(1){
    background: #55B2FF;
    color: #0b1b2e;margin-top: 30px;
    transform: rotate(-7deg) translateX(34px);
    z-index: 1;
}

/* 中卡（白色） */
.home-business-item:nth-child(2){
    background: #ffffff;
    color: #0b1b2e;
    transform: rotate(0deg) translateY(-18px);
    z-index: 2;
    box-shadow: 0 26px 70px rgba(10, 30, 70, .22);
}

/* 右卡（深一些的蓝） */
.home-business-item:nth-child(3){
    background: #1FB0E8; 
    color: #0b1b2e; margin-top: 30px;
    transform: rotate(7deg) translateX(-34px);
    z-index: 3; margin-bottom: -80px;
}

/* 中卡按钮描边感（图里中间是描边按钮） */
.home-business-item:nth-child(2) a.buslinks2{
    background: #fff;
    border: 1.5px solid rgba(17,17,17,.6);
    box-shadow: none;
}
.home-business-item:nth-child(2) a.buslinks2:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0,0,0,.12);
}



/* hover：抬起更高级（保持叠放关系） */
.home-business-item:hover{
    filter: saturate(1.05);
}
.home-business-item:nth-child(1):hover{
    transform: rotate(-7deg) translateX(34px) translateY(-10px);
    box-shadow: 0 28px 70px rgba(10, 30, 70, .26);
}
.home-business-item:nth-child(2):hover{
    transform: rotate(0deg) translateY(-28px);
}
.home-business-item:nth-child(3):hover{
    transform: rotate(7deg) translateX(-34px) translateY(-10px);
    box-shadow: 0 28px 70px rgba(10, 30, 70, .26);
}



.home-about{ width: 100%; background: #0068bf; padding: 80px 0;}

.home-about-left{ width: calc(100% - 604px); padding-right: 140px;}
.home-about-left em{ display: inline-block; background: #FFFFFF; border-radius:30px; height: 36px; line-height: 36px; padding: 0 20px; margin-bottom: 15px;}
.home-about-left h2{ color: #FFFFFF; font-size: 2.2rem; line-height: 48px;}
.home-about-left h2 span{ color: #6DDFFD;}
.home-about-left p{ color: #FFFFFF; font-size: 1rem; line-height: 26px; margin-top: 25px;}


.home-about-left-list{ width: 100%; margin-top: 45px; gap: 20px; grid-template-columns: repeat(2, 1fr); /* 3 列 */  display: grid;}
.home-about-left-list dl{transition: transform .35s ease; width: 100%; cursor: pointer; background: url(../images/home-aboutdl.png) no-repeat center; background-size:cover; min-height: 106px; padding: 25px;}
.home-about-left-list dl:hover{transform: translateY(-5px);}
.home-about-left-list dl dt{ width: 40px; height: 40px;}
.home-about-left-list dl dd{ width: calc(100% - 40px); padding-left: 20px;}
.home-about-left-list dl dd b{ display: block; color: #FFFFFF; font-size: 1.2rem; line-height: 26px; height: 26px; overflow: hidden;}
.home-about-left-list dl dd i{ display: block; font-size: 0.8rem; color: #C3DBEC; height: 22px; line-height: 22px; overflow: hidden;}

.home-about-right{ width: 604px; height: auto;}



.home-products{ padding: 90px 0; background: #daf3fe;}
.home-products-title{}
.home-products-title-left{}
.home-products-title-left em{ display: inline-block; height: 36px; line-height: 36px; color: #FFFFFF; background: #111111; border-radius:30px; padding: 0 45px; margin-bottom: 20px;}
.home-products-title-left h2{ font-size: 2.2rem; line-height: 48px;}
.home-products-title-left h2 span{ color: #33A1FF;}

.home-products-title p{ max-width: 495px; font-size: 1rem; line-height: 26px;}

.home-products-title a{ display: inline-block; height: 52px; line-height: 52px; font-size: 1rem; padding: 0 50px; background: #FFFFFF; border-radius:30px;}
.home-products-title a i{ color: #33A1FF; margin-left: 10px;}
.home-products-title a:hover{ background: #33A1FF; color: #FFFFFF; box-shadow: 0 18px 34px rgba(0,0,0,.14);  transform: translateY(-2px);}
.home-products-title a:hover i{color: #FFFFFF;}

.home-products-list{gap: 25px; grid-template-columns: repeat(3, 1fr); /* 3 列 */  display: grid; margin-top: 50px;}


.home-products-item{ width: 100%; gap: 25px; grid-template-columns: repeat(1, 1fr); /* 3 列 */  display: grid;}

.home-products-item-info{ width: 100%; background: #FFFFFF; padding: 35px 40px; border-radius:30px;}
.home-products-item-info em{ display: inline-block; font-family: myFirstFont1; font-size: 1.3rem; color: #33A1FF; border-radius: 20px; padding: 0 30px; height: 40px; line-height: 40px; border: 1px solid #111111;}
.home-products-item-info a.homeprolinks1{ display: block; font-family: myFirstFont1; color: #111111; font-size: 1.2rem; margin-top: 20px; line-height: 32px; height: 32px; overflow: hidden;}
.home-products-item-info p{ line-height: 22px; height: 44px; overflow: hidden;}
.home-products-item-info a.homeprolinks2{ display: inline-block; line-height: 26px; margin-top: 15px;}
.home-products-item-info a.homeprolinks2 i{ color: #33A1FF; margin-left: 12px; font-size: 1.2rem;}


.home-products-item-pic{}
.home-products-item-pictop{ width: 100%; height:84px; background: #FFFFFF url(../images/homeprotop.jpg) no-repeat; background-size:cover;}
.home-products-item-picbot{ width: 100%; height: auto; background: #FFFFFF; border-radius:0 0 30px 30px; padding: 0 40px 35px 40px; text-align: center;}
.home-products-item-picbot a img{ max-width: 100%; height: auto;}

/* =========================
   Home Products - Hover Effect
========================= */

.home-products-item{
    transition: all .35s ease;
    position: relative;
}

/* 整体卡片上浮 */
.home-products-item:hover{
    transform: translateY(-8px);
}

/* info + 图片底部做整体阴影 */
.home-products-item-info,
.home-products-item-picbot{
    transition: all .35s ease;
}

.home-products-item:hover .home-products-item-info,
.home-products-item:hover .home-products-item-picbot{
    box-shadow: 0 15px 15px rgba(0,0,0,.12);
}

/* 顶部图片区域光效 */
.home-products-item-pictop{
    position: relative;
    overflow: hidden;
}

.home-products-item-pictop::after{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    transition: all .6s ease;
}

.home-products-item:hover .home-products-item-pictop::after{
    left: 100%;
}

/* 产品图片轻微放大 */
.home-products-item-picbot a img{
    transition: transform .4s ease;
}

.home-products-item:hover .home-products-item-picbot a img{
    transform: scale(1.05);
}

/* 标题变蓝 */
.home-products-item-info a.homeprolinks1{
    transition: all .3s ease;
}

.home-products-item:hover .home-products-item-info a.homeprolinks1{
    color: #33A1FF;
}

/* 箭头右移 */
.home-products-item-info a.homeprolinks2{
    transition: all .3s ease;
}

.home-products-item-info a.homeprolinks2 i{
    transition: all .3s ease;
}

.home-products-item:hover .home-products-item-info a.homeprolinks2 i{
    transform: translateX(6px);
}

/* 边框变蓝 */
.home-products-item:hover .home-products-item-info em{
    border-color: #33A1FF;
    color: #FFFFFF;
    background: #33A1FF;
    transition: all .3s ease;
}


.home-solution{ width: 100%; height: auto; background: url(../images/homesoubg.jpg) no-repeat center; background-size:cover; padding: 90px 0;}

.home-solution-title{}
.home-solution-left{ width: 33%;}
.home-solution-left em{ display: inline-block; height: 36px; line-height: 36px;  background: #FFFFFF; border-radius:30px; padding: 0 45px; margin-bottom: 20px;}
.home-solution-left h2{ font-size: 2.2rem; line-height: 48px; color: #FFFFFF;}
.home-solution-left h2 span{ color: #6DDFFD;}
.home-solution-left p{ font-size: 1rem; line-height: 26px; color: #FFFFFF; margin-top: 25px;}
.home-solution-left a{ display: inline-block; height: 52px; line-height: 52px; background: #FFFFFF; border-radius:30px; font-size: 1rem; padding: 0 50px; margin-top: 50px;}
.home-solution-left a i{ color: #33A1FF; margin-left: 12px; font-size: 1.2rem;}
.home-solution-left a:hover{ background: #33A1FF; color: #FFFFFF; box-shadow: 0 18px 34px rgba(0,0,0,.14);  transform: translateY(-2px);}
.home-solution-left a:hover i{color: #FFFFFF;}


.home-solution-right{ width: 58%; gap: 15px; grid-template-columns: repeat(5, 1fr); /* 3 列 */  display: grid;}

.home-solution-right-item{ width: 100%; height: 400px; border-radius: 16px; position: relative;    transition: height .35s ease, transform .35s ease, box-shadow .35s ease;}
.home-solution-right-item img{ width: 100%; height: 100%; object-fit: cover; border-radius: 16px; transition: transform .55s ease;}
.home-solution-right-item-info{ opacity: 0; transition: opacity .35s ease, visibility .35s ease; width: 100%; height: 100%; z-index: 333; position: absolute; left: 0; top: 0; border-radius: 16px; background: rgba(0,0,0,0.5);}
.home-solution-right-item-infobox{ width: 100%; text-align: center;}
.home-solution-right-item-infobox img{ width: 42px; height: 42px;}
.home-solution-right-item-infobox a.homesoulinks2{ color: #FFFFFF; display: block; line-height: 28px; margin-top: 10px;}

/* 鼠标移入：显示遮罩 + 高度变 500 + 轻微上浮阴影 */
.home-solution-right-item:hover{
    height: 500px;
    transform: translateY(-50px);
    box-shadow: 0 22px 46px rgba(0,0,0,.18);
}

.home-solution-right-item:hover .home-solution-right-item-info{
    opacity: 1;
    visibility: visible;
}



/* 内容进入动效（更有质感） */
.home-solution-right-item-infobox{
    transform: translateY(10px);
    transition: transform .35s ease;
}

.home-solution-right-item:hover .home-solution-right-item-infobox{
    transform: translateY(0);
}





.home-blog{ padding: 70px 0; background: #005caa;}



.home-blog-title{}
.home-blog-title-left{}
.home-blog-title-left h2{ color: #FFFFFF; font-size: 2.2rem; line-height: 54px;}
.home-blog-title-left h2 span{ color: #12C9FD;}
.home-blog-title-left p{ line-height: 32px; margin-top: 10px;  color: #FFFFFF; }

.home-blog-title a{ display: inline-block; height: 52px; line-height: 52px; background: #FFFFFF; border-radius:30px; font-size: 1rem; padding: 0 50px; }
.home-blog-title a i{ color: #33A1FF; margin-left: 12px; font-size: 1.2rem;}
.home-blog-title a:hover{ background: #33A1FF; color: #FFFFFF; box-shadow: 0 18px 34px rgba(0,0,0,.14);  transform: translateY(-2px);}
.home-blog-title a:hover i{color: #FFFFFF;}

/* ===============================
   BLOG LIST GRID
================================= */
.home-blog-list{
    margin-top: 45px;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}

/* ===============================
   BLOG CARD
================================= */
.home-blog-item{
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 6px 12px 1px rgba(0,48,119,0.08);
    border-radius:12px;
    overflow: hidden;
    transition: all .35s ease;
    position: relative;
}

/* 浮起效果 */
.home-blog-item:hover{
    transform: translateY(-8px);
    box-shadow: 0px 18px 35px rgba(0,48,119,0.15);
}

/* ===============================
   IMAGE
================================= */
.home-blog-item-pic{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.home-blog-item-pic img{
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

/* 图片放大 */
.home-blog-item:hover .home-blog-item-pic img{
    transform: scale(1.08);
}

/* ===============================
   CONTENT
================================= */
.home-blog-item-info{
    padding: 20px;
}

.home-blog-item-info a.homebloglinks1{
    display: block;
    font-size: 1.1rem;
    color: #111111;
    font-weight: bold;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    transition: color .3s ease;
}

/* 标题变品牌色 */
.home-blog-item:hover .homebloglinks1{
    color: #0A2986; /* 可换成你的品牌色 */
}

.home-blog-item-info p{
    margin-top: 10px;
    line-height: 26px;
    height: 26px;
    overflow: hidden;
    color: #666;
}

/* ===============================
   FOOTER TIME
================================= */
.home-blog-item-time{
    width: 100%;
    border-top:1px solid #EEEEEE;
    margin-top: 15px;
    height: 56px;
    line-height: 56px;
    position: relative;
}

/* 底部动态线条 */
.home-blog-item-time::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #0A2986;
    transition: width .4s ease;
}

.home-blog-item:hover .home-blog-item-time::after{
    width: 100%;
}

.home-blog-item-time a{
    color: #111111;
    font-size: 1rem;
    font-weight: bold;
}

.home-blog-item-time em{
    color: #999999;
    margin-left: 10px;
}


/* ===============================
   MAIL SECTION
================================= */
.home-mail{
    text-align: center;
    margin-top: 55px;
}

/* 标题 */
.home-mail h2{
    line-height: 56px;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 600;
}

.home-mail h2 span{
    color: #6DDFFD;
}

/* ===============================
   FORM WRAPPER
================================= */
.home-mail-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===============================
   INPUT
================================= */
.home-mail-box input{
    width: 329px;
    height: 50px;
    border-radius: 35px;
    background: rgba(255,255,255,0.08);
    border: 1px solid #C3DBEC;
    padding: 0 30px;
    color: #E7E7E9;
    font-size: 1rem;
    outline: none;
    transition: all .3s ease;
}

/* placeholder */
.home-mail-box input::placeholder{
    color: #E7E7E9;
}

/* focus 发光效果 */
.home-mail-box input:focus{
    border-color: #6DDFFD;
    box-shadow: 0 0 12px rgba(109,223,253,.5);
    background: rgba(255,255,255,0.15);
}

/* ===============================
   BUTTON
================================= */
.home-mail-box button{
    height: 50px;
    line-height: 50px;
    border: none;
    border-radius: 35px;
    font-weight: bold;
    padding: 0 35px;
    cursor: pointer;
    background:#FFFFFF;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

/* 按钮悬浮 */
.home-mail-box button:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,104,191,.35);
}

/* 点击按压 */
.home-mail-box button:active{
    transform: translateY(0px);
}


.footer-subscribe-form{

}

.subscribe-form-row{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-subscribe-form input[type="email"]{
    width:360px;
    max-width:100%;
    height:52px;
    padding:0 28px;
    border:none;
    border-radius:30px;
    background:#dfe5f1;
    color:#111;
    font-size:16px;
    outline:none;
}

.footer-subscribe-form input[type="email"]::placeholder{
    color:#666;
}

.footer-subscribe-form button{
    min-width:148px;
    height:52px;
    padding:0 28px;
    border:none;
    border-radius:30px;
    background:#fff;
    color:#111;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:all .25s ease;
}

.footer-subscribe-form button:hover{
    transform:translateY(-1px);
}

.subscribe-msg{
    min-height:24px;
    margin-top:12px;
    font-size:15px;
    line-height:24px;
    opacity:0;
    transform:translateY(6px);
    transition:all .25s ease;
    color:#fff;
}

.subscribe-msg.show{
    opacity:1;
    transform:translateY(0);
}

.subscribe-msg.success{
    color:#d8ffe2;
}

.subscribe-msg.exists,
.subscribe-msg.empty,
.subscribe-msg.invalid_email,
.subscribe-msg.invalid_nonce,
.subscribe-msg.db_error{
    color:#ffd6d6;
}


@keyframes subscribeBlink{
    0%{opacity:.25;}
    50%{opacity:1;}
    100%{opacity:.25;}
}



/* 移动端文字与按钮适配 */
@media (max-width: 1380px){
  .banner{ padding: 12px; }
.banner-btnlinks{ display: none;}
  .banner-item-info{
    left: 15%;
    width: 70%;
  }

  .banner-item-info b{
    font-size: 1.4rem;
  }

  .banner-item-info a{
    height: 46px;
    padding: 0 28px;
  }

  .banner-prev, .banner-next{
    width: 44px;
    height: 44px;
  }
  
  
  .home-brand{ display: none;}
  
.home-business-top{ display: none;}

.home-business-bot{padding-top: 20px;}

.home-business-title{  padding: 30px 0;}
.home-business-title h1{ font-size: 1.2rem; line-height: 30px;}
.home-business-title h2{ font-size: 1.2rem; line-height: 30px;}
.home-business-title p{ margin-top: 15px; font-size: 0.9rem; }

  
  
  .home-business-wrap{  padding-top: 0; padding-bottom: 30px;}
  
   .home-business-list{
        flex-direction: column;
        align-items: center; margin-bottom: 0;
        min-height: auto;
        gap: 18px;
    }
    .home-business-item{
    width: 100%; padding: 30px;
        transform: none !important;
    }
    .home-business-item:nth-child(1){ margin-top: 0;}
    .home-business-item:nth-child(2){ box-shadow: 0 18px 45px rgba(10, 30, 70, .18); }
     .home-business-item:nth-child(3){ margin-top: 0; margin-bottom: 0;}
  
  
 .home-about{ padding: 30px 0;}

.home-about-left{ width: 100%; padding-right: 0;}
.home-about-left h2{ color: #FFFFFF; font-size:1.3rem; line-height: 30px;}
.home-about-left p{  font-size: 0.9rem; line-height: 24px; margin-top: 15px;}


.home-about-left-list{ margin-top: 25px; gap: 10px; grid-template-columns: repeat(1, 1fr); /* 3 列 */  display: grid;}

.home-about-right{ width: 100%; height: auto; margin-top: 25px;}

 
  
  .home-products{ padding: 56px 0; }

  /* 标题区改为上下结构：文字在上，按钮在下 */
  .home-products-title{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .home-products-title-left em{
    height: 32px;
    line-height: 32px;
    padding: 0 28px;
    margin-bottom: 12px;
    border-radius: 999px;
  }

  .home-products-title-left h2{
    font-size: 1.3rem;
    line-height: 40px;
    margin: 0 0 8px 0;
  }

  .home-products-title p{
    max-width: 100%;
    font-size: .98rem;
    line-height: 26px;
  }

  /* 按钮：移动端建议更好点按，默认全宽 */
  .home-products-title a{
    width: 100%;
    text-align: center;
    height: 52px;
    line-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    box-sizing: border-box;
  }
  
  
   .home-products{
        padding: 60px 0;
    }

    .home-products-list{
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .home-products-item-info{
        padding: 28px 25px;
        border-radius: 24px;
    }

    .home-products-item-info em{
        font-size: 1rem;
        height: 34px;
        line-height: 34px;
        padding: 0 20px;
    }

    .home-products-item-info a.homeprolinks1{
        font-size: 1.1rem;
        margin-top: 16px;
    }

    .home-products-item-info p{
        font-size: .95rem;
        height: auto;
    }

    .home-products-item-pictop{
        height: 70px;
    }

    .home-products-item-picbot{
        padding: 0 25px 25px 25px;
        border-radius: 0 0 24px 24px;
    }
 
 
 .home-solution{ padding:30px 0;}

.home-solution{ width: 100%; height: auto; background: url(../images/homesoubg.jpg) no-repeat center; background-size:cover; padding: 90px 0;}


.home-solution-left{ width: 100%;}
.home-solution-left h2{ font-size: 1.3rem; line-height: 38px; color: #FFFFFF;}
.home-solution-left p{ margin-top: 15px;}
.home-solution-left a{  margin-top: 20px;}




  
   .home-solution-right{ width: 100%;
       grid-template-columns: repeat(2, 1fr); /* 3 列 */  margin-top: 30px;
        gap: 12px;
    }
    .home-solution-right-item{ height: 260px; }
    .home-solution-right-item:last-child{ display: none;}
    .home-solution-right-item:hover{ height: 260px; }

    .home-solution-right-item-infobox img{
        width: 38px;
        height: 38px;
    }
    .home-solution-right-item-infobox a.homesoulinks2{
        font-size: 1rem;
        line-height: 26px;
    }
}

/* 触屏设备：避免 hover 抖动；用点击/聚焦也能触发遮罩显示 */
@media (hover: none){
    .home-solution-right-item:hover{
        transform: none;
        box-shadow: none;
    }
    /* 支持 a 标签点一下出现遮罩：给 item 内部的链接获得焦点时显示 */
    .home-solution-right-item:focus-within .home-solution-right-item-info{
        opacity: 1;
        visibility: visible;
    }
    .home-solution-right-item:focus-within{
        height: 260px; /* 你也可以按需要改成 260/300 */
    }
  
  
  
  
 
.home-blog{ padding:30px 0; }




.home-blog-title-left{ width: 100%;}
.home-blog-title-left h2{  font-size: 1.3rem; line-height: 30px;}
.home-blog-title-left p{ line-height: 26px; margin-top: 5px;  color: #FFFFFF; }

.home-blog-title a{ margin-top: 30px;}


   .home-blog-list{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-blog-item-info{
        padding: 18px;
    }

    .home-blog-item-info a.homebloglinks1{
        font-size: 1rem;
        height: auto;
    }

    .home-blog-item-info p{
        height: auto;
        font-size: .9rem;
    }

    .home-blog-item-time{
        height: 48px;
        line-height: 48px;
        font-size: .9rem;
    }
    
   .home-mail{
        margin-top: 40px;
        padding: 0 15px;
    }

    .home-mail h2{
        font-size: 1.4rem;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .home-mail-box{
        flex-direction: column;
        gap: 15px;
    }

    .home-mail-box input{
        width: 100%;
    }

    .home-mail-box button{
        width: 100%;
    } 
      .subscribe-form-row{
        gap:14px;
    }

    .footer-subscribe-form input[type="email"]{
        width:100%;
    }

    .footer-subscribe-form button{
        width:100%;
    }

    .subscribe-msg{
        padding-left:2px;
        font-size:14px;
    }
  
}