.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 .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;
  text-transform: uppercase;
}
.home #luxy .main {
  width: 100%;
}
.home #luxy .main .intro {
  width: 70%;
  margin: 60px auto;
}
.home #luxy .main .intro .p1 {
  color: #F5AB18;
  font-size: 30px;
}
.home #luxy .main .intro .des {
  color: #666666;
  line-height: 32px;
  margin-top: 40px;
}
.home #luxy .main .core {
  width: 100%;
  margin: 80px auto;
  background-color: #F9F9F9;
  padding: 40px 0 60px 0;
  margin-bottom: 0;
}
.home #luxy .main .core .t1 {
  position: relative;
  width: 70%;
  margin: 0 auto;
}
.home #luxy .main .core .t1 p:nth-child(1) {
  color: #E6E6E7;
  opacity: 0.5;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .core .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0px;
}
.home #luxy .main .core iframe {
  width: 100%;
  margin-top: 100px;
  position: relative;
  height: 750px;
}
.home #luxy .main .competence {
  width: 100%;
  background: url("../images/mb.png") no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.home #luxy .main .competence .t1 {
  position: relative;
  width: 80%;
  margin: 0 auto;
  text-align: right;
}
.home #luxy .main .competence .t1 p:nth-child(1) {
  color: #E6E6E7;
  opacity: 0.2;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .competence .t1 p:nth-child(2) {
  color: #ffffff;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  right: 0;
  bottom: 0px;
}
.home #luxy .main .competence .allItems {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 80px;
}
.home #luxy .main .competence .allItems .item {
  background: #FFFFFF;
  border-radius: 8px;
  width: 14%;
  padding: 20px 2%;
}
.home #luxy .main .competence .allItems .item .p1 {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  justify-content: center;
}
.home #luxy .main .competence .allItems .item .p1 .line {
  width: 25px;
  height: 2px;
  background: #999999;
}
.home #luxy .main .competence .allItems .item .p1 .pic i {
  color: #999999;
  font-size: 25px;
}
.home #luxy .main .competence .allItems .item .p2 {
  color: #333333;
  font-size: 18px;
  margin: 20px 0;
display:none;
}
.home #luxy .main .competence .allItems .item .des {
  color: #999999;
  line-height: 25px;
  font-size: 14px;
margin-top:10px;
text-align: center;
}
.home #luxy .main .cases {
  width: 70%;
  padding: 60px 15%;
  background-color: #F9F9F9;
}
.home #luxy .main .cases .t1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.home #luxy .main .cases .t1 p:nth-child(1) {
  color: #E6E6E7;
  opacity: 0.5;
  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: 0;
  bottom: 0px;
}
.home #luxy .main .cases .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 100px auto;
  margin-bottom: 0;
}
.home #luxy .main .cases .content .sw1 {
  width: 75%;
}
.home #luxy .main .cases .content .sw1 .swiper-container {
  width: 100%;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .pic {
  width: 100%;
  position: relative;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .pic a {
  position: absolute;
  width: 180px;
  height: 50px;
  border: 1px solid #C7C7C7;
  border-radius: 25px;
  text-align: center;
  line-height: 50px;
  color: white;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  cursor: pointer;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  height:450px;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text {
  width: 100%;
  margin: 50px 0;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text .p1 {
  display: flex;
  align-items: center;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text .p1 .title {
  color: #333333;
  font-size: 24px;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text .p1 .tags {
  margin-left: 20%;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text .p1 .tags span {
  color: #333333;
  display: inline-block;
  margin-right: 40px;
}
.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text .des {
  color: #999999;
  line-height: 30px;
  margin-top: 40px;
}
.home #luxy .main .cases .content .sw2 {
  width: 25%;
}
.home #luxy .main .cases .content .sw2 .allPics {
  padding: 20px 15%;
  width: 70%;
  background-color: #E7E7E7;
}
.home #luxy .main .cases .content .sw2 .allPics .swiper-container {
  width: 100%;
  height: 410px;
}
.home #luxy .main .cases .content .sw2 .allPics .swiper-container .swiper-wrapper .swiper-slide .item {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.home #luxy .main .cases .content .sw2 .allPics .swiper-container .swiper-wrapper .swiper-slide .item .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home #luxy .main .cases .content .sw2 .allPics .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: all 600ms;
}
.home #luxy .main .cases .content .sw2 .allPics .swiper-container .swiper-wrapper .swiper-slide .item:hover .pic img {
  transform: scale(1.05);
}
.home #luxy .main .cases .content .sw2 .want {
  width: 150px;
  height: 40px;
  background: #F5AB18;
  border-radius: 6px;
  display: block;
  text-align: center;
  line-height: 40px;
  margin: 60px auto;
}
.home #luxy .main .cases .content .sw2 .want a {
  color: white;
}
.home #luxy .main .partner {
  width: 70%;
  padding: 100px 15%;
  position: relative;
}
.home #luxy .main .partner::after {
  content: "";
  display: inline-block;
  background-color: #F3F3F3;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  z-index: -1;
}
.home #luxy .main .partner .content {
  width: 100%;
  background: #F9F9F9;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 60px 0;
}
.home #luxy .main .partner .content .t1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.home #luxy .main .partner .content .t1 p:nth-child(1) {
  color: #E6E6E7;
  opacity: 0.5;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .partner .content .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 .partner .content .allItems {
  width: 80%;
  margin: 60px auto;
  position: relative;
}
.home #luxy .main .partner .content .allItems .swiper-container {
  width: 100%;
}
.home #luxy .main .partner .content .allItems .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: calc(100% - 2px);
  border: 1px solid #D9D9D9;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 600ms;
  overflow: hidden;
}
.home #luxy .main .partner .content .allItems .swiper-container .swiper-wrapper .swiper-slide .pic img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: all 600ms;
}
.home #luxy .main .partner .content .allItems .swiper-container .swiper-wrapper .swiper-slide .pic:hover {
  border-color: #F5AB18;
}
.home #luxy .main .partner .content .allItems .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.home #luxy .main .partner .content .allItems .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home #luxy .main .partner .content .allItems .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border-radius: 50%;
  opacity: 1;
  margin: 0 5px;
  transition: all 600ms;
}
.home #luxy .main .partner .content .allItems .swiper-pagination .swiper-pagination-bullet-active {
  background: #F5AB18;
}
.home #luxy .main .intertnet {
  width: 70%;
  margin: 80px auto;
}
.home #luxy .main .intertnet .t1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.home #luxy .main .intertnet .t1 p:nth-child(1) {
  color: #E6E6E7;
  opacity: 0.5;
  font-size: 80px;
  font-family: "Oswald-Regular";
  text-transform: uppercase;
}
.home #luxy .main .intertnet .t1 p:nth-child(2) {
  color: #333333;
  font-size: 30px;
  font-weight: bolder;
  position: absolute;
  left: 0;
  bottom: 0px;
}
.home #luxy .main .intertnet .t1 p:nth-child(3){
  color: #333333;
  font-size: 14px;
  position: absolute;
  left: 0;
  bottom: -30px;
}
.home #luxy .main .intertnet .content {
  width: 100%;
  margin: 60px auto;
  height: 700px;
  /* background: url("../images/map.png") no-repeat; */
  background: url("../images/chinese_map.svg") no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}
.home #luxy .main .intertnet .content .area {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home #luxy .main .intertnet .content .area p {
  color: #666666;
  font-weight: 200;
  width: 48%;
  margin-bottom: 20px;
  transition: all 600ms;
}
.home #luxy .main .intertnet .content .area p:hover {
  color: #F5AB18;
}
.home #luxy .main .intertnet .content .info {
  width: 330px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  padding: 20px 25px;
  right: 17.2%;
  top: 30%;
  z-index: 100;
  border-radius: 10px;
}
.home #luxy .main .intertnet .content .info::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ffffff;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
}
.home #luxy .main .intertnet .content .info .p1 {
  color: #333333;
  font-size: 24px;
}
.home #luxy .main .intertnet .content .info .p2 {
  color: #666666;
  font-weight: 200;
  margin: 10px 0 30px 0;
}
.home #luxy .main .intertnet .content .info .phone p {
  color: #666666;
  font-weight: 200;
}
.home #luxy .main .intertnet .content .info .phone a {
  font-size: 24px;
  color: #F5AB18;
  font-family: "Oswald-Regular";
}
.home #luxy .main .intertnet .content .region-list {
  position: absolute;
}
.home #luxy .main .intertnet .content .postition-1 {
  left: 72%;
  top: 66%;
}
.home #luxy .main .intertnet .content .postition-2 {
  left: 60%;
  top: 70%;
}
.home #luxy .main .intertnet .content .postition-3 {
  left: 40%;
  top: 65%;
}
.home #luxy .main .intertnet .content .postition-4 {
  left: 50%;
  top: 80%;
}
@-webkit-keyframes warn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.home #luxy .main .intertnet .content .area-box .dot {
  position: absolute;
  left: 3px;
  top: 2px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #F5AB18;
  opacity: 1;
  filter: alpha(opacity=100);
}
.home #luxy .main .intertnet .content .area-box .pulse {
  position: absolute;
  top: -28px;
  left: -28px;
  height: 66px;
  width: 66px;
  border: 2px solid #F5AB18;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  border-radius: 48px;
  -webkit-box-shadow: 0 0 4px #F5AB18, 0 0 10px #F5AB18 inset;
  -moz-box-shadow: 0 0 4px #F5AB18, 0 0 10px #F5AB18 inset;
  box-shadow: 0 0 4px #82878f, 0 0 10px #82878f inset;
  opacity: 0.12;
  filter: alpha(opacity=0);
  -webkit-animation: warn 2s ease-out both;
  -moz-animation: warn 2s ease-out both;
  -o-animation: warn 2s ease-out both;
  animation: warn 2s ease-out both;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background: 0 0;
}
.home #luxy .main .intertnet .content .area-box .delay-04 {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.home #luxy .main .intertnet .content .area-box .delay-05 {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.home #luxy .main .intertnet .content .area-box .delay-06 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.home #luxy .main .intertnet .content .show-regin {
  transform: translateX(25px) translateY(-2px);
  font-size: 14px;
  color: #F5AB18;
}
.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 .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text .p1 .tags{
    margin-left: 0;
  }
  .home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .pic img{
    width: 100%;
    display: block;
    object-fit: cover;
    height: 175px;
  }
.home #luxy .banner .text p:nth-child(1) {
    color: #ffffff;
    font-size: 20px;
}

.home #luxy .main .intro {
    width: 90%;
    margin: 30px auto;
}
.home #luxy .main .intro .p1 {
    color: #F5AB18;
    font-size: 24px;
}
.home #luxy .main .intro .des {
    color: #666666;
    line-height: 32px;
    margin-top: 20px;
}

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

.home #luxy .main .competence .allItems {
    width: 90%;
    margin-top: 40px;
    flex-wrap: wrap;
}
.home #luxy .main .competence .allItems .item {
    width: 90%;
    padding: 20px 5%;
    margin-bottom: 20px;
}

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

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

.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 .main .cases .content {
    width: 100%;
    flex-direction: column;
    margin: 40px auto;
    margin-bottom: 0;
}

.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text {
    width: 100%;
    margin: 30px 0;
}

.home #luxy .main .cases .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .item .text .p1 .title {
    color: #333333;
    font-size: 20px;
    width: 65%;
}

.home #luxy .main .cases .content .sw2 .want {
    margin: 30px auto;
}

.home #luxy .main .cases .content .sw1 {
    width: 100%;
}
.home #luxy .main .cases .content .sw2 {
    width: 100%;
}
.home #luxy .main .partner {
    width: 100%;
    padding: 0;
}

.home #luxy .main .partner .content .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .partner .content .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .intertnet {
    width: 90%;
    margin: 40px auto;
}
.home #luxy .main .intertnet .t1 p:nth-child(1) {
    font-size: 40px;
}
.home #luxy .main .intertnet .t1 p:nth-child(2) {
    font-size: 20px;
}
.home #luxy .main .intertnet .content {
    width: 100%;
    margin: 30px auto;
    height: 300px;
}

.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 .competence .allItems .item .p1 .line{
    display: none;
  }
}

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