.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

header .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

header .logo {
  width: 150px;
}

header .logo .img {
  width: 100%;
  height: auto;
}

header nav {
  font-family: Gilroy-Regular;
}

header nav .list {
  display: flex;
  align-items: center;
  /* background-color: #fff; */
}

header nav .list .item {
  color: #30344d;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}

header nav .list .item:hover {
  color: #328386;
  text-shadow: 0 0 10px rgba(49, 130, 134, 0.5);
}

header .mobileNav {
  cursor: pointer;
  display: none;
}

header .mobileNav svg>[class*="line-"] {
  transition: 0.2s ease-in-out;
  transition-property: transform, opacity;
  transform-origin: center;
  opacity: 1;
}

header .mobileNav svg>.line-3 {
  opacity: 0;
}

header .mobileNav[status='close'] svg>.line-1 {
  opacity: 0;
  transform: translateY(6px) scaleX(0);
}

header .mobileNav[status='close'] svg>.line-2 {
  transform: rotate(45deg);
}

header .mobileNav[status='close'] svg>.line-3 {
  opacity: 1;
  transform: rotate(-45deg);
}

header .mobileNav[status='close'] svg>.line-4 {
  opacity: 0;
  transform: translateY(-6px) scaleX(0);
}

header.active {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.title {
  font-family: Gilroy-Bold;
  font-size: 60px;
  color: #30344d;
  line-height: 1;
}

.title.light {
  color: #ffffff;
}

#index .banner {
  position: relative;
}

#index .banner .bg {
  width: 100%;
  height: auto;
}

#index .banner .content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

#index .banner .content .banner-wrap {
  padding-top: 320px;
}

#index .banner .content .banner-wrap .text {
  font-family: Gilroy-Regular;
  font-size: 22px;
  line-height: 1.36;
  color: #535353;
  padding-top: 48px;
  max-width: 825px;
}

#index .banner .content .banner-wrap .describe {
  padding-top: 220px;
  font-family: Gilroy-Medium;
  font-size: 60px;
  color: #30344d;
}

#index .banner .content .banner-wrap .describe .themeColor {
  color: #52c5b6;
}

#index .service {
  padding: 140px 0;
  background-image: url(../images/service_bg.jpg);
  background-size: cover;
  background-position: center top;
}

#index .service .service-wrap .list {
  display: flex;
  flex-direction: column;
}

#index .service .service-wrap .list .item {
  display: flex;
  font-family: Gilroy-Regular;
  padding: 95px 0;
}

#index .service .service-wrap .list .item:not(:last-child) {
  border-bottom: 1px solid #879ab2;
}

#index .service .service-wrap .list .item .key {
  width: 50%;
  display: flex;
  gap: 98px;
  align-items: center;
  font-size: 38px;
  color: #ffffff;
}

#index .service .service-wrap .list .item .key .icon {
  width: 32px;
  height: auto;
  cursor: pointer;
}

#index .service .service-wrap .list .item .value .subList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#index .service .service-wrap .list .item .value .subList .subItem {
  font-size: 26px;
  line-height: 1.846;
  color: #ffffff;
  padding-left: 38px;
  position: relative;
}

#index .service .service-wrap .list .item .value .subList .subItem::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}

#index .case {
  padding: 140px 0;
}

#index .case .case-wrap .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 0 40px;
}

#index .case .case-wrap .list .item {
  width: calc((100% - 120px) / 4);
  aspect-ratio: 27 / 10;
  background-color: #ffffff;
  border-radius: 20px;
  border: solid 1px #c9c9c9;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#index .case .case-wrap .list .item .img {
  max-width: 90.5%;
  max-height: 90.5%;
  object-fit: cover;
  object-position: center;
}

#index .lastSection {
  background-color: #eee;
  border-radius: 0 0 80px 80px;
}

#index .lastSection .team {
  border-radius: 0 0 80px 80px;
  background-image: url(../images/team_bg.png);
  background-size: cover;
  background-position: center center;
  padding: 140px 0;
}

#index .lastSection .team .list {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

#index .lastSection .team .list .item {
  display: flex;
  padding: 72px 0;
  gap: 50px;
}

#index .lastSection .team .list .item .avatar {
  aspect-ratio: 1 / 1;
  width: 20%;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

#index .lastSection .team .list .item .avatar .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#index .lastSection .team .list .item .describe {
  font-family: Gilroy-Regular;
  color: #ffffff;
}

#index .lastSection .team .list .item .describe .name {
  font-family: Gilroy-Bold;
  font-size: 36px;
  color: #52c5b6;
}

#index .lastSection .team .list .item .describe .sName {
  font-size: 24px;
}

#index .lastSection .team .list .item .describe .text {
  font-size: 18px;
  padding-top: 20px;
}

#index .lastSection .team .list .item:not(:last-child) {
  border-bottom: 1px solid #eee;
}

#index .lastSection .team .list .item:nth-child(2n) {
  flex-direction: row-reverse;
}

#index .lastSection .contact {
  padding: 140px 0;
}

#index .lastSection .contact .list {
  display: flex;
  gap: 80px;
}

#index .lastSection .contact .list .item .sTitle {
  font-family: Gilroy-Medium;
  font-size: 50px;
  color: #328386;
}

#index .lastSection .contact .list .item .text {
  font-family: Gilroy-Medium;
  font-size: 18px;
  line-height: 1.33;
  color: #30344d;
  padding-top: 30px;
}

#index .lastSection .contact .list .item .imgBox {
  padding-top: 20px;
  display: flex;
  gap: 25px;
}

#index .lastSection .contact .list .item .imgBox .img {
  cursor: pointer;
}

#index .lastSection .contact .list .item .imgBox .imgBox_2 {
  position: relative;
}

#index .lastSection .contact .list .item .imgBox .imgBox_2 .code {
  position: absolute;
  display: none;
  left: calc(100% + 20px);
  top: 50%;
  transform: translate(0, -50%);
  width: 100px;
  height: 100px;
  z-index: 999;
  background-image: url(../images/qrcode.jpg);
}

#index .lastSection .contact .list .item .imgBox .imgBox_2:hover .code {
  display: block;
}


#index .lastSection .contact .list .item:nth-child(1) {
  border-right: 1px solid #bfbfbf;
  padding-right: 20px;
  flex: 1;
}

#index .lastSection .contact .list .item:nth-child(2) {
  width: fit-content;
  flex: 1;
}

.copyRight {
  font-family: Gilroy-Regular;
  font-size: 20px;
  line-height: 1.2;
  color: #30344d;
  text-align: center;
  padding: 50px 0;
}