@font-face {
  font-family: "Montserrat-Black";
  src: url("../../font/Montserrat-Black.otf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../../font/Montserrat-Bold.otf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../../font/Montserrat-Regular.otf") format("truetype");
}
body {
  font-family: "Montserrat-Regular";
  background-color: #ededed;
}

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

.bg {
  position: relative;
  height: 100vh;
}
.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.78rem;
  color: #fff;
  overflow: hidden;
  width: 100%;
}
.bg .title span {
  display: block;
  font-family: "Montserrat-Bold";
  text-align: center;
}
.bg .title .t2 {
  font-size: 0.32rem;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s;
  display: block;
}
.bg .title .text_down {
  transform: translateY(0%);
  opacity: 1;
}
.bg .brand_banner_line {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.bg .brand_banner_line div {
  background-color: rgb(254, 118, 0);
  width: 50%;
  height: 3px;
  margin-top: 0.06rem;
}

.team {
  padding: 0 1.28rem;
  background: #ededed;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
.team .title {
  font-size: 0.55rem;
  font-family: "Montserrat-Bold";
}
.team .desc {
  font-size: 0.25rem;
  margin-top: 0.1rem;
}
.team .boies {
  background-color: #fff;
  border-radius: 0.4rem;
  width: 100%;
  margin-top: 0.94rem;
  display: flex;
  align-items: center;
  padding: 0.4rem 0;
}
.team .boies .box {
  flex: 1;
  padding: 0 8%;
}
.team .boies .box .t {
  font-size: 0.2rem;
  white-space: nowrap;
}
.team .boies .box .num {
  font-family: "Montserrat-Bold";
  font-size: 0.55rem;
  display: flex;
}
.team .boies .box .d {
  font-size: 0.15rem;
}
.team .boies .box:nth-of-type(2) {
  position: relative;
}
.team .boies .box:nth-of-type(2)::after {
  content: "";
  width: 1px;
  background-color: rgba(112, 112, 112, 0.46);
  position: absolute;
  height: 0.7rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.team .boies .box:nth-of-type(2)::before {
  content: "";
  width: 1px;
  background-color: rgba(112, 112, 112, 0.46);
  position: absolute;
  height: 0.7rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.team .contents {
  display: flex;
  align-items: center;
  width: 100%;
}
.team .contents .content {
  flex: 1;
  margin-right: 0.24rem;
  position: relative;
  padding-top: 0.2rem;
  background-color: #fff;
  border-radius: 0.4rem;
  margin-top: 0.13rem;
}
.team .contents .content .t {
  font-size: 0.35rem;
  font-family: "Montserrat-Bold";
  height: 1.8rem;
}
.team .contents .content .line {
  width: 0.46rem;
  height: 0.04rem;
  background-color: #000;
}
.team .contents .content .d {
  font-size: 0.2rem;
  height: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team .contents .content .c-box {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.53rem 0.54rem;
  transition: all 0.5s;
  border-radius: 0.4rem;
  position: relative;
  z-index: 1;
}
.team .contents .content:nth-last-of-type(1) {
  margin-right: 0;
}
.team .contents .content::after {
  background-color: #ff8000;
  content: "";
  width: 100%;
  position: absolute;
  border-radius: 0.4rem;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  display: block;
  transition: all 0.5s;
}
.team .contents .content:hover .c-box {
  height: 90%;
  background-color: #000;
}
.team .contents .content:hover .t {
  color: #fff;
}
.team .contents .content:hover .line {
  background-color: #fff;
}
.team .contents .content:hover .d {
  color: #fff;
}
.team .contents .content:hover::after {
  opacity: 1;
}

.center-box {
  background-color: #000;
  border-radius: 1rem 1rem 0 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.center-box .center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.center-box .center .title {
  font-size: 0.55rem;
  font-family: "Montserrat-Bold";
  color: #fff;
  padding-top: 1.5rem;
}
.center-box .center .desc {
  color: #fff;
  font-size: 0.25rem;
}
.center-box .center .list {
  display: flex;
  width: 87%;
  align-items: center;
  margin-top: 1.13rem;
}
.center-box .center .list .box {
  background-color: #fff;
  padding: 0.6rem 0.23rem;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0.24rem;
}
.center-box .center .list .box .t {
  font-size: 0.25rem;
  text-align: center;
  font-family: "Montserrat-Bold";
}
.center-box .center .list .box .d {
  font-size: 0.2rem;
  text-align: center;
  height: 0.5rem;
  display: flex;
  align-items: center;
  margin-top: 0.24rem;
}
.center-box .center .list .box .d .d-line {
  width: 0.5rem;
  height: 0.04rem;
  background-color: #000;
}
.center-box .center .list .box .img-box {
  position: relative;
  margin-top: 0.2rem;
  transition: all 0.5s;
}
.center-box .center .list .box .img-box img {
  width: 100%;
}
.center-box .center .list .box .img-box .hover-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: all 0.5s;
  color: #fff;
  font-size: 0.2rem;
  line-height: 0.4rem;
}
.center-box .center .list .box .t2 {
  font-size: 0.2rem;
  margin-top: 0.24rem;
}
.center-box .center .list .box:nth-last-of-type(1) {
  margin-right: 0;
}
.center-box .center .list .box:hover .img-box .hover-box {
  opacity: 1;
}
.center-box .core {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ededed;
  border-radius: 1rem 1rem 0 0;
  margin-top: 1rem;
}
.center-box .core .title {
  font-size: 0.55rem;
  font-family: "Montserrat-Bold";
  color: #000;
  padding-top: 1.5rem;
}
.center-box .core .desc {
  color: #000;
  font-size: 0.25rem;
}
.center-box .core .list {
  width: 87%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.73rem;
}
.center-box .core .list .box {
  background-color: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
  margin-right: 0.17rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 5.8rem;
  padding: 0.74rem 0.4rem 0.4rem 0.4rem;
}
.center-box .core .list .box .t {
  font-family: "Montserrat-Bold";
  font-size: 0.35rem;
}
.center-box .core .list .box .hover-box {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}
.center-box .core .list .box .hover-box .top {
  width: 100%;
}
.center-box .core .list .box .hover-box .top img {
  width: 100%;
}
.center-box .core .list .box .hover-box .bottom {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 50%;
  flex: 1;
  padding: 0.93rem 0.35rem 0.64rem 0.35rem;
  background: linear-gradient(
    180deg,
    rgba(255, 128, 0, 0) 0%,
    rgba(255, 128, 0, 0.84) 19%,
    #ff8000 100%
  );
}
.center-box .core .list .box .hover-box .bottom .t1 {
  font-size: 0.25rem;
  color: #fff;
  font-family: "Montserrat-Bold";
}
.center-box .core .list .box .hover-box .bottom .t2 {
  color: #fff;
  font-size: 0.18rem;
  margin-top: 0.4rem;
  white-space: nowrap;
}
.center-box .core .list .box:nth-last-of-type(1) {
  margin-right: 0;
}
.center-box .core .list .box:hover .hover-box {
  opacity: 1;
}
.center-box .core .ccj_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 1rem;
  height: 1.2rem;
  width: 45%;
  cursor: pointer;
  font-size: 0.24rem;
  transition: all 1s;
}
.center-box .core .ccj_btn img {
  width: 0.25rem;
}
.center-box .core .company_code_jump {
  margin-top: 1.6rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.center-box .core .ccj_btn_l img {
  transform: rotate(180deg);
}
.center-box .core .ccj_btn:hover {
  border-top: 1px solid rgb(255, 128, 3);
  border-bottom: 1px solid rgb(255, 128, 3);
  font-size: 0.26rem;
  color: #000;
}

@media (max-width: 768px) {
  .bg {
    height: auto;
  }
  .bg .title span {
    font-size: 0.7rem;
  }
  .team {
    padding: 0 0.6rem;
  }
  .team .title {
    font-size: 0.5rem;
  }
  .team .desc {
    font-size: 0.25rem;
  }
  .team .boies {
    flex-wrap: wrap;
    background-color: transparent;
    margin-top: 0.86rem;
  }
  .team .boies .box {
    width: 48.8%;
    flex: none;
    background-color: #fff;
    border-radius: 0.2rem;
    padding: 0.4rem 0 0.4rem 0.4rem;
  }
  .team .boies .box .t {
    font-size: 0.2rem;
  }
  .team .boies .box .num {
    font-size: 0.5rem;
  }
  .team .boies .box .d {
    font-size: 0.15rem;
  }
  .team .boies .box:nth-of-type(1) {
    margin-right: 0.15rem;
  }
  .team .boies .box:nth-of-type(2)::before {
    display: none;
  }
  .team .boies .box:nth-of-type(2)::after {
    display: none;
  }
  .team .boies .box:nth-last-of-type(1) {
    width: 100%;
    margin-top: 0.15rem;
  }
  .team .team-swiper {
    width: 100%;
  }
  .team .team-swiper .swiper-slide .content {
    flex: 1;
    position: relative;
    padding-top: 0.2rem;
    background-color: #fff;
    border-radius: 0.4rem;
  }
  .team .team-swiper .swiper-slide .content .t {
    font-size: 0.35rem;
    font-family: "Montserrat-Bold";
    height: 1.8rem;
    color: #fff;
  }
  .team .team-swiper .swiper-slide .content .line {
    width: 0.56rem;
    height: 0.04rem;
    background-color: #fff;
  }
  .team .team-swiper .swiper-slide .content .d {
    font-size: 0.2rem;
    height: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
  }
  .team .team-swiper .swiper-slide .content .c-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.53rem 0.54rem 1.14rem 0.54rem;
    transition: all 0.5s;
    border-radius: 0.4rem;
    position: relative;
    z-index: 1;
    height: 90%;
    background-color: #000;
  }
  .team .team-swiper .swiper-slide .content::after {
    background-color: #ff8000;
    content: "";
    width: 100%;
    position: absolute;
    border-radius: 0.4rem;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    display: block;
    transition: all 0.5s;
  }
  .team .team-swiper .team-pagination {
    text-align: left;
    left: 0.5rem;
    bottom: 0.46rem;
  }
  .team .team-swiper .team-pagination .swiper-pagination-bullet {
    opacity: 1;
    background: rgba(154, 154, 154, 0.18);
  }
  .team .team-swiper .team-pagination .swiper-pagination-bullet-active {
    background: #ff8000;
  }
  .center-box {
    margin-top: 0.4rem;
    border-radius: 0.5rem 0.5rem 0 0;
  }
  .center-box .center .title {
    font-size: 0.5rem;
    padding-top: 1.13rem;
  }
  .center-box .center .desc {
    font-size: 0.25rem;
  }
  .center-box .center .list {
    overflow-x: auto;
    margin-top: 0.94rem;
    width: 87%;
  }
  .center-box .center .list .box {
    flex: none;
    width: 5.4rem;
    padding: 0.6rem 0.17rem;
    border-radius: 0.2rem;
  }
  .center-box .center .list .box .t {
    font-size: 0.3rem;
  }
  .center-box .center .list .box .d {
    font-size: 0.25rem;
  }
  .center-box .center .list .box .img-box {
    margin-top: 0.5rem;
  }
  .center-box .center .list .box .t2 {
    font-size: 0.25rem;
  }
  .center-box .center .list .box .hover-box {
    font-size: 0.2rem;
    margin-top: 0.3rem;
    line-height: 0.25rem;
    text-align: center;
  }
  .center-box .core {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  .center-box .core .title {
    font-size: 0.5rem;
    padding-top: 1.13rem;
  }
  .center-box .core .desc {
    font-size: 0.25rem;
  }
  .center-box .core .list {
    flex-direction: column;
  }
  .center-box .core .list .box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
    border-radius: 0;
    padding: 0;
  }
  .center-box .core .list .box .t {
    font-size: 0.35rem;
    padding: 0.3rem;
  }
  .center-box .core .list .box .t2 {
    font-size: 0.3rem;
    padding: 0rem 0.3rem;
    line-height: 0.4rem;
  }
  .center-box .core .list .box .d {
    font-size: 0.3rem;
    font-family: "Montserrat-Bold";
    padding: 0.5rem 0.3rem;
  }
  .center-box .core .list .box .img-box .hover-box {
    display: none !important;
    opacity: 0;
  }
  .center-box .core .list .box .mb-bg {
    width: 100%;
  }
  .center-box .core .list .box:hover .img-box .hover-box {
    opacity: 0;
  }
  .center-box .core .company_code_jump {
    margin-top: 1.3rem;
  }
  .center-box .core .company_code_jump {
    margin-top: 0;
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
  .center-box .core .ccj_btn {
    padding: 0 0.2rem;
    height: 1.2rem;
    width: 48%;
    cursor: pointer;
    font-size: 0.24rem;
    transition: all 1s;
    position: relative;
  }
  .center-box .core .ccj_btn_l div {
    text-align: right;
  }
  .center-box .core .ccj_btn_l:after {
    content: "";
    width: 1px;
    height: 40%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5%;
    display: block;
  }
  .center-box .core .ccj_btn:hover {
    font-size: 0.26rem;
  }
  .center-box .core .ccj_btn:hover img {
    transform: translateX(0.2rem);
  }
  .center-box .core .ccj_btn_l:hover img {
    transform: rotate(180deg) translateX(0.2rem);
  }
  .center-box .core .list .box .hover-box .bottom {
    opacity: 0;
    pointer-events: none;
  }
  .center-box .core .list .box:hover .hover-box {
    opacity: 0;
  }
  .team .boies .box {
    width: 100%;
    margin-top: 0.15rem;
  }

  .mup {
    font-size: 0.65rem;
  }
} /*# sourceMappingURL=technology.css.map */
