.hom_banner {
  max-width: 100%;
  margin: auto;
  margin-bottom: 20px;
}
.hom_banner .swiper-container {
  width: 100%;
  height: 100%;
}
.hom_banner .swiper-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
}
.hom_banner .swiper-container .swiper-slide img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.hom_banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.hom_banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff6700 !important;
}
.hom_banner .swiper-pagination-bullet {
  background: #fff;
}
.hom_banner .swiper-pagination-bullets {
  bottom: 20px;
}

.block_product .titleInfo{
    display: inline-block;
    position: relative;
}
.block_product .titleInfo .left{
    float: inherit;
    width: 100%;
    text-align:center;
    display: inline-block;
}
.block_product .titleInfo .more{
    position: absolute;
    right: 0;
    top:0;
    margin-top: 5px;
}

.block_product .content {
  width: 100%;
}
.block_product .content .odd {
  margin-bottom: 10px;
  width: 100%;
  height: 250px;
  display: inline-block;
  background-color: #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(6, 0, 1, 0.1);
}
.block_product .content .odd>a {
  width: 100%;
  height: 100%;
  display: inline-block !important;
}
.block_product .content .odd>.imgBox {
  width: 100%;
  height: 100%;
  display: inline-block !important;
}
.block_product .content .odd>.imgBox>a{
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.block_product .content .odd .imgBox {
  width: 100%;
  height: 220px;
  position: relative;
}
.block_product .content .odd .imgBox > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.9);
  transition: 0.3s;
}
.block_product .content .odd .imgBox .playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -30px;
  margin-left: -30px;
  transition: 0.3s;
}
.block_product .content .odd .imgBox .playBtn img {
  width: 60px;
  height: 60px;
}
.block_product .content .odd .imgBox:hover img {
  transform: scale(1);
  transition: 0.3s;
}
.block_product .content .odd .imgBox:hover .playBtn {
  transform: scale(0.8);
  transition: 0.3s;
}
.block_product .content .odd .title {
  height: 30px;
  line-height: 30px;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  padding: 0 10px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}
.block_news {
  margin-top: 20px;
}
.block_news .content {
  justify-content: space-between;
}
.block_news .content a {
  width: 100%;
  display: inline-block;
  box-shadow: 0px 0px 6px 0px rgba(6, 0, 1, 0.08);
  margin-bottom: 10px;
}
.block_news .content a .imgBox {
  width: 100%;
  height: 130px;
  position: relative;
  overflow: hidden;
}
.block_news .content a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s;
}
.block_news .content a .txt {
  padding: 5px 10px 0;
}
.block_news .content a .date_arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.block_news .content a .date_arrow .date strong {
  font-size: 18px;
  color: #999;
  transition: 0.3s;
}
.block_news .content a .date_arrow .date p {
  font-size: 12px;
  color: #999;
  transition: 0.3s;
}
.block_news .content a .date_arrow .arrow {
  transition: 0.3s;
  margin-right: 0;
}
.block_news .content a .date_arrow .arrow img {
  width: 11px;
}
.block_news .content a .title h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}
.block_news .content a .title p {
  width: 100%;
  font-size: 12px;
  position: relative;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  height: 40px;
  line-height: 20px;
  color: #666;
  margin-bottom: 10px;
}
.block_news .content a:hover .imgBox > img {
  transform: scale(1.15);
}
.block_news .content a:hover .date_arrow .date strong,
.block_news .content a:hover .date_arrow .date p {
  color: #ff6700;
  transition: 0.3s;
}
.block_news .content a:hover .date_arrow .arrow {
  margin-right: -10px;
  transition: 0.3s;
}

.block_message {
  background-image: url("../images/contact_bg.jpg");
  width: 100%;
  background-size: cover;
  padding: 20px 0;
}
.block_message .content .line {
  justify-content: space-between;
}
.block_message .content .line input,
.block_message .content .line textarea {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 3px;
  line-height: 40px;
  text-indent: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
}
.block_message .content .line textarea {
  width: 100%;
  height: 56px;
  line-height: 24px;
}
.block_message .content .line input:focus,
.block_message .content .line textarea:focus {
  border: 1px solid #ff6700;
  transition: 0.3s;
}
.block_message .content .submitBtn {
  width: 100%;
  height: 40px;
  margin: 0 auto;
  background-color: #ff6700;
  border-radius: 3px;
  font-size: 16px;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.block_message .content .submitBtn:hover {
  transform: scale(1.1);
  opacity: 0.8;
  transition: 0.3s;
}
@media (min-width: 1100px) {
  .hom_banner {
    margin-bottom: 40px;
  }
  .block_product .content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .block_product .titleInfo .more{
    margin-top: 13px;
}
  .block_product .content .odd {
    margin-bottom: 30px;
    width: 380px;
    height: 335px;
    box-shadow: 0px 0px 16px 0px rgba(6, 0, 1, 0.1);
  }
  .block_product .content .odd a .imgBox {
    height: 230px;
  }
  .block_product .content .odd a .title {
    height: 30px;
    line-height: 30px;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    padding: 0 20px;
    text-align: center;
  }
  .block_product .content .odd:nth-child(3),
  .block_product .content .odd:nth-child(4),
  .block_product .content .odd:nth-child(5) {
    width: 373px;
    height: 310px;
  }
  .block_product .content .odd:nth-child(3) a .imgBox,
  .block_product .content .odd:nth-child(4) a .imgBox,
  .block_product .content .odd:nth-child(5) a .imgBox {
    width: 373px;
    height: 280px;
  }
  .block_news {
    margin-top: 40px;
  }
  .block_news .content {
    display: flex;
  }
  .block_news .content a {
    width: 373px;
  }
  .block_news .content a .imgBox {
    height: 280px;
  }
  .block_news .content a .txt {
    padding: 10px 15px 0;
  }
  .block_news .content a .date_arrow {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .block_news .content a .date_arrow .date strong {
    font-size: 28px;
  }
  .block_news .content a .date_arrow .date p {
    font-size: 12px;
  }
  .block_news .content a .date_arrow .arrow img {
    width: 18px;
  }
  .block_news .content a .title h3 {
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .block_news .content a .title p {
    font-size: 12px;
    height: 30px;
    line-height: 15px;
  }
  .block_message {
    padding: 40px 0;
  }
  .block_message .content .line {
    display: flex;
    margin-bottom: 10px;
  }
  .block_message .content .line input,
  .block_message .content .line textarea {
    width: 590px;
    height: 44px;
    border-radius: 3px;
    line-height: 44px;
    text-indent: 10px;
  }
  .block_message .content .line textarea {
    width: 100%;
    height: 88px;
  }
  .block_message .content .submitBtn {
    width: 150px;
    height: 44px;
    border-radius: 3px;
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .hom_banner {
    margin-bottom: 60px;
  }
  .block_product .titleInfo .more{
    margin-top: 17px;
}
  .block_product .content .odd {
    margin-bottom: 40px;
    width: 340px;
    height: 270px;
  }
  .block_product .content .odd .imgBox {
    height: 230px;
  }
  .block_product .content .odd .title {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    padding: 0 30px;
  }
  .block_product .content .odd:nth-child(3),
  .block_product .content .odd:nth-child(4),
  .block_product .content .odd:nth-child(5) {
    width: 340px;
    height: 270px;
  }
  .block_product .content .odd:nth-child(3) a .imgBox,
  .block_product .content .odd:nth-child(4) a .imgBox,
  .block_product .content .odd:nth-child(5) a .imgBox {
    width: 340px;
    height: 230px;
  }
  .block_news {
    margin-top: 60px;
  }
  .block_news .content {
    display: flex;
  }
  .block_news .content a {
    width: 440px;
  }
  .block_news .content a .imgBox {
    height: 330px;
  }
  .block_news .content a .txt {
    padding: 10px 25px 0;
  }
  .block_news .content a .date_arrow {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .block_news .content a .date_arrow .date strong {
    font-size: 40px;
  }
  .block_news .content a .date_arrow .date p {
    font-size: 16px;
  }
  .block_news .content a .date_arrow .arrow img {
    width: 22px;
  }
  .block_news .content a .title h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .block_news .content a .title p {
    font-size: 14px;
    height: 40px;
    line-height: 20px;
  }
  .block_message {
    padding: 60px 0;
  }
  .block_message .content .line {
    margin-bottom: 20px;
  }
  .block_message .content .line input,
  .block_message .content .line textarea {
    width: 590px;
    height: 48px;
    border-radius: 6px;
    line-height: 48px;
    text-indent: 20px;
  }
  .block_message .content .line textarea {
    width: 100%;
    height: 96px;
  }
  .block_message .content .submitBtn {
    width: 200px;
    height: 60px;
    border-radius: 6px;
    font-size: 20px;
  }
}

.fancybox-content .playBtn{
    display: none !important;
}
.fancybox-content .imgBox img{
    max-width: 100%;
}