* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, "PingFang SC", "Microsoft Yahei", sans-serif;
  font-size: 14px;
}

/* 图片默认宽度100% */
img {
  width: 100%;
}

/* 定义变量 */
:root {
  --primary-color: #ff434f;
  --text-color-lightest: #e7e9ec;
  --text-color-darker: #2e2e2e;
  --text-color-dark: #494949;
  --text-color-gray: #8b8b8b;
  --text-color-dark-gray: #727272;
  --text-color-white: #ffffff;
}

/* ============= 头部================== */

/* 头部 */
header {
  width: 100vw;
  height: 80px;
  /* 栅格布局 */
  display: grid;
  padding: 0 40px;

  /* 两列，一列占三分之一，一列占三分之二 */
  grid-template-columns: 1fr 2fr;
  /* 垂直居中 */
  align-items: center;
  /* 用于定位导航菜单 */
  position: relative;
  z-index: 200;
}

.head__shadow {
  height: 80px;
}

/* logo */
.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color-lightest);
  text-wrap: nowrap;
}

/* 导航 */
header nav {
  /* 水平靠右对齐 */
  justify-self: end;
}

/* 导航链接 */
header nav a {
  color: var(--text-color-lightest);
  text-decoration: none;
  margin: 0 24px;
}

/* 搜索图标 */
header nav i {
  color: var(--text-color-lightest);
}

/* 折叠菜单 */
header .burger {
  display: none;
}

/* 页面下滑时固定导航，背景设置为白色 */
header.sticky {
  position: fixed;
  background-color: white;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  animation: dropDown 0.5s ease-in-out forwards;
}

/* 固定导航文字颜色为黑色 */
header.sticky .logo,
header.sticky nav a,
header.sticky nav i {
  color: var(--text-color-darker);
}

/* 固定导航下滑动画 */
@keyframes dropDown {
  from {
    transform: translateY(-100px);
  }

  to {
    transform: translateY(0);
  }
}

/* ============= 轮播 ================== */
.glide {
  /* 定位标题和图片 */
  position: relative;
  /* 放置在最下层 */
  z-index: 50;
}

/* 轮播的图片和视频的大小 */
.glide__slide img {
  object-fit: cover;
  width: 100vw;
  /* height: 100vh; */
}

/* 轮播的布局 */
.glide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 轮播标题容器 */
.slide-caption {
  position: absolute;
  /* 放置在遮罩上层 */
  z-index: 70;
  color: var(--text-color-lightest);
  text-align: center;
  /* max-width: 70vw; */
  max-width: 90vw; 

   display: flex;
    flex-direction: column;
    height: 100%;

}

/* 轮播标题默认不显示，在JS中用动画移入  */
.slide-caption>* {
  opacity: 0;
}

/* 轮播标题中的主标语 */
.slide-caption h1 {
  font-size: 54px;
  font-weight: 600;
  margin-top: 12px;
}

/* 轮播标题中的副标语 */
.slide-caption h3 {
  font-size: 36px;
  /* margin: 38px 0; */

      flex: 1;
    align-content: center;
     
}

.slide-caption ul li {
  font-size: 24px;
  margin: 16px 0;
  text-align: left;
}

/* 第二页轮播标题布局方式 */
.slide-caption.left {
  max-width: 80vw;
  text-align: left;
}

/* 轮播遮罩层 */
.backdrop {
  background: black;
  opacity: 0.2;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  /* 放置在幻灯片上层 */
  z-index: 60;
}

.glide__arrows,
.glide__bullets {
  z-index: 70;
}

/* 探索更多按钮 */
.explore-btn {
  padding: 14px 32px;
  background-color: var(--primary-color);
  border: 0;
  border-radius: 4px;
  color: var(--text-color-lightest);
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

/* ============= 内容区域 ================== */

/* 通用样式  */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 所有section都按grid布局 */
section {
  display: grid;
  /* 单元格都居中对齐 */
  justify-items: center;
  max-width: 1380px;
  /* padding: 0 80px; */
}

/* 区域大标题 */
.title1 {
  /* justify-self: center; */
  /* position: relative; */
  font-size: 34px;
  color: var(--text-color-darker);
}

/* 大标题下方红线 */
.title1::after {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  transform: translateX(10%);
  margin-top: 14px;
  background-color: var(--primary-color);
}

/* 大d标题下方简介 */
.intro {
  margin: 28px 0 60px 0;
  font-size: 18px;
  color: var(--text-color-dark-gray);
}

/* 区域背景色，因为区域有最大宽度限制，用before来设置占满浏览器宽度 */
.section-bg {
  position: relative;
}

.section-bg::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #f9fbfb;
  width: 100vw;
  height: 100%;
  z-index: -1;
}




/* ============主营范围==================== */
.company-service {
  margin-top: 18px;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  margin-top: 24px;
}

.service {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.01);
  padding: 24px;
  transition: 0.4s;
  border: 1px solid #dedede;
  margin-top: 24px;
}

/* service的外边框为-24px */
/* 所以若想图片占满每一个部分，需要设置margin */
.act-image-wrapper {
  height: 255px;
  overflow: hidden;
  /* 下为设置图片的样式 */
  margin: -24px;
  margin-bottom: 0;
}

.act-image-wrapper img {
  min-height: 300px;
  object-fit: cover;
}



.act-title {
  color: var(--text-color-dark);
  font-size: 24px;
  margin: 16px 0px;
  user-select: none;
}

.art-text {
  user-select: none;
}

.service article {
  color: var(--text-color-gray);
  letter-spacing: 0.54px;
  line-height: 24px;
}

.read-more-btn {
  border: 0;
  color: white;
  background-color: var(--primary-color);
  border-radius: 4px;
  padding: 6px 14px;
  margin-top: 24px;
}

.service:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 20px 20px 36px rgba(0, 0, 0, 0.2);
}


.search {
  margin-top: 48px;
}

.fake-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 600px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  user-select: none;
  margin-top: 24px;
}

.fake-item {

  flex: 1;
  height: 100%;
  align-content: space-evenly;

  padding: 5px;
  /* background-color: #f9f9f9; */

  font-size: 16px;
  color: var(--text-color-dark);

  box-sizing: border-box;
  display: inline-block;
  padding: 0px 24px;
}

.fake-button {
  height: 100%;
  background-color: var(--primary-color);
  width: 90px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-white);
}




/* ============= 底部区域 ================== */
/* 底部 */
footer {
  margin-top: 124px;
  background-color: #181818;
  color: white;
  display: grid;
  /* justify-items: center; */
  padding-bottom: 24px;
  padding-right: 12px;
  padding-top: 12px;
  width: 100%;
  justify-items: end;
}



/* 导航菜单，靠右对齐 */
.footer-menu {
  justify-self: end;
}

.foot-us{
  
}

/* 一级菜单 */
.menu-title {
  font-size: 16px;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-us {
  color: white;
}

/* 联系我们，靠左对齐 */
.qrcode {
  justify-self: start;
  color: var(--text-color-lightest);
}



/* 备案信息 */
.icp-info {
  margin-top: 24px;
  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: space-around;
  align-items: baseline;
}

a {
  color: white;
  text-decoration: none
}

.rights {
  color: white;
  text-align: center;
}





/* 自适应，小于1100象素时 */
@media (max-width: 1100px) {

  /* 导航设置为不可见，点击折叠按钮显示全屏导航 */
  header nav {
    display: none;
  }

  /* 头部平分两列布局 */
  header {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 折叠菜单样式，显示出来 */
  header .burger {
    display: block;
    justify-self: end;
    cursor: pointer;
    position: relative;
    /* width: 20px;
    height: 6px; */
  }

  /* 导航按钮 */
  .burger-icon {
    font-size: 20px;
    color: var(--text-color-lightest);
    /* position: relative; */
  }

  /* 全屏导航展开时，折叠按钮设置为深色 */
  header.open .burger-icon,
  header.sticky .burger-icon {
    color: var(--text-color-darker);
    transition: 0.4s ease;
  }



  /* 全屏导航显示时，logo样式 */
  header.open .logo {
    color: var(--text-color-darker);
    z-index: 40;
  }

  /* 全屏导航显示时，导航菜单样式 */
  header.open nav {
    display: grid;
    /* 每行高度为内容的高度，不设置会平分全屏高度 */
    grid-auto-rows: max-content;
    /* 菜单项靠右对齐 */
    justify-items: end;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    width: 100vw;
    /* height: 30vh; */
    padding: 20px 40px;
    opacity: 0;
    /* 下滑效果 */
    animation: slideDown 0.6s ease-out forwards;
  }



  /* 全屏导航显示时，导航菜单项样式和动画 */
  header.open nav>* {
    margin: 4px 0;
    font-size: 18px;
    color: var(--text-color-darker);
    opacity: 0;
    animation: showMenu 0.5s linear forwards 0.4s;
  }

  /* 搜索按钮 */
  header.open nav>i.fas {
    margin-top: 10px;
  }

  /* 导航下滑动画 */
  @keyframes slideDown {
    from {
      height: 0;
      opacity: 0;
    }

    to {
      /* height: 100vh; */
      padding-top: 80px;
      opacity: 1;
    }
  }

  /* 菜单项动画 */
  @keyframes showMenu {
    from {
      opacity: 0;
      transform: translateY(-1vh);
    }

    to {
      opacity: 1;
    }
  }

  /* 缩小业务流程标题字体 */
  .service-item .service-title {
    font-size: 20px;
  }

  /* 缩小业务流程内容字体和行距 */
  .service-item .service-content {
    font-size: 14px;
    line-height: 24px;
  }

  /* 团队成员改为两列 */
  .team-members {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6vw;
    row-gap: 36px;
  }


}

/* 小于992象素时 */
@media (max-width: 992px) {

  /* 轮播标题字号缩小  */
  .slide-caption h1 {
    font-size: 32px;
  }

  .slide-caption h3 {
    font-size: 44px;
    /* margin: 14px 0; */
  }

   .slide-caption ul li {
  font-size: 18px;
  }

  /* 关于我们和业务流程设置为两列布局 */
  .features,
  .services {
    grid-template-columns: repeat(2, 1fr);
    /* 取消两行布局 */
    grid-template-rows: unset;
  }

}

/* 小于768象素时 */
@media (max-width: 768px) {


  .glide__slide img {
    height: 30vh;
  }

  /* 区域的左右内边距设置为40象素 */
  section, .footer-menus {
    /* padding: 0 40px; */
  }

  .footer-menus {
    width: 100%;
  }


  /* 关于我们和业务流程设置为1列 */
  .features,
  .services {
    grid-template-columns: 1fr;
  }


  .fake-input {
    width: 500px;
    height: 50px;
  }

  .title1 {
    user-select: none;
    font-size: 28px;
  }


  /* 公司动态设置为1列 */
  .services {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  /* 成功案例图片显示为两列 */
  .showcases .case-item {
    width: calc(100vw / 2);
    height: 30vw;
  }

  .icp-info {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* 联系我们占前两列 */
  .contact-us {
    grid-row: 1 / 3;
  }

  /* 菜单文字靠右对齐 */
  .footer-menu {
    text-align: right;
  }
}

/* 小于576象素 */
@media (max-width: 576px) {


  /* 缩小轮播标题文字，探索更多按钮文字 */
  .slide-caption h1 {
    font-size: 24px;
  }

  .slide-caption h3 {
    /* margin: 18px 0; */
    font-size: 24px;
  }

  .slide-caption ul li {
  font-size: 14px;
  }



  header {
    padding: 0 20px;
  }

  .logo {
    font-size: 18px;
  }


  .fake-input {
    width: 280px;
    height: 40px;

  }

  .fake-item {
    font-size: 14px;
    padding: 0px 5px;
  }

  .fake-button {
    width: 60px;
    font-size: 16px;
  }

  .title1 {
    font-size: 24px;
  }


  .explore-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  /* 成功案例显示为1列 */
  .showcases .case-item {
    width: 100vw;
    height: 60vw;
  }




  /* 底部菜单左对齐 */
  .footer-menu {
    justify-self: start;
    text-align: left;
  }
}


.prod--foot{
      display: flex;
    align-items: baseline;
    justify-content: flex-start;
    padding: 0px 6px;
}

.prod--dec{
  color: gray;
      margin-left: 6px;
      white-space: nowrap;
}

#products_columns{
  display: flex;
  justify-content: space-between;
}

.product_column{
	flex: 1;
  margin: 0 5px; /* 列之间的间距 */
}


/* 单个商品卡片 */
.product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
      margin-top: 14px;
}

/* 图片容器 */
.prod--image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4; /* 可选：固定宽高比，如 3:4 */
  overflow: hidden;
}

.prod--image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持比例并裁剪填充 */
  display: block;
}

/* 标题和描述 */
.prod--title {
  font-size: 16px;
  font-weight: bold;
  margin: 12px 12px 6px;
}

.prod--text {
  font-size: 14px;
  color: #555;
  margin: 0 12px 12px;
}

.prod--price{
  font-weight: bold;
  color: #ff4a4a;
  white-space: nowrap;
}
.prod--price::before {
  content: "$";
  margin-right: 3px;
 
  font-size: 18px;
}

.price-integer {
  font-size: 18px;
  margin: 0px -3px;
}

.price-decimal {
  font-size: 14px;
  /* vertical-align: top; */
}
