
.banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner .img img {
  width: 100%;
}

.banner .text {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  text-align: center;
}

.banner .text h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 5px;
}

.banner .text p {
  color: #fff;
  font-size: 18px;
}

.banner .text1 {
  width: 570px;
  position: absolute;
  z-index: 10;
  left: calc(50vw - 780px);
  top: 50%;
  transform: translateY(-50%);
}

.banner .text1 h3 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.banner .text1 p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}

.banner .line {
  margin-top: 30px;
}

.commonTab {
  height: 70px;
  position: relative;
  z-index: 11;
}

.commonTab.active .wrap {
  position: fixed;
  top: 87px;
}

.commonTab .wrap {
  height: 70px;
  align-items: center;
  padding: 0 calc(50vw - 780px);
  border-bottom: 1px solid rgba(179, 179, 179, 0.2);
  display: flex;
  justify-content: center;
  z-index: 11;
  width: 100%;
  background-color: #fff;
}

.commonTab .wrap .list {
  height: 70px;
  display: flex;
  gap: 100px;
  justify-content: center;
}

.commonTab .wrap .list .item {
  height: 70px;
  display: flex;
  font-size: 16px;
  color: #444444;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.6s;
  flex-direction: column;
  cursor: pointer;
}

.commonTab .wrap .list .item:hover,
.commonTab .wrap .list .item.active {
  color: #174391;
}

.commonTab .wrap .list .item:hover .line,
.commonTab .wrap .list .item.active .line {
  opacity: 1;
}

.commonTab .wrap .list .item:hover .text p:nth-child(1),
.commonTab .wrap .list .item.active .text p:nth-child(1) {
  opacity: 0;
}

.commonTab .wrap .list .item:hover .text p:nth-child(2),
.commonTab .wrap .list .item.active .text p:nth-child(2) {
  opacity: 1;
}

.commonTab .wrap .list .item:hover .text::before,
.commonTab .wrap .list .item.active .text::before {
  opacity: 0;
}

.commonTab .wrap .list .item:hover .text::after,
.commonTab .wrap .list .item.active .text::after {
  opacity: 1;
}

.commonTab .wrap .list .item .text {
  position: relative;
}

.commonTab .wrap .list .item .text::before,
.commonTab .wrap .list .item .text::after {
  content: attr(data-text);
  font-weight: 700;
  transition: all 0.6s;
  font-size: 20px;
}

.commonTab .wrap .list .item .text::before {
  color: #111;
}

.commonTab .wrap .list .item .text::after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(90deg, #23528E 0%, #5AB3C1 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.commonTab .wrap .list .item .text p {
  font-weight: 700;
  transition: all 0.6s;
  font-size: 16px;
}

.commonTab .wrap .list .item .text p:nth-child(1) {
  color: #111;
}

.commonTab .wrap .list .item .text p:nth-child(2) {
  position: absolute;
  top: 0;
  opacity: 0;
  background: linear-gradient(90deg, #23528E 0%, #5AB3C1 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.commonTab .wrap .list .item .line {
  transition: all 0.6s;
  position: absolute;
  transform: translateY(18px);
  opacity: 0;
}

.commonButton {
  width: 170px;
  height: 55px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
  position: relative;
}

.commonButton:hover::before {
  opacity: 0;
}

.commonButton:hover::after {
  opacity: 1;
}

.commonButton:hover .icon {
  filter: brightness(0) invert(1);
}

.commonButton:hover span {
  color: #fff;
  transform: translateX(5px);
}

.commonButton::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 1px solid #89898A;
  position: absolute;
  transition: all 0.6s;
}

.commonButton::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 30px;
  z-index: 0;
  transition: all 0.6s;
  opacity: 0;
  background: linear-gradient(121deg, #0E4183 0%, #5BB7C3 100%);
}

.commonButton .icon {
  width: 16px;
  transition: all 0.6s;
  position: relative;
  z-index: 1;
}

.commonButton p {
  margin: 0 5px;
  font-size: 16px;
  color: #666;
  transition: all 0.6s;
  position: relative;
  z-index: 1;
}

.commonButton span {
  color: #666;
  font-size: 14px;
  transition: all 0.6s;
  position: relative;
  z-index: 1;
}

.commonButton .appoint {
  position: relative;
  z-index: 1;
}

.commonButton .appoint .fist:nth-child(2) {
  color: #fff;
}

.commonPage {
  display: flex;
  align-items: center;
  width: fit-content;
}

.commonPage .prev,
.commonPage .next {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  transition: all 0.6s;
}

.commonPage .prev span,
.commonPage .next span {
  color: #0D4082;
  font-size: 20px;
  display: block;
  font-weight: 700;
  transition: all 0.6s;
}

.commonPage .prev:hover,
.commonPage .next:hover {
  background-color: #0D4082;
}

.commonPage .prev:hover span,
.commonPage .next:hover span {
  color: #fff;
}

.commonPage .prev {
  transform: rotate(180deg);
}

.commonPage .page {
  display: flex;
  margin: 0 30px;
  gap: 36px;
}

.commonPage .page a {
  font-size: 18px;
  color: #111;
}

.commonPage .page a:hover {
  color: #0D4082;
}

.commonPage .page a.on {
  color: #0D4082;
  font-weight: 700;
}

.commonTitle {
  display: flex;
  align-items: center;
}

.commonTitle h3 {
  margin-left: 10px;
  color: #333;
  font-size: 36px;
}

.commonTitle h3 span {
  background: linear-gradient(90deg, #23528E 0%, #5AB3C1 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s 0.3s;
  pointer-events: none;
}

#canvas-container.on {
  opacity: 0.3;
}
.section7 .wrap .main .item .img{
  border-radius: 10px;
  overflow: hidden;
}

.fixed_menu .wrap .r{
  width:400px;
}
@media screen and (max-width: 1919px) {
  .fixed_menu .wrap .r{
    width:20.83333333333vw;
  }
  .banner .line img{
    width:1.66666666vw;
  }
  .commonTab .wrap .list .item .line{
    width: 0.8333333vw;
  }
  .banner .text h3 {
    font-size: 2.0833333333vw;
    margin-bottom: 0.2604166667vw;
  }

  .banner .text p {
    font-size: 0.9375vw;
  }

  .banner .text1 {
    width: 29.6875vw;
    left: calc(50vw - 40.625vw);
  }

  .banner .text1 h3 {
    font-size: 1.875vw;
    margin-bottom: 2.0833333333vw;
  }

  .banner .text1 p {
    font-size: 0.8333333333vw;
    line-height: 1.5625vw;
  }

  .banner .line {
    margin-top: 1.5625vw;
  }

  .commonTab {
    height: 3.6458333333vw;
  }

  .commonTab.active .wrap {
    top: 4.53125vw;
  }

  .commonTab .wrap {
    height: 3.6458333333vw;
    padding: 0px calc(50vw - 40.625vw);
  }

  .commonTab .wrap .list {
    height: 3.6458333333vw;
    gap: 5.2083333333vw;
  }

  .commonTab .wrap .list .item {
    height: 3.6458333333vw;
    font-size: 0.8333333333vw;
  }

  .commonTab .wrap .list .item .text::before,
  .commonTab .wrap .list .item .text::after {
    font-size: 1.0416666666vw;
  }

  .commonTab .wrap .list .item .text p {
    font-size: 0.8333333333vw;
  }

  .commonTab .wrap .list .item .line {
    transform: translateY(0.9375vw);
  }

  .commonButton {
    width: 8.8541666667vw;
    height: 2.8645833333vw;
    border-radius: 1.5625vw;
  }

  .commonButton:hover span {
    transform: translateX(0.2604166667vw);
  }

  .commonButton::before {
    border-radius: 1.5625vw;
  }

  .commonButton::after {
    border-radius: 1.5625vw;
  }

  .commonButton .icon {
    width: 0.8333333333vw;
  }

  .commonButton p {
    margin: 0px 0.2604166667vw;
    font-size: 0.8333333333vw;
  }

  .commonButton span {
    font-size: 0.7291666667vw;
  }

  .commonPage .prev,
  .commonPage .next {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
    line-height: 2.6041666667vw;
  }

  .commonPage .prev span,
  .commonPage .next span {
    font-size: 1.0416666667vw;
  }

  .commonPage .page {
    margin: 0px 1.5625vw;
    gap: 1.875vw;
  }

  .commonPage .page a {
    font-size: 0.9375vw;
  }
  .commonTitle .icon{
    width: 1.875vw;
  }
  .commonTitle h3 {
    margin-left: 0.5208333333vw;
    font-size: 1.875vw;
  }
}
@media screen and (max-width: 1024px) {
  .banner{
    padding-top: 60px;
  }
  .banner .text{
    top: 60%;
  }
  .commonTab{
    display: none;
  }
  .banner .text h3{
    font-size: 32px;
    margin-bottom: 10px;
  }
  .parallax{
    transform: none !important;
  }
  .banner .text p{
    font-size: 14px;
  }
  .banner .line{
    margin-top: 10px;
  }
  .banner .line img{
    width: 24px;
  }
  .commonTitle h3{
    margin-left: 10px;
  }
  .commonTitle h3{
    font-size: 28px;
  }
  .commonTitle .icon{
    width: 30px;
  }
  .banner .img{
    height: 400px;
  }
  .banner .img img{
    height: 100%;
  }
  .commonButton{
    width: 140px;
    height: 40px;
  }
  .commonButton::after,
  .commonButton::before{
    border-radius: 20px;
  }
  .commonButton .icon{
    width: 14px;
  }
  .commonButton p{
    margin: 0 10px;
  }
  .commonButton .appoint{
    font-size: 14px;
  }
  .commonButton span{
    font-size: 14px;
  }
  .banner .text{
    width: 90%;
  }
  .banner .text1{
    left: 5vw;
    width: 90%;
  }
  .banner .text1 h3{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .banner .text1 p{
    font-size: 14px;
    line-height: 2;
  }
  .commonPage .prev, .commonPage .next{
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .commonPage .prev span, .commonPage .next span{
    font-size: 14px;
  }
  .commonPage .page a{
    font-size: 14px;
  }
  .commonPage .page{
    margin: 0 20px;
    gap: 20px;
  }

}
@media screen and (max-width: 767px) {
  .commonTitle h3 {
    font-size: 24px;
  }
  .commonTitle .icon {
    width: 24px;
  }
}