
* {
  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: #333333;
  --text-color-dark: #494949;
  --text-color-gray: #8b8b8b;
}

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

/* 头部 */
header {
  position: fixed;
  width: 100%;
  height: 80px;
  /* 栅格布局 */
  display: grid;
  padding: 0 17vw;
  background: #F8FBFE;
  /* 两列，一列占三分之一，一列占三分之二 */
  grid-template-columns: 1fr 2fr;
  /* 垂直居中 */
  align-items: center;
  /* 用于定位导航菜单 */
  position: relative;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.callphone {
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  font-family: "Alibaba PuHuiTi 2.0";
}
.callphone .phone-img {
  width: 34px;
}
/* 导航 */
header nav {
  /* 水平靠右对齐 */
  justify-self: end;
}

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

nav a.active {
  color: #ff6600; /* 激活状态颜色 */
  font-weight: bold; /* 激活状态加粗 */
}

/* 左上角logo */
header .logo-img {
  width: 40px;
  margin-top: 10px;
}

/* 折叠菜单 */
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;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* section 首页 ==============*/
/* 轮播的图片和视频的大小 */
.glide__slide img {
  object-fit: cover;
  width: 100%;
}

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

/* 轮播标题容器 */
.slide-caption2 {
  position: absolute;
  /* 放置在遮罩上层 */
  z-index: 70;
  color: #222;
  text-align: left;
  max-width: 60vw;
  left: 17vw;
}



.slide-caption2 h1 {
  font-size: 3vw;  /* 根据视口宽度自适应 */
  line-height: 1.2; /* 行高可根据需求调整 */
  color: #222;
}

.slide-caption2 h3 {
  font-size: 1.5vw; /* 根据视口宽度自适应 */
  line-height: 1.4; /* 行高可根据需求调整 */
  margin: 2vw 0 2vw 0;
  font-weight: 400;
  color: #333;
}

/* 探索更多按钮 */
.explore-btn {
  padding: 1vw 2vw;
  background: linear-gradient(90deg, #0199D9 0%, #01B4EB 100%);
  border: 0;
  border-radius: 4px;
  color: var(--text-color-lightest);
  font-size: 1vw;
  cursor: pointer;
  outline: none;
}
.home-item {
  background: url('/images/homeItemBgc.png');
  background-size: cover; /* 使背景图片覆盖整个元素 */
  background-repeat: center; /* 不重复背景图片 */
  background-position: center;
  position: absolute;
  bottom: -50px;
  z-index: 70;
  color: #222;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 99px;
  column-gap: 2vw;
  align-items: center;
  /* bottom: -52px; */
  width: 67vw;
  margin-top: -52px;
}
.homeItems {
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeItems img{
  width: 72px;
  height: 72px;
  object-fit: cover;
}
.homeItems span {
  color: #000;
  font-weight: 600;
}
/* ============= 内容区域 ================== */

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

/* 所有section都按grid布局 */
section {
  display: grid;
  /* 单元格都居中对齐 */
  justify-items: center;
  max-width: 1200px;
  /* padding: 0 80px; */
}
/* 不包含home */
section#home {
  display: grid;
  justify-items: center;
  max-width: 100%;
  padding: 0;
}

/* 区域大标题 */
.title1 {
  font-size: 36px;
  color: #222;
  font-family: Alibaba PuHuiTi 2.0;
  font-style: normal;
}


/* 大d标题下方简介 */
.intro {
  margin: 12px 0 80px 0;
  font-size: 16px;
  color: #000;
  font-family: PingFang SC;
  font-weight: 400;
}

.nav-link.active {
  color: #25A6E0;  /* 激活态的颜色 */
  font-weight: bold; /* 加粗 */
  position: relative;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -31px;  /* 横线位置 */
  width: 100%;
  height: 2px;  /* 横线高度 */
  background-color: #25A6E0;  /* 横线颜色 */
}



/* ============= 案例分享 ================== */
/* 区域 */
.caseBgc {
  background: url('/images/bgcImg/caseAndNewsBgc.png');
  background-size: cover; /* 使背景图片覆盖整个元素 */
  background-repeat: center; /* 不重复背景图片 */
  background-position: center;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -10px;
}
.cases {
  padding: 100px 0;
  box-sizing: border-box;
}
/* 所有服务 */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  column-gap: 38px;
  row-gap: 34px;
}

/* 案例分享 */
.caseItem {
  background-color: white;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 28px;
  display: grid;
  justify-items: center;
  transition: 0.4s;
}

/* 鼠标移过加动画 */
.caseItem:hover {
  transform: translateY(-4px) scale(1.05); 
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1); 
}
/* 案例分享照片遮罩 */
.caseItem-image {
  overflow: hidden;
}
/* 案例分享照片 */
.caseItem-image img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  object-position: top center;
}

/* 案例分享姓名 */
.caseItem .address {
  margin: 18px 0 0 32px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  width: 100%;
  text-align: left;
}

/* ============= 解决方案  ================== */
.solutionBgc {
  background: url('/images/bgcImg/solutionBgc.png');
  background-size: cover; /* 使背景图片覆盖整个元素 */
  background-repeat: center; /* 不重复背景图片 */
  background-position: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.solutions .intro {
  margin: 13px 0 24px 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: PingFang SC;
  font-style: normal;
}
/* 解决方案 */
.solutions {
  margin-top: 48px;
  padding-top: 62px;
  padding-bottom: 110px;
}
.solutionTab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 190px;
}
.solutionTab-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 居中对齐 */
  cursor: pointer;
  position: relative; /* 为伪元素提供相对定位 */
  padding-bottom: 15px; /* 为横线预留空间 */
}

/* 激活态样式 */
.solutionTab-item.active span {
  color: #02B3EB;
  opacity: 1;
}

/* 伪元素横线 */
.solutionTab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #02B3EB;
}
.solutionTab-item img {
  height: 84px;
}
/* 筛选 */ 
.filter-btns, .filter-btns2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列布局 */
  column-gap: 27px;
  margin-top: 38px;
  font-size: 16px;
}

/* 设置每个按钮为 flex 布局，以便居中内容 */
.filter-btns .filter-btn, .filter-btns2 .filter-btn2 {
  width: 172px;
  height: 55px;
  background-color: #fbfcfe;
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid #fff;
}
.filter-btn:hover, .filter-btn2:hover {
  box-shadow: 0px 0px 16px #01B0E8;
}
/* 激活按钮的样式 */
.filter-btn.active, .filter-btns2 .filter-btn2.active {
  background: linear-gradient(0deg, #01B0E8 0%, #01B0E8 100%), #FFF;
  color: #fff;
}

/* 设置图片的宽度，保持图片比例 */
.product-tab {
  width: 44px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 22px;
  row-gap: 22px;
}
.product4 .product-image {
  transition: 0.4s;
}
.product4 .product-image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}
/* 解决方案容器 */
.solutions-members {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 13px;
  margin-top: 86px;
}

/* 解决方案 */
.solutions-member {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.4s;
}

/* 解决方案照片遮罩 */
.profile-image {
  overflow: hidden;
  height: 551px;
}
/* 解决方案照片 */
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* 鼠标移过加动画 */
.solutions-member:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}
.maginTop {
  margin-top: 54px;
}
/* ============= 合作伙伴 ================== */

.partnersBgc {
  background: url('/images/bgcImg/partanerBgc.png');
  background-size: cover; /* 使背景图片覆盖整个元素 */
  background-repeat: center; /* 不重复背景图片 */
  background-position: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.partners {
  padding: 100px 0;
  box-sizing: border-box;
}
/* 所有服务 */
.partnersContent {
  display: grid;
  /* 同关于我们 */
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr;
  column-gap: 38px;
  row-gap: 34px;
}

/* 内容 */
.partnersItem {
  background-color: white;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  /* 鼠标移过会放大并上移 */
  transition: 0.4s;
  display: grid;
  justify-items: center;
}
/* 鼠标移过加动画 */
.partnersItem:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}
/* 合作伙伴照片遮罩 */
.partnersItem-image {
  overflow: hidden;
  height: 90px;
}
/* 合作伙伴照片 */
.partnersItem-image img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: top center;
}
/* ============= 关于我们 ================== */
.aboutCompanyBgc {
  background: url('/images/bgcImg/aboutBgc.png');
  background-size: cover; /* 使背景图片覆盖整个元素 */
  background-repeat: center; /* 不重复背景图片 */
  background-position: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.aboutCompany {
  padding: 100px 0;
  box-sizing: border-box;
}
/* 所有服务 */
.aboutCompanyContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  column-gap: 38px;
  row-gap: 34px;
}
.companyIntro {
  max-width: 511px;
}
.companyIntro p {
   margin-top: 13px;
   color: #333;
   font-size: 14px;
   line-height: 29px;
}
.companyIntro .companyTitle {
  max-width: 428px;
  margin-left: -12px;
}
.companyIntro img {
  width: 100%;
  height: 51px;
  object-fit: cover;
}
.experience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 38px;
  row-gap: 34px;
  margin-top: 6px;
}
.experience-item .num{
  font-size: 36px;
  font-weight: 700;
  font-family: "Helvetica";
  color: #333;
}
.experience-item .num span {
  font-size: 14px;
  font-weight: 400;
}
.experience-item .tip {
  font-weight: 400;
  font-size: 14px;
  color: #333;
}
.aboutCompanyImg{
  max-width: 581px;
}
.aboutCompanyImg img {
  width: 100%;
  height: 363px;
  object-fit: cover;
  object-position: top center;
}
/* ============= 新闻动态 ================== */
.newsAutoBgc {
  background: url('/images/bgcImg/caseAndNewsBgc.png');
  background-size: cover; /* 使背景图片覆盖整个元素 */
  background-repeat: center; /* 不重复背景图片 */
  background-position: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.newsAuto {
  padding: 100px 0;
  box-sizing: border-box;
}

.newsAutoContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  column-gap: 38px;
  row-gap: 34px;
  background-color: #fff;
  padding: 50px 35px 34px 33px;
  box-sizing: border-box;
}
.newsAutoImg{
  max-width: 581px;
  min-width: 545px;
  position: relative;
}
.newsAutoImg img {
  width: 100%;
  height: 318px;
  object-fit: cover;
  object-position: top center;
}
.dateFixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 73px;
  background-color: #01B0E8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dateFixed_day {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  line-height: 44px;
}
.dateFixed_date {
  font-size: 14px;
  color: #fff;
}
.newsLeftTitle {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 22px 0 5px 0;
}
.newsLeftTip {
  font-size: 14px;
  color: #000;
}
.lookDetail {
  padding: 9px 11px;
  font-size: 16px;
  color: #fff;
  margin-top: 30px;
}
.companyIntro {
  max-width: 511px;
}
.dateAuto {
  display: grid; 
  grid-template-columns: auto 1fr;
  padding: 29px 0;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.dateAuto:first-child {
  padding-top: 0;
}
.dateAuto:last-child {
  padding-bottom: 0;
  border: none;
}
.dateAutoLeft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 17px;
}
.dateAutoLeft_day {
  color: #2B2424;
  opacity: 0.6;
  font-size: 48px;
  font-weight: 400;
  line-height: 47px;
}
.dateAutoLeft_date {
  font-size: 14px;
  color: #2B2424;
  opacity: 0.6;
}
.newsAutoList {
  max-height: 400px;
  overflow-y: auto;
}
/* 自定义滚动条样式 */
.newsAutoList::-webkit-scrollbar {
  width: 8px; /* 滚动条的宽度 */
}

.newsAutoList::-webkit-scrollbar-track {
  background: #f1f1f1; /* 滚动条轨道的背景色 */
}

.newsAutoList::-webkit-scrollbar-thumb {
  background: #888; /* 滚动条滑块的背景色 */
  border-radius: 4px; /* 滚动条滑块的圆角 */
}

.newsAutoList::-webkit-scrollbar-thumb:hover {
  background: #555; /* 鼠标悬停时滚动条滑块的背景色 */
}
.newsRightTitle {
  font-size: 16px;
  color: #000;
}
.newsRightTip {
  font-size: 14px;
  color: #000;
  opacity: 0.7;
  margin: 4px 0;
}
.newRightBtn {
  background-color: transparent;
  border: none;
  color: #02B3EB;
  font-size: 14px;
  cursor: pointer;
}
.pagination {
  position: absolute;
  bottom: -14px;
  right: 0;
  display: flex;
  align-items: center;
}
#pagination button {
  margin: 0 5px;
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 14px;
}
#pagination .prev, #pagination .next {
  font-size: 34px;
  margin-bottom: 2px;
}
#pagination button.active {
  background: linear-gradient(180deg, #eaedf3, #f5f6f9);
  color: #0052d9;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 5px 10px #b6c2d566;
}

#pagination button:disabled {
  /* background-color: #ccc; */
  color: #969798;
  cursor: not-allowed;
}
/* ============= 底部区域 ================== */
/* 底部 */
footer {
  background-color: #050F19;
  display: grid;
  justify-items: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

/* 底部菜单 */
.footer-menus {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

/* 导航菜单，靠右对齐 */
.footer-menu {
  text-align: center;
}
.footer_top {
  display: flex;
  justify-content: space-between;
}
.qrcode {
  width: 79px;
  height: 79px;
}
/* 一级菜单 */
.menu-title {
  font-size: 14px;
  color: #748EA6;
  font-weight: 500;
  margin-top: 4px;
}

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

/* 联系我们，文字 */
.contact-us p{
  margin-top: 12px;
}
.contact-us p:first-child {
  font-size: 18px;
  opacity: 0.7;
}
.contact-us p:last-child {
  font-size: 24px;
}

.line {
  width: 100%;
  height: 2px;
  background-color:#1a2834;
  margin: 19px 0 25px 0;
}
/* 备案信息 */
.icp-info {
  margin-bottom: 16px;
}

/* 备案信息，版权信息 */
.icp-info,
.rights {
  /* 占满整行，-1代表最后一个编号 */
  grid-column: 1 / -1;
  /* 居中对齐 */
  justify-self: center;
  color: #748EA6;
  text-align: center;
}

/* 返回顶部按钮，默认不显示 */
.scrollToTop {
  display: none;
  position: relative;
  z-index: 300;
}

/* 返回顶部按钮 */
.scrollToTop a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
}

/* 自适应，小于1100象素时 */
@media (max-width: 1100px) {
  /* 导航设置为不可见，点击折叠按钮显示全屏导航 */
  header nav {
    display: none;
  }
  header .callphone {
    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-line1,
  .burger-line2,
  .burger-line3 {
    width: 20px;
    height: 2px;
    background-color: var(--text-color-darker);
    /* position: relative; */
  }

  /* 上移第一条线 */
  .burger-line1 {
    position: absolute;
    top: -6px;
  }
  /* 下移第三条线 */
  .burger-line3 {
    position: absolute;
    top: 6px;
  }
  
  /* 全屏导航展开时，折叠按钮设置为深色 */
  header.open .burger-line1,
  header.open .burger-line2,
  header.open .burger-line3,
  header.sticky .burger-line1,
  header.sticky .burger-line2,
  header.sticky .burger-line3 {
    background-color: var(--text-color-darker);
    transition: 0.4s ease;
  }

  /* 全屏导航显示时，折叠按钮第一条线样式 */
  header.open .burger-line1 {
    transform: rotate(45deg) translate(3px, 5px);
  }

  /* 全屏导航显示时，折叠按钮第二条线样式 */
  header.open .burger-line2 {
    transform: translateX(5px);
    opacity: 0;
  }

  /* 全屏导航显示时，折叠按钮第三条线样式 */
  header.open .burger-line3 {
    transform: rotate(-45deg) translate(3px, -5px);
  }
  /* 全屏导航显示时，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: 60vh!important;
    padding: 0 125px;
    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;
  }

  /* 导航下滑动画 */
  @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;
    }
  }


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

/* 小于992象素时 */
@media (max-width: 992px) {
  /* 轮播标题字号缩小  */
  .slide-caption h1 {
    font-size: 48px;
  }

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

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

}

/* 小于768象素时 */
@media (max-width: 768px) {
  /* 区域的左右内边距设置为40象素 */
  section,
  .footer-menus {
    padding: 0 40px;
  }
  .solutionTab {
    column-gap: 180px;
  }
  .aboutCompanyContent {
    grid-template-columns: 1fr;
  }
  .partnersContent {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-item {
    display: none;
  }
  .filter-btns, .filter-btns2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .home
  /* 关于我们和业务流程设置为1列 */
  .features,
  .services {
    grid-template-columns: 1fr;
  }
  .newsAutoImg {
    min-width: initial;
  }
  /* 团队成员设置为1列 */
  .solutions-members {
    grid-template-columns: minmax(200px, 400px);
    /* column-gap: 6vw;
    row-gap: 36px; */
  }

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

  .newsAutoImg {
    min-width: initial;
  }
  /* 底部菜单设置为3列 */
  .footer-menus {
    grid-template-columns: 2fr repeat(2, 1fr);
    row-gap: 24px;
  }

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

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

/* 小于576象素 */
@media (max-width: 576px) {
  /* 缩小轮播标题文字，探索更多按钮文字 */
  .slide-caption h1 {
    font-size: 28px;
  }

  .slide-caption h3 {
    font-size: 14px;
  }
  .footer_top {
    display: initial;
  }
  .solutionTab {
    column-gap: 48px;
  }
  .explore-btn {
    padding: 8px 18px;
    font-size: 6px;
  }
  .lookDetail {
    font-size: 9px;
  }
  .experience {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .partnersContent {
    grid-template-columns: 1fr;
  }
  .home-item {
    grid-template-columns: 1fr; /* 一列 */
    width: 90vw;
  }
  .filter-btns, .filter-btns2 {
    grid-template-columns: 1fr;
  }
  .newsAutoContent {
    grid-template-columns: 1fr;
  }
  .newsRightTip {
    white-space: initial;
  }
  .newsAutoImg {
    min-width: initial;
  }
  /* 底部菜单显示为1列 */
  .footer-menus {
    grid-template-columns: 1fr;
    /* row-gap: 24px; */
  }

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