.section .wrap {
  width: 1176px;
  margin: 92px auto 121px;
    max-width: 90%;
}
.section .wrap .title {
  font-size: 40px;
  font-family: ZauriSans;
  font-weight: normal;
  color: #202020;
  text-align: center;
  margin: 0 0 90px 0;
}
.section .wrap .content .big {
  display: flex;
  align-items: center;
  height: 320px;
  margin: 0 0 39px 0;
}
.section .wrap .content .big .item {
  width: 50%;
  height: 100%;
  border: 1px solid #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: 0.7s;
}
.section .wrap .content .big .item:last-child {
  border-left: none;
}
.section .wrap .content .big .item .point_1 {
  width: 259px;
  height: 259px;
  border: 45px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -5px;
  left: -170px;
  border-radius: 50%;
  transform: translateX(-100px);
  transition: 1s;
}
.section .wrap .content .big .item .point_2 {
  width: 259px;
  height: 259px;
  border: 45px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: -70px;
  right: -94px;
  border-radius: 50%;
  transform: translatey(100px);
  transition: 1s;
}
.section .wrap .content .big .item .circle {
  width: 48px;
  height: 48px;
  background: #EC6816;
  border-radius: 50%;
  margin: 0 auto 12px;
  transition: 0.6s;
  position: relative;
  z-index: 1;
}
.section .wrap .content .big .item .circle .point {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}
.section .wrap .content .big .item .circle .point:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  animation: 2s scale linear infinite;
}
.section .wrap .content .big .item .circle .point:before {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  animation: 2s scale linear infinite;
  animation-delay: 1s;
}
.section .wrap .content .big .item .circle img {
  position: absolute;
  width: fit-content;
  height: fit-content;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s;
}
.section .wrap .content .big .item .circle img:nth-child(1) {
  opacity: 0;
}
.section .wrap .content .big .item .circle img:nth-child(2) {
  filter: brightness(10) grayscale(1);
}
.section .wrap .content .big .item p {
  font-size: 14px;
  font-family: ZauriSans;
  font-weight: normal;
  color: #1D1D1D;
  opacity: 0.8;
  transition: 0.6s;
}
.section .wrap .content .big .item h6 {
  font-size: 22px;
  font-family: OPPOSans;
  font-weight: 800;
  color: #1E2023;
  margin: 7px 0 0 0;
  transition: 0.6s;
}
.section .wrap .content .big .item:hover {
  background: #ec6816;
}
.section .wrap .content .big .item:hover .point_1 {
  transform: translateX(0);
}
.section .wrap .content .big .item:hover .point_2 {
  transform: translateY(0);
}
.section .wrap .content .big .item:hover .circle {
  background: #fff;
}
.section .wrap .content .big .item:hover .circle .point {
  opacity: 1;
}
.section .wrap .content .big .item:hover .circle img:nth-child(1) {
  opacity: 1;
}
.section .wrap .content .big .item:hover .circle img:nth-child(2) {
  opacity: 0;
}
.section .wrap .content .big .item:hover p {
  color: #fff;
  opacity: 0.8;
}
.section .wrap .content .big .item:hover h6 {
  color: #fff;
}
.section .wrap .content .small {
  display: flex;
  flex-wrap: wrap;
}
.section .wrap .content .small .item {
  width: 33.3%;
  height: 163px;
  border: 1px solid #f5f6f8;
  border-right: none;
  padding: 34px 35px 10px 35px;
  display: flex;
  position: relative;
  cursor: pointer;
}
.section .wrap .content .small .item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section .wrap .content .small .item:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section .wrap .content .small .item .line {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.section .wrap .content .small .item .line:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section .wrap .content .small .item .line:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section .wrap .content .small .item:nth-child(3n) {
  border-right: 1px solid #f5f6f8;
}
.section .wrap .content .small .item:nth-last-child(3),
.section .wrap .content .small .item:nth-last-child(2),
.section .wrap .content .small .item:nth-last-child(1) {
  border-top: none;
}
.section .wrap .content .small .item .circle {
  width: 34px;
  height: 34px;
  background: #BFBFBF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px 0 0;
  transition: 0.6s;
}
.section .wrap .content .small .item .circle img {
  width: 19px;
  filter: brightness(10) grayscale(1);
}
.section .wrap .content .small .item .text {
  margin: 9px 0 0 0;
}
.section .wrap .content .small .item .text span {
  font-size: 17px;
  font-weight: 500;
  color: #343942;
  display: block;
  margin: 0 0 28px 0;
  line-height: 16px;
}
.section .wrap .content .small .item .text p {
  font-size: 14px;
  font-weight: 200;
  color: #ACAFB4;
  line-height: 20px;
}
.section .wrap .content .small .item:hover:after {
  width: 100%;
}
.section .wrap .content .small .item:hover:before {
  height: 100%;
  transition-delay: 0.6s;
}
.section .wrap .content .small .item:hover .line:after {
  width: 100%;
  transition-delay: 1.2s;
}
.section .wrap .content .small .item:hover .line:before {
  height: 100%;
  transition-delay: 1.8s;
}
.section .wrap .content .small .item:hover .circle {
  background: #EC6816;
}
.section2 {
  background: #FFFFFF;
  box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.04);
}
.section2 .wrap {
  width: 1095px;
  margin: 101px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 90%;
}
.section2 .wrap .item {
  width: 527px;
  height: auto;
  padding: 40px 43px 30px 52px;
  margin: 0 0 39px 0;
  border: 1px solid rgba(30, 30, 30, 0.1);
  position: relative;
  cursor: pointer;
}
.section2 .wrap .item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section2 .wrap .item:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section2 .wrap .item .line {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.section2 .wrap .item .line:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section2 .wrap .item .line:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  background: #EC6816;
  z-index: 1;
  pointer-events: none;
  transition: 0.6s;
}
.section2 .wrap .item .headline {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(30, 30, 30, 0.05);
  padding: 0 0 21px 6px;
}
.section2 .wrap .item .headline img {
  margin: 0 13px 0 0;
}
.section2 .wrap .item .headline p {
  font-size: 20px;
  font-family: ZauriSans;
  font-weight: normal;
  color: #2D2D2D;
}
.section2 .wrap .item .content {
  margin: 35px 0 0 9px;
}
.section2 .wrap .item .content p {
  font-size: 16px;
  font-family: X-ZhongHei;
  color: #2D2D2D;
  padding: 0 0 0 15px;
  font-weight: 200;
  position: relative;
}
.section2 .wrap .item .content p:not(:last-child) {
  margin: 0 0 8px 0;
}
.section2 .wrap .item .content p:after {
  content: '';
  width: 6px;
  height: 6px;
  background: #999999;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.section2 .wrap .item:hover:after {
  width: 100%;
}
.section2 .wrap .item:hover:before {
  height: 100%;
  transition-delay: 0.6s;
}
.section2 .wrap .item:hover .line:after {
  width: 100%;
  transition-delay: 1.2s;
}
.section2 .wrap .item:hover .line:before {
  height: 100%;
  transition-delay: 1.8s;
}
.section2 .wrap .item:hover .circle {
  background: #EC6816;
}
@keyframes scale {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*# sourceMappingURL=contact.css.map */

@media screen and (max-width: 1500px) {
    .not_banner {
        height: auto!important;
        min-height: auto!important;
    }
}

@media screen and (max-width: 1220px) {
    .section .wrap .content .big .item h6{
        font-size: 19px;
    }
}
@media screen and (max-width: 1200px) {
  .section2 .wrap .item{
    width: 49%;
  }

}

@media screen and (max-width: 1117px) {
    .section .wrap .content .small .item{
        padding: 3%;
    }
    .section .wrap .content .small .item .text p{
        font-size: 13px;
    }
}

@media screen and (max-width: 1023px) {
  .section2 .wrap .item{
    padding: 3%;
  }
  .section2 .wrap .item .content p{
    font-size: 13px;
  }
    .section .wrap {
        margin: 38px auto 0;
    }
    .section .wrap .title{
        font-size: 28px;
        margin: 0 0 21px 0;
    }
    .section .wrap .content .big{
        flex-direction: column;
        height: auto;
    }
    .section .wrap .content .big .item{
        width: 100%;
        margin: 0 0 20px 0;
        padding: 25px 15px;
    }
    .section .wrap .content .big .item h6 {
        font-size: 14px;
    }
    .section .wrap .content .big .item:last-child {
        border-left: 1px solid #f5f6f8;
    }
    .section .wrap .content .big .item .circle{
        width: 45px;
        height: 45px;
    }
    .section .wrap .content .small{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 15px;

    }
    .section .wrap .content .big{
        margin: 0;
    }
    .section .wrap .content .small .item{
        width: 100%;
        border: 1px solid #f5f6f8!important;
        padding: 10% 5%;
        height: auto;
    }
    .section .wrap .content .small .item .text span{
        font-size: 15px;
    }
    .section .wrap .content .small .item .text p {
        font-size: 12px;
    }
    .section .wrap .content .small .item .text span{
        margin: 0 0 20px 0;
    }
}
@media screen and (max-width: 660px) {
  .section2 .wrap .item {
    width: 100%;
    padding: 5%;
  }
  .section2 .wrap .item .content p {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .section .wrap .content .small{
    grid-template-columns: repeat(1,1fr);
  }
}