@keyframes comSwiperPoints {
  0% {
    background-position: center -20px;
  }
  24% {
    background-position: center -20px;
  }
  25% {
    background-position: center -50px;
  }
  49% {
    background-position: center -50px;
  }
  50% {
    background-position: center -80px;
  }
  74% {
    background-position: center -80px;
  }
  75% {
    background-position: center -110px;
  }
  100% {
    background-position: center -110px;
  }
}
@keyframes comSwiperColorPoints {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-300%);
  }
}
@keyframes rotate_added {
  0% {
    background-color: #012FA7;
    transform: rotate(-180deg);
  }
  100% {
    background-color: #012FA7;
    transform: rotate(1deg);
  }
}
@keyframes rotate_added2 {
  0% {
    background-color: #012FA7;
    transform: rotate(0);
  }
  100% {
    background-color: #012FA7;
    transform: rotate(180deg);
  }
}
.btn {
  cursor: pointer;
  transition: all ease 0.2s;
  border-radius: 50px;
  border: 1px solid;
}

.btn-small {
  padding: 3px 29px;
}

.btn-normal {
  padding: 0.09rem 0.29rem;
}

.btn-theme {
  background-color: #012FA7;
  color: #fff;
  border-color: #012FA7;
}
.btn-theme:hover {
  background-color: #1664ff;
  border-color: #1664ff;
}

.btn-info {
  background-color: #fff;
  color: #797979;
  border-color: #797979;
}
.btn-info:hover {
  background-color: #012FA7;
  border-color: #012FA7;
  color: #fff;
}

.text-btn-theme {
  color: rgba(0, 0, 0, 0.72);
}
.text-btn-theme:hover {
  color: #012FA7;
}

.btn-text {
  border: none;
}

.com_main_left {
  float: left;
  width: 904px;
}

.com_main_right {
  float: right;
  width: 280px;
}

@media screen and (max-width: 1280px) {
  .com_main_left {
    width: calc(100vw - 64px - 200px - 38px);
  }
  .com_main_right {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .com_main_left {
    width: 100%;
  }
  .com_main_right {
    width: 100%;
  }
}
main {
  background-color: #fff;
}

.banner-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("/assets/img/home_banner.jpg");
}
.banner-section .section-box {
  padding: 0;
}
.banner-section .section-main .title {
  max-width: 92%;
}
.banner-section .container {
  position: relative;
  z-index: 3;
}
.banner-section video {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.banner-section::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.parts-section {
  margin-bottom: 0.8rem;
}

.part-box {
  display: flex;
  height: calc(100vh - 88px);
}
.part-box:nth-child(even) {
  flex-direction: row-reverse;
}
.part-box .text-out {
  flex: 4;
  display: flex;
  transition: none;
}
.part-box .text-out .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.8rem 0.3rem 0.3rem;
}
.part-box .text-out .title {
  margin-bottom: 0.06rem;
  position: relative;
  font-size: 0.48rem;
  line-height: 0.6rem;
}
.part-box .text-out .title span {
  font-size: 0.48rem;
  line-height: 0.6rem;
  position: relative;
  z-index: 1;
  font-weight: 900;
  display: block;
}
.part-box .text-out .title::before {
  content: attr(data-text);
  position: absolute;
  color: #F1F1F1;
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 0.8rem;
  top: -0.7rem;
  white-space: nowrap;
}
.part-box .text-out .title::after {
  content: "";
  position: absolute;
  width: calc(100% + 0.3rem);
  height: 0.54rem;
  background-color: #fff;
  top: -0.22rem;
  left: 0;
}
.part-box .text-out .info {
  max-height: 0;
  overflow: hidden;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #797979;
  opacity: 0;
  transition: none;
}
.part-box .text-out .info .info1 {
  font-size: 0.24rem;
  line-height: 0.36rem;
  color: #000;
  font-weight: 700;
}
.part-box .text-out .info .info1 + .info2 {
  margin-top: 0.08rem;
}
.part-box .text-out .info .info2 + .info1 {
  margin-top: 0.3rem;
}
.part-box .text-out .btn {
  margin-top: 0.8rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  padding: 0.1rem 0.3rem;
  width: -moz-fit-content;
  width: fit-content;
}
.part-box .text-out.hover {
  transition: all ease 0.2s;
}
.part-box .text-out.hover .info {
  max-height: 3rem;
  opacity: 1;
  margin-top: 0.24rem;
  transition: all ease 0.4s 0.2s;
}
.part-box .media-box {
  background-color: #000;
  height: 100%;
  flex: 6;
  transition: all ease 0.2s;
  position: relative;
  overflow: hidden;
}
.part-box .media-box .point {
  width: 200vw;
  height: 200vw;
  position: absolute;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 9%, rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
  top: 0;
  left: 0;
}
.part-box .media-box-shopify .img-box {
  height: 150%;
  width: 100%;
}
.part-box .media-box-shopify .img-box .img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.part-box .media-box-wordpress .img-box {
  position: absolute;
  width: 49%;
}
.part-box .media-box-wordpress .img-box:nth-child(1) {
  left: 0;
  top: -10%;
}
.part-box .media-box-wordpress .img-box:nth-child(2) {
  right: 0;
  top: 0;
}
.part-box .media-box-wordpress .img-box .img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.part-box .media-box-self {
  background-image: url(/assets/img/website/asfhuwegwsv.jpg);
  background-size: cover;
}
.part-box .media-box-self .img-box {
  height: 100%;
  width: 100%;
}
.part-box .media-box-self .img-box .img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  margin-left: 40%;
}

.contact-section {
  background-color: #F1F1F1;
}
.contact-section .section-box {
  padding: 0.64rem 0;
  text-align: center;
}
.contact-section .section-box .title {
  font-weight: 900;
  font-size: 0.48rem;
  line-height: 0.6rem;
}
.contact-section .section-box .desc {
  margin: 0.16rem 0 0.5rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
}
.contact-section .section-box .desc span {
  color: #012FA7;
}
.contact-section .section-box .btn {
  font-size: 0.18rem;
  line-height: 0.28rem;
  padding: 0.1rem 0.3rem;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  margin: 0 auto;
}

@media screen and (width <= 980px) {
  .banner-section .container {
    padding: 0;
  }
  .banner-section .section-main .title {
    max-width: 92%;
    font-size: 0.96rem;
    line-height: 1.2rem;
  }
  .banner-section .section-main .info {
    font-size: 0.36rem;
    line-height: 0.56rem;
    font-weight: 500;
    margin: 0.24rem 0 0.48rem;
  }
  .banner-section .section-main .btn {
    font-size: 0.36rem;
    line-height: 0.56rem;
  }
  .banner-section::before {
    background: linear-gradient(rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
  }
  .parts-section {
    margin-bottom: 0.48rem;
  }
  .part-box {
    display: block;
    height: auto;
  }
  .part-box:nth-child(even) {
    flex-direction: column;
  }
  .part-box .text-out {
    flex: 1;
  }
  .part-box .text-out .text-box {
    padding: 1.44rem 0.3rem 0.8rem;
  }
  .part-box .text-out .title {
    margin-bottom: 0.08rem;
    font-size: 0.6rem;
    line-height: 0.82rem;
  }
  .part-box .text-out .title span {
    font-size: 0.6rem;
    line-height: 0.82rem;
  }
  .part-box .text-out .title::before {
    font-size: 0.72rem;
    line-height: 0.96rem;
    font-weight: 900;
    top: -0.64rem;
  }
  .part-box .text-out .title::after {
    top: -0.02rem;
  }
  .part-box .text-out .info {
    max-height: initial;
    font-size: 0.28rem;
    line-height: 0.4rem;
    opacity: 1;
  }
  .part-box .text-out .info .info1 {
    font-size: 0.36rem;
    line-height: 0.56rem;
    color: #000;
    font-weight: 700;
    margin-top: 0.24rem;
  }
  .part-box .text-out .info .info1 + .info2 {
    margin-top: 0.12rem;
  }
  .part-box .text-out .info .info2 + .info1 {
    margin-top: 0.32rem;
  }
  .part-box .text-out .btn {
    margin-top: 0.32rem;
    font-size: 0.36rem;
    line-height: 0.36rem;
    padding: 0;
    border: none;
    color: #012FA7;
    font-weight: 500;
  }
  .part-box .text-out.hover {
    transition: all ease 0.2s;
    flex: 9;
  }
  .part-box .text-out.hover .info {
    max-height: 3rem;
    opacity: 1;
    margin-top: 0.24rem;
    transition: all ease 0.4s 0.2s;
  }
  .part-box .media-box {
    height: 100vw;
    flex: 1;
  }
  .part-box .media-box .point {
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 90%, rgb(0, 0, 0) 100%);
  }
  .part-box .media-box-shopify .img-box {
    height: 100%;
    position: relative;
  }
  .part-box .media-box-shopify .img-box .img {
    width: auto;
  }
  .part-box .media-box-wordpress .img-box:nth-child(2) {
    top: auto;
    bottom: 0;
  }
  .part-box .img-box-scroll[data-node=row] {
    display: flex;
  }
  .part-box .media-box-self .img-box {
    height: auto;
  }
  .part-box .media-box-self .img-box .img {
    padding-bottom: 0.24rem;
  }
  .contact-section .section-box {
    padding: 0.8rem 0;
  }
  .contact-section .section-box .title {
    font-size: 0.6rem;
    line-height: 0.82rem;
  }
  .contact-section .section-box .desc {
    margin: 0.24rem 0 0.6rem;
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .contact-section .section-box .btn {
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding: 0.16rem 0.6rem;
  }
}/*# sourceMappingURL=website.css.map */