/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

/* main */
.container-fluid {
  width: 100%;
  overflow: hidden;
  padding: 75px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  overflow: hidden;
  text-align: center;
}
.title>h1 {
  line-height: 48px;
  font-size: 32px;
  color: #252525;
}
.title>div {
  line-height: 34px;
  font-size: 18px;
  color: #7a7a7a;
}
.title-white>h1 {
  color: #fff;
}
.title-white>div {
  color: rgba(255, 255, 255, 0.7);
}

.content {
  overflow: hidden;
}

.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}

.list {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1400px) {
  .list {
    width: 102% !important;
    margin-left: -1%;
  }
}
@media (max-width: 1220px) {
  .container-fluid {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 30px 0 !important;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 15px 0 !important;
  }

  .title>h1 {
    line-height: 30px !important;
    font-size: 20px !important;
  }
  .title>div {
    line-height: 20px !important;
    font-size: 14px !important;
  }
  .content {
    margin-top: 10px;
  }

  .list {
    width: 100% !important;
    margin-left: 0;
    justify-content: space-between;
  }
  .list>li {
    width: calc(50% - 5px) !important;
    margin: 0 0 10px 0 !important;
  }
}

/* 产品分类 */
.classify {
  margin-top: -42px;
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: visible;
}
.classify-box {
  background-color: #fff;
  padding: 15px 70px;
  border-radius: 45px;
  position: relative;
  box-shadow: 0 0 55px rgba(55, 81, 82, 0.2);
}
.classify-box .swiper-slide {
  width: 60px;
  margin-right: 45px;
}
.classify-box .swiper-slide>a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  height: 60px;
  font-size: 16px;
  color: #585858;
  border-radius: 50%;
}
/*.classify-box .swiper-slide:first-child>a,*/

.classify-box .swiper-slide>a:hover {
  background-color: #02afb6;
  color: #fff;
}
.classify-prev,
.classify-next {
  width: 40px;
  float: left;
  height: 40px;
  border-radius: 50%;
  font-family: SimSun;
  font-size: 30px;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.classify-next {
  left: initial;
  right: 15px;
}
.classify-prev::before {
  content: "<";
}
.classify-next::before {
  content: ">";
}
.classify-prev:hover,
.classify-next:hover {
  background-color: #02afb6;
  color: #fff;
}

@media (max-width: 1400px) {
  .classify-box .swiper-slide {
    margin-right: 30px;
  }
}
@media (max-width: 1220px) {
  .classify-box .swiper-slide {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .classify-box .swiper-slide {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .classify {
    margin-top: 15px;
    padding: 0 !important;
  }
  .classify-box {
    padding: 10px 30px;
  }
  .classify-box .swiper-slide {
    width: 40px;
    margin-right: 5px;
  }
  .classify-box .swiper-slide>a {
    height: 40px;
    font-size: 14px;
  }

  .classify-prev,
  .classify-next {
    width: 30px;
    height: 30px;
    font-size: 16px;
    left: 0;
  }
  .classify-next {
    left: initial;
    right: 0;
  }
}

/* 产品 */
.product {
  padding: 45px 0 40px 0;
}
.product ul.list {
  width: 1412px;
}
.product ul.list>li {
  width: 321px;
  float: left;
  margin: 0 32px 35px 0;
}
.product ul.list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(179, 179, 179, 0.4);
}
.product ul.list>li>a .img::before {
  padding-top: 100%;
}
.product ul.list>li>a .product-box {
  display: block;
  overflow: hidden;
  padding: 25px;
  padding-top: 0;
  text-align: center;
}
.product ul.list>li>a .product-box>h1 {
  line-height: 34px;
  font-size: 18px;
  color: #ef854b;
}
.product ul.list>li>a .product-box>div {
  overflow: hidden;
  line-height: 24px;
  font-size: 15px;
  color: #464646;
  height: 48px;
  margin-top: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product ul.list>li>a:hover .img>img {
  transform: scale(1.06);
}

@media (max-width: 1400px) {
  .product ul.list>li {
    width: 23%;
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 1220px) {
  .product ul.list>li>a .product-box {
    padding: 15px;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .product ul.list>li {
    margin: 0 1% 20px 1%;
  }
}
@media (max-width: 767px) {
  .product ul.list>li>a .product-box {
    padding: 0 5px 10px 5px;
  }
  .product ul.list>li>a .product-box>h1 {
    line-height: 30px;
    font-size: 16px;
  }
  .product ul.list>li>a .product-box>div {
    line-height: 20px;
    font-size: 12px;
    height: 40px;
  }
}

/* 大型团膳 冷链配送 外卖配送 烘培保温 电加热保温 */
.hf {
  padding: 0;
  background-image: url(../images/product-bj.jpg);
  position: relative;
}
.hf>ul {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.75);
}
.hf>ul>li {
  width: 20%;
  float: left;
  overflow: hidden;
  position: relative;
}
.hf>ul>li::before {
  content: "";
  display: block;
  padding-top: 150%;
}
.hf>ul>li::after {
  content: "";
  width: 1px;
  float: left;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}
.hf>ul>li>a {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
}
.hf>ul>li>a .hf-icon {
  width: 100%;
  float: left;
  max-width: 92px;
  border: 1px solid rgba(255, 255, 255, 1);
  position: relative;
  border-radius: 50%;
}
.hf>ul>li>a .hf-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.hf>ul>li>a>h1 {
  width: 100%;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: #fff;
  margin-top: 65px;
}
.hf>ul>li:hover::after {
  width: 100%;
  background-color: rgba(255, 143, 81, 0.8);
}

@media (max-width: 1400px) {
  .hf>ul>li>a>h1 {
    margin-top: 55px;
  }
}
@media (max-width: 1220px) {
  .hf {
    padding: 0 !important;
  }
  .hf>ul>li>a>h1 {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .hf>ul>li>a>h1 {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .hf>ul>li::before {
    display: none;
  }
  .hf>ul>li>a {
    position: relative;
    padding: 10px;
  }
  .hf>ul>li>a .hf-icon {
    max-width: 40px;
  }
  .hf>ul>li>a .hf-icon>img {
    height: 20px;
  }
  .hf>ul>li>a>h1 {
    line-height: 20px;
    font-size: 12px;
    margin-top: 10px;
  }
  .hf>ul>li:hover::after {
    height: 100%;
  }
}

/* 创新技术 绽放活力 */
.about {
  background-color: #f2f2f2;
  padding: 85px 0 120px 0;
}
.about .title>h1 {
  line-height: 50px;
  color: #313131;
}
.about .title>div {
  font-size: 22px;
  color: #515151;
}
.about-text {
  display: block;
  overflow: hidden;
  font-size: 17px;
  color: #606060;
  text-align: center;
  line-height: 30px;
  margin: 35px 0;
}
.about-more {
  display: flex;
  justify-content: center;
}
.about-more>a {
  min-width: 160px;
  height: 50px;
  float: left;
  border-radius: 25px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  font-size: 15px;
  color: #fff;
  padding: 0 30px;
  background-color: #ef854b;
}
.about-more>a:hover {
  background-color: #02afb6;
}

@media (max-width: 1400px) {
  .about {
    padding: 70px 0;
  }
}
@media (max-width: 1220px) {
  .about {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .about-text {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .about-text {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0;
  }
  .about-more>a {
    min-width: 120px;
    height: 40px;
    border-radius: 20px;
    font-size: 14px;
    padding: 0 15px;
  }
}

/* 丰富行业经验 */
.hy {
  background-image: url(../images/hy-bj.jpg);
  padding: 100px 0;
}
.hy-title {
  display: block;
  overflow: hidden;
  padding: 15px 0;
  background: url(../images/hy-icon.png) no-repeat left top;
}
.hy-title>h1 {
  line-height: 44px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.hy-title .hy-text {
  display: block;
  overflow: hidden;
  line-height: 26px;
  color: #fff;
  font-size: 16px;
  margin-top: 30px;
}
.hy-title .hy-text>span {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  margin-bottom: 5px;
}
.hy-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 150px;
  position: relative;
}
.hy-content .hy-box {
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hy-content .hy-box .hy-icon {
  width: 100%;
  max-width: 48px;
  float: left;
  border-radius: 50%;
  position: relative;
}
.hy-content .hy-box .hy-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.hy-content .hy-box>h2 {
  width: 100%;
  overflow: hidden;
  line-height: 32px;
  font-size: 24px;
  color: #fff;
  margin-top: 25px;
  font-weight: normal;
}
.hy-content .hy-heng {
  flex: 1;
  float: left;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 22px;
}
.hy-content::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 100%;
  top: 22px;
}
.hy-content::after {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 100%;
  top: 22px;
}

@media (max-width: 1400px) {
  .hy {
    padding: 80px 0;
  }
  .hy-content {
    margin-top: 130px;
  }
}
@media (max-width: 1220px) {
  .hy {
    padding: 50px 0;
  }
  .hy-content {
    margin-top: 110px;
  }
}
@media (max-width: 991px) {
  .hy-content {
    margin-top: 80px;
  }
  .hy-content .hy-box>h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hy-title {
    background-size: contain;
  }
  .hy-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .hy-title .hy-text {
    line-height: 20px;
    font-size: 14px;
    margin-top: 10px;
  }
  .hy-title .hy-text>span {
    line-height: 30px;
    font-size: 18px;
  }
  .hy-content {
    margin-top: 20px;
  }
  .hy-content .hy-box>h2 {
    font-size: 12px;
    line-height: 24px;
    margin-top: 10px;
  }
}

/* 新闻中心 */
.news-content {
  display: flex;
  margin-top: 40px;
}
.news-content>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(45, 45, 45, 0.2);
  overflow: hidden;
}
.news-content>a .news-left {
  width: 50%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.news-content>a .news-left::before {
  content: "";
  display: block;
  padding-top: 60.202605%;
}
.news-content>a .news-right {
  width: 50%;
  float: right;
  padding: 40px;
}
.news-content>a .news-right .news-time {
  line-height: 22px;
  font-size: 14px;
  color: #ef854b;
}
.news-content>a .news-right .news-time::after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #919191;
  margin-top: 30px;
}
.news-content>a .news-right>h1 {
  line-height: 40px;
  margin-top: 30px;
  font-size: 24px;
  color: #252525;
}
.news-content>a .news-right .news-text {
  overflow: hidden;
  height: 120px;
  line-height: 24px;
  font-size: 15px;
  color: #898989;
  margin-top: 15px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.news-content>a .news-right .news-more {
  display: flex;
  align-items: center;
  margin-top: 30px;
  line-height: 24px;
  font-size: 15px;
  color: #606060;
}
.news-content>a .news-right .news-more>img {
  margin-right: 15px;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.news-list>li {
  width: calc(50% - 12px);
  float: left;
  margin-bottom: 15px;
}
.news-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #f3f3f3;
  border-radius: 20px;
  padding: 17px;
}
.news-list>li>a .news-time {
  width: 84px;
  float: left;
  height: 84px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: 20px;
  color: #777;
  font-size: 12px;
  text-align: center;
  margin-right: 15px;
}
.news-list>li>a .news-time>span {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 40px;
  color: #767676;
}
.news-list>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 17px;
  color: #2e2e2e;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 14px;
}
.news-list>li>a .news-text {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 14px;
  color: #606060;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 5px;
}
.news-list>li>a:hover {
  background-color: #ef854b;
}
.news-list>li>a:hover>h1,
.news-list>li>a:hover .news-text {
  color: #fff;
}

@media (max-width: 991px) {
  .news-content>a .news-right {
    padding: 20px;
  }
  .news-content>a .news-right .news-time::after {
    margin-top: 15px;
  }
  .news-content>a .news-right>h1 {
    margin-top: 15px;
  }
  .news-content>a .news-right .news-more {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .news-content {
    margin-top: 20px;
  }
  .news-content>a .news-left {
    width: 40%;
  }
  .news-content>a .news-right {
    width: 60%;
    padding: 10px;
  }
  .news-content>a .news-right .news-time {
    line-height: 14px;
    font-size: 12px;
  }
  .news-content>a .news-right .news-time::after {
    margin-top: 2px;
  }
  .news-content>a .news-right>h1 {
    margin-top: 2px;
    font-size: 16px;
    line-height: 24px;
  }
  .news-content>a .news-right .news-text {
    height: 48px;
    font-size: 14px;
    margin-top: 5px;
    -webkit-line-clamp: 2;
  }
  .news-content>a .news-right .news-more {
    margin-top: 5px;
    line-height: 20px;
    font-size: 12px
  }
  .news-content>a .news-right .news-more>img {
    height: 20px;
    margin-right: 5px;
  }

  .news-list {
    margin-top: 15px;
  }
  .news-list>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-list>li>a {
    padding: 10px;
    border-radius: 10px;
  }
  .news-list>li>a .news-time {
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  .news-list>li>a .news-time>span {
    line-height: 30px;
    font-size: 30px;
  }
  .news-list>li>a>h1 {
    margin-top: 7px;
  }
}

/* 品牌客户 */
.brand {
  background-image: url(../images/brand-bj.jpg);
  padding: 70px 0 110px 0;
}
.brand-swiper {
  margin-top: 50px;
}
.brand-swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
}
.brand-swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.brand-swiper .swiper-slide>a:hover img {
  transform: scale(1.06);
}

@media (max-width: 1400px) {
  .brand {
    padding: 70px 0;
  }
}
@media (max-width: 1220px) {
  .brand {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .brand-swiper {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .brand-swiper {
    margin-top: 15px;
  }
}
/* END-main */


/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.place-title {
  width: 100%;
  float: left;
}
.menu-title {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
  position: relative;
}
.menu-title::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #d6d6d6;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-title>span {
  float: left;
  position: relative;
  background-color: #fff;
  padding: 0 20px;
  font-size: 30px;
  color: #ef854b;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  transition: initial;
  margin-top: 30px;
}
.menu-list>li {
  width: 130px;
  float: left;
  margin: 5px 15px;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 46px;
  border: 1px solid #eaeaea;
  font-size: 18px;
  color: #262626;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
  border-radius: 24px;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  color: #fff;
  background-color: #ef854b;
  border-color: #ef854b;
}

.place-content {
  width: 100%;
  float: left;
  padding-top: 30px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 17px;
  line-height: 30px;
  color: #333;
  min-height:400px;
}
.company img{ max-width:100% !important; height:auto !important;}

@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
    background-color: #ef854b;
  }
  .menu-title::before {
    display: none;
  }
  .menu-title-active {
    text-align: left;
    justify-content: flex-start;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list {
    display: none;
    margin: 0;
  }
  .menu-list>li {
    width: 100%;
    margin: 5px 0 0 0;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */


/* 产品中心 */
.product-main {
  padding: 0;
  background-color: #f6f6f6;
}
.product-nav {
  width: 100%;
  overflow: hidden;
  background-color: #ef854b;
}
.product-nav .classify-box {
  box-shadow: initial;
  background-color: #ef854b;
}
.product-nav .classify-box .swiper-slide>a {
  color: #fff;
}
.product-nav .classify-box .swiper-slide>a.active, .product-nav .classify-box .swiper-slide>a:hover {
  background-color: #fff;
  color: #ef854b;
  font-weight: bold;
}
.product-nav .classify-prev,
.product-nav .classify-next {
  color: #fff;
}

.product-main .list {
  padding: 45px 0 20px;
  width: 1412px;
}
.product-main ul.list>li {
  width: 321px;
  float: left;
  margin: 0 32px 35px 0;
}
.product-main ul.list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  border-radius: 20px;
}
.product-main ul.list>li>a .img {
  border-bottom: 1px solid #e2e2e2;
}
.product-main ul.list>li>a .img::before {
  padding-top: 100%;
}
.product-main ul.list>li>a .product-box {
  display: block;
  overflow: hidden;
  padding: 15px 25px;
  text-align: center;
  background-color: #fafafa;
}
.product-main ul.list>li>a .product-box>h1 {
  line-height: 32px;
  font-size: 18px;
  color: #404040;
  font-weight: bold;
}
.product-main ul.list>li>a .product-box>div {
  overflow: hidden;
  line-height: 24px;
  font-size: 15px;
  color: #666;
  height: 48px;
  margin-top: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-main ul.list>li>a:hover .product-box>h1 {
  color: #ef854b;
}
.product-main ul.list>li>a:hover .img>img {
  transform: scale(1.06);
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  padding: 50px 0;
}
.product-details-left {
  width: 40%;
  float: left;
  border: 1px solid #ccc;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.product-details-left::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.product-details-right {
  width: 60%;
  float: left;
  padding: 50px 0 50px 50px;
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}
.product-details-right .product-details-text {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 32px;
  color: #666;
  margin-top: 30px;
  min-height:300px;
}
.product-details-right .product-details-more {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.product-details-right .product-details-more>a {
  width: 160px;
  float: left;
  height: 50px;
  border-radius: 25px;
  background-color: #ef854b;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.product-details-content {
  width: 100%;
  float: left;
  margin-top: 50px;
  font-size: 16px;
  color: #333;
  line-height: 30px;
}
.product-details-title {
  display: block;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 30px;
}
.product-details-title>span {
  float: left;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  background-color: #ef854b;
  color: #fff;
  font-weight: bold;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .product-main ul.list>li {
    width: 23%;
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 1220px) {
  .product-main ul.list>li>a .product-box {
    padding: 15px;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .product-main ul.list>li {
    margin: 0 1% 20px 1%;
  }
  .product-main .list {
    padding: 30px 0;
  }

  .product-details {
    padding: 30px 0;
  }
  .product-details-right {
    padding: 30px 0 30px 30px;
  }
  .product-details-content {
    margin-top: 30px;
  }

}
@media (max-width: 767px) {
  .product-main .list {
    padding: 20px 0;
  }
  .product-main ul.list>li>a .product-box {
    padding: 0 5px 10px 5px;
  }
  .product-main ul.list>li>a .product-box>h1 {
    line-height: 30px;
    font-size: 16px;
  }
  .product-main ul.list>li>a .product-box>div {
    line-height: 20px;
    font-size: 12px;
    height: 40px;
  }

  .product-details {
    padding: 15px 0;
  }
  .product-details-left {
    width: 100%;
  }
  .product-details-left::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .product-details-right {
    width: 100%;
    padding: 0;
    margin-top: 15px;
  }
  .product-details-right .product-details-text {
    line-height: 24px;
    margin-top: 10px;
  }
  .product-details-right .product-details-more {
    margin-top: 10px;
  }
  .product-details-right .product-details-more>a {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
    font-size: 14px;
  }
  .product-details-content {
    margin-top: 15px;
    line-height: 24px;
    font-size: 14px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    height: 40px;
    line-height: 40px;
  }
}
/* END-产品中心 */


/* 应用行业 */
.place-content>ul.hf-list {
  width: 101%;
  margin-left: -0.5%;
}
.place-content>ul.hf-list>li {
  width: 32.333333%;
  float: left;
  overflow: hidden;
  position: relative;
  margin: 0 0.5% 1% 0.5%;
}
.place-content>ul.hf-list>li::before {
  content: "";
  display: block;
  padding-top: 71.840355%;
}
.place-content>ul.hf-list>li>a {
  width: 100%;
  height: 100%;
  float: left;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
}
.place-content>ul.hf-list>li>a .hf-icon {
  width: 100%;
  float: left;
  max-width: 92px;
  border: 1px solid rgba(255, 255, 255, 1);
  position: relative;
  border-radius: 50%;
}
.place-content>ul.hf-list>li>a .hf-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.place-content>ul.hf-list>li>a>h1 {
  width: 100%;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: #fff;
  margin-top: 25px;
}
.place-content>ul.hf-list>li:hover>a {
  background-color: rgba(255, 143, 81, 0.8);
}

@media (max-width: 991px) {
  .place-content>ul.hf-list>li>a .hf-icon {
    max-width: 80px;
  }
  .place-content>ul.hf-list>li>a>h1 {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .place-content>ul.list>li {
    width: 49%;
  }
  .place-content>ul.hf-list>li>a {
    padding: 10px;
  }
  .place-content>ul.hf-list>li>a .hf-icon {
    max-width: 40px;
  }
  .place-content>ul.hf-list>li>a .hf-icon>img {
    height: 20px;
  }
  .place-content>ul.hf-list>li>a>h1 {
    line-height: 20px;
    font-size: 12px;
    margin-top: 10px;
  }
}
/* END-应用行业 */


/* 品牌客户 */
.brand-list {
  display: flex;
  flex-wrap: wrap;
  width: 102%;
  margin-left: -1%;
}
.brand-list>li {
  width: 12.285%;
  float: left;
  margin: 0 1% 2% 1%;
}
.brand-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.brand-list>li>a::before {
  content: "";
  display: block;
  padding-top: 100%;
}

@media (max-width: 991px) {
  .brand-list>li {
    width: 18%;
  }
}
@media (max-width: 767px) {
  .brand-list>li {
    width: 23%;
  }
}
/* END-品牌客户 */


/* 资讯动态 */
.info-list {
  display: block;
  overflow: hidden;
}
.info-list>li {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.info-list>li>a {
  display: flex;
  overflow: hidden;
  background-color: #f3f3f3;
  padding: 20px;
}
.info-list>li>a .info-img {
  width: 208px;
  float: left;
  overflow: hidden;
  position: relative;
}
.info-list>li>a .info-img::before {
  content: "";
  display: block;
  padding-top: 74.5192308%;
}
.info-list>li>a .info-box {
  width: calc(100% - 208px);
  float: left;
  padding: 5px 0 5px 25px;
}
.info-list>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-weight: bold;
  font-size: 18px;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list>li>a .info-box .info-text {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #4e4e4e;
  margin: 10px 0 15px 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.info-list>li>a .info-box .info-time {
  line-height: 18px;
  font-size: 14px;
  color: #979797;
}
.info-list>li>a:hover {
  background-color: #ef854b;
}
.info-list>li>a:hover .info-box>h1,
.info-list>li>a:hover .info-box .info-text,
.info-list>li>a:hover .info-box .info-time {
  color: #fff;
}

.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 40px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.06;
  padding: 15px 0;
  border-bottom: 1px dashed #ccc;
}
.news-details-img{ width:100%; text-align:center;}
.news-details-img img{ max-width:100% !important; margin:10px auto;}

.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .info-list>li>a {
    padding: 10px;
  }
  .info-list>li>a .info-img {
    width: 140px;
  }
  .info-list>li>a .info-box {
    width: calc(100% - 140px);
    padding: 5px 0 5px 10px;
  }
  .info-list>li>a .info-box>h1 {
    font-size: 16px;
  }
  .info-list>li>a .info-box .info-text {
    height: 60px;
    line-height: 20px;
    font-size: 14px;
    margin: 5px 0;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-资讯动态 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap;
}
.contact-text {
  width: 40%;
  float: left;
  background-color: #ef854b;
  padding: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
.contact-map {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
}

@media (max-width: 767px) {
  .contact-text {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 15px;
  }
  .contact-map {
    width: 100%;
    height: 300px;
  }
}
/* END-联系我们 */