.home {
  position: relative;
  width: 100%;
}
.home .header {
  position: fixed;
  left: 0;
  z-index: 10;
  width: 96%;
  padding: 50px 3%;
  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 3%;
}
.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: #FAFAFA;
}
.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: 70%;
  padding: 0 15%;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #D9D9D9;
}
.home #luxy .main .navList a {
  display: block;
  position: relative;
  padding: 40px 0;
  color: #999999;
  margin-right: 80px;
  cursor: pointer;
  transition: all 600ms;
  font-weight: 200;
}
.home #luxy .main .navList a::after {
  content: "";
  display: block;
  width: 0;
  background-color: #F5AB18;
  height: 1px;
  position: absolute;
  left: 0;
  transition: all 600ms;
  bottom: 0;
}
.home #luxy .main .navList a:hover {
  color: #F5AB18;
}
.home #luxy .main .navList a:hover::after {
  width: 100%;
}
.home #luxy .main .navList .active {
  color: #F5AB18;
}
.home #luxy .main .navList .active::after {
  width: 100%;
}
.home #luxy .main .target {
  width: 70%;
  margin: 60px auto;
}
.home #luxy .main .target .p1 {
  text-align: center;
  color: #F5AB18;
  font-size: 40px;
  font-weight: 200;
  line-height: 60px;
}
.home #luxy .main .target .p2 {
  color: #666666;
  line-height: 30px;
  margin: 40px 0;
  text-align: center;
}
.home #luxy .main .target .pic {
  width: 100%;
  position: relative;
}
.home #luxy .main .target .pic .pic1 {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home #luxy .main .target .pic .circle {
  position: absolute;
  right: -80px;
  bottom: -80px;
  animation: rotate 10s infinite linear;
  z-index: 100;
}
.home #luxy .main .target .pic .circle img {
  width: 160px;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.home #luxy .main .job {
  width: 70%;
  padding: 80px 15%;
  background-color: #ffffff;
}
.home #luxy .main .job .t1 {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.home #luxy .main .job .t1 p:nth-child(1) {
  color: rgba(230, 230, 231, 0.3);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .job .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0px;
}
.home #luxy .main .job .allItems {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 80px;
}
.home #luxy .main .job .allItems .item {
  width: 19%;
  background: #F7F7F7;
  padding: 30px 2%;
  border-top: 10px solid #E4E4E4;
  position: relative;
  transition: all 600ms;
}
.home #luxy .main .job .allItems .item::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: -10px;
  width: 0;
  height: 10px;
  background-color: #F5AB18;
  transition: all 600ms;
}
.home #luxy .main .job .allItems .item .pic i {
  font-size: 42px;
  color: #F5AB18;
}
.home #luxy .main .job .allItems .item .p1 {
  margin: 30px 0 20px 0;
  color: #333333;
  font-size: 20px;
  font-family: "Oswald-Regular";
}
.home #luxy .main .job .allItems .item .p2 {
  color: #333333;
  font-size: 20px;
}
.home #luxy .main .job .allItems .item .des {
  color: #999999;
  line-height: 30px;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 20px;
}
.home #luxy .main .job .allItems .item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 20px 0px rgba(245, 171, 24, 0.2);
}
.home #luxy .main .job .allItems .item:hover::before {
  width: 100%;
}
.home #luxy .main .provide {
  width: 100%;
  background-color: #EFEFEF;
  padding: 80px 0;
}
.home #luxy .main .provide .nr {
  width: 80%;
  background-color: #ffffff;
  padding: 80px 0;
}
.home #luxy .main .provide .nr .t1 {
  width: 60%;
  margin: 0 auto;
  position: relative;
}
.home #luxy .main .provide .nr .t1 p:nth-child(1) {
  color: rgba(230, 230, 231, 0.3);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .provide .nr .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0px;
}
.home #luxy .main .provide .nr .content {
  margin-left: 20%;
  width: 70%;
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home #luxy .main .provide .nr .content .info {
  width: 50%;
}
.home #luxy .main .provide .nr .content .info .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.home #luxy .main .provide .nr .content .info .item .text {
  color: rgba(245, 245, 246, 0);
  font-size: 80px;
  font-family: "Oswald-Regular";
  -webkit-text-stroke: 1px #F5AB17;
  text-stroke: 1px #F5AB17;
}
.home #luxy .main .provide .nr .content .info .item .rtext {
  width: 75%;
}
.home #luxy .main .provide .nr .content .info .item .rtext p:nth-child(1) {
  color: #333333;
  font-size: 24px;
}
.home #luxy .main .provide .nr .content .info .item .rtext p:nth-child(2) {
  color: #666666;
  margin-top: 15px;
}
.home #luxy .main .provide .nr .content .pic {
  width: 45%;
  overflow: hidden;
}
.home #luxy .main .provide .nr .content .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home #luxy .main .provide .nr .content .pic:hover img {
  transform: scale(1.05);
}
.home #luxy .main .forward {
  width: 70%;
  background-color: #ffffff;
  padding: 100px 15%;
  display: flex;
  flex-direction: row;
  display: none;
}
.home #luxy .main .forward .l {
  background: linear-gradient(115deg, #F5AB18 0%, #FCD13E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}
.home #luxy .main .forward .r {
  margin-left: 10%;
  width: 45%;
}
.home #luxy .main .forward .r .item {
  border: 1px solid #E5E5E5;
  padding: 30px 5%;
  width: 90%;
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  align-items: center;
  transition: all 600ms;
}
.home #luxy .main .forward .r .item .pic {
  width: 42px;
  height: 42px;
}
.home #luxy .main .forward .r .item .pic i {
  font-size: 42px;
  color: #666666;
  transition: all 600ms;
}
.home #luxy .main .forward .r .item p {
  color: #666666;
  margin-left: 30px;
  line-height: 28px;
  transition: all 600ms;
}
.home #luxy .main .forward .r .item:hover {
  background-color: #F5AB18;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.home #luxy .main .forward .r .item:hover .pic i {
  color: #ffffff;
}
.home #luxy .main .forward .r .item:hover p {
  color: #ffffff;
}
.home #luxy .main .forward2 {
  width: 70%;
  background-color: #ffffff;
  padding: 100px 15%;
}
.home #luxy .main .forward2 .tt {
  color: #F5AB18;
  font-size: 56px;
  text-align: center;
}
.home #luxy .main .forward2 .allPics {
  width: 100%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
}
.home #luxy .main .forward2 .allPics .item {
  border: 1px solid #EAEAEA;
  width: 30%;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0);
  transition: all 600ms;
}
.home #luxy .main .forward2 .allPics .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home #luxy .main .forward2 .allPics .item .des {
  color: #333333;
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
  line-height: 32pox;
}
.home #luxy .main .forward2 .allPics .item:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.home #luxy .main .team {
  width: 100%;
  background-color: #FAFAFA;
  padding: 80px 0;
}
.home #luxy .main .team .t1 {
  width: 80%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.home #luxy .main .team .t1 p:nth-child(1) {
  color: rgba(230, 230, 231, 0.3);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .team .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 .team .content {
  width: 100%;
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  padding-bottom: 80px;
}
.home #luxy .main .team .content .l {
  width: 15%;
  position: relative;
}
.home #luxy .main .team .content .l .p1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Oswald-Regular";
  color: #999999;
  font-size: 40px;
  text-transform: uppercase;
  transform: rotate(-90deg);
  position: absolute;
  left: -40px;
  bottom: 110px;
}
.home #luxy .main .team .content .l .p1::after {
  width: 150px;
  height: 2px;
  background: #F5AB18;
  content: "";
  display: inline-block;
  margin-left: 10px;
}
.home #luxy .main .team .content .l .p2 {
  color: #666666;
  position: absolute;
  left: 47%;
  bottom: 34px;
  letter-spacing: 2px;
  transform: rotate(-90deg);
}
.home #luxy .main .team .content .allImgs {
  width: 75%;
  position: relative;
}
.home #luxy .main .team .content .allImgs .prev {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #DDDDDD;
  border-radius: 50%;
  bottom: -100px;
  left:40%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 600ms;
  cursor: pointer;
}
.home #luxy .main .team .content .allImgs .prev i {
  font-size: 20px;
  color: #FAFAFA;
}
.home #luxy .main .team .content .allImgs .prev:hover {
  background-color: #F5AB18;
}
.home #luxy .main .team .content .allImgs .next {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #DDDDDD;
  border-radius: 50%;
  bottom: -100px;
   left:55%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  cursor: pointer;
  transition: all 600ms;
}
.home #luxy .main .team .content .allImgs .next i {
  font-size: 20px;
  color: #FAFAFA;
}
.home #luxy .main .team .content .allImgs .next:hover {
  background-color: #F5AB18;
}
.home #luxy .main .team .content .allImgs .swiper-container {
  width: 100%;
}
.home #luxy .main .team .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home #luxy .main .team .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 600ms;
  z-index: 10;
}
.home #luxy .main .team .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home #luxy .main .team .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic:hover::before {
  opacity: 1;
}
.home #luxy .main .team .content .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.home #luxy .main .conWay {
  width: 70%;
  margin: 60px auto;
}
.home #luxy .main .conWay .t1 {
  position: relative;
}
.home #luxy .main .conWay .t1 p:nth-child(1) {
  color: rgba(230, 230, 231, 0.3);
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .conWay .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home #luxy .main .conWay .allItems {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
.home #luxy .main .conWay .allItems .item {
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 60px;
}
.home #luxy .main .conWay .allItems .item .spic {
  width: 30px;
  height: 30px;
  border: 2px solid #333333;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home #luxy .main .conWay .allItems .item p {
  color: #333333;
  font-size: 18px;
  margin-left: 20px;
}
.home #luxy .main .conWay .allItems .item:last-child {
  width: 100%;
}
.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 .forward2 .tt{
    font-size: 28px;
}
.home #luxy .main .forward2 .allPics {
    margin: 30px auto;
flex-wrap: wrap;
}

.home #luxy .main .forward2 .allPics .item {
    width: 100%;
    margin-bottom: 20px;
}

.home #luxy .main .forward2 {
    width: 90%;
    padding: 50px 5%;
}
.home #luxy .main .navList{
width: 90%;
    padding: 0 5%;
}
.home #luxy .main .navList a{
display: block;
    width: 25%;
    text-align: center;
    padding: 20px 0;
     margin-right: 0;
}

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


.home #luxy .main .target .p1 {
    font-size: 20px;
    line-height: 30px;
}

.home #luxy .main .target .p2 {
    margin: 20px 0;
}

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

.home #luxy .main .job .allItems {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 40px;
}

.home #luxy .main .job .allItems .item {
    width: 90%;
    padding: 30px 5%;
    margin-bottom: 18px;
}

.home #luxy .main .provide {
    padding: 40px 0;
}
.home #luxy .main .provide .nr {
    width: 100%;
    padding: 40px 0;
}
.home #luxy .main .provide .nr .t1 {
    width: 90%;
    margin: 0 auto;
}
.home #luxy .main .provide .nr .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .provide .nr .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .provide .nr .content {
    margin-left: 5%;
    width: 90%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}
.home #luxy .main .provide .nr .content .info {
    width: 100%;
}
.home #luxy .main .provide .nr .content .info .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.home #luxy .main .provide .nr .content .info .item .text {
    font-size: 51px;
}
.home #luxy .main .provide .nr .content .info .item .rtext p:nth-child(1) {
    font-size: 20px;
}
.home #luxy .main .provide .nr .content .info .item .rtext p:nth-child(2) {
    margin-top: 7px;
    font-size: 13px;
    line-height: 25px;
}
.home #luxy .main .provide .nr .content .pic {
    width: 100%;
}

.home #luxy .main .forward {
    width: 90%;
    padding: 50px 5%;
flex-direction: column;
}

.home #luxy .main .forward .l {
    font-size: 24px;
}
.home #luxy .main .forward .r {
    margin-left: 0;
    width: 100%;
margin-top: 30px;
}
.home #luxy .main .forward .r .item {
    margin-bottom: 15px;
}

.home #luxy .main .team {
    padding: 40px 0;
}
.home #luxy .main .team .t1 {
    width: 90%;
}
.home #luxy .main .team .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .team .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .team .content{
margin-top: 40px;
}
.home #luxy .main .team .content .allImgs .prev {
    left: 26%;
}

.home #luxy .main .team .content .allImgs .next {
    left: 53%;
}

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

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

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

.home #luxy .main .conWay .allItems {
    margin-top: 30px;
}
.home #luxy .main .conWay .allItems .item {
    width: 100%;
    margin-bottom: 30px;
}

.home #luxy .main .team .content .l {
    display: none;
}
.home #luxy .main .team .content .allImgs {
    width: 90%;
    margin: 0 auto;
}

.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=school.css.map */
