.z-container {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  background: #f6f6f6;
  padding: 50px 20px 0 20px;
}
.z-container .top-title {
  width: 100%;
  text-align: center;
}
.z-container .top-title p {
  font-size: 34px;
  font-weight: 600;
  color: #32353a;
  letter-spacing: 3px;
  transform: translateY(-30px);
  position: relative;
}
.z-container .top-title p:after {
  content: "";
  position: absolute;
  width: 46px;
  height: 3px;
  background: #32353a;
  right: 50%;
  transform: translateX(50%);
  bottom: -15px;
}
.z-container .top-menu {
  margin-top: 30px;
  width: 100%;
}
.z-container .top-menu > ul {
  margin-bottom: 0;
}
.z-container .top-menu > ul > li {
  margin-right: 40px;
  position: relative;
}
.z-container .top-menu > ul > li:before {
  content: "";
  position: absolute;
  width: 7px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
  height: 7px;
  opacity: 0;
  background: #ed6d00;
  transition: all 0.5s ease-in-out;
}
.z-container .top-menu > ul > li.on:before {
  opacity: 1;
}
.z-container .top-menu > ul > li.on > a {
  color: #ed6d00;
}
.z-container .top-menu > ul > li:hover > a {
  color: #ed6d00;
}
.z-container .top-menu > ul > li:hover ul {
  opacity: 1;
  visibility: visible;
  top: 140%;
}
.z-container .top-menu > ul > li:last-child {
  margin-right: 0;
}
.z-container .top-menu > ul > li > a {
  color: #5b636e;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 1px;
}
.z-container .top-menu > ul > li ul {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  left: 50%;
  top: 200%;
  transform: translateX(-50%);
  z-index: 20;
  background: #fff;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.z-container .top-menu > ul > li ul li {
  padding: 5px 10px;
  white-space: nowrap;
}
.z-container .top-menu > ul > li ul li a {
  color: #5b636e;
  font-size: 16px;
  text-decoration: none;
}
.z-container .top-menu > ul > li ul li a:hover {
  color: #ed6d00;
}
.z-container .line {
  border-bottom: 1px solid #dddddd;
  width: 100%;
  margin-top: 70px;
  position: relative;
}
.z-container .line::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 3px;
  background: #ed6d00;
  top: -1px;
}
.z-container .line::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ed6d00;
  top: -2px;
  right: 0;
}
.z-container > .content {
  padding: 60px 0;
}
.z-container > .content .factory-list {
  width: 100%;
}
.z-container > .content .factory-list > .theme-1 {
  width: 31%;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-1:hover {
  -moz-box-shadow: 2px 2px 20px #adadad;
  -webkit-box-shadow: 2px 2px 20px #adadad;
  box-shadow: 2px 2px 20px #adadad;
}
.z-container > .content .factory-list > .theme-1:hover .img-box:before {
  background: rgba(237, 109, 0, 0.8);
}
.z-container > .content .factory-list > .theme-1:hover .img-box i {
  opacity: 1;
  visibility: visible;
}
.z-container > .content .factory-list > .theme-1:hover .img-box .caseImg {
  transform: scale(1.2);
}
.z-container > .content .factory-list > .theme-1:hover .name {
  color: #ed6d00;
  background: #fff;
}
.z-container > .content .factory-list > .theme-1 .img-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.z-container > .content .factory-list > .theme-1 .img-box:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background: rgba(237, 109, 0, 0);
}
.z-container > .content .factory-list > .theme-1 .img-box i {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 30px;
}
.z-container > .content .factory-list > .theme-1 .img-box .caseImg {
  width: 100%;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-1 .name {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  font-size: 22px;
  color: #333;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-2 {
  width: 31%;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-2:hover {
  background: #fff;
  -moz-box-shadow: 2px 2px 20px #adadad;
  -webkit-box-shadow: 2px 2px 20px #adadad;
  box-shadow: 2px 2px 20px #adadad;
}
.z-container > .content .factory-list > .theme-2:hover .name-box .name {
  padding: 20px;
  background: #fff;
  top: calc(-100% - 10px);
}
.z-container > .content .factory-list > .theme-2:hover .name-box .name .title {
  color: #ed6d00;
}
.z-container > .content .factory-list > .theme-2:hover .name-box .name .n_line {
  background: #ed6d00;
}
.z-container > .content .factory-list > .theme-2:hover .name-box .name p,
.z-container > .content .factory-list > .theme-2:hover .name-box .name .more {
  opacity: 1;
  visibility: visible;
}
.z-container > .content .factory-list > .theme-2 .name-box {
  padding-bottom: 102px;
}
.z-container > .content .factory-list > .theme-2 .name-box .name {
  top: 0;
  padding: 20px 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-2 .name-box .name a {
  text-decoration: none;
}
.z-container > .content .factory-list > .theme-2 .name-box .name .time {
  font-size: 14px;
  letter-spacing: 1px;
  color: #999999;
  margin-bottom: 10px;
}
.z-container > .content .factory-list > .theme-2 .name-box .name .title {
  font-size: 18px;
  color: #333333;
  display: block;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-2 .name-box .name .n_line {
  width: 48px;
  height: 2px;
  background: #ddd;
  margin: 20px 0;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-2 .name-box .name p {
  margin-bottom: 20px;
  color: #999999;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.z-container > .content .factory-list > .theme-2 .name-box .name .more {
  color: #ed6d00;
  font-size: 14px;
  display: block;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.z-container > .content .factory-list > .theme-2 .img-box {
  display: block;
}
.z-container > .content .factory-list > .theme-3 {
  width: 23%;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-3:hover {
  -moz-box-shadow: 2px 2px 20px #adadad;
  -webkit-box-shadow: 2px 2px 20px #adadad;
  box-shadow: 2px 2px 20px #adadad;
}
.z-container > .content .factory-list > .theme-3:hover .name {
  background: #fff;
  padding: 20px;
}
.z-container > .content .factory-list > .theme-3:hover .name .title a {
  color: #ed6d00;
}
.z-container > .content .factory-list > .theme-3 .name {
  padding: 20px 0;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-3 .name .sku {
  font-size: 14px;
  color: #999999;
}
.z-container > .content .factory-list > .theme-3 .name .title {
  line-height: 30px;
}
.z-container > .content .factory-list > .theme-3 .name .title a {
  text-decoration: none;
  font-size: 22px;
  transition: all 0.5s ease-in-out;
  color: #333333;
}
.z-container > .content .factory-list > .theme-3 .name .title i {
  font-size: 30px;
  color: #ccc;
}
.z-container > .content .factory-list > .theme-4 {
  width: 31%;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-4:hover {
  -moz-box-shadow: 2px 2px 20px #adadad;
  -webkit-box-shadow: 2px 2px 20px #adadad;
  box-shadow: 2px 2px 20px #adadad;
}
.z-container > .content .factory-list > .theme-4:hover .name-box .name {
  padding: 20px;
  background: #fff;
}
.z-container > .content .factory-list > .theme-4:hover .name-box .name .title {
  color: #ed6d00;
}
.z-container > .content .factory-list > .theme-4:hover .name-box .name .n_line {
  background: #ed6d00;
}
.z-container > .content .factory-list > .theme-4:hover .img-box .bg {
  opacity: 1;
  visibility: visible;
}
.z-container > .content .factory-list > .theme-4 .name-box .name {
  padding: 20px 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-4 .name-box .name a {
  text-decoration: none;
}
.z-container > .content .factory-list > .theme-4 .name-box .name .time {
  font-size: 14px;
  letter-spacing: 1px;
  color: #999999;
  margin-bottom: 10px;
}
.z-container > .content .factory-list > .theme-4 .name-box .name .title {
  font-size: 18px;
  color: #333333;
  display: block;
  transition: all 0.5s ease-in-out;
  line-height: 18px;
}
.z-container > .content .factory-list > .theme-4 .name-box .name .n_line {
  width: 48px;
  height: 2px;
  background: #ddd;
  margin-top: 20px;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-4 .img-box {
  display: block;
}
.z-container > .content .factory-list > .theme-4 .img-box .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-4 .img-box .bg i {
  font-size: 45px;
}
.z-container > .content .factory-list > .theme-5 {
  width: 48%;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  padding: 26px 0;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid #dddddd;
}
.z-container > .content .factory-list > .theme-5:hover {
  padding: 26px;
  background: #fff;
  border-bottom: 1px solid #ed6d00;
  -moz-box-shadow: 2px 2px 20px #adadad;
  -webkit-box-shadow: 2px 2px 20px #adadad;
  box-shadow: 2px 2px 20px #adadad;
}
.z-container > .content .factory-list > .theme-5:hover .box .check,
.z-container > .content .factory-list > .theme-5:hover .box i {
  color: #ed6d00;
}
.z-container > .content .factory-list > .theme-5 a {
  text-decoration: none;
  color: #999999;
}
.z-container > .content .factory-list > .theme-5 .box {
  height: 100%;
}
.z-container > .content .factory-list > .theme-5 .box .name {
  font-size: 22px;
  color: #333333;
}
.z-container > .content .factory-list > .theme-5 .box .time {
  font-size: 14px;
  color: #999999;
  margin-top: 5px;
  padding-left: 5px;
}
.z-container > .content .factory-list > .theme-5 .box .check {
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-5 .box i {
  transition: all 0.5s ease-in-out;
}
.z-container > .content .factory-list > .theme-6 {
  width: 100% !important;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #dddddd;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box {
  transition: all 0.6s ease-in-out;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box.white {
  background: #fff;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box.on .box-content {
  display: block;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title {
  padding: 30px;
  color: #999999;
  cursor: pointer;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s1 {
  font-size: 22px;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s2 {
  font-size: 22px;
  color: #333333;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s3 {
  display: inline-block;
  width: 2px;
  height: 20px;
  margin: 0 30px;
  background: #999999;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s4 {
  font-size: 18px;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s5 {
  color: #333333;
  font-size: 18px;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .right {
  font-size: 16px;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-content {
  padding: 30px;
  border-top: 2px solid #ed6d00;
  display: none;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-content p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 0;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-content .btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-content .btn a {
  white-space: nowrap;
  border-radius: 5px;
  background: #ed6d00;
  padding: 15px 22px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.z-container > .content .load-more {
  position: relative;
  padding: 17px 40px;
  border-radius: 3px;
  border: solid 1px #dddddd;
  margin: 0 auto;
  background: #fff;
  color: #999999;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
}
.z-container > .content .load-more #spin {
  display: none;
}
.z-container > .content .detail {
  width: 100%;
  padding: 30px 0;
  padding-bottom: 60px;
}
.z-container > .content .page-box {
  width: 100%;
}
.z-container > .content .page-box .page {
  width: 100%;
  padding: 0 20px;
  background: #fafafa;
}
.z-container > .content .page-box .page a {
  text-decoration: none;
  color: #32353a;
  font-size: 18px;
  width: 45%;
  padding: 20px 0;
}
.z-container > .content .page-box .page a:first-child {
  border-right: 1px solid #ededed;
}
.z-container > .content .page-box .page a:last-child {
  border-left: 1px solid #ededed;
}
.z-container > .content .page-box .page a span {
  margin: 0 10px;
}
.z-container > .content .page-box .page a i {
  font-size: 20px;
}
.z-container > .content .page-box .page a:hover {
  color: #ed6d00;
}
.z-container > .content .news-detail-box .title {
  font-size: 24px;
  font-weight: bold;
}
.z-container > .content .news-detail-box .time {
  font-size: 16px;
  color: #999999;
  padding-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}
.z-container > .content .product-detail-box .left {
  padding-right: 40px;
  width: 44%;
}
.z-container > .content .product-detail-box .right {
  padding-left: 40px;
  width: 50%;
}
.z-container > .content .product-detail-box .detail-title {
  padding-top: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.z-container > .content .product-detail-box .detail-title > div {
  color: #ed6d00;
  font-size: 18px;
}
.z-container > .content .product-detail-box .detail-title > div > span {
  margin-right: 10px;
  background: #ed6d00;
  width: 5px;
  height: 5px;
}
.z-container > .content .product-detail-box .product-img {
  position: relative;
  width: 100%;
}
.z-container > .content .product-detail-box .product-img > img {
  position: absolute;
  max-width: 75%;
  left: 50%;
  z-index: 10;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.z-container > .content .product-detail-box .product-img > img:first-child {
  display: block;
}
.z-container > .content .product-detail-box .product-img .bg {
  width: 100%;
  height: 380px;
  margin-bottom: 60px;
  position: relative;
  background: #bdb6b6;
}
.z-container > .content .product-detail-box .product-img .bg a {
  position: absolute;
  right: 20px;
  bottom: 10px;
  text-decoration: none;
}
.z-container > .content .product-detail-box .product-img .bg a i {
  color: #ed6d00;
  font-size: 40px;
}
.z-container > .content .product-detail-box .product-img .product-detail-swiper {
  height: 90px;
}
.z-container > .content .product-detail-box .product-img .product-detail-swiper .inner {
  width: 100%;
  height: 100%;
  background: #bdb6b6;
}
.z-container > .content .product-detail-box .product-img .product-detail-swiper .inner.on {
  border: 2px solid #ed6d00;
}
.z-container > .content .product-detail-box .product-img .product-detail-swiper .inner img {
  width: 100%;
  max-width: 80%;
}
.z-container > .content .product-detail-box .product-info .name span {
  font-size: 24px;
  font-weight: bold;
  color: #32353a;
}
.z-container > .content .product-detail-box .product-info .name i {
  font-size: 30px;
  color: #999999;
}
.z-container > .content .product-detail-box .product-info .sku {
  font-size: 14px;
  letter-spacing: 1px;
  color: #999999;
}
.z-container > .content .product-detail-box .product-info p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #666666;
  line-height: 28px;
  padding-top: 20px;
  padding-bottom: 50px;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px dotted #ccc;
  margin-top: 20px;
}
.z-container > .content .product-detail-box .product-info .z-btn {
  margin-bottom: 35px;
}
.z-container > .content .product-detail-box .product-info .z-btn a {
  width: 150px;
  height: 48px;
  color: #ed6d00;
  font-size: 16px;
  margin-right: 20px;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #ed6d00;
}
.z-container > .content .product-detail-box .product-info .z-btn a:last-child {
  color: #fff;
  font-size: #fff;
  background: #ed6d00;
}
.z-container > .content .product-detail-box .product-info .sercice {
  font-size: 18px;
  color: #ed6d00;
  padding-bottom: 40px;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 20px;
}
.z-container > .content .product-detail-box .product-info .sercice i {
  font-size: 22px;
  margin-right: 10px;
}
.z-container > .content .product-detail-box .product-info .sercice span {
  color: #32353a;
  font-weight: bold;
}
.z-container > .content .product-detail-box .product-info .contact {
  color: #666666;
}
.z-container > .content .product-detail-box .product-info .contact span {
  font-size: 16px;
}
.z-container > .content .product-detail-box .product-info .contact a {
  color: #d2d2d2;
  margin-left: 15px;
  text-decoration: none;
}
.z-container > .content .product-detail-box .product-info .contact a:hover {
  color: #ed6d00;
}
.z-container > .content .product-detail-box .product-info .contact a i {
  font-size: 18px;
  vertical-align: middle;
}
.z-container > .content .address-box > li {
  width: 31%;
}
.z-container > .content .address-box > li .apartment {
  font-size: 20px;
}
.z-container > .content .address-box > li .star {
  color: #ed6d00;
}
.z-container > .content .address-box > li .star i {
  font-size: 40px;
  line-height: 40px;
}
.z-container > .content .address-box > li .address {
  font-size: 16px;
  color: #666666;
  width: 100%;
}
.z-container > .content .address-box .contact {
  right: 0;
  top: 0;
  background: #fff;
  padding: 30px 24px;
  z-index: 10;
}
.z-container > .content .address-box .contact .img {
  margin-bottom: 20px;
}
.z-container > .content .address-box .contact P {
  margin-bottom: 0;
  font-size: 22px;
  color: #333333;
  letter-spacing: 1px;
}
.z-container > .content .address-box .contact ul {
  margin: 20px 0;
  max-height: 165px;
}
.z-container > .content .address-box .contact ul li {
  margin-bottom: 20px;
  font-size: 18px;
  color: #666666;
  letter-spacing: 1px;
}
.z-container > .content .address-box .contact ul li img {
  max-width: 28px;
}
.z-container > .content .cooperation-box {
  text-align: center;
}
.z-container > .content .cooperation-box img {
  max-width: 905px;
}
.z-container > .content .cooperation-list {
  margin-top: 170px;
}
.z-container > .content .cooperation-list li {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 70px;
}
.z-container > .content .form-box {
  padding: 0 20px;
}
.z-container > .content .form-box .title {
  text-align: center;
  color: #999999;
  margin-bottom: 48px;
}
.z-container > .content .form-box .title .s1 {
  font-size: 22px;
}
.z-container > .content .form-box .title .s2 {
  font-size: 22px;
  color: #333333;
}
.z-container > .content .form-box .title .s3 {
  display: inline-block;
  width: 2px;
  height: 20px;
  margin: 0 30px;
  background: #999999;
}
.z-container > .content .form-box .title .s4 {
  font-size: 18px;
}
.z-container > .content .form-box .title .s5 {
  color: #333333;
  font-size: 18px;
}
.z-container > .content .form-box .form {
  margin-bottom: 40px;
}
.z-container > .content .form-box .form > div {
  margin-bottom: 25px;
  position: relative;
}
.z-container > .content .form-box .form > div.request::before {
  content: "*";
  position: absolute;
  top: -6px;
  right: 0;
  color: #ed6d00;
  font-size: 20px;
}
.z-container > .content .form-box .form .label {
  display: inline-block;
  width: 80px;
  font-size: 16px;
  color: #666;
  text-align: right;
}
.z-container > .content .form-box .form input,
.z-container > .content .form-box .form textarea {
  border: 1px solid #ddd;
  background: none;
  padding: 10px;
  color: #333;
  font-size: 16px;
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
  resize: none;
}
.z-container > .content .form-box .form input:focus,
.z-container > .content .form-box .form textarea:focus {
  border: 1px solid #ed6d00;
  background: #fff;
}
.z-container > .content .form-box .form .radio-text {
  margin-left: 5px;
  margin-right: 50px;
  font-size: 16px;
  color: #333333;
  margin-bottom: 0;
}
.z-container > .content .form-box .form input[type=radio] {
  /* opacity: 0; */
  display: none;
}
.z-container > .content .form-box .form input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #999;
  margin-right: 5px;
  padding-top: 2px;
}
.z-container > .content .form-box .form input[type=radio]:checked + label::before {
  padding: 2px;
  border: 4px solid #ed6d00;
}
.z-container > .content .apply-box {
  text-align: center;
  width: 100%;
}
.z-container > .content .apply-box div:first-child {
  margin-bottom: 35px;
}
.z-container > .content .apply-box button {
  border: none;
  background: #ed6d00;
  font-size: 16px;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 5px;
}
.z-container > .content .apply-box a {
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
}
.z-container > .content .apply-box a#back {
  color: #999999;
}
.z-container > .content .unName {
  margin-bottom: 40px;
  -moz-box-shadow: 2px 2px 20px #adadad;
  -webkit-box-shadow: 2px 2px 20px #adadad;
  box-shadow: 2px 2px 20px #adadad;
}
.z-container > .content .unName .service-box {
  width: 100%;
  padding: 20px;
  background: white;
}
.z-container > .content .unName .service-box > div {
  width: 50%;
}
.z-container > .content .unName .service-box > div > img {
  max-width: 100%;
  width: 100%;
}
.z-container > .content .unName .service-box > div:last-child {
  padding-left: 26px;
}
.z-container > .content .unName .service-box > div > p {
  font-size: 18px;
  letter-spacing: 1px;
  color: #333333;
  margin-bottom: 10px;
}
.z-container > .content .unName .service-box > div > ul {
  height: 150px;
  margin-bottom: 0;
}
.z-container > .content .address-swiper .apartment {
  font-size: 20px;
}
.z-container > .content .address-swiper .star {
  color: #ed6d00;
}
.z-container > .content .address-swiper .star i {
  font-size: 40px;
  line-height: 40px;
}
.z-container > .content .address-swiper .address {
  width: 210px;
  font-size: 16px;
  color: #666666;
  width: 100%;
}
.z-container > .content .address-swiper .swiper-pagination {
  position: unset;
  margin-top: 2vw;
}
.z-container > .content .address-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ed6d00 !important;
  width: 15px;
  height: 9px;
  border-radius: 20px;
}
.z-container > .content .address-swiper .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
.z-container > .content .nice p {
  margin-bottom: 0;
}

.large {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background: rgba(48, 19, 21, 0.95);
  display: none;
}
.large .close {
  position: absolute;
  width: 100%;
  text-align: right;
  z-index: 100;
  cursor: pointer;
}
.large .close span {
  display: inline-block;
  color: white;
  height: 46px;
  width: 46px;
  background: rgba(0, 0, 0, 0.5);
  line-height: 46px;
  text-align: center;
  margin-right: 40px;
  margin-top: 40px;
  font-size: 26px;
}
.large .imgName {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 15px;
  color: #e1bf93;
  z-index: 100;
}
.large .factory_banner {
  width: 90%;
  text-align: center;
}
.large .swiper-button-next {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  outline: none;
  background: rgba(0, 0, 0, 0.8);
  right: 40px;
}
.large .swiper-button-next i {
  color: white;
  font-size: 28px;
}
.large .swiper-button-next:after {
  content: "";
}
.large .swiper-button-prev {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: rgba(0, 0, 0, 0.8);
  left: 40px;
}
.large .swiper-button-prev i {
  color: white;
  font-size: 28px;
}
.large .swiper-button-prev:after {
  content: "";
}

.length_0 {
  text-align: center;
  font-size: 16px;
  color: #666;
}

.iframe {
  width: 100%;
  height: 580px;
  border: none;
  margin-bottom: 30px;
}

@media (max-width: 1500px) {
  .z-container {
    max-width: 1200px;
  }

  .z-container > .content .product-detail-box .product-img > img,
.z-container > .content .product-detail-box .product-img .product-detail-swiper .inner img {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .iframe {
    height: 420px;
  }

  .z-container > .content .address-box > li .apartment {
    font-size: 16px;
  }

  .z-container > .content .address-box > li .address {
    font-size: 14px;
  }

  .z-container > .content .address-box > li .star i {
    font-size: 35px;
    line-height: 35px;
  }

  .z-container > .content .address-box .contact P {
    font-size: 18px;
  }

  .z-container > .content .address-box .contact {
    padding: 20px 15px;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s1,
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s2 {
    font-size: 18px;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s3 {
    height: 18px;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s4,
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s5 {
    font-size: 16px;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-content p {
    font-size: 14px;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-content .btn a {
    font-size: 14px;
  }

  .z-container > .content .factory-list > .theme-6 {
    margin-bottom: 20px;
  }

  .z-container > .content .factory-list > .theme-5 .box .name {
    font-size: 18px;
  }

  .z-container > .content .detail {
    padding: 30px 0;
  }

  .z-container > .content .page-box {
    padding: 0;
  }

  .innerBanner .inner .inner-text .p1.show {
    font-size: 30px;
    min-height: 40px;
  }

  .innerBanner .inner .inner-text .p2 {
    font-size: 50px;
    line-height: 75px;
  }

  .innerBanner .inner .inner-text .p3 {
    font-size: 30px;
  }

  .innerBanner .inner-swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    margin: 0 6px;
  }

  .innerBanner .inner .inner-text .arrow-down {
    margin-top: 15px;
  }

  .z-container {
    max-width: 1100px;
  }

  .z-container .top-title p {
    font-size: 30px;
  }

  .z-container .line {
    margin-top: 55px;
  }

  .z-container .content .factory-list > .theme-1 .name {
    font-size: 20px;
    padding: 15px 0;
  }

  .z-container .content .load-more {
    padding: 15px 40px;
    font-size: 14px;
  }

  .innerBanner {
    padding-top: 83px;
    height: 400px;
  }

  .z-container > .content .factory-list > .theme-3 {
    width: 31%;
  }

  .z-container > .content .factory-list > .theme-3 .name .sku {
    font-size: 12px;
  }

  .z-container > .content .factory-list > .theme-3 .name .title a {
    font-size: 18px;
  }

  .z-container > .content .factory-list > .theme-3 .name .title {
    font-size: 18px;
  }

  .z-container > .content .product-detail-box .left {
    padding-right: 30px;
  }

  .z-container > .content .product-detail-box .right {
    padding-left: 30px;
  }
}
@media (max-width: 980px) {
  .iframe {
    height: 400px;
  }

  .z-container > .content .address-box > li {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 0% !important;
    -moz-box-flex: 1 !important;
    -ms-flex: 1 1 0% !important;
    flex: 1 1 0% !important;
  }

  .z-container > .content .address-box > li .address {
    max-width: 176px;
  }

  .z-container > .content .form-box .title .s1,
.z-container > .content .form-box .title .s2 {
    font-size: 20px;
  }

  .z-container > .content .form-box .title .s4,
.z-container > .content .form-box .title .s5 {
    font-size: 16px;
  }

  .z-container > .content .cooperation-box img {
    max-width: 773px;
  }

  .z-container > .content .cooperation-list {
    margin-top: 140px;
  }

  .z-container > .content .cooperation-list li {
    font-size: 23px;
  }

  .z-container > .content .recruitment-box .box-title {
    padding: 25px;
  }

  .z-container > .content .factory-list > .theme-5 {
    width: 100% !important;
    padding: 22px 0;
    margin-bottom: 30px;
  }

  .z-container > .content .factory-list > .theme-5:hover {
    padding: 22px;
  }

  .z-container .content .factory-list > .theme-1 .name {
    font-size: 18px;
  }

  .z-container .content .load-more {
    padding: 15px 25px;
    font-size: 14px;
  }

  .z-container .content .factory-list > .theme-2 .name-box .name .title {
    font-size: 16px;
  }

  .z-container .content .factory-list > .theme-2 .name-box .name .n_line {
    margin: 15px 0;
  }

  .z-container .content .factory-list > .theme-2 .name-box .name p {
    margin-bottom: 10px;
  }

  .z-container .content .factory-list > .theme-2:hover .name-box .name {
    top: -77%;
  }

  .z-container .content .factory-list > .theme-4 .name-box .name .title {
    font-size: 16px;
  }

  .z-container .content .factory-list > .theme-4 .name-box .name .n_line {
    margin-top: 15px;
  }

  .z-container > .content .page-box .page a i,
.z-container > .content .page-box .page a {
    font-size: 16px;
  }

  .z-container > .content .detail {
    padding: 3vw 0;
  }

  .z-container > .content .page-box {
    padding: 4vw 0;
  }

  .z-container > .content .factory-list > .theme-3 .name .title a {
    font-size: 16px;
  }

  .z-container > .content .factory-list > .theme-3 .name {
    padding: 10px 0;
  }

  .z-container .content .factory-list > .theme-3:hover .name {
    padding: 10px;
  }

  .z-container {
    margin-top: 52px;
  }

  .z-container > .content .product-detail-box .product-img .bg {
    height: 312px;
    margin-bottom: 48px;
  }

  .z-container > .content .product-detail-box .product-img .product-detail-swiper {
    height: 78px;
  }

  .z-container > .content .product-detail-box .left {
    padding-right: 15px;
  }

  .z-container > .content .product-detail-box .right {
    padding-left: 15px;
  }

  .z-container > .content .product-detail-box .product-info .name span {
    font-size: 22px;
  }

  .z-container > .content .product-detail-box .product-info .name i {
    font-size: 26px;
  }

  .z-container > .content .product-detail-box .product-info p {
    font-size: 14px;
    padding-bottom: 35px;
  }

  .z-container > .content .product-detail-box .product-info .z-btn {
    margin-bottom: 30px;
  }

  .z-container > .content .product-detail-box .product-info .z-btn a {
    height: 42px;
    font-size: 14px;
  }

  .z-container > .content .product-detail-box .product-info .sercice {
    font-size: 16px;
    padding-bottom: 30px;
  }

  .z-container > .content .product-detail-box .product-info .sercice i {
    font-size: 20px;
  }

  .z-container > .content .product-detail-box .product-info .contact span {
    font-size: 14px;
  }

  .z-container > .content .product-detail-box .product-info .contact a i {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .z-container > .content .address-swiper .apartment {
    font-size: 3vw;
  }

  .z-container > .content .address-swiper .address {
    font-size: 2.5vw;
    max-width: 36vw;
  }

  .z-container > .content .address-swiper .star i {
    font-size: 6vw;
    line-height: 6vw;
  }

  .z-container > .content .unName .service-box > div > ul {
    height: unset;
  }

  .z-container > .content .unName .service-box {
    padding: 3vw;
  }

  .z-container > .content .unName .service-box > div {
    width: 100%;
  }

  .z-container > .content .unName .service-box > div:last-child {
    padding-left: 0;
    padding-top: 3vw;
  }

  .z-container > .content .unName .service-box > div > p {
    font-size: 4vw;
  }

  .iframe {
    height: 64vw;
  }

  .z-container > .content .apply-box div:first-child {
    margin-bottom: 4vw;
  }

  .z-container > .content .apply-box button {
    padding: 2vw 6vw;
    font-size: 2vw;
  }

  .z-container > .content .apply-box a,
.z-container > .content .apply-box a#back i {
    font-size: 2vw;
  }

  .z-container > .content .form-box .form {
    margin-bottom: 5vw;
  }

  .z-container > .content .form-box .title {
    margin-bottom: 8vw;
  }

  .z-container > .content .form-box {
    padding: 0 3vw;
  }

  .z-container > .content .form-box .form .radio-text {
    font-size: 2vw;
    margin-right: 6vw;
  }

  .z-container > .content .form-box .title .s1,
.z-container > .content .form-box .title .s2 {
    font-size: 3vw;
  }

  .z-container > .content .form-box .title .s4,
.z-container > .content .form-box .title .s5 {
    font-size: 2vw;
  }

  .z-container > .content .form-box .title .s3 {
    margin: 0 2vw;
    height: 3vw;
  }

  .z-container > .content .form-box .form .label {
    font-size: 2vw;
    width: unset;
  }

  .z-container > .content .form-box .form input,
.z-container > .content .form-box .form textarea {
    font-size: 2vw;
    padding: 2vw;
  }

  .z-container > .content .form-box .form li {
    margin-bottom: 4vw;
  }

  .z-container > .content .cooperation-box img {
    max-width: 81vw;
  }

  .z-container > .content .cooperation-list {
    margin-top: 15vw;
  }

  .z-container > .content .cooperation-list li {
    font-size: 3vw;
    margin-bottom: 6vw;
  }

  .z-container > .content .recruitment-box .box-title {
    padding: 3vw;
  }

  .z-container > .content .factory-list > .theme-6 {
    margin-bottom: 3vw;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s1,
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s2 {
    font-size: 2.5vw;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s3 {
    height: 2vw;
    margin: 0 2vw;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s4,
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .left .s5,
.z-container > .content .factory-list > .theme-6 .recruitment-box .box-title .right {
    font-size: 2vw;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-content p {
    font-size: 2vw;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-content {
    padding: 3vw;
    margin-bottom: 4vw;
  }

  .z-container > .content .factory-list > .theme-6 .recruitment-box .box-content .btn a {
    font-size: 2vw;
    padding: 2vw 4vw;
    margin-top: 2vw;
  }

  .z-container > .content .factory-list > .theme-5 {
    width: 100% !important;
    padding: 3vw 0;
    margin-bottom: 30px;
  }

  .z-container > .content .factory-list > .theme-5:hover {
    padding: 3vw;
  }

  .z-container > .content .factory-list > .theme-5 .box .name {
    font-size: 2.4vw;
  }

  .z-container > .content .factory-list > .theme-5 .box .time,
.z-container > .content .factory-list > .theme-5 .box .check,
.z-container > .content .factory-list > .theme-5 .box i {
    font-size: 2vw;
  }

  .z-container {
    margin-top: 7vw;
  }

  .innerBanner {
    padding-top: 11vw;
    height: 45vw;
  }

  .innerBanner .inner .inner-text .p1,
.innerBanner .inner .inner-text .p1.show {
    min-height: unset;
  }

  .innerBanner .inner .inner-text .p1.show,
.innerBanner .inner .inner-text .p3 {
    font-size: 4vw;
  }

  .innerBanner .inner .inner-text .p2 {
    font-size: 6vw;
    letter-spacing: 10px;
    line-height: 7vw;
  }

  .innerBanner .inner-swiper-pagination .swiper-pagination-bullet {
    width: 4vw;
  }

  .innerBanner .inner-swiper-pagination {
    bottom: 1vw;
  }

  .innerBanner .inner .inner-text .arrow-down img {
    width: 4vw;
  }

  .innerBanner .inner .inner-text .arrow-down {
    margin-top: 2vw;
  }

  .z-container .content .factory-list > li {
    width: 48% !important;
    margin-bottom: 3vw !important;
  }

  .top-title img {
    width: 23vw;
  }

  .z-container .top-title p {
    font-size: 4vw;
    transform: translateY(-4vw);
  }

  .z-container .top-title p:after {
    width: 6vw;
  }

  .z-container .top-menu {
    margin-top: 3vw;
  }

  .z-container .top-menu ul li {
    margin-right: 3vw;
  }

  .z-container .top-menu ul li:before {
    width: 1vw;
    height: 1vw;
    bottom: -1.5vw;
  }

  .z-container .top-menu ul li a {
    font-size: 2vw;
  }

  .z-container .line {
    margin-top: 5vw;
  }

  .z-container .content {
    padding: 7vw 0;
  }

  .z-container .content .factory-list > .theme-1 .name {
    font-size: 2vw;
    padding: 2vw 0;
  }

  .z-container .content .load-more {
    padding: 2vw 3vw;
    font-size: 2vw;
  }

  .z-container .content .factory-list > .theme-2 .name-box .name .time,
.z-container .content .factory-list > .theme-2 .name-box .name .title,
.z-container .content .factory-list > .theme-2 .name-box .name p,
.z-container .content .factory-list > .theme-2 .name-box .name .more,
.z-container .content .factory-list > .theme-4 .name-box .name .time,
.z-container .content .factory-list > .theme-4 .name-box .name .title {
    font-size: 2vw;
  }

  .z-container .content .factory-list > .theme-2 .name-box .name .n_line {
    width: 6vw;
  }

  .z-container .content .factory-list > .theme-4 .name-box .name .n_line {
    width: 6vw;
  }

  .z-container .content .factory-list > .theme-2 .name-box {
    padding-bottom: 84px;
  }

  .z-container .line::before {
    width: 11vw;
  }

  .z-container > .content .page-box .page a {
    padding: 3vw 0;
    width: 50%;
  }

  .z-container > .content .page-box .page a i,
.z-container > .content .page-box .page a {
    font-size: 2vw;
  }

  .z-container > .content .page-box .page a span {
    margin: 0 1vw;
  }

  .z-container > .content .page-box .page {
    padding: 0 2vw;
  }

  .z-container > .content .factory-list > .theme-3 .name .sku {
    font-size: 2vw;
  }

  .z-container > .content .factory-list > .theme-3 .name .title a {
    font-size: 3vw;
  }

  .z-container > .content .factory-list > .theme-3 .name .title i {
    font-size: 6vw;
  }

  .z-container > .content .factory-list > .theme-3 .name {
    padding: 2vw 0;
  }

  .z-container .content .factory-list > .theme-3:hover .name {
    padding: 2vw;
  }

  .z-container > .content .product-detail-box .left {
    width: 100%;
    padding: 0;
  }

  .z-container > .content .product-detail-box .right {
    width: 100%;
    padding: 0;
    margin-top: 8vw;
  }

  .z-container > .content .product-detail-box .product-img .bg {
    height: 63vw;
    margin-bottom: 12vw;
  }

  .z-container > .content .product-detail-box .product-img .product-detail-swiper {
    height: 15vw;
  }

  .z-container > .content .product-detail-box .product-info .name span,
.z-container > .content .product-detail-box .product-info .name i {
    font-size: 3vw;
  }

  .z-container > .content .product-detail-box .product-info .sku {
    font-size: 2vw;
  }

  .z-container > .content .product-detail-box .product-info p {
    margin: 3vw 0;
    font-size: 2vw;
    padding-bottom: 7vw;
    padding-top: 3vw;
    line-height: 5vw;
  }

  .z-container > .content .product-detail-box .product-img > img {
    max-width: 80%;
  }

  .z-container > .content .product-detail-box .product-info .z-btn a {
    width: 20vw;
    height: 6vw;
    font-size: 2vw;
    margin-right: 3vw;
  }

  .z-container > .content .product-detail-box .product-info .z-btn {
    margin-bottom: 5vw;
  }

  .z-container > .content .product-detail-box .product-info .sercice {
    font-size: 2vw;
    padding-bottom: 6vw;
    margin-bottom: 3vw;
  }

  .z-container > .content .product-detail-box .product-info .sercice i {
    font-size: 3vw;
  }

  .z-container > .content .product-detail-box .product-info .contact span {
    font-size: 2vw;
  }

  .z-container > .content .product-detail-box .product-info .contact a i {
    font-size: 2.5vw;
  }

  .z-container > .content .product-detail-box .product-info .contact a {
    margin-right: 2vw;
  }

  .z-container > .content .product-detail-box .detail-title {
    padding-top: 8vw;
    padding-bottom: 3vw;
  }

  .z-container > .content .product-detail-box .detail-title img {
    width: 14vw;
  }

  .z-container > .content .product-detail-box .detail-title > div {
    font-size: 2vw;
  }

  .z-container > .content .factory-list > .theme-4 .img-box .bg i {
    font-size: 7vw;
  }

  .z-container > .content .product-detail-box .product-img .product-detail-swiper .inner img {
    max-width: 90%;
  }
}