/* logo show */

.logo-show {
  width: 100vw;
  height: 100vw;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  border-radius: 0; /* 初始方形，明确设置0 */
  border: none;
  /* 确保初始指针事件有效 */
  pointer-events: auto;
}

.logo-show-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* 防止内容在缩小过程中换行或错位 */
  overflow: hidden;
}
.logo-show-content p {
  font-size: 24px;
  color: #6b6b6b;
  margin-top: 40px;
  white-space: nowrap; /* 防止文字换行 */
}
.logo-show-content img {
  max-width: 300px;
  height: auto;
}

/* hero区域 */
.hero {
  width: 100%;
  height: 100vh;
  background-image: url(../imgs/home-bg01.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 删除 transition: all 2s ... 以避免与GSAP冲突 */
  /* transition: all 2s ease-in-out; */
  position: relative; /* 默认相对定位，GSAP Pin会自动处理 */
}
/* .hero01{
    position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 997;
      opacity: 0;
} */
/* .hero02 { 
    position: fixed;
    transform: scale(1.1);
} */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.hero-ttile {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translatex(-50%);
  text-align: left;
}

.hero-img {
  position: absolute;
  top: 20%;
  right: 200px;
  z-index: 2;
}
.hero-img img {
  max-width: 860px;
  height: auto;
}
@media screen and (max-width: 1600px) {
  .hero-img img {
    max-width: 700px;
    height: auto;
  }
}

/* 第二屏 */

.section-02 {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-content-title {
  color: #fff;
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-content-title h2 {
  font-size: 60px;
  font-family: "站酷高端黑", "Noto Serif SC", serif;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
}
.home-content-title h2 span {
  color: var(--color-primary);
}
.home-content-title p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: "Noto Serif SC", serif;
}
.home-content-title a {
  color: #fff;
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
}
.home-content-img {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 100px;
}
.home-content-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.description {
  font-family: "Noto Serif SC", serif;
}
.section-text {
  padding-right: 100px;
}
/* 第三屏 */
.section-03 {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 第四屏 */
.section-04 {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 第五屏 */
.section-05 {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 第六屏联系我们 */
.section-06 {
  width: 100%;
  height: 50vh;
  background-image: url(../imgs/homecontact-bg.webp);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #a9acb1;
}
.section-06 .contact-content {
  width: 70%;
}
.section-06 .contact-content h2 {
  color: #fff;
  font-size: 46px;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 100px;
  font-weight: bold;
}
.section-06 .contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-06 .contact-info p {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}
.section-06 .contact-info i {
  font-size: 46px;
  color: #fff;
  margin-bottom: 20px;
}
.section-06 .contact-info div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
}
/* ---------------------下载中心样式-------------- */
.download {
  min-height: calc(100vh - 260px);
  color: #fff;
  padding: 200px 0 40px;
}

.download-container {
  margin: 0 auto;
  max-width: 1366px;
  margin: 0 auto;
}
.download-container h2 {
  font-size: 36px;
  font-weight: bold;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}
.download-box {
  display: flex;
  gap: 40px;
}
.download-sidebar {
  border-radius: 16px;
  min-width: 200px;
}

.download-menu {
  list-style: none;
}

.download-menu li {
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.download-menu li a {
  display: block;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-size: 24px;
}

.download-menu li a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.download-menu li.active a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  padding-right: 30px;
}

.download-menu li.active a::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.download-content {
  flex: 1;
  border-radius: 16px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
   min-height: 420px; 
}

.product-image {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-image img {
  max-width: 80%;
  border-radius: 16px;
  max-height: 240px;
}

.product-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #333;
}
.product-name span {
  color: var(--color-primary);
}
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.download-btn-view {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.download-btn-view a {
  color: #fff;
  text-decoration: none;
}

.download-btn-download {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
}
.download-btn-download i {
  color: #fff;
  font-size: 20px;
}
.download-btn-view:hover {
  background-color: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}
.download-btn-download:hover {
  background-color: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}
/* Tab切换样式 */
.tab-content {
  display: none;
  transition: opacity 0.3s ease-in-out;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tab-content.active {
  display: grid;
  opacity: 1;
}

/* 优化菜单交互 */
.download-menu li {
  cursor: pointer;
  transition: all 0.3s ease;
}
/* 响应式设计 */
@media (max-width: 1240px) {
  .download-container {
    width: 95%;
    flex-direction: column;
  }

  .download-sidebar {
    width: 100%;
  }

  .download-menu {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
  }

  .download-menu li {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .download-content {
    padding: 30px 20px;
  }
}
/* 1200px屏幕宽度下的样式 */
@media (max-width: 1200px) {
  .hero-img {
    right: 20px;
  }
  .hero-img img {
    max-width: 600px;
  }
  .section-02,
  .section-03,
  .section-04,
  .section-05,
  .section-06 {
    height: auto;
    padding: 30px;
  }
  .section-06 .contact-content {
    width: 100%;
    padding: 0 30px;
  }
  .section-06 .contact-info i {
    font-size: 36px;
  }
  .section-06 .contact-info p {
    font-size: 26px;
  }
  .about-us-text {
    flex-direction: column;
  }
  .about-us-text-left {
    width: 100%;
    order: 2;
  }
  .about-us-text-right {
    width: 100%;
    order: 1;
  }
  .about-us-info .about-hero img {
    max-width: 450px;
  }
}
@media (max-width: 1024px) {
  .tab-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 670px) {
  .tab-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .download-sidebar {
    overflow-x: scroll;
    height: 120px;
  }

  /* 自定义滚动条样式 */
  .download-sidebar::-webkit-scrollbar {
    height: 8px;
  }

  .download-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .download-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }

  .download-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
/* -------------------------关于我们页面--------------------- */

.about-us-info {
  background-image: url("../imgs/about-bg.webp");
  padding-top: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-bottom: 50px;
}

.about-us-info .about-hero h2 {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
}
.about-us-info .about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-us-info .about-hero img {
  max-width: 800px;
}
.about-us-text {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 50px;
}
.about-us-text-left {
  width: 50%;
  padding-top: 80px;
}
.about-us-text-left h4 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}
.about-us-text-left img {
  width: 100%;
}
.about-us-text-right {
  width: 50%;
}
.about-us-text h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}
.about-us-text-right .about-us-text-contentText {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
}
/* 使命愿景部分样式 */
.our-mission {
  position: relative;
  background-image: url("../imgs/about-bg02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.our-mission .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.mission-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  border-bottom: 2px solid #fff;
}

.mission-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

.vision-title {
  font-size: 36px;
  margin: 60px 0 20px 0;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: left;
  border-bottom: 2px solid #fff;
  font-weight: bold;
}

.vision-content {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}
.our-missiontitle {
  width: 22%;
  align-self: flex-start;
  text-align: left;
}
.our-vision {
  width: 58%;
  align-self: flex-end;
  text-align: right;
}

/* 确保父容器使用flex布局 */
.our-mission .container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .our-mission {
    padding: 60px 0;
  }

  .mission-title,
  .vision-title {
    font-size: 28px;
  }

  .mission-subtitle {
    font-size: 18px;
  }

  .vision-content {
    font-size: 16px;
  }
}

/* 核心价值观 */
.our-values {
  background-color: #000;
  padding: 60px 0;
  position: relative;
}

.our-values .container {
  position: relative;
}

.values-title {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
}

.value-name {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 30px 0;
}

.value-item img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .values-title {
    font-size: 24px;
  }

  .value-name {
    font-size: 16px;
  }
}

/* 校企合作 */
.school-enterprise {
  padding: 60px 0;
  background-color: #000;
}

.school-enterprise-title {
  text-align: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 40px;
}

.school-logo-grid {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.school-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.school-logo-item img {
  max-width: 100%;
  /*max-height: 180px;*/
  height: 120px;
  width: auto;
  object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .school-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
  }

  .school-logo-item img {
    max-height: 150px;
  }
  .hero-ttile {
     left: 50%;
     top: 60%;
  } 
 .hero-img {
     right: 50%;
     top: 15%;
    transform: translatex(50%);
    }
    .section-text {
    padding-right: 10px;
}
.about-us-text-left {
    width: 100%;
    padding-top: 0;
   
}
.about-us-text {
     gap: 30px;
}
.about-us-text-right {
    width: 100%;
    margin-top: 80px;  
}
.download-sidebar {
overflow-x: scroll;
height: 120px;
}
.tech-service-content {
    flex-direction: column;
}
.tech-service-contact {
    max-width: 90%;
}
}

@media (max-width: 768px) {
  .school-enterprise {
    padding: 40px 0;
  }

  .school-enterprise-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .school-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 25px;
  }

  .school-logo-item img {
    max-height: 120px;
  }
}

@media (max-width: 480px) {
  .school-logo-grid {
    gap: 20px;
    padding: 20px;
  }
 .school-logo-item {
  width: 45%;
 }
  .school-logo-item img {
    max-height: 140px;
  }
}

/* 联系信息卡片样式 */
.contact {
  padding: 200px 20px 100px;
}

.contact-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.contact-info-item {
  background: rgba(255, 255, 255, 0.5);
  /* backdrop-filter: blur(10px); */
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-item .info-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .info-icon i {
  font-size: 60px;
  color: #333;
}

.contact-info-item h3 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}

.contact-info-item p {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact-title h2 {
    font-size: 28px;
    color: #fff;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .contact-info-item {
    padding: 30px 20px;
  }

  .contact-info-item .info-icon {
    width: 60px;
    height: 60px;
  }

  .contact-info-item .info-icon i {
    font-size: 24px;
    color: #000;
  }

  .contact-info-item h3 {
    font-size: 18px;
    color: #000;
  }

  .contact-info-item p {
    font-size: 14px;
    color: #000;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 40px 0;
  }

  .contact-title {
    margin-bottom: 40px;
  }

  .contact-title h2 {
    font-size: 24px;
    color: #fff;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .contact-info-item {
    padding: 35px 20px;
  }

  .contact-info-item .info-icon i {
    font-size: 40px;
  }

  .contact-info-item h3 {
    font-size: 24px;
  }

  .contact-info-item p {
    font-size: 20px;
  }
}

/*------------ 服务页面样式 ------*/
.tech-service {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../imgs/service-bg01.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding: 200px 0 100px;
}

.tech-service-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  max-width: 1366px;
  justify-content: space-around;
}

.tech-service-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  text-align: center;
}

.tech-service-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.service-info-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 20px 30px;
  transition: transform 0.3s ease;
}

.service-info-item:hover {
  transform: translateY(-5px);
}

.service-info-icon {
  margin-right: 20px;
  font-size: 32px;
  color: #fff;
}

.service-info-text {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .tech-service-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .service-info-item {
    padding: 12px 20px;
  }

  .service-info-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #fff;
  }

  .service-info-text {
    font-size: 18px;
    color: #fff;
  }
}

/*------------ 与你同行区域样式 ------*/
.with-you {
  background-color: #000;
  padding: 80px 0;
  text-align: center;
}
.with-you-content-box {
  background-color: #333333;
  padding: 60px 0;
}
.with-you-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.with-you-title {
  font-size: 48px;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 30px;
}

.with-you-desc {
  font-size: 20px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.with-you-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #ff6600;
}

.service-content {
  max-width: 1366px;
  margin: 0 auto;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.service-section:nth-child(2n) .service-content {
  justify-content: flex-end;
}
.service-section:nth-child(2n) .service-content .service-item-title {
  text-align: right;
}
.service-section .service-content{
  transition: all 0.5s ease;
}
.service-section:hover .service-content {
  transform: translateY(-20px);
}
.service-item-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
}
.service-item-desc {
  font-size: 20px;
  color: #fff;
  line-height: 1.8;
  margin-top: 60px;
  max-width: 900px;
  font-family: "SimSun", "宋体", serif;
}
.service-item-desc p {
  font-family: "SimSun", "宋体", serif;
}
.service-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .with-you {
    padding: 60px 0;
  }

  .with-you-title {
    font-size: 36px;
  }

  .with-you-desc {
    font-size: 18px;
  }

  .with-you-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .with-you {
    padding: 40px 0;
  }

  .with-you-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .with-you-desc {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .with-you-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  .footer-content {
    width: 90%;
    max-width: 90%;
  }
  .section-06 .contact-content {
    width: 90%;
  }
  .download-box {
    flex-direction: column;
  }
  .download-menu {
    display: flex;
  }
  .download-menu li {
    margin-right: 20px;
  }
  .download-menu li.active a::after {
    right: 50%;
    top: 100%;

    /* 平移并旋转90度 */
    transform: translate(50%, 0) rotate(90deg);
  }
  .download-menu li.active a {
    padding-right: 15px;
  }
  .about-hero {
    padding: 0 20px;
  }
  .about-us-text {
    padding: 0 20px;
  }
  .values-grid {
    padding: 0 20px;
  }
  .school-enterprise {
    padding: 0 20px;
  }
  .about-us-info .about-hero h2 {
    font-size: 40px;
  }
  .about-us-info .about-hero img {
    max-width: 600px;
  }
  .service-section {
    padding: 0 20px;
  }
  .tech-service {
    padding: 200px 20px 100px;
  }
}

@media (max-width: 1024px) {
    .tech-service-contact {
        max-width: 90%;
    }
}
@media (max-width: 768px) {
  .section-06 .contact-info {
    flex-direction: column;
  }
  .logo-show {
    display: none;
  }
  .hero-img img {
    max-width: 60%;
  }
  .hero-img {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-ttile {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-ttile {
    font-size: 30px;
    top: 77%;
  }
  .hero {
    height: 700px;
  }
  .section-content {
    flex-direction: column;
  }
  .section-text {
    padding-right: 0;
  }

  .home-content-img {
    padding-top: 30px;
    order: 2;
    width: 100%;
  }
  .productHero-section-title h2 {
    font-size: 50px;
  }

  .home-content-title {
    width: 100% !important;
    order: 1;
    text-align: center;
  }
  .about-hero {
    flex-direction: column;
  }
  .about-us-info .about-hero img {
    margin-top: 50px;
    max-width: 100%;
  }
  .about-us-text h3 {
    font-size: 30px;
  }
  .about-us-text-right p {
    font-size: 16px;
  }
  .about-us-text-left {
    padding-top: 0;
  }
  .our-missiontitle {
    width: 100%;
  }
  .our-vision {
    width: 100%;
  }
  .vision-title {
    margin: 30px 0 20px 0;
  }
  .tech-service-content {
    flex-direction: column;
  }
  .tech-service-title {
    font-size: 30px;
  }
  .service-item-title {
    font-size: 24px;
  }
  .service-content {
    padding: 50px 0;
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .form-fields-container2,
  .form-fields-container1 {
    flex-direction: column;
  }
  .eael-contact-form-7 .wpcf7-form p {
    width: 100%;
  }
  .s-btn p {
    display: flex !important;
    align-self: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    width: 100%;
  }
}
.s-btn p input[type="submit"] {
  background-color: #e85413 !important;
  border-radius: 25px !important;
}
.s-btn p input[type="submit"]:hover {
  background-color: #d64a12 !important;
}

@media (max-width: 480px) {
  .tech-service-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .service-info-item {
    padding: 10px 15px;
  }

  .service-info-icon {
    font-size: 18px;
    margin-right: 10px;
    color: #fff;
  }

  .service-info-text {
    font-size: 24px;
    color: #fff;
  }
  .service-item-desc {
    font-size: 18px;
  }
}
