﻿/* 公司介绍开始*/
.about_box {
  width: 100%;
  overflow: hidden;
  background-color: #f0f7fd;
  padding-top: 60px;
}

.about_box .w h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 30px;
}

.about_box .w p {
  font-size: 16px;
  line-height: 28px;
  color: #666;
}

.about_box>img {
  width: 100%;
}

/* 公司介绍结束 */
/* 企业文化 */
#culture {
  width: 100%;
  overflow: hidden;
  background-color: #f0f7fd;
  padding: 80px 0;
}

#culture .w>h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

#culture ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

#culture ul li {
  width: 24%;
  overflow: hidden;
  border-radius: 20px;
  padding: 3%;
  height: 500px;
  position: relative;
}

#culture ul li::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  opacity: 0;
  background-color: #10366c69;
  transition: all 0.5s;
}

#culture ul li:hover::after {
  opacity: 1;
}

#culture ul li .wh_icon img {
  width: 80px;
  z-index: 1;
  position: relative;
}

#culture ul li .wh_text {
  color: #fff;
  position: absolute;
  bottom: 10%;
  z-index: 1;
}

#culture ul li .wh_text h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 10px;
}

#culture ul li .wh_text p {
  font-size: 20px;
  margin: 0;
}

/* 发展历程 */
#history {
  background: url(../image/lcbg.png) center bottom no-repeat;
  background-size: cover;
  position: relative;
}

#history .w>h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  padding-top: 90px;
  text-align: center;
}

/* 销售网络 */
.sale .w>h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 80px 0 0;
  text-align: center;
}

/* 企业风采 */
.qyfc {
  width: 100%;
  overflow: hidden;
}

.qyfc .w ul {
  width: 100%;
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.qyfc .w ul li {
  width: 32%;
  margin: 0 0 40px;
  position: relative;
  transition: all 0.5s;
}

.qyfc .w ul li img {
  width: 100%;
}

.qyfc .w ul li::after {
  position: absolute;
  content: "";
  top: -16px;
  left: 16px;
  width: 100%;
  height: 100%;
  border: 8px solid #97caff;
  z-index: -1;
}

.qyfc .w ul li:hover {
  margin-top: -15px;
}

/* 生产设备 */
.equip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.equip ul li {
  width: 32.5%;
  margin: 8px 0;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 6px 8px 0px #10376c;
}

.equip ul li img {
  width: 100%;
  transition: all 0.5s;
}

.equip ul li:hover img {
  transform: scale(1.2);
}

/* 质量控制 */
.quality ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.quality ul li {
  width: 24%;
  overflow: hidden;
  border: 1px solid #dedede;
  margin-bottom: 20px;
}

.quality ul li img {
  width: 100%;
  transition: all 0.5s;
}

.quality ul li:hover img {
  transform: scale(1.1);
}

/* 资质证书 */
.zsbox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.zsbox ul li {
  width: 24%;
  margin: 10px 0;
  overflow: hidden;
  border: 1px solid #cecece;
}

.zsbox ul li img {
  width: 100%;
  transition: all 0.5s;
}

.zsbox ul li:hover img {
  transform: scale(1.2);
}

/* 联系我们开始 */
.contact {
  width: 100%;
  overflow: hidden;
  background-color: #f8f8f8;
}

.contact .w {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto;
}

.cont {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 40px;
  border-right: 1px solid #dfdfdf;
}

.right_input>h3,
.cont>h1 {
  font-size: 30px;
  color: #10376c;
  margin: 0 0 20px;
}

.cont_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.cont .cont_box>div {
  width: 50%;
  overflow: hidden;
  margin: 25px 0;
  display: flex;
  align-items: center;
}

.cont .cont_box>div>span {
  font-size: 24px;
  color: #10376c;
  background: #e6f0fd;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
}

.cont .cont_box>div>div {
  width: calc(100% - 45px);
}

.cont .cont_box>div h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 3px;
}

.cont .cont_box>div p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.right_input {
  width: 55%;
  background: #fff;
  padding: 40px;
}

.right_input ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.right_input li {
  width: 49%;
  margin: 10px 0;
}

.right_input li h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
}

.right_input li h3>span {
  color: #ff0000;
  font-weight: normal;
  font-size: 14px;
  margin-right: 3px;
}

.right_input .bz_box {
  width: 100%;
}

.right_input #bzContact {
  width: 100%;
  height: 150px;
  outline: none;
  padding: 20px;
  border: 1px solid #e5e5e5 !important;
}

.right_input li input {
  width: 100%;
  border-bottom: 1px solid #e5e5e5 !important;
  border: none;
  padding-bottom: 10px;
}

.right_input li>span {
  font-size: 12px;
  color: #ff0000;
  position: relative;
  top: 4px;
}

.right_input #insubmit {
  width: 100%;
  border: none;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 2px;
  background: #10376c;
  border: 2px solid #10376c;
  color: #fff;
  border-radius: 3px;
  transition: all 0.8s;
  font-size: 16px;
  margin: auto;
}

.right_input #insubmit:hover {
  background: #fff;
  color: #10376c;
}

.right_input li input:focus {
  border-bottom: 1px solid #10376c !important;
}

.right_input #bzContact:focus {
  border: 1px solid #10376c !important;
}

.iw_poi_title {
  color: #10376c;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  padding-right: 13px;
  white-space: nowrap;
  border-bottom: 1px dashed #10376c;
  display: block;
  margin-top: -2px;
}

.iw_poi_content {
  font: 12px arial, sans-serif;
  overflow: visible;
  padding-top: 4px;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
  color: #666;
}

#dituContent {
  width: 100%;
  height: 320px;
}

/* 联系我们结束 */

@media(max-width:768px) {

  /*公司介绍 */
  .about_box {
    padding-top: 30px;
  }

  .about_box .w h1,
  #culture .w>h1 {
    font-size: 32px;
  }

  #culture {
    padding: 40px 0 30px;
  }

  #culture ul li {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    padding: 30px;
    height: 260px;
    position: relative;
    margin-bottom: 20px;
  }

  #culture ul li .wh_icon img {
    width: 60px;
    z-index: 1;
    position: relative;
  }

  #culture ul li .wh_text h3 {
    font-size: 28px;
  }

  /* 企业风采 */
  .qyfc .w ul {
    padding-top: 30px;
  }

  .qyfc .w ul li {
    width: 100%;
    margin: 0 0 20px;
  }

  .qyfc .w ul li::after {
    display: none;
  }

  /* 资质证书 */
  .zsbox ul {
    margin-top: 10px;
  }

  .zsbox ul li {
    width: 100%;
  }

  /*厂房设备  */
  .equip ul li {
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
  }

  /* 销售网络 */
  .sale .w>h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 30px 0 0;
    text-align: center;
  }

  #mainMap,
  #mainMap>div,
  canvas {
    height: 400px !important;
  }

  /* 联系我们 */
  .contact .w {
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
  }

  .cont {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
    border-right: 0;
    margin-bottom: 10px;
  }

  .right_input {
    width: 100%;
    background: #fff;
    padding: 20px;
  }

  .right_input ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto 30px;
  }

  .right_input li {
    width: 100%;
    margin: 0 0 20px;
    float: left;
  }

  .right_input #bzContact {
    height: 140px;
  }

  #dituContent {
    width: 100%;
    height: 220px;
    border: none;
  }

}