@charset "UTF-8";
.view-title {
  padding: 20px 0 10px;
  text-align: center;
  min-width: 1400px;
}
.view-title .title {
  color: #333;
  font-size: 30px;
}
.view-title .subtitle {
  margin-top: 10px;
  font-size: 18px;
  min-width: 1400px;
  color: #666666;
}

/*banner*/
.banner {
  position: relative;
  height: 420px;
  background: #ccc;
}
.banner .banner-box-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  transition: 2s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.banner .banner-box-list .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.banner .banner-box-list .banner-txt {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  width: 1400px;
}
.banner .banner-box-list .banner-txt .txt-title {
  font-size: 48px;
  color: #fff;
}
.banner .banner-box-list .banner-txt .txt-subtitle {
  padding-top: 10px;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}
.banner .banner-box-list .banner-txt .txt-btn {
  margin-top: 20px;
  display: inline-block;
  width: 150px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #00923f;
  border-radius: 50px;
  font-size: 20px;
  color: #fff;
}
.banner .banner-box-list-this {
  opacity: 1;
}
.banner .banner-bottom {
  position: absolute;
  bottom: 10px;
  display: inline-block;
  transform: translateX(50%);
  right: 50%;
  z-index: 20;
  /* 圆圈圈激活后*/
}
.banner .banner-bottom .dian {
  position: relative;
  width: 16px;
  height: 8px;
  border-radius: 7px;
  /*background-color: #0000FF;*/
  box-shadow: 0px 0px 1px 1px #ccc;
  /*opacity: 0.2;*/
  margin: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer;
  /* span是行内元素 */
}
.banner .banner-bottom .active {
  /*数值分别是：水平偏移，上下偏移，模糊，大小，颜色 */
  width: 40px;
  box-shadow: 0 0 1px 1px #00923f;
  /*background-color: #a0cfff !important;*/
  /*opacity: 0.6;*/
}
.banner .banner-bottom .line {
  position: relative;
  z-index: 2;
  background: #00923f;
  height: 8px;
  /*transition: 0.7s infinite;*/
  transition-property: width, height, background, opacity;
  transition-duration: 0.5s;
}

/*关于我们*/
.about-index {
  background: url("../images/index-about-bg.jpg") no-repeat top center;
  background-size: cover;
}
.about-index .view-title {
  padding-top: 50px;
}
.about-index .view-title .title {
  color: #00923f;
}
.about-index .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1200px;
}
.about-index .box .info {
  font-size: 14px;
  line-height: 36px;
}
.about-index .box .info p {
  text-indent: 2em;
  letter-spacing: 0.5px;
}
.about-index .box .icon-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 200px;
}
.about-index .box .icon-list .item {
  margin: 0 20px 10px;
  background: #00923f;
  width: 200px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.about-index .box .icon-list .item .img {
  width: 35px;
  height: 35px;
}
.about-index .box .icon-list .item .title {
  color: #fff;
  font-size: 16px;
}

/*厂区展示*/
.flink-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 1400px;
  padding: 20px 0;
}
.flink-index .flink-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1400px;
  flex-wrap: wrap;
}
.flink-index .flink-box .item {
  margin-top: 10px;
  display: block;
  width: 270px;
  height: 150px;
  border: 0.5px solid #ccc;
  border-radius: 3px;
  overflow: hidden;
}
.flink-index .flink-box .item .img {
  width: 100%;
}
.flink-index .flink-box .item:hover .img {
  transition: all 0.5s ease-out;
  transform: scale(1.03);
}

/*新闻*/
.news-index {
  padding: 20px 0;
}
.news-index .news-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 1400px;
}
.news-index .news-box .item {
  display: block;
  margin: 10px;
  width: 360px;
  border: 0.5px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
}
.news-index .news-box .item .img-box {
  width: 100%;
  height: 216px;
  overflow: hidden;
}
.news-index .news-box .item .title {
  margin: 10px 15px;
  font-size: 18px;
  line-height: 30px;
  max-height: 60px;
  overflow: hidden;
}
.news-index .news-box .item .subtitle {
  margin: 10px 15px;
  font-size: 14px;
  line-height: 25px;
  max-height: 100px;
  overflow: hidden;
  color: #666666;
}
.news-index .news-box .item .more {
  margin: 10px 15px;
  border-top: 0.5px solid #ccc;
  height: 80px;
  display: flex;
  align-items: center;
}
.news-index .news-box .item .more .more-name {
  font-size: 14px;
  width: 100px;
  height: 30px;
  line-height: 30px;
  color: #333;
  border: 0.5px solid #ccc;
  border-radius: 15px;
  text-align: center;
}
.news-index .news-box .item .more .more-name:hover {
  border: 0.5px solid #00923f;
  background: #00923f;
  color: #fff;
}

/*留言咨询*/
.guest-index {
  margin-top: 30px;
  margin-bottom: -18px;
  min-width: 1400px;
  background: #efefef;
}
.guest-index .guest-box {
  position: relative;
  width: 1400px;
  padding: 30px 0;
}
.guest-index .guest-box .title {
  color: #000;
  font-size: 36px;
}
.guest-index .guest-box .subtitle {
  color: #6c6c6c;
  font-size: 14px;
  margin: 10px 0;
}
.guest-index .guest-box .tel {
  font-size: 36px;
  color: #00923f;
}
.guest-index .guest-box .guest-form {
  display: flex;
  flex-direction: row;
  padding: 5px 0;
}
.guest-index .guest-box .guest-form .input {
  margin-right: 10px;
  width: 240px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0 5px;
  font-size: 16px;
}
.guest-index .guest-box .guest-form .btn {
  width: 150px;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  text-align: center;
  background: #00923f;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.guest-index .guest-box .guest-form .btn:hover {
  background: rgba(0, 146, 63, 0.8);
}
.guest-index .guest-box .img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 466px;
  height: 310px;
  overflow: hidden;
}
.guest-index .guest-box .img-box .img {
  width: 100%;
}

@media (min-width: 1600px) {
  .banner {
    height: 520px;
  }
}

/*# sourceMappingURL=style-index.css.map */
