*{box-sizing:border-box}body{margin:0;font-family:Arial,"Microsoft YaHei",sans-serif;color:#172033;background:#fff;line-height:1.7}.container{width:min(1200px,92%);margin:auto}a{text-decoration:none;color:inherit}.site-header{position:sticky;top:0;z-index:10;background:#fff;border-bottom:1px solid #e9eef5}.header-inner{height:72px;display:flex;align-items:center;justify-content:space-between}.logo{font-size:22px;font-weight:800;color:#0b5cab}.nav{display:flex;gap:22px;font-size:15px}.nav a:hover{color:#0b6bd3}.hero{min-height:520px;background:linear-gradient(90deg,#03162a,#0d4d88);color:#fff;background-size:cover;background-position:center}.hero-inner{padding:100px 0}.hero h1{font-size:46px;line-height:1.18;margin:0 0 22px;max-width:820px}.hero p{font-size:18px;max-width:850px;color:#e8f1ff}.tags{display:flex;flex-wrap:wrap;gap:12px;margin:26px 0}.tags span{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.25);padding:8px 14px;border-radius:999px}.btn{display:inline-flex;padding:12px 22px;border-radius:8px;margin-right:10px;font-weight:700}.btn.primary{background:#0b6bd3;color:#fff}.btn.ghost{border:1px solid rgba(255,255,255,.55);color:#fff}.section{padding:72px 0}.section.light{background:#f5f8fc}.section-title{text-align:center;margin-bottom:36px}.section-title h2{font-size:32px;margin:0 0 10px}.section-title p{color:#5a687d}.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.card{display:block;background:#fff;border:1px solid #e5ebf3;border-radius:14px;padding:24px;box-shadow:0 8px 24px rgba(15,40,80,.06);transition:.2s}.card:hover{transform:translateY(-3px);box-shadow:0 14px 32px rgba(15,40,80,.12)}.card img{width:100%;height:180px;object-fit:cover;border-radius:10px;margin-bottom:12px}.card h3{font-size:21px;margin:0 0 10px}.card p{color:#5d6878}.split{display:grid;grid-template-columns:1.2fr .8fr;gap:36px;align-items:center}.check-list{padding-left:20px}.adv-box{background:#08294f;color:#fff;border-radius:18px;padding:36px}.faq-wrap{display:grid;grid-template-columns:1fr 1fr;gap:40px}.faq-item{border-bottom:1px solid #e2e8f0;padding:18px 0}.article-link,.article-row{display:block;border-bottom:1px solid #e2e8f0;padding:18px 0}.page-hero{background:linear-gradient(90deg,#07213f,#0b6bd3);color:#fff;padding:76px 0}.page-hero h1{font-size:40px;margin:0 0 10px}.detail{max-width:920px}.detail-img{width:100%;max-height:420px;object-fit:cover;border-radius:16px;margin-bottom:24px}.content{font-size:17px;color:#29384e}.contact-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:40px}.form{background:#f5f8fc;border:1px solid #e2e8f0;border-radius:16px;padding:24px}.form input,.form textarea{width:100%;padding:13px 14px;border:1px solid #d7e0ea;border-radius:8px;margin-bottom:12px;font-size:15px}.form textarea{min-height:110px}.success{background:#e7f8ef;color:#087a3d;padding:12px;border-radius:8px;margin-bottom:12px}.site-footer{background:#071d37;color:#dce8f8;padding:42px 0}.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}.float-contact{position:fixed;right:18px;bottom:22px;z-index:20}.float-contact a{background:#0b6bd3;color:#fff;padding:14px 18px;border-radius:999px;box-shadow:0 10px 24px rgba(0,0,0,.22)}.page-content{background:#fff;border:1px solid #e5ebf3;border-radius:14px;padding:22px;margin-bottom:28px;color:#37465c}@media(max-width:900px){.nav{display:none}.hero h1{font-size:32px}.card-grid,.split,.faq-wrap,.contact-grid,.footer-grid{grid-template-columns:1fr}.section{padding:48px 0}}

/* CHILLER_HOME_BANNER_CAROUSEL_V1 */
.hero-carousel{
  position:relative;
  min-height:520px;
  background:#03162a;
  color:#fff;
  overflow:hidden;
}
.hero-slides{
  position:relative;
  min-height:520px;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background:linear-gradient(90deg,#03162a,#0d4d88);
  background-size:cover;
  background-position:center;
  transition:opacity .6s ease;
}
.hero-slide.active{
  opacity:1;
  pointer-events:auto;
  position:relative;
}
.hero-carousel .hero-inner{
  padding:100px 0;
  min-height:520px;
}
.hero-carousel h1{
  font-size:46px;
  line-height:1.18;
  margin:0 0 22px;
  max-width:820px;
}
.hero-carousel p{
  font-size:18px;
  max-width:850px;
  color:#e8f1ff;
}
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(0,0,0,.22);
  color:#fff;
  font-size:34px;
  line-height:38px;
  cursor:pointer;
}
.hero-arrow:hover{
  background:rgba(0,0,0,.42);
}
.hero-prev{
  left:24px;
}
.hero-next{
  right:24px;
}
.hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:28px;
  z-index:4;
  display:flex;
  justify-content:center;
  gap:10px;
}
.hero-dots button{
  width:11px;
  height:11px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.45);
  cursor:pointer;
}
.hero-dots button.active{
  background:#fff;
  width:28px;
  border-radius:999px;
}
@media(max-width:900px){
  .hero-carousel,
  .hero-slides,
  .hero-carousel .hero-inner{
    min-height:440px;
  }
  .hero-carousel .hero-inner{
    padding:70px 0;
  }
  .hero-carousel h1{
    font-size:30px;
  }
  .hero-carousel p{
    font-size:16px;
  }
  .hero-arrow{
    display:none;
  }
}

/* CHILLER_FIX_FULL_IMAGE_BANNER_V1 */
.full-image-carousel{
  width:100%;
  background:#061d38;
  overflow:hidden;
  min-height:auto !important;
}

.full-image-carousel .hero-slides{
  position:relative;
  width:100%;
  min-height:auto !important;
}

.full-image-carousel .hero-slide{
  display:none;
  position:relative !important;
  inset:auto !important;
  opacity:1 !important;
  pointer-events:auto !important;
  width:100%;
  background:none !important;
  min-height:auto !important;
  transition:none !important;
}

.full-image-carousel .hero-slide.active{
  display:block;
}

.full-image-carousel .hero-banner-img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1920 / 650;
  object-fit:cover;
  object-position:center center;
}

.full-image-carousel .hero-fallback{
  min-height:520px;
  display:flex;
  align-items:center;
  color:#fff;
  background:linear-gradient(90deg,#03162a,#0d4d88);
}

.full-image-carousel .hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
}

.full-image-carousel .hero-dots{
  bottom:18px;
}

@media(max-width:900px){
  .full-image-carousel .hero-banner-img{
    aspect-ratio:1920 / 650;
    min-height:180px;
    object-fit:cover;
  }
}

/* CHILLER_REAL_CAROUSEL_EFFECT_FINAL */
.full-image-carousel{
  position:relative;
  width:100%;
  background:#061d38;
  overflow:hidden;
  min-height:0 !important;
}

.full-image-carousel .hero-slides{
  position:relative;
  width:100%;
  min-height:0 !important;
}

.full-image-carousel .hero-slide{
  display:none;
  position:relative !important;
  width:100%;
  inset:auto !important;
  opacity:1 !important;
  pointer-events:auto !important;
  background:none !important;
  min-height:0 !important;
}

.full-image-carousel .hero-slide.active{
  display:block;
  animation:chillerHeroFade .45s ease both;
}

.full-image-carousel .hero-banner-img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1920 / 650;
  object-fit:cover;
  object-position:center center;
}

.full-image-carousel .hero-fallback{
  min-height:520px;
  display:flex;
  align-items:center;
  color:#fff;
  background:linear-gradient(90deg,#03162a,#0d4d88);
}

.full-image-carousel .hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.6);
  background:rgba(0,0,0,.28);
  color:#fff;
  font-size:36px;
  line-height:39px;
  text-align:center;
  cursor:pointer;
}

.full-image-carousel .hero-prev{
  left:22px;
}

.full-image-carousel .hero-next{
  right:22px;
}

.full-image-carousel .hero-arrow:hover{
  background:rgba(0,0,0,.5);
}

.full-image-carousel .hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
  z-index:20;
  display:flex;
  justify-content:center;
  gap:10px;
}

.full-image-carousel .hero-dots button{
  width:11px;
  height:11px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.58);
  cursor:pointer;
}

.full-image-carousel .hero-dots button.active{
  width:30px;
  background:#fff;
}

@keyframes chillerHeroFade{
  from{opacity:.38}
  to{opacity:1}
}

@media(max-width:900px){
  .full-image-carousel .hero-banner-img{
    min-height:180px;
    object-fit:cover;
  }

  .full-image-carousel .hero-arrow{
    display:none;
  }

  .full-image-carousel .hero-dots{
    bottom:10px;
  }
}

/* CHILLER_HEADER_NAV_EDIT_V1 */
.site-header{
  background:#fff;
  border-bottom:1px solid #e9eef5;
  box-shadow:0 4px 18px rgba(10,35,70,.04);
}

.logo{
  color:#0b5cab;
  font-weight:800;
  letter-spacing:.5px;
}

.nav a{
  position:relative;
  padding:24px 0;
  color:#172033;
}

.nav a.active,
.nav a:hover{
  color:#0b6bd3;
}

.nav a.active:after,
.nav a:hover:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:15px;
  height:2px;
  background:#0b6bd3;
  border-radius:99px;
}

/* CHILLER_LOGO_EFFECT_PRO_V1 */
.site-header{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  box-shadow:0 6px 24px rgba(5,35,75,.08);
}

.header-inner{
  height:78px;
}

.site-logo-pro{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
  padding:8px 2px;
  overflow:hidden;
}

.site-logo-pro .logo-mark{
  position:relative;
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:linear-gradient(135deg,#043b7a 0%,#0875dd 55%,#22b8ff 100%);
  box-shadow:
    0 10px 24px rgba(8,111,214,.28),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.site-logo-pro .logo-mark:before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(31,160,255,.95),rgba(255,255,255,.08),rgba(0,74,160,.85));
  z-index:-1;
  opacity:.8;
}

.site-logo-pro .logo-snow{
  color:#fff;
  font-size:21px;
  line-height:1;
  text-shadow:0 2px 8px rgba(0,0,0,.25);
  transform:translateY(-1px);
}

.site-logo-pro .logo-text{
  position:relative;
  display:inline-block;
  font-size:27px;
  line-height:1;
  font-weight:900;
  letter-spacing:.6px;
  background:linear-gradient(90deg,#06366f 0%,#075fbd 42%,#0aa7ff 72%,#05366d 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 8px 22px rgba(0,86,180,.16);
  white-space:nowrap;
}

.site-logo-pro .logo-text:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-9px;
  height:3px;
  border-radius:99px;
  background:linear-gradient(90deg,#075fbd,#28c7ff,rgba(7,95,189,0));
  box-shadow:0 0 14px rgba(18,143,255,.45);
}

.site-logo-pro .logo-shine{
  position:absolute;
  top:0;
  left:-45%;
  width:38%;
  height:100%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.65),transparent);
  opacity:0;
}

.site-logo-pro:hover .logo-shine{
  animation:logoShineMove 1.1s ease;
}

.site-logo-pro:hover .logo-mark{
  transform:translateY(-1px);
  box-shadow:
    0 14px 32px rgba(8,111,214,.34),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.site-logo-pro:hover .logo-text{
  filter:brightness(1.08);
}

@keyframes logoShineMove{
  0%{left:-45%;opacity:0}
  25%{opacity:.8}
  100%{left:115%;opacity:0}
}

@media(max-width:900px){
  .header-inner{
    height:66px;
  }

  .site-logo-pro{
    gap:9px;
  }

  .site-logo-pro .logo-mark{
    width:32px;
    height:32px;
    flex-basis:32px;
    border-radius:10px;
  }

  .site-logo-pro .logo-snow{
    font-size:18px;
  }

  .site-logo-pro .logo-text{
    font-size:21px;
    max-width:220px;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .site-logo-pro .logo-text:after{
    bottom:-7px;
    height:2px;
  }
}

/* CHILLER_HEADER_PRO_STYLE_V2 */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,252,255,.96));
  border-bottom:1px solid rgba(13,91,170,.14);
  box-shadow:0 10px 34px rgba(4,37,82,.10);
  backdrop-filter:blur(14px);
}

.site-header:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg,#003b7a,#0b80e8,#38c8ff,#0b80e8,#003b7a);
  opacity:.95;
}

.site-header:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(10,116,220,.55),transparent);
}

.header-inner{
  height:96px !important;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.site-logo-pro{
  transform:translateY(-1px);
}

.site-logo-pro .logo-mark{
  width:44px !important;
  height:44px !important;
  flex-basis:44px !important;
  border-radius:14px !important;
  background:
    radial-gradient(circle at 28% 22%,rgba(255,255,255,.65),transparent 28%),
    linear-gradient(135deg,#03346e 0%,#076fd8 55%,#25c5ff 100%) !important;
  box-shadow:
    0 14px 30px rgba(8,111,214,.32),
    inset 0 1px 0 rgba(255,255,255,.45) !important;
}

.site-logo-pro .logo-snow{
  font-size:24px !important;
}

.site-logo-pro .logo-text{
  font-size:30px !important;
  font-weight:900 !important;
  letter-spacing:.7px !important;
  background:linear-gradient(90deg,#052e65 0%,#075cb7 36%,#0b96ff 66%,#052e65 100%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  text-shadow:0 10px 24px rgba(0,83,175,.18) !important;
}

.site-logo-pro .logo-text:after{
  bottom:-12px !important;
  height:4px !important;
  background:linear-gradient(90deg,#064f9f,#24c7ff,rgba(36,199,255,0)) !important;
  box-shadow:0 0 18px rgba(28,166,255,.55) !important;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px !important;
  height:100%;
}

.nav a{
  position:relative;
  display:flex;
  align-items:center;
  height:44px;
  padding:0 16px !important;
  border-radius:999px;
  color:#071d37 !important;
  font-size:16px;
  font-weight:700;
  letter-spacing:.2px;
  transition:all .22s ease;
}

.nav a:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:linear-gradient(135deg,rgba(11,107,211,.12),rgba(56,200,255,.08));
  opacity:0;
  transition:opacity .22s ease;
}

.nav a:after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:3px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,#075fbd,#29c7ff);
  opacity:0;
  transform:scaleX(.35);
  transition:all .22s ease;
}

.nav a:hover,
.nav a.active{
  color:#075fbd !important;
  transform:translateY(-1px);
}

.nav a:hover:before,
.nav a.active:before{
  opacity:1;
}

.nav a:hover:after,
.nav a.active:after{
  opacity:1;
  transform:scaleX(1);
}

.nav a:hover{
  box-shadow:0 10px 22px rgba(8,111,214,.13);
}

@media(max-width:900px){
  .header-inner{
    height:74px !important;
  }

  .site-logo-pro .logo-mark{
    width:34px !important;
    height:34px !important;
    flex-basis:34px !important;
  }

  .site-logo-pro .logo-snow{
    font-size:19px !important;
  }

  .site-logo-pro .logo-text{
    font-size:22px !important;
    max-width:240px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .nav{
    display:none !important;
  }
}

/* CHILLER_HEADER_BG_SETTING_V1 */
.site-header.has-custom-header-bg{
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
}

.site-header.has-custom-header-bg .header-inner{
  position:relative;
  z-index:2;
}

.site-header.has-custom-header-bg .nav a{
  text-shadow:0 1px 0 rgba(255,255,255,.45);
}

.site-header.has-custom-header-bg .site-logo-pro .logo-text{
  text-shadow:0 10px 24px rgba(0,83,175,.12);
}

/* CHILLER_PRODUCT_IMAGE_SQUARE_V1 */
.card-grid .card img{
  aspect-ratio:1 / 1;
  height:auto !important;
  max-height:220px;
  object-fit:contain !important;
  object-position:center center !important;
  background:#fff;
}

.card-grid .card{
  display:flex;
  flex-direction:column;
}

.card-grid .card h3{
  margin-top:8px;
}

.card-grid .card p{
  flex:1;
}

/* CHILLER_PRODUCT_IMAGE_SQUARE_V1 */
.card-grid .card img{
  aspect-ratio:1 / 1;
  height:auto !important;
  max-height:220px;
  object-fit:contain !important;
  object-position:center center !important;
  background:#fff;
}

.card-grid .card{
  display:flex;
  flex-direction:column;
}

.card-grid .card h3{
  margin-top:8px;
}

.card-grid .card p{
  flex:1;
}

/* CHILLER_PRODUCTS_SQUARE_ALL_FINAL */
.product-grid-pro,
.card-grid{
  align-items:stretch;
}

.product-card-pro{
  display:flex !important;
  flex-direction:column !important;
  min-height:420px !important;
  padding:26px !important;
  border-radius:18px !important;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%) !important;
  border:1px solid rgba(16,88,160,.14) !important;
  box-shadow:0 12px 34px rgba(8,45,90,.07) !important;
  overflow:hidden !important;
}

.product-card-pro:hover{
  transform:translateY(-5px) !important;
  border-color:rgba(11,107,211,.28) !important;
  box-shadow:0 18px 46px rgba(8,45,90,.14) !important;
}

.product-card-pro .product-img-box{
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  height:auto !important;
  max-height:230px !important;
  min-height:210px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 0 20px !important;
  padding:14px !important;
  border-radius:16px !important;
  background:linear-gradient(180deg,#f8fbff,#ffffff) !important;
  border:1px solid rgba(215,224,234,.85) !important;
}

.product-card-pro .product-img-box img{
  display:block !important;
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
}

.product-img-empty{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#8a97aa;
  font-weight:700;
  border:1px dashed #cbd5e1;
  border-radius:12px;
  background:#f8fafc;
}

.product-card-pro h3{
  font-size:23px !important;
  line-height:1.35 !important;
  margin:0 0 12px !important;
  color:#071d37 !important;
  font-weight:900 !important;
}

.product-card-pro p{
  flex:1 !important;
  font-size:16px !important;
  line-height:1.8 !important;
  color:#5c6b80 !important;
  margin:0 0 18px !important;
}

.product-card-pro .product-card-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:max-content !important;
  min-width:106px !important;
  height:38px !important;
  padding:0 18px !important;
  border-radius:999px !important;
  background:linear-gradient(90deg,#075fbd,#0b8fff) !important;
  color:#fff !important;
  font-size:14px !important;
  font-weight:800 !important;
  box-shadow:0 8px 18px rgba(11,107,211,.18) !important;
}

@media(max-width:900px){
  .product-card-pro{
    min-height:auto !important;
    padding:22px !important;
  }

  .product-card-pro .product-img-box{
    min-height:180px !important;
    max-height:210px !important;
  }

  .product-card-pro h3{
    font-size:21px !important;
  }
}

/* CHILLER_PRODUCT_DETAIL_1688_STYLE_V1 */
.p1688-wrap{
  background:#f5f7fa;
  padding:26px 0 70px;
}

.p1688-breadcrumb{
  display:flex;
  gap:8px;
  align-items:center;
  font-size:14px;
  color:#667085;
  margin-bottom:18px;
}

.p1688-breadcrumb a{
  color:#075fbd;
}

.p1688-breadcrumb em{
  font-style:normal;
  color:#344054;
}

.p1688-main{
  display:grid;
  grid-template-columns:520px 1fr;
  gap:32px;
  background:#fff;
  border-radius:18px;
  padding:24px;
  border:1px solid #e5ebf3;
  box-shadow:0 14px 40px rgba(8,45,90,.06);
}

.p1688-company-card{
  background:#f8fafc;
  border:1px solid #eef2f7;
  border-radius:12px;
  padding:16px 18px;
  margin-bottom:14px;
}

.p1688-company-card strong{
  display:block;
  color:#111827;
  font-size:19px;
  margin-bottom:6px;
}

.p1688-company-card span{
  display:block;
  color:#667085;
  font-size:14px;
  margin-bottom:10px;
}

.p1688-company-card div{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.p1688-company-card b{
  font-size:13px;
  color:#344054;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:6px;
  padding:5px 8px;
}

.p1688-image-box{
  width:100%;
  aspect-ratio:1 / 1;
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
  overflow:hidden;
}

.p1688-image-box img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
}

.p1688-empty{
  width:100%;
  height:100%;
  border:1px dashed #cbd5e1;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#98a2b3;
  font-weight:700;
}

.p1688-right h1{
  margin:0 0 16px;
  font-size:24px;
  line-height:1.45;
  color:#111827;
  font-weight:900;
}

.p1688-badge{
  display:inline-flex;
  align-items:center;
  height:24px;
  padding:0 8px;
  margin-right:8px;
  border-radius:4px;
  background:#ff6a00;
  color:#fff;
  font-size:14px;
  vertical-align:2px;
}

.p1688-price-line{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:18px 0;
  border-bottom:1px solid #eef2f7;
}

.p1688-price-line span{
  color:#667085;
}

.p1688-price-line strong{
  color:#ff3b00;
  font-size:36px;
  line-height:1;
  font-weight:900;
}

.p1688-price-line em{
  color:#98a2b3;
  font-style:normal;
}

.p1688-service-line{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:10px;
  padding:18px 0 8px;
  color:#667085;
}

.p1688-service-line div{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.p1688-service-line b{
  color:#344054;
  background:#f8fafc;
  border:1px solid #e5ebf3;
  border-radius:8px;
  padding:6px 10px;
  font-size:14px;
}

.p1688-spec-block{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:10px;
  padding:16px 0;
}

.p1688-label{
  color:#667085;
  padding-top:8px;
}

.p1688-specs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.p1688-specs button{
  min-width:76px;
  height:38px;
  padding:0 14px;
  border:1px solid #d0d5dd;
  background:#fff;
  border-radius:4px;
  cursor:pointer;
  color:#344054;
}

.p1688-specs button.active,
.p1688-specs button:hover{
  border-color:#ff3b00;
  color:#ff3b00;
  background:#fff7f3;
}

.p1688-param-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:#eef2f7;
  border:1px solid #eef2f7;
  border-radius:12px;
  overflow:hidden;
  margin:12px 0 18px;
}

.p1688-param-mini div{
  background:#fbfcfe;
  padding:12px;
}

.p1688-param-mini span{
  display:block;
  color:#98a2b3;
  font-size:13px;
  margin-bottom:4px;
}

.p1688-param-mini strong{
  color:#344054;
  font-size:14px;
}

.p1688-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 28px;
}

.p1688-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  min-width:126px;
  padding:0 22px;
  border-radius:6px;
  font-weight:900;
}

.p1688-btn.main{
  background:#ff3b00;
  color:#fff;
}

.p1688-btn.outline{
  background:#fff;
  color:#ff3b00;
  border:1px solid #ff3b00;
}

.p1688-btn.light{
  background:#f2f4f7;
  color:#344054;
}

.p1688-supply{
  border-top:1px solid #eef2f7;
  padding-top:20px;
}

.p1688-supply h3{
  margin:0 0 8px;
  font-size:21px;
  color:#111827;
}

.p1688-supply p{
  color:#667085;
  margin:0 0 14px;
}

.p1688-supply div{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#f8fafc;
  border-radius:10px;
  padding:14px;
  gap:12px;
}

.p1688-supply span{
  color:#667085;
}

.p1688-supply b{
  color:#344054;
  margin-left:6px;
}

.p1688-detail-layout{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:24px;
  margin-top:24px;
}

.p1688-section{
  background:#fff;
  border:1px solid #e5ebf3;
  border-radius:16px;
  padding:28px;
  margin-bottom:20px;
}

.p1688-section h2{
  margin:0 0 20px;
  font-size:26px;
  color:#111827;
}

.p1688-param-table{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border:1px solid #eef2f7;
  border-radius:12px;
  overflow:hidden;
}

.p1688-param-table div{
  display:grid;
  grid-template-columns:130px 1fr;
  border-bottom:1px solid #eef2f7;
  border-right:1px solid #eef2f7;
}

.p1688-param-table span{
  background:#f8fafc;
  color:#667085;
  padding:12px;
}

.p1688-param-table strong{
  color:#344054;
  padding:12px;
  font-weight:700;
}

.p1688-content{
  color:#344054;
  font-size:17px;
  line-height:2;
}

.p1688-side{
  position:sticky;
  top:120px;
  height:max-content;
}

.p1688-side-card{
  background:#fff;
  border:1px solid #e5ebf3;
  border-radius:16px;
  padding:22px;
  margin-bottom:18px;
}

.p1688-side-card h3{
  margin:0 0 10px;
  color:#111827;
}

.p1688-side-card p{
  color:#667085;
  line-height:1.8;
}

.p1688-side-card a{
  display:flex;
  justify-content:center;
  align-items:center;
  height:40px;
  border-radius:6px;
  background:#075fbd;
  color:#fff;
  font-weight:800;
}

@media(max-width:1050px){
  .p1688-main,
  .p1688-detail-layout{
    grid-template-columns:1fr;
  }

  .p1688-image-box{
    max-width:560px;
    margin:auto;
  }

  .p1688-side{
    position:static;
  }
}

@media(max-width:700px){
  .p1688-main{
    padding:16px;
  }

  .p1688-param-mini,
  .p1688-supply div,
  .p1688-param-table{
    grid-template-columns:1fr;
  }

  .p1688-param-table div{
    grid-template-columns:110px 1fr;
  }

  .p1688-right h1{
    font-size:21px;
  }

  .p1688-price-line strong{
    font-size:30px;
  }
}

/* CHILLER_PRODUCT_IMAGES_5_10_V1 */
.product-gallery{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:14px;
  padding:18px;
}

.product-gallery-main{
  width:100%;
  aspect-ratio:1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  overflow:hidden;
  border-radius:12px;
}

.product-gallery-main img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
}

.product-gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:12px;
}

.product-gallery-thumbs button{
  aspect-ratio:1 / 1;
  padding:5px;
  border:1px solid #e5ebf3;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  overflow:hidden;
}

.product-gallery-thumbs button.active,
.product-gallery-thumbs button:hover{
  border-color:#ff3b00;
  box-shadow:0 0 0 2px rgba(255,59,0,.12);
}

.product-gallery-thumbs img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
}

.gallery-tip,
.detail-image-tip{
  color:#667085;
  font-size:14px;
  line-height:1.7;
  margin:12px 0 0;
}

.factory-service h3{
  color:#111827;
}

.product-detail-images img{
  display:block;
  width:100%;
  max-width:1100px;
  height:auto;
  margin:0 auto 18px;
  border-radius:12px;
  border:1px solid #eef2f7;
  background:#fff;
}

@media(max-width:700px){
  .product-gallery{
    padding:12px;
  }

  .product-gallery-thumbs{
    gap:7px;
  }
}

/* CHILLER_HOME_VISUAL_PREMIUM_V1 */
:root{
  --chiller-blue:#075fbd;
  --chiller-blue2:#0b8fff;
  --chiller-deep:#06264a;
  --chiller-cyan:#23c7ff;
  --chiller-orange:#ff4b12;
  --chiller-bg:#f3f7fc;
  --chiller-card:#ffffff;
  --chiller-text:#071d37;
  --chiller-muted:#5d6d82;
}

body{
  background:
    radial-gradient(circle at 12% 8%,rgba(35,199,255,.16),transparent 28%),
    radial-gradient(circle at 88% 18%,rgba(7,95,189,.14),transparent 30%),
    linear-gradient(180deg,#f7fbff 0%,#eef5fc 46%,#f7fbff 100%) !important;
  color:var(--chiller-text);
}

.section{
  position:relative;
  padding:76px 0 !important;
}

.section:nth-of-type(even){
  background:
    linear-gradient(135deg,rgba(7,95,189,.045),rgba(35,199,255,.035)),
    rgba(255,255,255,.42);
}

.section .section-title,
.section h2{
  position:relative;
  color:#071d37;
  font-weight:900;
  letter-spacing:.2px;
}

.section h2:after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  margin-top:14px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--chiller-blue),var(--chiller-cyan));
  box-shadow:0 0 18px rgba(35,199,255,.45);
}

.section p{
  color:var(--chiller-muted);
}

.page-content{
  border:1px solid rgba(7,95,189,.12) !important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.94),rgba(248,252,255,.94)) !important;
  box-shadow:0 14px 36px rgba(8,45,90,.06);
}

/* 首页产品，方案，案例卡片统一高级质感 */
.card-grid{
  gap:28px !important;
}

.card-grid .card{
  position:relative;
  border:1px solid rgba(7,95,189,.14) !important;
  background:
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%) !important;
  border-radius:22px !important;
  box-shadow:
    0 18px 46px rgba(8,45,90,.08),
    inset 0 1px 0 rgba(255,255,255,.8) !important;
  overflow:hidden !important;
  transition:all .25s ease !important;
}

.card-grid .card:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:5px;
  background:linear-gradient(90deg,#075fbd,#23c7ff,#075fbd);
  opacity:.85;
}

.card-grid .card:after{
  content:"";
  position:absolute;
  right:-48px;
  top:-48px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(35,199,255,.16),transparent 68%);
  pointer-events:none;
}

.card-grid .card:hover{
  transform:translateY(-8px) !important;
  border-color:rgba(11,143,255,.32) !important;
  box-shadow:
    0 26px 64px rgba(8,45,90,.16),
    0 0 0 1px rgba(35,199,255,.08) !important;
}

.card-grid .card h3{
  color:#061b35 !important;
}

.card-grid .card p{
  color:#5d6d82 !important;
}

/* 产品卡片图片背景更干净 */
.product-card-pro .product-img-box,
.card-grid .card img{
  background:
    radial-gradient(circle at 50% 38%,rgba(35,199,255,.11),transparent 38%),
    linear-gradient(180deg,#f8fbff,#ffffff) !important;
  border:1px solid rgba(213,226,240,.9) !important;
}

/* 首页按钮质感 */
.btn,
.product-card-btn,
.float-contact a{
  background:linear-gradient(135deg,#075fbd 0%,#0b8fff 55%,#23c7ff 100%) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:0 12px 26px rgba(7,95,189,.23) !important;
  font-weight:900 !important;
}

.btn:hover,
.product-card-btn:hover,
.float-contact a:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(7,95,189,.32) !important;
}

/* 首页模块底部询价浮层更高级 */
.float-contact{
  z-index:999;
}

.float-contact a{
  border-radius:999px !important;
  padding:14px 24px !important;
}

/* FAQ 和文章区域质感 */
.faq-list,
.article-list{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(7,95,189,.10);
  border-radius:22px;
  box-shadow:0 18px 46px rgba(8,45,90,.06);
  overflow:hidden;
}

.faq-item,
.article-item{
  border-bottom:1px solid rgba(226,235,245,.9) !important;
}

.faq-item:last-child,
.article-item:last-child{
  border-bottom:0 !important;
}

/* 首页选型引导块，如果存在 */
.selection-box,
.cta-box,
.home-selection{
  background:
    linear-gradient(135deg,rgba(6,38,74,.96),rgba(7,95,189,.92)),
    radial-gradient(circle at 85% 30%,rgba(35,199,255,.28),transparent 35%) !important;
  color:#fff !important;
  border-radius:26px !important;
  box-shadow:0 24px 68px rgba(6,38,74,.22) !important;
}

.selection-box h2,
.cta-box h2,
.home-selection h2,
.selection-box p,
.cta-box p,
.home-selection p{
  color:#fff !important;
}

/* 首页轮播下面过渡更自然 */
.chiller-carousel{
  box-shadow:0 18px 48px rgba(6,38,74,.14);
}

.chiller-carousel + .section,
.full-image-carousel + .section{
  padding-top:86px !important;
}

/* 顶部导航和首页更融合 */
.site-header{
  border-bottom:1px solid rgba(7,95,189,.12) !important;
}

/* 移动端优化 */
@media(max-width:900px){
  .section{
    padding:54px 0 !important;
  }

  .card-grid{
    gap:20px !important;
  }

  .card-grid .card{
    border-radius:18px !important;
  }
}

/* CHILLER_HOME_SUPER_PREMIUM_V2 */
body{
  background:
    linear-gradient(90deg,rgba(7,95,189,.035) 1px,transparent 1px),
    linear-gradient(180deg,rgba(7,95,189,.035) 1px,transparent 1px),
    radial-gradient(circle at 10% 8%,rgba(35,199,255,.20),transparent 28%),
    radial-gradient(circle at 90% 20%,rgba(7,95,189,.18),transparent 32%),
    linear-gradient(180deg,#f8fbff 0%,#edf5fc 46%,#f8fbff 100%) !important;
  background-size:
    38px 38px,
    38px 38px,
    auto,
    auto,
    auto !important;
}

/* 轮播和下方数据条衔接 */
.chiller-carousel,
.full-image-carousel{
  position:relative;
}

.chiller-carousel:after,
.full-image-carousel:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:80px;
  background:linear-gradient(180deg,transparent,rgba(6,38,74,.18));
  pointer-events:none;
  z-index:5;
}

/* 厂家实力数据条 */
.factory-strength-bar{
  position:relative;
  margin-top:0;
  padding:0;
  background:#06264a;
  box-shadow:0 18px 48px rgba(6,38,74,.20);
  overflow:hidden;
}

.factory-strength-bar:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%,rgba(35,199,255,.24),transparent 26%),
    radial-gradient(circle at 82% 10%,rgba(11,143,255,.18),transparent 30%),
    linear-gradient(90deg,rgba(255,255,255,.05),transparent 35%,rgba(255,255,255,.05));
  pointer-events:none;
}

.factory-strength-bar:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg,#075fbd,#23c7ff,#ff4b12,#23c7ff,#075fbd);
}

.strength-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}

.strength-item{
  position:relative;
  padding:30px 28px;
  color:#fff;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.14);
}

.strength-item:last-child{
  border-right:0;
}

.strength-item strong{
  display:block;
  font-size:38px;
  line-height:1;
  font-weight:1000;
  letter-spacing:.5px;
  background:linear-gradient(90deg,#ffffff,#78dfff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 12px 28px rgba(35,199,255,.18);
}

.strength-item span{
  display:block;
  margin-top:10px;
  color:rgba(255,255,255,.82);
  font-size:16px;
  font-weight:700;
}

/* 首页模块标题增强 */
.section h2{
  font-size:34px !important;
  line-height:1.28 !important;
}

.section h2:before{
  content:"";
  display:inline-block;
  width:10px;
  height:26px;
  margin-right:12px;
  border-radius:99px;
  vertical-align:-4px;
  background:linear-gradient(180deg,#23c7ff,#075fbd);
  box-shadow:0 0 18px rgba(35,199,255,.48);
}

/* 首页模块容器更高级 */
.section .container{
  position:relative;
}

.section .container:before{
  content:"";
  position:absolute;
  right:-40px;
  top:-35px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(35,199,255,.10),transparent 68%);
  pointer-events:none;
}

/* 产品卡片再升级 */
.product-card-pro,
.card-grid .card{
  isolation:isolate;
}

.product-card-pro:after,
.card-grid .card:after{
  content:"";
  position:absolute;
  inset:auto -40px -60px auto;
  width:170px;
  height:170px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(11,143,255,.16),transparent 68%);
  z-index:-1;
  transition:all .28s ease;
}

.product-card-pro:hover:after,
.card-grid .card:hover:after{
  transform:scale(1.25);
  background:radial-gradient(circle,rgba(35,199,255,.24),transparent 68%);
}

.product-card-pro .product-card-btn{
  background:linear-gradient(135deg,#ff4b12,#ff7a18) !important;
  box-shadow:0 10px 24px rgba(255,75,18,.22) !important;
}

.product-card-pro:hover .product-card-btn{
  box-shadow:0 16px 34px rgba(255,75,18,.32) !important;
}

/* 首页文字内容区域更像专业说明 */
.page-content{
  position:relative;
  padding:24px 28px !important;
  border-radius:18px !important;
  color:#38506d !important;
  line-height:1.9 !important;
}

.page-content:before{
  content:"";
  position:absolute;
  left:0;
  top:22px;
  bottom:22px;
  width:4px;
  border-radius:99px;
  background:linear-gradient(180deg,#075fbd,#23c7ff);
}

/* 文章和 FAQ 更像知识库 */
.article-list,
.faq-list{
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.84) !important;
}

.article-item,
.faq-item{
  transition:background .2s ease;
}

.article-item:hover,
.faq-item:hover{
  background:#f8fbff;
}

/* 联系询价浮动按钮增强 */
.float-contact a{
  background:linear-gradient(135deg,#ff3b00,#ff7a18) !important;
  box-shadow:0 18px 38px rgba(255,59,0,.28) !important;
}

/* 页脚更稳重 */
.site-footer{
  background:
    radial-gradient(circle at 15% 20%,rgba(35,199,255,.12),transparent 28%),
    linear-gradient(135deg,#041b35,#06264a 58%,#031426) !important;
  color:rgba(255,255,255,.78) !important;
  border-top:3px solid #0b8fff;
}

.site-footer h3{
  color:#fff !important;
}

/* 移动端 */
@media(max-width:900px){
  .strength-inner{
    grid-template-columns:repeat(2,1fr);
  }

  .strength-item{
    padding:24px 16px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }

  .strength-item strong{
    font-size:30px;
  }

  .section h2{
    font-size:28px !important;
  }
}

@media(max-width:520px){
  .strength-inner{
    grid-template-columns:1fr;
  }

  .strength-item{
    border-right:0;
  }
}

/* CHILLER_HOME_LAYOUT_PREMIUM_FINAL_V1 */
body{
  background:#eef5fc !important;
}

.premium-strength{
  position:relative;
  z-index:20;
  margin-top:-34px;
  padding:0 0 28px;
}

.premium-strength-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(135deg,#041b35,#063d78 58%,#075fbd);
  box-shadow:0 24px 70px rgba(4,27,53,.24);
  border:1px solid rgba(255,255,255,.14);
}

.strength-card{
  position:relative;
  padding:30px 28px;
  color:#fff;
  border-right:1px solid rgba(255,255,255,.13);
}

.strength-card:last-child{
  border-right:0;
}

.strength-card:before{
  content:"";
  position:absolute;
  right:-50px;
  top:-50px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(35,199,255,.22),transparent 68%);
}

.strength-card strong{
  display:block;
  font-size:42px;
  line-height:1;
  font-weight:1000;
  background:linear-gradient(90deg,#fff,#6fe3ff);
  -webkit-background-clip:text;
  color:transparent;
}

.strength-card span{
  display:block;
  margin-top:12px;
  font-size:18px;
  font-weight:900;
}

.strength-card p{
  margin:8px 0 0;
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.premium-selector{
  padding:54px 0 76px;
}

.premium-selector-inner{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:34px;
  align-items:center;
  border-radius:30px;
  padding:46px;
  background:
    radial-gradient(circle at 85% 20%,rgba(35,199,255,.20),transparent 36%),
    linear-gradient(135deg,#ffffff,#f7fbff);
  border:1px solid rgba(7,95,189,.12);
  box-shadow:0 24px 70px rgba(8,45,90,.10);
}

.eyebrow,
.premium-title span{
  display:inline-flex;
  color:#0b8fff;
  font-size:13px;
  font-weight:1000;
  letter-spacing:1.8px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.selector-copy h2,
.premium-title h2{
  margin:0;
  color:#061b35;
  font-size:38px;
  line-height:1.24;
  font-weight:1000;
}

.selector-copy p,
.premium-title p{
  color:#53657d;
  font-size:17px;
  line-height:1.9;
  margin:18px 0 0;
}

.premium-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:50px;
  padding:0 26px;
  margin-top:26px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff3b00,#ff7a18);
  color:#fff;
  font-weight:1000;
  box-shadow:0 18px 38px rgba(255,59,0,.26);
}

.selector-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.selector-panel div{
  min-height:132px;
  border-radius:20px;
  padding:22px;
  background:linear-gradient(180deg,#06264a,#074987);
  color:#fff;
  box-shadow:0 18px 44px rgba(6,38,74,.18);
  border:1px solid rgba(255,255,255,.13);
}

.selector-panel span{
  display:block;
  color:#84dfff;
  font-weight:800;
  margin-bottom:12px;
}

.selector-panel strong{
  display:block;
  font-size:18px;
  line-height:1.6;
}

.premium-section{
  padding:84px 0;
  position:relative;
}

.premium-title{
  max-width:860px;
  margin-bottom:34px;
}

.premium-title.light h2,
.premium-title.light p{
  color:#fff;
}

.premium-products{
  background:linear-gradient(180deg,#f7fbff,#eef5fc);
}

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

.premium-product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(7,95,189,.13);
  box-shadow:0 20px 56px rgba(8,45,90,.09);
  transition:all .25s ease;
}

.premium-product-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(35,199,255,.10),transparent 34%);
  pointer-events:none;
}

.premium-product-card:hover{
  transform:translateY(-9px);
  box-shadow:0 30px 78px rgba(8,45,90,.18);
}

.premium-product-img{
  aspect-ratio:1/1;
  padding:30px;
  background:
    radial-gradient(circle at 50% 38%,rgba(35,199,255,.14),transparent 38%),
    linear-gradient(180deg,#f8fbff,#fff);
  display:flex;
  align-items:center;
  justify-content:center;
}

.premium-product-img img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.premium-product-info{
  padding:26px;
}

.premium-product-info h3{
  margin:0 0 12px;
  font-size:24px;
  color:#061b35;
  font-weight:1000;
}

.premium-product-info p{
  color:#5d6d82;
  line-height:1.8;
  margin:0 0 20px;
}

.premium-product-info em{
  display:inline-flex;
  height:38px;
  align-items:center;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#075fbd,#23c7ff);
  color:#fff;
  font-style:normal;
  font-weight:900;
}

.premium-solutions{
  background:
    radial-gradient(circle at 82% 20%,rgba(35,199,255,.24),transparent 34%),
    linear-gradient(135deg,#041b35,#06264a 58%,#074987);
}

.premium-solution-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.premium-solution-card{
  min-height:210px;
  padding:26px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  box-shadow:0 18px 44px rgba(0,0,0,.16);
  transition:all .25s ease;
}

.premium-solution-card:hover{
  transform:translateY(-7px);
  background:rgba(255,255,255,.13);
}

.premium-solution-card span{
  color:#7de1ff;
  font-weight:900;
}

.premium-solution-card h3{
  color:#fff;
  font-size:23px;
  margin:18px 0 12px;
}

.premium-solution-card p{
  color:rgba(255,255,255,.78);
  line-height:1.8;
}

.premium-advantages{
  background:#f7fbff;
}

.premium-adv-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.premium-adv-card{
  position:relative;
  padding:30px 24px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(7,95,189,.12);
  box-shadow:0 18px 48px rgba(8,45,90,.08);
}

.premium-adv-card b{
  display:block;
  font-size:34px;
  color:rgba(7,95,189,.16);
  margin-bottom:18px;
}

.premium-adv-card h3{
  font-size:22px;
  color:#061b35;
  margin:0 0 12px;
}

.premium-adv-card p{
  color:#5d6d82;
  line-height:1.8;
}

.premium-case-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.premium-case-card{
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 18px 48px rgba(8,45,90,.08);
  border:1px solid rgba(7,95,189,.12);
}

.premium-case-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.premium-case-card div{
  padding:24px;
}

.premium-case-card h3{
  margin:0 0 10px;
  color:#061b35;
}

.premium-case-card p{
  color:#5d6d82;
  line-height:1.8;
}

.premium-knowledge{
  background:
    linear-gradient(135deg,rgba(7,95,189,.06),rgba(35,199,255,.05)),
    #f7fbff;
}

.premium-knowledge-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
}

.premium-faq-list,
.premium-article-list{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(7,95,189,.12);
  box-shadow:0 18px 48px rgba(8,45,90,.08);
}

.premium-faq-item,
.premium-article-list a{
  display:block;
  padding:24px;
  border-bottom:1px solid #e8eef5;
}

.premium-faq-item:last-child,
.premium-article-list a:last-child{
  border-bottom:0;
}

.premium-faq-item h3,
.premium-article-list h3{
  color:#061b35;
  margin:0 0 10px;
}

.premium-faq-item p,
.premium-article-list p{
  color:#5d6d82;
  line-height:1.8;
  margin:0;
}

.premium-bottom-cta{
  padding:86px 0;
  text-align:center;
  background:
    radial-gradient(circle at 20% 20%,rgba(35,199,255,.20),transparent 32%),
    linear-gradient(135deg,#041b35,#075fbd);
  color:#fff;
}

.premium-bottom-cta h2{
  font-size:38px;
  margin:0 0 16px;
}

.premium-bottom-cta p{
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.8;
  margin:0 auto 28px;
  max-width:780px;
}

.premium-bottom-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:52px;
  padding:0 32px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff3b00,#ff7a18);
  color:#fff;
  font-weight:1000;
  box-shadow:0 18px 38px rgba(255,59,0,.30);
}

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

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

  .premium-selector-inner{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .premium-strength-inner,
  .premium-product-grid,
  .premium-solution-grid,
  .premium-adv-grid,
  .premium-case-grid,
  .premium-knowledge-grid,
  .selector-panel{
    grid-template-columns:1fr;
  }

  .premium-selector-inner{
    padding:28px;
  }

  .selector-copy h2,
  .premium-title h2,
  .premium-bottom-cta h2{
    font-size:29px;
  }

  .premium-section{
    padding:58px 0;
  }
}

/* FIX_STRENGTH_BAR_NOT_COVER_CAROUSEL_DOTS */
.premium-strength{
  position:relative !important;
  z-index:5 !important;
  margin-top:0 !important;
  padding:28px 0 34px !important;
  background:linear-gradient(180deg,rgba(238,245,252,.95),rgba(238,245,252,1)) !important;
}

.premium-strength-inner{
  position:relative !important;
  z-index:5 !important;
}

.factory-strength-bar{
  margin-top:0 !important;
}
