.home {
  position: relative;
  width: 100%;
}

.home .header {
  position: fixed;
  left: 0;
  z-index: 10;
  width: 92%;
  padding: 50px 4%;
  transition: all 600ms;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.home .header a {
  position: relative;
  display: inline-block;
}

.home .header a i {
  color: white;
  font-size: 39px;
  transition: all 600ms;
  display: inline-block;
}

.home .header a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: all 600ms;
}

.home .header .lines {
  width: 18px;
  height: 16px;
  position: relative;
  cursor: pointer;
}

.home .header .lines span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 600ms;
}

.home .header .lines span:nth-child(2) {
  top: 5px;
}

.home .header .lines span:nth-child(3) {
  top: 10px;
}

.home .hasBg {
  padding: 20px 4%;
}

.home .hasBg a i {
  opacity: 0;
}

.home .hasBg a img {
  opacity: 1;
}

.home .hasBg .lines span {
  background-color: #000000;
}

.home #luxy {
  width: 100%;
}

.home #luxy .banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.home #luxy .banner .dots {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
}

.home #luxy .banner .dots div {
  width: 10px;
  height: 10px;
  top: -5px;
  margin-left: -5px;
  transform: translateZ(0) scale(0);
  animation: square 4s linear infinite;
  background: #fff;
  display: block;
  position: absolute;
  left: 50%;
}

.home #luxy .banner .dots div:first-child {
  animation-delay: 0.8s;
}

.home #luxy .banner .dots div:nth-child(2) {
  animation-delay: 1.6s;
}

.home #luxy .banner .dots div:nth-child(3) {
  animation-delay: 2.4s;
}

.home #luxy .banner .dots div:nth-child(4) {
  animation-delay: 3.2s;
}

@keyframes square {
  0% {
    transform: translateZ(0) scale(0);
  }

  30% {
    transform: translate3d(0, 15px, 0) scale(0.35);
  }

  50% {
    transform: translate3d(0, 30px, 0) scale(1);
  }

  70% {
    transform: translate3d(0, 45px, 0) scale(0.35);
  }

  100% {
    transform: translate3d(0, 60px, 0) scale(0);
  }
}

.home #luxy .banner img {
  width: 100%;
  display: block;
  height: 100vh;
  object-fit: cover;
  animation: big2 32s forwards linear;
}

@keyframes big2 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.home #luxy .main {
  width: 100%;
}

.home #luxy .main .intro {
  width: 80%;
  margin: 80px auto;
  text-align: center;
}

.home #luxy .main .intro .t1 {
  position: relative;
  text-align: center;
}

.home #luxy .main .intro .t1 p:nth-child(1) {
  color: rgba(51, 51, 51, 0.04);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}

.home #luxy .main .intro .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}

.home #luxy .main .intro .t2 {
  color: #333333;
  font-size: 24px;
  margin: 70px 0 30px 0;
}

.home #luxy .main .intro .des {
  color: #999999;
  line-height: 32px;
}

.home #luxy .main .cInfo {
  width: 100%;
  background: url("../images/mbg.png") no-repeat;
  background-size: cover;
  padding: 120px 0;
}

.home #luxy .main .cInfo .t1 {
  color: #999999;
  line-height: 30px;
  text-align: center;
}

.home #luxy .main .cInfo .content {
  width: 100%;
  position: relative;
}

.home #luxy .main .cInfo .content .dot {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.home #luxy .main .cInfo .content .dot .pic {
  width: 85px;
  height: 85px;
  border: 1px solid #999999;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 600ms;
  overflow: hidden;
}

.home #luxy .main .cInfo .content .dot .pic img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: all 600ms;
}

.home #luxy .main .cInfo .content .dot .r {
  color: #ffffff;
  margin: 0 20px;
  line-height: 28px;
  transition: all 600ms;
}

.home #luxy .main .cInfo .content .dot:hover .pic {
  border-color: #F5AB18;
}

.home #luxy .main .cInfo .content .dot:hover .pic img {
  transform: scale(1.05);
}

.home #luxy .main .cInfo .content .dot:hover .r {
  color: #F5AB18;
}

.home #luxy .main .cInfo .content .dot1 {
  left: 10%;
  top: 20%;
}

.home #luxy .main .cInfo .content .dot2 {
  left: 10%;
  top: 50%;
}

.home #luxy .main .cInfo .content .dot3 {
  left: 10%;
  top: 80%;
}

.home #luxy .main .cInfo .content .dot4 {
  right: 10%;
  top: 20%;
}

.home #luxy .main .cInfo .content .dot5 {
  right: 10%;
  top: 50%;
}

.home #luxy .main .cInfo .content .dot6 {
  right: 10%;
  top: 80%;
}

.home #luxy .main .cInfo .content .circle {
  display: block;
  margin: 60px auto;
  width: 24%;
  position: relative;
}

.home #luxy .main .cInfo .content .circle .pic1 {
  width: 100%;
  display: block;
  object-fit: contain;
  animation: rotate 20s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0);
  }
}

.home #luxy .main .cInfo .content .circle .scircle {
  position: absolute;
  left: 50%;
  top: 50%;
  /* margin-bottom: 10%; */
  transform: translate(-50%, -50%);
  background: url("../images/pc.png") no-repeat;
  background-size: cover;
  width: 430px;
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home #luxy .main .cInfo .content .circle .scircle::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #F5AB18;
  animation: warn 2s ease-out both infinite;
  box-shadow: 0 0 40px rgba(245, 171, 24, 0.5), inset 0 0 20px rgba(245, 171, 24, 0.8);
}

@keyframes warn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.home #luxy .main .join {
  width: 70%;
  margin: 60px auto;
}

.home #luxy .main .join .t1 {
  position: relative;
  text-align: center;
}

.home #luxy .main .join .t1 p:nth-child(1) {
  color: rgba(51, 51, 51, 0.04);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}

.home #luxy .main .join .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}

.home #luxy .main .join .allItems {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 60px auto;
}

.home #luxy .main .join .allItems .item {
  width: 23%;
  border: 1px solid #E3E3E3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  text-align: center;
  margin-bottom: 30px;
  transition: all 600ms;
}

.home #luxy .main .join .allItems .item .pic {
  width: 92px;
  height: 92px;
  background: #F7F7F7;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 600ms;
}

.home #luxy .main .join .allItems .item .pic i {
  font-size: 40px;
  color: #F5AB18;
  transition: all 600ms;
}

.home #luxy .main .join .allItems .item .p1 {
  color: #333333;
  font-size: 20px;
  margin: 20px 0;
  transition: all 600ms;
}

.home #luxy .main .join .allItems .item .des {
  color: #999999;
  width: 80%;
  line-height: 28px;
  font-weight: 200;
}

.home #luxy .main .join .allItems .item:hover {
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.09);
  border-color: #ffffff;
}

.home #luxy .main .join .allItems .item:hover .pic {
  background-color: #F5AB18;
}

.home #luxy .main .join .allItems .item:hover .pic i {
  color: #ffffff;
}

.home #luxy .main .join .allItems .item:hover .p1 {
  transform: scale(1.2);
}

.home #luxy .main .support {
  background-color: #F8F8F8;
  width: 100%;
  padding: 80px 0;
}

.home #luxy .main .support .t1 {
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.home #luxy .main .support .t1 p:nth-child(1) {
  color: rgba(51, 51, 51, 0.04);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}

.home #luxy .main .support .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}

.home #luxy .main .support .allImgs {
  width: 100%;
  margin: 60px auto;
  position: relative;
}

.home #luxy .main .support .allImgs .prev {
  width: 34px;
  height: 34px;
  background: rgba(248, 248, 248, 0.5);
  position: absolute;
  right: 40%;
  bottom: 15%;
  z-index: 100;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  transition: all 600ms;
}

.home #luxy .main .support .allImgs .prev i {
  color: #ffffff;
}

.home #luxy .main .support .allImgs .prev:hover {
  background-color: #F5AB18;
}

.home #luxy .main .support .allImgs .next {
  width: 34px;
  height: 34px;
  background: rgba(248, 248, 248, 0.5);
  position: absolute;
  right: 40%;
  bottom: 5%;
  z-index: 100;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transition: all 600ms;
}

.home #luxy .main .support .allImgs .next i {
  color: #ffffff;
}

.home #luxy .main .support .allImgs .next:hover {
  background-color: #F5AB18;
}

.home #luxy .main .support .allImgs .sw1 {
  width: 100%;
}

.home #luxy .main .support .allImgs .sw1 .swiper-container {
  width: 100%;
}

.home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 100%;
  height: 700px;
  display: block;
  overflow: hidden;
  position: relative;
}

.home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .st {
  position: absolute;
  left: 15%;
  top: 20%;
  color: #ffffff;
  font-size: 24px;
}

.home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .text {
  position: absolute;
  left: 15%;
  bottom: 20%;
}

.home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .text .p1 {
  color: #ffffff;
  font-size: 24px;
  font-weight: bolder;
}

.home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .text .p2 {
  color: white;
  font-size: 14px;
  margin-top: 20px;
}

.home #luxy .main .support .allImgs .sw2 {
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1000;
  width: 20%;
  height: 100%;
  overflow: hidden;
  padding: 12px 0;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container {
  width: 100%;
  height: 100%;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .item {
  display: flex;
  width: 50%;
  padding: 20px 0;
  margin: 0 auto;
  transition: all 600ms;
  cursor: pointer;
  position: relative;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .item:after {
  content: '';
  position: absolute;
  top: 10px;
  left: -20px;
  right: -20px;
  bottom: 10px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px 6px 10px 10px;
  z-index: -1;
  transition: ease all .7s;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide-active .item:after {
  transform: scale(1.2);
}


.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .item .pic {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 20px;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.5;
  transition: all 600ms;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .item .rtext {
  height: 50px
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .item .rtext .p1 {
  font-size: 14px;
  color: #333333;
  transition: all 600ms;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .item .rtext .des {
  color: #999999;
  line-height: 1.7;
  font-size: 14px;
  margin-top: 15px;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide-active .item .pic img {
  opacity: 1;
}

.home #luxy .main .support .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide-active .item .rtext .p1 {
  transform: scale(1.2) translateX(20px);
  color: #333333;
}

.home #luxy .main .support .allImg2 {
  width: 100%;
  position: relative;
  margin: 0 auto;
  /*border: 1px solid red;*/
}

.home #luxy .main .support .allImg2 .swiper-container {
  width: 95%;
  margin: 0 auto;
}

.home #luxy .main .support .allImg2 .prev {
  width: 32px;
  height: 213px;
  background: #eaae0066;
  position: absolute;
  left: 10px;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.home #luxy .main .support .allImg2 .next {
  width: 32px;
  height: 213px;
  background: #eaae0066;
  position: absolute;
  right: 10px;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transform: rotate(180deg);
  /*border: 1px solid red;*/
}

.home #luxy .main .support .allImg2 .swiper-container .pic {
  width: 100%;
  overflow: hidden;
}

.home #luxy .main .support .allImg2 .swiper-container .pic img {
  width: 100%;
  display: block;
  object-fit: contain;
  height: 215px;
  transition: all 600ms;
}

.home #luxy .main .support .allImg2 .swiper-container .pic img:hover {
  transform: scale(1.02);
}

.home #luxy .main .process {
  width: 70%;
  padding: 100px 15%;
  background: url("../images/probg.png") no-repeat;
  background-size: cover;
}

.home #luxy .main .process .t1 {
  position: relative;
}

.home #luxy .main .process .t1 p:nth-child(1) {
  color: rgba(51, 51, 51, 0.04);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}

.home #luxy .main .process .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}

.home #luxy .main .process .allItems {
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.home #luxy .main .process .allItems::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 48%;
  height: 1px;
  width: 100%;
  background-color: #DDDDDD;
}

.home #luxy .main .process .allItems::after {
  content: "";
  display: inline-block;
  background-color: #F5AB18;
  height: 1px;
  width: 20%;
  top: 48%;
  position: absolute;
  left: 0;
  animation: move2 4s linear infinite;
}

@keyframes move2 {
  0% {
    left: 0;
  }

  25% {
    left: 40%;
  }

  50% {
    left: 80%;
  }

  75% {
    left: 40%;
  }

  100% {
    left: 0;
  }
}

.home #luxy .main .process .allItems .item {
  position: relative;
  width: 12.5%;
}

.home #luxy .main .process .allItems .item .circle {
  width: 20px;
  height: 20px;
  background: rgba(245, 171, 24, 0.2);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 13px;
  top: 45%;
  z-index: 10;
}

.home #luxy .main .process .allItems .item .circle::before {
  width: 10px;
  height: 10px;
  background: #F5AB18;
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home #luxy .main .process .allItems .item .p1 {
  color: #333333;
  font-size: 20px;
}

.home #luxy .main .process .allItems .item .p2 {
  color: #999999;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 200;
  line-height: 25px;
}

.home #luxy .main .process .allItems .item .pic img {
  width: 50px;
}

.home #luxy .main .process .allItems .item2 {
  margin-top: 230px;
  position: relative;
  width: 12.5%;
}

.home #luxy .main .process .allItems .item2 .circle {
  width: 20px;
  height: 20px;
  background: rgba(245, 171, 24, 0.2);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 13px;
  top: -46px;
  z-index: 10;
}

.home #luxy .main .process .allItems .item2 .circle::before {
  width: 10px;
  height: 10px;
  background: #F5AB18;
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home #luxy .main .process .allItems .item2 .p1 {
  color: #333333;
  font-size: 20px;
}

.home #luxy .main .process .allItems .item2 .p2 {
  color: #999999;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 200;
  line-height: 25px;
}

.home #luxy .main .process .allItems .item2 .pic {
  margin-bottom: 10px;
}

.home #luxy .main .process .allItems .item2 .pic img {
  width: 50px;
}

.home #luxy .main .cases {
  width: 70%;
  padding: 60px 15%;
  background-color: #F6F6F6;
}

.home #luxy .main .cases .t1 {
  position: relative;
  text-align: center;
}

.home #luxy .main .cases .t1 p:nth-child(1) {
  color: rgba(0, 0, 0, 0.09);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}

.home #luxy .main .cases .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.home #luxy .main .cases .allImgs {
  width: 100%;
  margin: 60px auto;
}

.home #luxy .main .cases .allImgs .sw1 {
  width: 100%;
  position: relative;
}

.home #luxy .main .cases .allImgs .sw1 .casePrev {
  background: url(../images/mgs_icon.png) no-repeat;
  width: 25px;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  background-position: 0 -262px;
  left: -15px;
  cursor: pointer;
}

.home #luxy .main .cases .allImgs .sw1 .caseNext {
  background: url(../images/mgs_icon.png) no-repeat;
  width: 25px;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  background-position: -25px -262px;
  cursor: pointer;
  right: -15px;
}

.home #luxy .main .cases .allImgs .sw1 .swiper-container {
  width: 100%;
}

.home #luxy .main .cases .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}

.home #luxy .main .cases .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  transition: all 600ms;
}

.home #luxy .main .cases .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  border-radius: 0;
}

.home #luxy .main .cases .allImgs .sw2 {
  width: 100%;
  border: 13px solid #cfcfcf;
  z-index: 2;
  background: #fff;
  margin: 60px auto;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container {
  width: 100%;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left {
  width: 34%;
  padding: 40px 3%;
  position: relative;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left .info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left .info .t {
  margin-left: 30px;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left .info .t p:nth-child(1) {
  margin-bottom: 15px;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left .des {
  font-size: 15px;
  line-height: 28px;
  color: #666;
  height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left .des p {
  padding-right: 10px;
  font-size: 14px;
  text-indent: 0;
  line-height: 28px;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left .des::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: #F5AB18;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left .des::-webkit-scrollbar {
  width: 5px;
  background: #e8e8e8;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left em {
  position: absolute;
  right: -24px;
  top: 58px;
  background: url(../images/mgs_icon.png) -125px -264px no-repeat;
  width: 26px;
  height: 53px;
  z-index: 9;
  font-style: normal;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic2 {
  width: 60%;
  overflow: hidden;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic2 img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 490px;
  transition: all 600ms;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic2:hover img {
  transform: scale(1.05);
}

.home #luxy .main .advantage {
  width: 70%;
  margin: 0 auto;
  padding: 120px 0;
}

.home #luxy .main .advantage .t1 {
  position: relative;
  text-align: center;
}

.home #luxy .main .advantage .t1 p:nth-child(1) {
  color: rgba(0, 0, 0, 0.09);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}

.home #luxy .main .advantage .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.home #luxy .main .advantage .table-swiper {
  width: 100%;
  margin: 60px auto;
  position: relative;
  padding-bottom: 60px;
}

.home #luxy .main .advantage .table-swiper .swiper-container {
  width: 100%;
}

.home #luxy .main .advantage .table-swiper .swiper-container .swiper-wrapper .swiper-slide .table {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-collapse: collapse;
  border-spacing: 0;
}

.home #luxy .main .advantage .table-swiper .swiper-container .swiper-wrapper .swiper-slide .table th {
  width: 33.33333%;
  height: 45px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(217, 217, 217, 0.5);
  background-color: #F5AB18;
  font-weight: 200;
}

.home #luxy .main .advantage .table-swiper .swiper-container .swiper-wrapper .swiper-slide .table td {
  height: 45px;
  text-align: center;
  font-size: 14px;
  color: #666;
  border: 1px solid #d9d9d9;
}

.home #luxy .main .advantage .table-swiper .swiper-container .swiper-wrapper .swiper-slide .table td a {
  color: #666;
  -webkit-transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.home #luxy .main .advantage .table-swiper .swiper-container .swiper-wrapper .swiper-slide .table td a:hover {
  color: #F5AB18;
}

.home #luxy .main .advantage .table-swiper .swiper-container .swiper-wrapper .swiper-slide .table tr:nth-child(odd) {
  background-color: #f7f7f7;
}

.home #luxy .main .advantage .table-swiper .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 1000;
}

.home #luxy .main .advantage .table-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #9C9C9C;
  border-radius: 50%;
  opacity: 1;
  background-color: transparent;
  transition: all 600ms;
  margin: 0 5px;
}

.home #luxy .main .advantage .table-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F5AB18;
  border-color: #F5AB18;
}

.home #luxy .main .cooperation {
  width: 70%;
  padding: 80px 15%;
  background-color: #F9F9F9;
}

.home #luxy .main .cooperation .t1 {
  position: relative;
  text-align: center;
}

.home #luxy .main .cooperation .t1 p:nth-child(1) {
  color: rgba(0, 0, 0, 0.09);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}

.home #luxy .main .cooperation .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.home #luxy .main .cooperation .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 60px auto;
}

.home #luxy .main .cooperation .content .l {
  width: 50%;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 5%;
}

.home #luxy .main .cooperation .content .l .p1 {
  color: #333333;
  font-size: 24px;
}

.home #luxy .main .cooperation .content .l .form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}

.home #luxy .main .cooperation .content .l .form .item {
  width: 30%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.home #luxy .main .cooperation .content .l .form .item .pic {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home #luxy .main .cooperation .content .l .form .item .pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.5;
}

.home #luxy .main .cooperation .content .l .form .item .shuru {
  width: calc(95% - 30px);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.home #luxy .main .cooperation .content .l .form .item .shuru input,
.home #luxy .main .cooperation .content .l .form .item .shuru select {
  width: 90%;
  border: none;
  outline: none;
  border-bottom: 1px solid #DDDDDD;
  padding: 10px 0;
  color: #999999;
  font-size: 14px;
}

.home #luxy .main .cooperation .content .l .form .item .shuru span {
  color: #C81623;
  font-size: 14px;
}

.home #luxy .main .cooperation .content .l .form .item2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.home #luxy .main .cooperation .content .l .form .item2 .pic {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home #luxy .main .cooperation .content .l .form .item2 .pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.5;
}

.home #luxy .main .cooperation .content .l .form .item2 .shuru {
  width: calc(100% - 30px);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.home #luxy .main .cooperation .content .l .form .item2 .shuru input {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #DDDDDD;
  padding: 10px 0;
  color: #999999;
  font-size: 14px;
}

.home #luxy .main .cooperation .content .l .submit {
  width: 300px;
  height: 50px;
  background: #F5AB18;
  text-align: center;
  line-height: 50px;
  color: white;
  font-weight: 200;
  cursor: pointer;
  margin-top: 40px;
}

.home #luxy .main .cooperation .content .r {
  width: 38%;
}

.home #luxy .main .cooperation .content .r h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 13px;
  margin-bottom: 20px;
}

.home #luxy .main .cooperation .content .r h3 strong {
  margin-left: 5px;
  position: relative;
  font-size: 28px;
  color: #fff;
  background: url(../images/numbg.png) repeat;
  background-position-y: -2px;
  height: 35px;
  display: inline-block;
  text-align: center;
  padding-left: 6px;
  letter-spacing: 15px;
}

.home #luxy .main .cooperation .content .r h3 strong i {
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  background: #fff;
  height: 35px;
}

.home #luxy .main .cooperation .content .r .allInfo {
  width: 100%;
  margin-top: 30px;
}

.home #luxy .main .cooperation .content .r .allInfo .swiper-container {
  width: 100%;
  height: 400px;
}

.home #luxy .main .cooperation .content .r .allInfo .swiper-container .swiper-wrapper .swiper-slide .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.home #luxy .main .support .allImg2 .swiper-container {
  width: 72%;
  margin: 0 auto;
  /*border: 1px solid green;*/
}

.home #luxy .main .cooperation .content .r .allInfo .swiper-container .swiper-wrapper .swiper-slide .item span {
  color: #666666;
  font-weight: 200;
  font-size: 14px;
}

.home #luxy .main .process .t1 p:nth-child(1) {
  font-size: 40px;
}

.home #luxy .main .process .t1 p:nth-child(2) {
  font-size: 20px;
}



.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .left {
  width: 90%;
  padding: 40px 5%;
  position: relative;
}

.home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic2 {
  width: 100%;
}

.home #luxy .main .cases .allImgs .sw2 {
  width: calc(100% - 26px);
}

.home #luxy .foot {
  width: 100%;
  height: 100vh;
  background: url("../images/fbg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home #luxy .foot .content {
  width: 75%;
  margin: 0 auto;
}

.home #luxy .foot .content .dom1 .t1 {
  color: #333333;
  font-size: 60px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
  line-height: 70px;
}

.home #luxy .foot .content .dom1 .t2 {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  margin-top: 20px;
}

.home #luxy .foot .content .dom2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0;
}

.home #luxy .foot .content .dom2 .links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 70%;
}

.home #luxy .foot .content .dom2 .links .item {
  width: 25%;
}

.home #luxy .foot .content .dom2 .links .item p {
  color: #333333;
  font-size: 20px;
  font-weight: bolder;
}

.home #luxy .foot .content .dom2 .links .item .aList {
  margin-top: 30px;
}

.home #luxy .foot .content .dom2 .links .item .aList a {
  color: #999999;
  position: relative;
  display: block;
  margin-bottom: 10px;
  font-weight: 200;
  transition: all 600ms;
}

.home #luxy .foot .content .dom2 .links .item .aList a::before {
  width: 4px;
  height: 4px;
  background: #333333;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  opacity: 0;
  transition: all 600ms;
}

.home #luxy .foot .content .dom2 .links .item .aList a:hover {
  color: #333333;
}

.home #luxy .foot .content .dom2 .links .item .aList a:hover::before {
  opacity: 1;
}

.home #luxy .foot .content .dom2 .rIcons .icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.home #luxy .foot .content .dom2 .rIcons .icons a {
  width: 45px;
  height: 45px;
  background: #333333;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.home #luxy .foot .content .dom2 .rIcons .icons a i {
  color: white;
}

.home #luxy .foot .content .dom2 .rIcons .icons a:last-child {
  border: 1px solid #333333;
  background-color: transparent;
}

.home #luxy .foot .content .dom2 .rIcons .icons a:last-child img {
  width: 20px;
}

.home #luxy .foot .content .dom2 .rIcons .text {
  text-align: right;
  margin-top: 50px;
}

.home #luxy .foot .content .dom2 .rIcons .text p,
.home #luxy .foot .content .dom2 .rIcons .text a {
  color: #333333;
  font-size: 12px;
  margin-bottom: 5px;
}

.home #luxy .foot .content .dom3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0;
}

.home #luxy .foot .content .dom3 .links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 70%;
}

.home #luxy .foot .content .dom3 .links .item {
  width: 25%;
}

.home #luxy .foot .content .dom3 .links .item a {
  color: #333333;
  font-size: 20px;
  font-weight: bolder;
}

.home #luxy .foot .content .dom3 .r a {
  color: #333333;
  font-size: 12px;
}

@media screen and (max-width: 1300px) {
  .home #luxy .banner {
    height: auto;
  }

  .home #luxy .banner img {
    height: auto;
  }

  .home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic2 img {
    height: 250px;
  }

  .home #luxy .main .cInfo .content .dot4 {
    margin-top: 10px;
    right: 10%;
    top: 20%;
  }

  .home #luxy .main .process .allItems .item {
    position: relative;
    /* width: 33%; */
    width: 100%;
    margin-bottom: 25px;
  }

  .home #luxy .main .process .allItems .item2 {
    margin-top: 0;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
  }

  .home #luxy .main .process .allItems .item .circle {
    width: 20px;
    height: 20px;
    background: rgba(245, 171, 24, 0.2);
    border-radius: 50%;
    display: none;
    position: absolute;
    left: 13px;
    top: 45%;
    z-index: 10;
  }

  .home #luxy .main .process .allItems .item2 .circle::before {
    width: 10px;
    height: 10px;
    background: #F5AB18;
    border-radius: 50%;
    content: "";
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .home #luxy .main .cases .allImgs .sw2 .swiper-container .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
  }

  .home #luxy .main .process .allItems {
    margin: 60px auto 0 auto;
    flex-wrap: wrap;
    text-align: center;
  }

  .home #luxy .main .intro {
    width: 90%;
    margin: 40px auto;
    margin-top: 10px;
  }

  .home #luxy .main .support {
    background-color: #F8F8F8;
    width: 90%;
    padding: 40px 5%;
  }

  .home #luxy .main .process {
    width: 90%;
    padding: 50px 5%;
  }

  .home #luxy .main .cooperation .content .l .p1 {
    font-size: 20px;
  }

  .home #luxy .main .cooperation .content .l .form {
    margin-top: 30px;
  }

  .home #luxy .main .intro .t1 p:nth-child(1) {
    font-size: 40px;
  }

  .home #luxy .main .intro .t1 p:nth-child(2) {
    font-size: 20px;
  }

  .home #luxy .main .intro .t2 {
    color: #333333;
    font-size: 18px;
    margin: 30px 0;
  }

  .home #luxy .main .cInfo .content .dot {
    position: static;
    width: 90%;
    margin: 0 auto 15px auto;
  }

  .home #luxy .main .cInfo .content .circle {
    display: block;
    margin: 100px auto 1 auto;
    width: 40%;
    position: relative;
  }

  .home #luxy .main .cInfo .content .circle .scircle {
    width: 250px;
    height: 250px;
  }

  .home #luxy .main .cInfo .content .dot .r {
    margin: 0;
    text-align: right;
  }
  .home #luxy .main .cInfo .content .dot .s-r {
    margin: 0;
    text-align: left;
  }

  .home #luxy .main .join {
    width: 90%;
    margin: 30px auto;
  }

  .home #luxy .main .join .t1 p:nth-child(1) {
    font-size: 40px;
  }

  .home #luxy .main .join .t1 p:nth-child(2) {
    font-size: 20px;
  }

  .home #luxy .main .join .allItems .item {
    width: 100%;
  }



  .home #luxy .main .support .t1 p:nth-child(1) {
    font-size: 40px;
  }

  .home #luxy .main .support .t1 p:nth-child(2) {
    font-size: 20px;
  }

  .home #luxy .main .support .allImgs {
    margin: 30px auto;
  }

  .home #luxy .main .cooperation {
    width: 90%;
    padding: 40px 5%;
    padding-bottom: 1px;
  }

  .home #luxy .main .cooperation .t1 p:nth-child(1) {
    font-size: 40px;
  }

  .home #luxy .main .cooperation .t1 p:nth-child(2) {
    font-size: 20px;
  }

  .home #luxy .main .cooperation .content {
    flex-direction: column;
  }

  .home #luxy .main .cooperation .content .l {
    width: 90%;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    padding: 40px 5%;
  }

  .home #luxy .main .cooperation .content .r {
    width: 100%;
    margin-top: 20px;
  }

  .home #luxy .main .advantage .t1 p:nth-child(1) {
    font-size: 40px;
  }

  .home #luxy .main .advantage .t1 p:nth-child(2) {
    font-size: 20px;
  }

  .home #luxy .main .advantage .table-swiper {
    margin: 30px auto;
  }

  .home #luxy .main .advantage {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
  }

  .home #luxy .main .support .allImgs .sw2 {
    display: none;
  }

  .home #luxy .main .cooperation .content .r .allInfo .swiper-container {
    height: 400px;
  }

  .home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .st {
    font-size: 20px;
    width: 90%;
    left: 5%;
  }

  .home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .text {
    left: 5%;
  }

  .home #luxy .main .support .allImgs .prev {
    transform: rotate(0deg);
    right: 55%;
    bottom: 0%;
  }

  .home #luxy .main .support .allImgs .next {
    right: 33%;
    bottom: 0%;
    transform: rotate(180deg);
  }

  .home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic {
    height: 350px;
  }

  .home #luxy .main .cases {
    width: 90%;
    padding: 30px 5%;
  }

  .home #luxy .main .cases .t1 p:nth-child(1) {
    font-size: 40px;
  }

  .home #luxy .main .cases .t1 p:nth-child(2) {
    font-size: 20px;
  }

  .home #luxy .foot {
    height: auto;
  }

  .home #luxy .foot .content {
    width: 90%;
    padding: 40px 0;
  }

  .home #luxy .foot .content .dom1 .t1 {
    font-size: 30px;
    line-height: 35px;
  }

  .home #luxy .foot .content .dom1 .t2 {
    font-size: 20px;
  }

  .home #luxy .foot .content .dom2 {
    flex-direction: column;
  }

  .home #luxy .foot .content .dom2 .links {
    display: none;
  }

  .home #luxy .foot .content .dom3 .links {
    display: none;
  }

  .home #luxy .foot .content .dom3 {
    justify-content: center;
    align-items: center;
    margin: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .home #luxy .main .cooperation .content .l .form .item {
    width: 100%;
  }

  .home #luxy .main .cooperation .content .l .form .item:nth-child(3) {
    display: none;
  }

  .home #luxy .main .cooperation .content .l .form .item2 .shuru input {
    width: 92%;
    text-indent: 4px;
  }

  .home #luxy .main .cooperation .content .l .form .item .shuru input {
    text-indent: 4px;
  }

  .home #luxy .banner img {
    margin-top: 104px;
  }
  .home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .st{
    top: 65%;
  }
  .home #luxy .main .support .allImgs .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic .text{
    bottom: 65%;
  }
  .home #luxy .main .process .allItems .item2 .pic img{
  }
}

/*# sourceMappingURL=merchants.css.map */