.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%;
  background-color: #F9F9F9;
}
.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 .banner .text {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  text-align: center;
}
.home #luxy .banner .text p:nth-child(1) {
  color: #ffffff;
  font-size: 40px;
}
.home #luxy .banner .text p:nth-child(2) {
  color: #ffffff;
  font-family: "Oswald-Light";
  margin-top: 20px;
}
.home #luxy .main {
  width: 100%;
}
.home #luxy .main .plicy {
  width: 75%;
  padding: 80px 12.5%;
  margin: 0 auto;
background:url('../images/sebg.jpg') no-repeat;
background-size:cover;
}
.home #luxy .main .plicy .t1 {
  width: 70%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.home #luxy .main .plicy .t1 p:nth-child(1) {
  color: rgba(255,255,255,.5);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .plicy .t1 p:nth-child(2) {
  color: #ffffff;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}
.home #luxy .main .plicy .t2 {
  color: #F5AB18;
  font-size: 40px;
  margin-top: 80px;
}
.home #luxy .main .plicy .allImgs {
  width: 100%;
  margin: 120px auto 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home #luxy .main .plicy .allImgs .item {
  width: 18%;
  transition: all 600ms;
  position: relative;
  overflow: hidden;
  background: #F7F7F7;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 40px;
}
.home #luxy .main .plicy .allImgs .item .pic {
  width: 66px;
  height: 66px;
  border: 1px solid #BBBBBB;
  border-radius: 50%;
  line-height: 66px;
  margin: 0 auto;
  transition: all 600ms;
  color: #999999;
}
.home #luxy .main .plicy .allImgs .item .pic i {
  font-size: 32px;
}
.home #luxy .main .plicy .allImgs .item .p1 {
  margin-top: 20px;
  color: #333333;
  font-size: 24px;
  transition: all 600ms;
}
.home #luxy .main .plicy .allImgs .item .p2 {
  color: #999999;
  font-size: 12px;
  margin-top: 5px;
  transition: all 600ms;
}
.home #luxy .main .plicy .allImgs .item:hover .pic {
  border-color: #EAAE21;
  color: #EAAE21;
}
.home #luxy .main .plicy .allImgs .item:hover .p1, .home #luxy .main .plicy .allImgs .item:hover .p2 {
  color: #EAAE21;
}

.home #luxy .main .process {
  width: 100%;
  padding: 80px 0 100px 0;
  background: url("../images/serbg.png") no-repeat;
  background-size: cover;
  position: relative;
}
.home #luxy .main .process #particles {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.home #luxy .main .process .t1 {
  width: 70%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.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: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}
.home #luxy .main .process .allItems {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 300px 0 200px 0;
}
.home #luxy .main .process .allItems .item {
  position: absolute;
  z-index: 100;
  text-align: center;
  animation: 3s movedom linear infinite;
}
.home #luxy .main .process .allItems .item .pic {
  width: 90px;
  height: 90px;
  background: #EAEAEA;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 600ms;
  color: #999999;
}
.home #luxy .main .process .allItems .item .pic i {
  transition: all 600ms;
  font-size: 40px;
}
.home #luxy .main .process .allItems .item p {
  color: #999999;
  font-size: 20px;
  margin: 10px 0;
  position: relative;
  transition: all 600ms;
}
.home #luxy .main .process .allItems .item::after {
  width: 16px;
  height: 16px;
  background: #DFDFDF;
  border-radius: 50%;
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 45px;
  transition: all 600ms;
  display: none;
}
.home #luxy .main .process .allItems .item:hover .pic {
  background-color: #F5AD1A;
}
.home #luxy .main .process .allItems .item:hover .pic i {
  color: white;
}
.home #luxy .main .process .allItems .item:hover p {
  color: #F5AD1A;
}
.home #luxy .main .process .allItems .item:hover::after {
  background-color: #F5AD1A;
}
@keyframes movedom {
  0% {
    transform: translate(10px, 15px);
  }
  25% {
    transform: translate(20px, 30px);
  }
  50% {
    transform: translate(10px, 15px);
  }
  75% {
    transform: translate(20px, 30px);
  }
  100% {
    transform: translate(10px, 15px);
  }
}
.home #luxy .main .process .allItems .item:nth-child(1) {
  left: 14%;
  top: 100px;
  animation-delay: 200ms;
}
.home #luxy .main .process .allItems .item:nth-child(2) {
  left: 35%;
  top: 274px;
  flex-direction: column-reverse;
  display: flex;
  animation-delay: 600ms;
}
.home #luxy .main .process .allItems .item:nth-child(2) .pic {
  margin: 20px auto;
}
.home #luxy .main .process .allItems .item:nth-child(3) {
  left: 60%;
  top: 120px;
  animation-delay: 1s;
}
.home #luxy .main .process .allItems .item:nth-child(4) {
  left: 80%;
  top: 250px;
  flex-direction: column-reverse;
  display: flex;
  animation-delay: 1400ms;
}
.home #luxy .main .process .allItems .item:nth-child(4) .pic {
  margin: 20px auto;
}
.home #luxy .main .behind {
  width: 75%;
  margin: 80px auto;
}
.home #luxy .main .behind .t1 {
  width: 70%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.home #luxy .main .behind .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 .behind .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 .behind .allItems {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
}
.home #luxy .main .behind .allItems .item {
  width: 27%;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  padding: 30px 2%;
}
.home #luxy .main .behind .allItems .item .pic i {
  font-size: 40px;
  transition: all 600ms;
}
.home #luxy .main .behind .allItems .item .p1 {
  color: #333333;
  font-size: 20px;
  margin: 20px 0;
  transition: all 600ms;
}
.home #luxy .main .behind .allItems .item .des {
  color: #666666;
  line-height: 28px;
  transition: all 600ms;
}
.home #luxy .main .behind .allItems .item:hover .pic i {
  color: #F6AD2D;
}
.home #luxy .main .behind .allItems .item:hover .p1, .home #luxy .main .behind .allItems .item:hover .des {
  color: #F6AD2D;
}
.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 .text p:nth-child(1) {
    color: #ffffff;
    font-size: 20px;
}

.home #luxy .main .plicy {
    width: 90%;
    padding: 40px 0;
    margin: 0 auto;
}
.home #luxy .main .plicy .t1 {
    width: 100%;
}
.home #luxy .main .plicy .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .plicy .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .plicy .t2 {
    color: #F5AB18;
    font-size: 30px;
    margin-top: 40px;
}
.home #luxy .main .plicy .allImgs {
    margin: 30px auto;
flex-wrap: wrap;
}

.home #luxy .main .plicy .allImgs .item {
    width: 100%;
    pointer-events: none;
}

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

.home #luxy .main .behind .t1 {
    width: 100%;
}
.home #luxy .main .behind .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .behind .t1 p:nth-child(2) {
    font-size: 20px;
}

.home #luxy .main .behind .allItems {
    flex-wrap: wrap;
    margin-top: 30px;
}
.home #luxy .main .behind .allItems .item {
    width: 90%;
    padding: 30px 5%;
    margin-bottom: 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;
}
}

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