.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 .dom0 {
  width: 70%;
  padding: 0 15%;
  display: flex;
  flex-direction: row;
  position: fixed;
  background-color: white;
  left: 0;
  top: 83px;
  z-index: 100;
  opacity: 0;
  transition: all 600ms;
}
.home .dom0 span {
  display: block;
  position: relative;
  padding: 20px 0;
  color: #999999;
  margin-right: 80px;
  cursor: pointer;
  transition: all 600ms;
  font-weight: 200;
}
.home .dom0 span::after {
  content: "";
  display: block;
  width: 0;
  background-color: #F5AB18;
  height: 1px;
  position: absolute;
  left: 0;
  transition: all 600ms;
  bottom: 0;
}
.home .dom0 span:hover {
  color: #F5AB18;
}
.home .dom0 span:hover::after {
  width: 100%;
}
.home .dom0 .active {
  color: #F5AB18;
}
.home .dom0 .active::after {
  width: 100%;
}
.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 .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 .navList {
  width: 80%;
  padding: 0 10%;
  display: flex;
  flex-direction: row;
  transition: all 1s;
  border-bottom: 1px solid #D9D9D9;
}
.home #luxy .main .navList span {
  display: block;
  position: relative;
  padding: 40px 0;
  color: #999999;
  margin-right: 80px;
  cursor: pointer;
  transition: all 600ms;
  font-weight: 200;
}
.home #luxy .main .navList span::after {
  content: "";
  display: block;
  width: 0;
  background-color: #F5AB18;
  height: 1px;
  position: absolute;
  left: 0;
  transition: all 600ms;
  bottom: 0;
}
.home #luxy .main .navList span:hover {
  color: #F5AB18;
}
.home #luxy .main .navList span:hover::after {
  width: 100%;
}
.home #luxy .main .navList .active {
  color: #F5AB18;
}
.home #luxy .main .navList .active::after {
  width: 100%;
}
.home #luxy .main .about {
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 120px;
}
.home #luxy .main .about .intro {
  width: 100%;
}

.home #luxy .main .about .intro .t1 {
  position: relative;
}
.home #luxy .main .about .intro .t1 p:nth-child(1) {
  color: #F5F5F6;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .about .intro .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0px;
}
.home #luxy .main .about .intro .content {
  margin-top: 80px;
}
.home #luxy .main .about .intro .content .t2 {
  color: #333333;
  font-size: 24px;
}
.home #luxy .main .about .intro .content .en {
  color: #333333;
  font-size: 24px;
  margin: 15px 0 40px 0;
}
.home #luxy .main .about .intro .content .des {
  color: #666666;
  line-height: 30px;
  font-size: 14px;
}
/*.home #luxy .main .about .r {
  width: 35%;
  overflow: hidden;
}
.home #luxy .main .about .r img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 4s;
}*/
.home #luxy .main .about .r:hover img {
  transform: scale(1.05);
}
.home #luxy .main .story {
  width: 100%;
  background: url("../images/stroyBg.png") no-repeat;
  background-size: cover;
  padding: 80px 0 150px 0;
  margin-top: 60px;
}
.home #luxy .main .story .content {
  width: 70%;
  margin: 0 auto;
}
.home #luxy .main .story .content .t1 {
  position: relative;
}
.home #luxy .main .story .content .t1 p:nth-child(1) {
  color: rgba(245, 245, 246, 0.1);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .story .content .t1 p:nth-child(2) {
  color: #ffffff;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home #luxy .main .story .content .des {
  color: #FFFFFF;
  line-height: 30px;
  margin-top: 80px;
  font-weight: 200;
  font-size: 14px;
}
.home #luxy .main .history {
  width: 100%;
  background: url("../images/historyBg.png") no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.home #luxy .main .history .t1 {
  position: relative;
  text-align: center;
}
.home #luxy .main .history .t1 p:nth-child(1) {
  color: #F5F5F6;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .history .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 .history .allImgs {
  width: 100%;
  margin-top: 80px;
  position: relative;
}
.home #luxy .main .history .allImgs::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #E5E5E5;
  height: 2px;
  width: 100%;
}
.home #luxy .main .history .allImgs .swiper-wrapper {
  width: 100%;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .pic {
  width: 100%;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .pic img {
  width: 100%;
  display: block;
  object-fit: contain;
  height: 250px;
  transition: all 600ms;
  border-radius: 30px;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .pic:hover img {
  transform: scale(1.05);
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .year {
  text-align: center;
  margin: 40px 0;
  transform: translateY(13px);
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .year .circle {
  width: 10px;
  height: 10px;
  background: #F5AB18;
  border-radius: 50%;
  margin: 0 auto;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .year p {
  color: #999999;
  font-size: 20px;
  margin-top: 5px;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .text {
  height: 250px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .text .p1 {
  color: #333333;
  font-size: 22px;
  margin-top: 40px;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .text .des {
  color: #999999;
  font-weight: 200;
  line-height: 30px;
  margin-top: 15px;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide:nth-of-type(even) .item {
  flex-direction: column-reverse;
}
.home #luxy .main .tech {
  width: 70%;
  margin: 80px auto;
}
.home #luxy .main .tech .t1 {
  position: relative;
}
.home #luxy .main .tech .t1 p:nth-child(1) {
  color: #F5F5F6;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .tech .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home #luxy .main .tech .description {
  width: 100%;
  color: #999999;
  line-height: 32px;
  margin: 60px 0;
  font-weight: 200;
  font-size: 15px;
}
.home #luxy .main .tech .allItems {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 120px;
}
.home #luxy .main .tech .allItems .item {
  width: 23%;
  background: #F4F4F4;
  border-radius: 20px;
  padding-top: 40px;
  position: relative;
  transition: all 600ms;
}
.home #luxy .main .tech .allItems .item .num {
  font-size: 80px;
  font-weight: 400;
  color: rgba(245, 245, 246, 0);
  line-height: 56px;
  -webkit-text-stroke: 1px rgba(245, 171, 24, 0.5);
  position: absolute;
  font-family: "Oswald-Regular";
  top: -50px;
  left: 5%;
  transition: all 600ms;
}
.home #luxy .main .tech .allItems .item .p1 {
  width: 90%;
  padding: 0 5% 15px 5%;
  font-size: 20px;
  border-bottom: 1px solid #DBDBDB;
  transition: all 600ms;
}
.home #luxy .main .tech .allItems .item .des {
  width: 90%;
  margin: 15px auto;
  color: #666666;
  font-size: 14px;
  line-height: 25px;
  transition: all 600ms;
  height: 200px;
}
.home #luxy .main .tech .allItems .item .pic {
  width: 100%;
  margin-top: 80px;
  transition: all 600ms;
}
.home #luxy .main .tech .allItems .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.home #luxy .main .tech .allItems .item:hover {
  background-color: #F5AB18;
}
.home #luxy .main .tech .allItems .item:hover .num {
  -webkit-text-stroke: 1px rgba(153, 153, 153, 0.5);
}
.home #luxy .main .tech .allItems .item:hover .p1, .home #luxy .main .tech .allItems .item:hover .des {
  color: #ffffff;
  transform: translateY(50px);
}
.home #luxy .main .tech .allItems .item:hover .pic {
  opacity: 0;
}
.home #luxy .main .quality {
  width: 70%;
  background: url("../images/qbg.png") no-repeat;
  background-size: cover;
  padding: 100px 15%;
}
.home #luxy .main .quality .t1 {
  position: relative;
}
.home #luxy .main .quality .t1 p:nth-child(1) {
  color: #F5F5F6;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .quality .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}

.home #luxy .main .quality .pic1{
width:100%;
margin-top:60px;
}
.home #luxy .main .quality .pic1 img{
display: block;
    width: 100%;
    object-fit: cover;
}

.home #luxy .main .quality .allItems {
  width: 100%;
  margin-top: 60px;
  position: relative;
  padding-top: 150px;
}
.home #luxy .main .quality .allItems .swiper-pagination {
  position: absolute;
  left: 5%;
  top: 40px;
  display: flex;
  flex-direction: row;
  width: 80%;
}
.home #luxy .main .quality .allItems .swiper-pagination .swiper-pagination-bullet {
  width: auto;
  display: inline-block;
  position: relative;
  border-radius: 0;
  color: #999999;
  opacity: 1;
  font-size: 24px;
  transition: all 600ms;
  height: auto;
  background-color: transparent;
  margin-right: 40px;
  padding-bottom: 10px;
}
.home #luxy .main .quality .allItems .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #F5AB18;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 600ms;
}
.home #luxy .main .quality .allItems .swiper-pagination .swiper-pagination-bullet-active {
  color: #F5AB18;
}
.home #luxy .main .quality .allItems .swiper-pagination .swiper-pagination-bullet-active::after {
  width: 100%;
}
.home #luxy .main .quality .allItems .swiper-container {
  width: 100%;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .text {
  width: 42%;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  padding: 40px 4%;
  transition: all 1s;
  transform: translateX(-1000px);
  opacity: 0;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .text .p1 {
  color: #333333;
  font-weight: bolder;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .text .des {
  color: #999999;
  line-height: 30px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 200;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .pic {
  width: 50%;
  transition: all 1s;
  transform: translateX(1000px);
  opacity: 0;
  overflow: hidden;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .pic:hover img {
  transform: scale(1.05);
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide-active .item .text, .home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide-active .item .pic {
  opacity: 1;
  transform: translateX(0);
}
.home #luxy .main .honor {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home #luxy .main .honor .sw1 {
  width: 50%;
}
.home #luxy .main .honor .sw1 .swiper-container {
  width: 100%;
}
.home #luxy .main .honor .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 100%;
  overflow: hidden;
height:100%;
}
.home #luxy .main .honor .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 2s;
}
.home #luxy .main .honor .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.home #luxy .main .honor .sw2 {
  width: 30%;
  padding: 0 10%;
  background-color: #F5F3F0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home #luxy .main .honor .sw2 .t1 {
  position: relative;
}
.home #luxy .main .honor .sw2 .t1 p:nth-child(1) {
  color: rgba(51, 51, 51, 0.07);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .honor .sw2 .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home #luxy .main .honor .sw2 .swiper-container {
  width: 100%;
  height: 350px;
  margin-top: 40px;
}
.home #luxy .main .honor .sw2 .swiper-container .swiper-wrapper .swiper-slide p {
  color: #666666;
  font-weight: 200;
  cursor: pointer;
  transition: all 600ms;
}
.home #luxy .main .honor .sw2 .swiper-container .swiper-wrapper .swiper-slide-active p {
  color: #F5AB18;
}
.home #luxy .main .leader {
  width: 70%;
  background: url("../images/lbg.png") no-repeat;
  background-size: cover;
  padding: 60px 15% 200px 15%;
  position: relative;
overflow: hidden;
}
.home #luxy .main .leader .t1 {
  position: relative;
}
.home #luxy .main .leader .t1 p:nth-child(1) {
  color: rgba(255,255,255,.14);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .leader .t1 p:nth-child(2) {
  color: #ffffff;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home #luxy .main .leader .content {
  width: 100%;
  margin-top: 60px;
  padding-top: 120px;
}

.home #luxy .main .leader .content .text{
width:100%;
display:flex;
}
.home #luxy .main .leader .content .text .lt{
color:white;
font-size:46px;
font-weight:bold;
margin-right:40px;
}

.home #luxy .main .leader .content .text .rt .aItem{
margin-top: 20px;
}

.home #luxy .main .leader .content .text .rt .aItem .sp1{
color:white;
font-size:32px;
font-weight:bold;
}
.home #luxy .main .leader .content .text .rt .aItem .sp2{
color:white;
margin-top:30px;
}


.home #luxy .main .leader .content .text .rt .aItem2{
 margin-top:100px;
}

.home #luxy .main .leader .content .text .rt .aItem2 .sp1{
color:#F2F2F2;
}
.home #luxy .main .leader .content .text .rt .aItem2 .sp2{
color:#F2F2F2;
margin-top:30px;
font-weight:500;
line-height: 30px;
font-size: 16px;
width: 60%;
}

.home #luxy .main .leader .content .people {
  position: absolute;
  right: 10%;
  bottom:0;
  max-width: 50%;
}
.home #luxy .main .leader .content .people img {
  width: 100%;
  display: block;
 height:500px;
  object-fit: contain;
}
.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;
}
.home #luxy .main .about .intro .content .des img{
width:100%;
object-fit: cover;
}
@media screen and (max-width: 1440px){
.home .dom0{
    width: 80%;
    padding: 0 10%;
}
.home #luxy .main .leader{
    width: 80%;
    padding: 60px 10% 200px 10%;
}
.home #luxy .main .leader .content .people {
    right: 0%;
}
.home #luxy .main .leader .content .people img {
    height: 400px;
}
.home #luxy .main .honor .sw1 .swiper-container{
height:100%;
}
.home #luxy .main .honor .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic img{
height:100%;
}
}

@media screen and (max-width: 1300px){
.home #luxy .main .quality .allItems{
  padding-top: 110px;
  }
.home #luxy .main .leader .content{
    padding-top: 0;
}
.home #luxy .main .leader .content .text .lt {
    font-size: 30px;
}
.home #luxy .main .leader .content .text .rt .aItem .sp1 {
    font-size: 24px;
}
.home #luxy .banner .text p:nth-child(1) {
    color: #ffffff;
    font-size: 20px;
}
.home #luxy .main .navList {
    width:90%;
    padding: 0 5%;
    flex-wrap: wrap;
display:none;
}
.home #luxy .main .navList span {
    padding: 10px 0;
    width: 33%;
    text-align: center;
    margin-right: 0;
}
.home #luxy .main .about .intro .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .about .intro .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .about{
width:90%;
margin: 0 auto;
    padding-top: 30px;
}
.home #luxy .main .about .intro .content {
    margin-top: 20px;
}
.home #luxy .main .about .intro .content .t2 {
    color: #333333;
    font-size: 20px;
}
.home #luxy .main .about .intro .content .en {
    color: #333333;
    font-size: 20px;
    margin: 15px 0 40px 0;
}

.home #luxy .main .story .content{
width:90%;
}
.home #luxy .main .story .content .t1 p:nth-child(1) {
    color: rgba(245, 245, 246, 0.1);
    font-size: 40px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}
.home #luxy .main .story .content .t1 p:nth-child(2) {
    color: #ffffff;
    font-size: 20px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0;
}
.home #luxy .main .story .content .des {
    margin-top: 30px;
}
.home #luxy .main .story {
    padding: 80px 0 60px 0;
}
.home #luxy .main .history{
    padding: 40px 0 0 0;
}
.home #luxy .main .history .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .history .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .history .allImgs {
    width: 90%;
    margin: 30px auto;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .text .p1 {
    color: #333333;
    font-size: 18px;
    margin-top: 40px;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide:nth-of-type(even) .item {
    flex-direction: column;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .year {
    margin: 10px 0;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .text .p1 {
    color: #333333;
    font-size: 18px;
    margin-top: 10px;
}
.home #luxy .main .history .allImgs .swiper-wrapper .swiper-slide .item .text{
    height: auto;
}
.home #luxy .main .tech {
    width: 90%;
    margin: 40px auto;
}
.home #luxy .main .tech .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .tech .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .tech .allItems{
    flex-wrap: wrap;
}
.home #luxy .main .tech .allItems .item {
    width: 100%;
    margin-bottom: 30px;
}
.home #luxy .main .tech .allItems .item .des {
    height: auto;
}
.home #luxy .main .quality {
    width: 90%;
    padding: 30px 5%;
}
.home #luxy .main .quality .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .quality .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item {
    width: 100%;
    flex-direction: column;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .text {
    width: 92%;
    padding: 40px 4%;
}
.home #luxy .main .quality .allItems .swiper-container .swiper-wrapper .swiper-slide .item .pic {
    width: 100%;
}
.home #luxy .main .quality .allItems .swiper-pagination {
    position: absolute;
    left: 5%;
    top: 50px;
    display: flex;
    flex-direction: row;
    width: 90%;
}
.home #luxy .main .quality .allItems .swiper-pagination .swiper-pagination-bullet {
    font-size: 16px;
}
.home #luxy .main .quality .allItems{
margin-top: 10px;
}
.home #luxy .main .honor {
    flex-direction: column;
}
.home #luxy .main .honor .sw1 {
    width: 100%;
}
.home #luxy .main .honor .sw2 {
    width: 90%;
    padding: 30px 5%;
}
.home #luxy .main .honor .sw2 .t1 p:nth-child(1) {
    color: rgba(51, 51, 51, 0.07);
    font-size: 40px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}
.home #luxy .main .honor .sw2 .t1 p:nth-child(2) {
    color: #333333;
    font-size: 20px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0;
}
.home #luxy .main .leader {
    width: 90%;
   padding: 60px 5% 0 5%;
}
.home #luxy .main .honor .sw2 .t1 p:nth-child(1) {
    color: rgba(51, 51, 51, 0.07);
    font-size: 40px;
    font-family: "Oswald-Regular";
    text-transform: uppercase;
}
.home #luxy .main .honor .sw2 .t1 p:nth-child(2) {
    color: #333333;
    font-size: 20px;
    font-weight: bolder;
    position: absolute;
    left: 0;
    bottom: 0;
}

.home #luxy .main .leader .t1 p:nth-child(1){
font-size:40px;
}
.home #luxy .main .leader .t1 p:nth-child(2){
font-size:20px;
}
.home #luxy .main .leader .content .people {
    position: static;
width:100%;
margin-top: 30px;
max-width: 100%;
}
.home #luxy .main .leader .content .people img{
height:auto;
}
.home #luxy .main .leader .content .text .rt .aItem2 {
    margin-top: 30px;
}
.home #luxy .main .leader .content .text .rt .aItem2 .sp2 {
    color: #F2F2F2;
    font-size: 23px;
    margin-top: 20px;
    font-weight: 500;
}

.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 .section .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 (max-width: 499px){
  .home .dom0{
    display: none;
  }
  .home #luxy .main .leader .content .text{
    display: block;
  }
  .home #luxy .main .leader .content .text .rt .aItem2 .sp2{
    font-size: 16px;
    width: 90%;
  }
  .home #luxy .main .leader .content .text .rt .aItem .sp2{
    width: 90%;
  }
  .home #luxy .main .tech .allItems .item{
    margin-bottom:80px;
  }

}
/*# sourceMappingURL=brand.css.map */
