﻿/**
 * @description: 清除浮动
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 响应式图片
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 横向排列，垂直居中布局
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 单行文本超出隐藏
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 多行文本超出隐藏
 * @Author:
 * @param {Number} num 最多要显示几行
 * @return:
 */
/**
 * @description: flex 垂直居中布局
 * @Author:
 * @param {String} cposition 水平排列方式
 * @return:
 */
/**
 * @description: 设置元素尺寸
 * @Author:
 * @param {Number} w 宽度
 * @param {Number} h 高度
 * @return:
 */
/**
 * @description: 2x的雪碧图缩放
 * @Author:
 * @param {Number} spriteW 雪碧图原始宽度
 * @param {Number} spriteH 雪碧图原始高度
 * @param {Number} bgOffsetX 背景定位原始X轴偏移量
 * @param {Number} bgOffsetY 背景定位原始Y轴偏移量
 * @return:
 */
/**
 * @description: 设置字体
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 修改滚动条样式
 * @Author:
 * @param {String} scrollW 滚动条宽度
 * @param {String} scrollC 滚动条背景色
 * @param {String} trackP 滑块背景色
 * @return:
 */
/**
 * @description: 设置背景图
 * @Author:
 * @param {String} url 图片路径
 * @return:
 */
/**
 * @description: 修改输入框占位符的字体颜色
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 禁止选中内容
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 鼠标移入图片放大效果
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 铺满整个容器的绝对定位
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 绝对定位水平垂直居中
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 统一容器,视项目不同,数值有所不同
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 替代flex的inline-block
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 首页栏目标题样式
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 两端对齐辅助元素
 * @Author: 
 * @param {type} 
 * @return: 
 */
.sidebar {
  width: 2.8rem;
  float: left;
}
@media screen and (max-width: 1024px) {
  .sidebar {
    display: none;
  }
}
.sidebar .sidebar-title {
  height: 0.9rem;
  padding: 0.15rem 0.1rem;
}
.sidebar .sidebar-title .ch {
  font-size: 0.25rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}
.sidebar .sidebar-title .en {
  font-size: 0.17rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}
.sidebar .column .column-title {
  background-color: #0B40AE;
}
.sidebar .column .column-list ul li {
  display: block;
  width: 100%;
  border: 1px solid #E6E6E6;
  margin-top: 0.1rem;
  position: relative;
}
.sidebar .column .column-list ul li > a {
  display: block;
  height: 0.42rem;
  line-height: 0.42rem;
  font-size: 0.16rem;
  color: #707070;
  text-align: center;
  padding: 0 0.15rem;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sidebar .column .column-list ul li .icon {
  font-family: serif;
  font-size: 0.16rem;
  color: #707070;
  position: absolute;
  right: 0.1rem;
  top: 0;
  z-index: 10;
  width: 0.42rem;
  height: 0.42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.sidebar .column .column-list ul li:hover,
.sidebar .column .column-list ul li.columnActive {
  border: 1px solid #0B40AE;
}
.sidebar .column .column-list ul li:hover > a,
.sidebar .column .column-list ul li.columnActive > a {
  font-weight: bold;
  color: #0B40AE;
}
.sidebar .column .column-list ul li:hover > .icon,
.sidebar .column .column-list ul li.columnActive > .icon {
  transform: rotate(-270deg);
  -webkit-transform: rotate(-270deg);
  -moz-transform: rotate(-270deg);
  -ms-transform: rotate(-270deg);
  -o-transform: rotate(-270deg);
}
.sidebar .column .column-list ul li .wrap {
  display: none;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li {
  display: block;
  width: 100%;
  border: 1px solid #E6E6E6;
  margin-top: 0.1rem;
  position: relative;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li > a {
  display: block;
  height: 0.35rem;
  line-height: 0.35rem;
  font-size: 0.15rem;
  color: #707070;
  text-align: center;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 0.1rem;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li > .icon {
  font-family: serif;
  font-size: 0.15rem;
  color: #707070;
  position: absolute;
  right: 0.1rem;
  top: 0;
  width: 0.35rem;
  height: 0.35rem;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three {
  display: none;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  margin-top: 0.1rem;
  position: relative;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li > a {
  display: block;
  height: 0.32rem;
  line-height: 0.32rem;
  font-size: 0.14rem;
  color: #707070;
  text-align: center;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 0.1rem;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li > .icon {
  font-family: serif;
  font-size: 0.14rem;
  color: #707070;
  position: absolute;
  right: 0.1rem;
  top: 0;
  width: 0.35rem;
  height: 0.35rem;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li .wrap-four {
  display: none;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li .wrap-four .wrap-four-ul .wrap-four-li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  margin-top: 0.1rem;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li .wrap-four .wrap-four-ul .wrap-four-li > a {
  display: block;
  height: 0.3rem;
  line-height: 0.3rem;
  font-size: 0.13rem;
  color: #707070;
  text-align: center;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 0.1rem;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li .wrap-four .wrap-four-ul .wrap-four-li:hover > a,
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li .wrap-four .wrap-four-ul .wrap-four-li.columnActive > a {
  color: #0B40AE;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li:hover > a,
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li.columnActive > a {
  color: #0B40AE;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li:hover > .icon,
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li .wrap-three .wrap-three-ul .wrap-three-li.columnActive > .icon {
  transform: rotate(-270deg);
  -webkit-transform: rotate(-270deg);
  -moz-transform: rotate(-270deg);
  -ms-transform: rotate(-270deg);
  -o-transform: rotate(-270deg);
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li:hover > a,
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li.columnActive > a {
  color: #0B40AE;
}
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li:hover > .icon,
.sidebar .column .column-list ul li .wrap .wrap-ul .wrap-li.columnActive > .icon {
  transform: rotate(-270deg);
  -webkit-transform: rotate(-270deg);
  -moz-transform: rotate(-270deg);
  -ms-transform: rotate(-270deg);
  -o-transform: rotate(-270deg);
}
.sidebar .contact {
  margin-top: 0.3rem;
  border: 1px solid #E6E6E6;
}
.sidebar .contact .contact-title {
  background: url(../image/sidebar-contact-bg.png) center center no-repeat;
  background-size: 100% auto;
}
.sidebar .contact .contact-content {
  padding: 0.15rem 0.24rem 0.2rem;
}
.sidebar .contact .contact-content .intro {
  font-size: 0.14rem;
  color: #707070;
  line-height: 0.24rem;
}
.sidebar .contact .contact-content ul li {
  display: block;
  margin-top: 0.13rem;
  font-size: 0.14rem;
  line-height: 1.6;
  color: #707070;
}
.sidebar .contact .contact-content ul li span {
  color: #000000;
}
.sidebar .contact .contact-content ul li strong {
  color: #0B40AE;
}
.sidebar .contact .contact-content dl {
  margin-top: 0.3rem;
}
.sidebar .contact .contact-content dl dt {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  overflow: hidden;
}
.sidebar .contact .contact-content dl dt img {
  width: 100%;
  height: auto;
}
.sidebar .contact .contact-content dl dd {
  display: inline-block;
  font-size: 0.14rem;
  color: #707070;
  line-height: 0.21rem;
  vertical-align: top;
  padding-top: 0.3rem;
}
.product-detail .product-detail-content {
  padding: 0.5rem 0 0.7rem;
  background-color: #fff;
}
.product-detail .product-detail-content .product-detail-content-in {
  width: 9.4rem;
  float: right;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in {
    width: 100%;
    float: none;
  }
}
.product-detail .product-detail-content .product-detail-content-in .product-content-title {
  position: relative;
  padding-bottom: 0.1rem;
  padding-left: 0.12rem;
  font-size: 0.2rem;
  font-weight: bold;
  color: #707070;
  line-height: 0.24rem;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .product-content-title {
    font-size: 0.32rem;
    line-height: 1.6;
  }
}
.product-detail .product-detail-content .product-detail-content-in .product-content-title:before {
  content: '';
  width: 0.03rem;
  height: 0.24rem;
  background-color: #0B40AE;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .product-content-title:before {
    height: 0.32rem;
    top: 0.08rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .product-content-title:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #707070;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product-detail .product-detail-content .product-detail-content-in .intro {
  margin-top: 0.3rem;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img {
  width: 4.45rem;
  height: 3.33rem;
  float: left;
  overflow: hidden;
  border: 1px solid #0B40AE;
  position: relative;
  background: #fff;
  /* .img-in {
            display: block;
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
          }

          .img-logo {
            display: block;
            width: 1rem;
            height: auto;
            position: absolute;
            top: 0;
            left: .1rem;
            @media screen and (max-width: 1024px) {
              width: 1.8rem;
            }
          } */
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .img-in {
  width: 100%;
  height: auto;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .img-logo {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1rem;
  height: auto;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .swiper-slide {
  position: relative;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .swiper-slide img {
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: auto;
  height: auto;
  max-width: 1.5rem;
  max-height: 1rem;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .swiper-slide .product-center-swiper-item {
  height: 3.33rem;
  background: center / cover no-repeat;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .pagination {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  text-align: center;
  z-index: 98;
  font-size: 0;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .pagination span.swiper-pagination-switch {
  display: inline-block;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background: #ffffff;
  margin: 0 0.06rem;
}
.product-detail .product-detail-content .product-detail-content-in .intro .img .pagination span.swiper-pagination-switch.template_main_back {
  background: #0B40AE;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .img {
    width: 100%;
    height: 5.14rem;
    float: none;
  }
  .product-detail .product-detail-content .product-detail-content-in .intro .img .swiper-slide .product-center-swiper-item {
    height: 5.14rem;
  }
  .product-detail .product-detail-content .product-detail-content-in .intro .img .pagination span.swiper-pagination-switch {
    width: 0.15rem;
    height: 0.15rem;
    margin: 0 0.1rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text {
  width: 4.75rem;
  float: right;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text {
    width: 100%;
    float: none;
    margin-top: 0.3rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .title {
  height: 0.6rem;
  background-color: #0B40AE;
  line-height: 0.6rem;
  padding: 0 0 0 0.2rem;
  font-size: 0.24rem;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .title {
    font-size: 0.32rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .desc {
  padding: 0.15rem 0 0 0.2rem;
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .desc .ti {
  font-size: 0.18rem;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .desc .ti {
    font-size: 0.3rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .desc .con {
  margin-top: 0.1rem;
  font-size: 0.14rem;
  color: #333333;
  line-height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-indent: 2em;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .desc .con {
    font-size: 0.28rem;
    line-height: 1.6;
    -webkit-line-clamp: inherit;
  }
}
@media screen and (max-width: 1601px) and (min-width: 1025px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .desc .con {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .desc {
    padding: 0.3rem 0;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .info {
  border-bottom: 0.01rem solid #C2C2C2;
  padding: 0.15rem 0.25rem 0.05rem;
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .info span {
  font-size: 0.14rem;
  line-height: 0.28rem;
  color: #333333;
  float: left;
  width: 50%;
}
@media screen and (max-width: 1601px) and (min-width: 1025px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .info span {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .info {
    padding: 0.3rem 0;
  }
  .product-detail .product-detail-content .product-detail-content-in .intro .text .info span {
    font-size: 0.28rem;
    line-height: 1.5;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel {
  overflow: hidden;
  padding-left: 0.2rem;
  margin-top: 0.14rem;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel {
    margin-top: 0;
    padding: 0.3rem 0;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l {
  float: left;
  width: 70%;
  font-size: 0;
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dt {
  width: 0.47rem;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dt img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dt {
    width: 20%;
  }
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dt img {
    width: 100%;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  width: 75%;
  padding-left: 0.05rem;
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .te {
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-left: 0.05rem;
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .te,
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .te p {
  font-size: 0.12rem;
  line-height: 1.6;
  color: #c1c1c1;
}
@media screen and (max-width: 1601px) and (min-width: 1025px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .te,
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .te p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .te {
    font-size: 0.28rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .phone {
  font-size: 0.22rem;
  color: #0B40AE;
  line-height: 1.2;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-l dd .phone {
    font-size: 0.4rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-r {
  float: right;
  padding: 0.05rem 0.1rem;
  line-height: 0.3rem;
  background: #0B40AE;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  color: #ffffff;
  margin-top: 0.12rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .intro .text .tel .tel-left-r {
    line-height: 0.6rem;
    font-size: 0.28rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .product-video {
  margin-top: 0.5rem;
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-title {
  position: relative;
  padding-bottom: 0.05rem;
  padding-left: 0.07rem;
  font-size: 0.2rem;
  font-weight: bold;
  color: #0B40AE;
  line-height: 0.24rem;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .product-video .product-video-title {
    font-size: 0.32rem;
    line-height: 1.6;
  }
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-title:before {
  content: '';
  width: 1rem;
  height: 0.03rem;
  background-color: #0B40AE;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .product-video .product-video-title:before {
    width: 1.5rem;
    height: 0.06rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-title:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #C2C2C2;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content {
  margin-top: 0.47rem;
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content .video-img {
  width: 6rem;
  height: 3.74rem;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content .video-img {
    width: 100%;
    height: 4.5rem;
    margin-top: 0.5rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content .video-img .img {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content .video-img .img img {
  width: 100%;
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content .video-img .img .mask {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content .video-img .img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.24rem;
  margin-left: -0.24rem;
  width: 0.48rem;
  height: 0.48rem;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .product-video .product-video-content .video-img .img .play-btn {
    margin-top: -0.35rem;
    margin-left: -0.35rem;
    width: 0.7rem;
    height: 0.7rem;
  }
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction {
  margin-top: 0.5rem;
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-title {
  position: relative;
  padding-bottom: 0.05rem;
  font-size: 0.2rem;
  font-weight: bold;
  color: #0B40AE;
  line-height: 0.24rem;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-title {
    font-size: 0.32rem;
    line-height: 1.6;
  }
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-title span {
  border-bottom: 0.03rem solid #0B40AE;
  padding: 0.03rem 0.1rem;
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content {
  margin-top: 0.36rem;
  padding-bottom: 0.3rem;
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content,
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content p {
  font-size: 12pt;
  color: #333333;
  line-height: 0.3rem;
  font-family: "Microsoft YaHei" !important;
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content img {
  max-width: 100% !important;
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content table {
  border: 0.01rem dashed #707070;
  margin-top: 0.2rem;
}
.product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content table td {
  border: 0.01rem dashed #707070;
  padding: 0.1rem 0.15rem;
}
@media screen and (max-width: 1024px) {
  .product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content,
  .product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content * {
    font-size: 0.28rem !important;
    line-height: 1.6 !important;
  }
  .product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content td {
    padding: 3% 4% !important;
  }
  .product-detail .product-detail-content .product-detail-content-in .brief-introduction .brief-introduction-content img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
  }
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page {
  padding: 0.25rem 0;
  border-top: 1px solid #c2c2c2;
  margin-top: 0.4rem;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in {
  float: left;
  width: 80%;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li {
  margin-bottom: 0.1rem;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li i {
  font-family: serif;
  display: inline-block;
  font-weight: bold;
  margin-right: 0.05rem;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li strong {
  display: inline-block;
  margin-right: 0.1rem;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li:last-child {
  margin-bottom: 0;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li a,
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li span {
  font-size: 0.16rem;
  color: #333333;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li a {
  display: block;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .return {
  text-align: center;
  float: right;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .return a {
  display: block;
  /*width: 0.48rem;*/
  background: #ffffff;
  border: 0.01rem solid #203A57;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #707070;
  padding: 0.08rem;
}
.洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .return a:hover {
  background-color: #0B40AE;
  border-color: #0B40AE;
  color: #ffffff !important;
}
@media screen and (max-width: 1024px) {
  .洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page {
    padding: 4% 0;
  }
  .洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in {
    float: none;
    width: 100%;
  }
  .洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li {
    margin-bottom: 0;
  }
  .洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li a,
  .洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .page-in li span {
    font-size: 0.28rem;
    line-height: 1.6;
  }
  .洪家楼搬家公司电话,经十西路搬家公司电话,恒大绿洲搬家公司电话,马山镇搬家公司电话,双泉镇搬家公司电话,孝里镇搬家公司电话,张夏搬家公司电话,万德搬家公司电话,归德搬家公司电话,五峰山搬家公司电话,崮云湖搬家公司电话,平安搬家公司电话,文昌搬家公司电话,

-detail-page .return {
    display: none;
  }
}
.file-list {
  margin-top: 0.2rem;
}
.file-list .file-list-title {
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 0.28rem;
  color: #0B40AE;
}
.file-list ul {
  margin-top: 0.2rem;
}
.file-list ul li {
  float: left;
  width: 35%;
  margin-right: 1.5%;
  margin-bottom: 1.5%;
  background: #e5e5e5;
  font-size: 0;
  padding: 0.14rem 0.15rem 0.14rem 0.2rem;
}
.file-list ul li:hover a {
  color: #ffffff;
  background-color: #0b40ae;
}
.file-list ul li:nth-child(3n) {
  margin-right: 0;
}
.file-list ul li img,
.file-list ul li a,
.file-list ul li span {
  display: inline-block !important;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  margin: auto !important;
}
.file-list ul li img {
  width: 0.3rem;
}
.file-list ul li span {
  width: 2.1rem;
  font-size: 0.14rem;
  line-height: 0.36rem;
  color: #333333;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 0 0 0.04rem !important;
}
@media screen and (max-width: 1601px) and (min-width: 1025px) {
  .file-list ul li span {
    font-size: 0.16rem;
  }
}
.file-list ul li a {
  /*width: 0.46rem;
        height: 0.22rem;*/
  padding: 0.04rem 0.1rem;
  border: 0.01rem solid #707070;
  border-radius: 0.04rem;
  font-size: 0.12rem;
  line-height: 0.22rem;
  color: #707070;
  text-align: center;
}
@media screen and (max-width: 1601px) and (min-width: 1025px) {
  .file-list ul li a {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .file-list .file-list-title {
    font-size: 0.32rem;
    line-height: 1.5;
  }
  .file-list ul {
    margin-top: 0.2rem;
  }
  .file-list ul li {
    float: left;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 4% !important;
    padding: 0.28rem 0.3rem 0.28rem 0.4rem;
  }
  .file-list ul li:last-child {
    margin-bottom: 0 !important;
  }
  .file-list ul li img,
  .file-list ul li a,
  .file-list ul li span {
    display: inline-block !important;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    margin: auto !important;
  }
  .file-list ul li img {
    width: 0.6rem;
  }
  .file-list ul li span {
    width: 4.2rem;
    font-size: 0.28rem;
    line-height: 0.36rem;
    margin: 0 0 0 0.08rem !important;
  }
  .file-list ul li a {
    font-size: 0.26rem;
    line-height: 0.44rem;
    padding: 0.04rem 0.2rem;
  }
}
.hot-product {
  padding: 0.4rem 0 0.75rem;
}
.hot-product .hot-product-title {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 0.34rem;
  line-height: 0.34rem;
  position: relative;
  border-left: 0.05rem solid #0B40AE;
  padding-left: 0.06rem;
}
.hot-product .hot-product-title:after {
  content: '';
  width: 0.19rem;
  height: 0.34rem;
  background: url(../image/hot-product-title-cue.png) center / cover no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.hot-product .hot-product-title .title {
  padding-left: 0.05rem;
  padding-right: 0.4rem;
  font-size: 0.2rem;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #0B40AE;
}
.hot-product .hot-product-title .title img {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  margin-right: 0.05rem;
  width: 0.2rem;
}
.hot-product .hot-product-title .title span {
  display: inline-block;
  font-size: 0.18rem;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .hot-product .hot-product-title {
    width: 5rem;
    height: 0.6rem;
    line-height: 0.6rem;
    padding-left: 0.15rem;
    border-left: 0.1rem solid #0B40AE;
  }
  .hot-product .hot-product-title:after {
    width: 0.4rem;
    height: 0.6rem;
  }
  .hot-product .hot-product-title .title {
    background-size: 0.3rem;
    padding-left: 0.1rem;
    font-size: 0.32rem;
  }
  .hot-product .hot-product-title .title img {
    margin-right: 0.1rem;
    width: 0.3rem;
  }
  .hot-product .hot-product-title .title span {
    font-size: 0.32rem;
  }
}
.hot-product .content {
  margin: 0.38rem -0.15rem 0;
  position: relative;
}
.hot-product .content .arrow-product {
  width: 0.26rem;
  height: 0.6rem;
  position: absolute;
  top: 50%;
  margin-top: -0.3rem;
  cursor: pointer;
  z-index: 100;
}
.hot-product .content .arrow-product:hover {
  background-color: #0B40AE;
}
.hot-product .content .arrow-product-prev {
  background-color: rgba(112, 112, 112, 0.2);
  background-image: url(../image/product-hot-arrow-prev.png) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: 0.1rem auto !important;
  left: -0.46rem;
}
@media screen and (max-width: 1024px) {
  .hot-product .content .arrow-product-prev {
    display: none;
  }
}
.hot-product .content .arrow-product-next {
  background-color: rgba(112, 112, 112, 0.2);
  background-image: url(../image/product-hot-arrow-next.png) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: 0.1rem auto !important;
  right: -0.46rem;
}
@media screen and (max-width: 1024px) {
  .hot-product .content .arrow-product-next {
    display: none;
  }
}
.hot-product .content .swiper-container {
  width: 100%;
  height: 2.73rem;
}
@media screen and (max-width: 1024px) {
  .hot-product .content .swiper-container {
    height: 2.9rem;
  }
}
.hot-product .content .swiper-container .swiper-wrapper {
  height: 100%;
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide {
  height: 100%;
  padding: 0 0.15rem;
  box-sizing: border-box;
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  width: 100% !important;
  margin: 0 auto;
  border: 1px solid #0B40AE;
}
@media screen and (max-width: 1024px) {
  .hot-product .content .swiper-container .swiper-wrapper .swiper-slide a {
    width: 87%;
  }
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .img {
  width: 100%;
  height: 2.13rem;
  overflow: hidden;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .img {
    height: 2.1rem;
  }
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .img .img-in {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .img .img-logo {
  display: block;
  width: 0.74rem;
  height: auto;
  position: absolute;
  top: 0rem;
  left: 0.1rem;
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .text {
  border-top: 1px solid #0B40AE;
  padding: 0.13rem 0.22rem;
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .text .title {
  width: calc(100% - 0.3rem);
  float: left;
  font-size: 0.15rem;
  color: #707070;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .text .title {
    font-size: 0.28rem;
  }
}
.hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .text .icon {
  width: 0.2rem;
  height: 0.2rem;
  float: right;
  background: url(../image/product-module-content-icon.png) center center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .hot-product .content .swiper-container .swiper-wrapper .swiper-slide a .text .icon {
    width: 0.3rem;
    height: 0.3rem;
    margin-top: 0.05rem;
  }
}
