._title {
  text-align: center;
  margin-bottom: 45px;
}
._title h5 {
  color: #777777;
  font-size: 24px;
  text-transform: uppercase;
}
._title .line {
  background: #777777;
  height: 1px;
  width: 100px;
  margin: 0 auto;
  margin-top: 5px;
}
._title p {
  color: #ff5400;
  font-size: 24px;
}

.tedian {
  padding: 40px 0;
  border-bottom: 3px solid #ff5400;
}
.tedian .list {
  display: flex;
  justify-content: space-around;
}
.tedian .item {
  width: 180px;
  height: 180px;
  border: 1px solid #c5c5c5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5px;
}
.tedian .item .pic {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.tedian .item .pic .pic1 {
  display: block;
}
.tedian .item .pic .pic2 {
  display: none;
}
.tedian .item .name {
  font-size: 18px;
  color: #c5c5c5;
  margin-top: 10px;
  /*min-height: 50px;*/
  text-align: center;
}
.tedian .item:hover {
  border: 1px solid #ff5400;
}
.tedian .item:hover .pic2 {
  display: block;
}
.tedian .item:hover .pic1 {
  display: none;
}
.tedian .item:hover .name {
  color: #ff5400;
}

.product {
  padding-top: 40px;
  padding-bottom: 100px;
}
.product .list {
  display: flex;
  justify-content: space-around;
}
.product .list .item .pic img {
  transition: .5s;
}
.product .list .item .name {
  margin-top: 20px;
  font-size: 16px;
  color: #777777;
  text-align: center;
}
.product .list .item:hover .pic img {
  transform: scale(1.05);
}
.product .list .item:hover .name {
  color: #ff5400;
}

.youshi {
  padding: 65px 0;
  background: url("../images/youshi_bg.jpg") no-repeat center;
  background-size: cover;
}
.youshi ._title h5,
.youshi ._title p {
  color: white;
}
.youshi ._title .line {
  background: white;
}
.youshi .summary_content {
  color: white;
  font-size: 16px;
  margin: 50px auto;
  text-align: center;
  width: 80%;
}
.youshi .list {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.youshi .list .item {
  width: 120px;
}
.youshi .list .item .pic {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  width: 78px;
  height: 78px;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.youshi .list .item .name {
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 18px;
}
.youshi .list .item .line {
  background: white;
  height: 1px;
  width: 100px;
  margin: 20px auto;
}
.youshi .list .item .summary {
  font-size: 14px;
  color: white;
  text-align: center;
}

.about {
  background: url("../images/about_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 80px 0;
}
.about .content {
  background: white;
  padding: 80px 180px;
}
.about .content .summary {
  font-size: 14px;
  color: #777777;
  line-height: 2;
  margin: 40px 0;
}
.about .content .more {
  background: #ff5400;
  width: 186px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news {
  padding: 45px 0;
  border-bottom: 1px solid #ff5400;
}
.news .content .lf {
  padding-right: 20px;
}
.news .content .lf .more {
  background: #ff5400;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  display: inline-block;
}
.news .content .lf .title {
  font-weight: bold;
  color: black;
  margin: 10px 0;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news .content .lf .sumamry {
  font-size: 12px;
  color: #777777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}
.news .content .rt {
  padding-left: 20px;
}
.news .content .rt .item {
  padding: 10px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.news .content .rt .item .addtime {
  padding-right: 20px;
  border-right: 1px solid #777777;
}
.news .content .rt .item .addtime .moon {
  font-size: 12px;
  color: #777777;
}
.news .content .rt .item .addtime .year {
  font-weight: bold;
  font-size: 14px;
  color: #777777;
}
.news .content .rt .item .message {
  padding-left: 15px;
}
.news .content .rt .item .message .title {
  font-size: 14px;
  color: black;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news .content .rt .item .message .summary {
  font-size: 12px;
  color: #777777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.lng_en .tedian .item .name {
  min-height: 50px;
}
.lng_en ._title p {
  display: none;
}
.lng_en .youshi .list .item .name {
  min-height: 50px;
}

@media (max-width: 768px) {
  .tedian .list {
    flex-wrap: wrap;
  }

  .tedian .item {
    width: 29%;
    float: left;
    height: 112px;
    margin: 2%;
    margin-bottom: 3px;
  }

  .tedian .item .name {
    font-size: 14px;
  }

  .product .list {
    display: block;
  }

  .product .list .item {
    width: 48%;
    float: left;
    margin-bottom: 25px;
  }
  .product .list .item:nth-child(2n) {
    float: right;
  }

  .product .list .item .name {
    font-size: 14px;
  }

  ._title p {
    font-size: 18px;
  }

  ._title h5 {
    font-size: 20px;
  }

  ._title {
    margin-bottom: 35px;
  }

  .product {
    padding-bottom: 15px;
  }

  .youshi .summary_content {
    width: 100%;
    font-size: 14px;
    margin: 25px auto;
  }

  .youshi .list {
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .youshi .list .item {
    width: 30%;
    margin-bottom: 20px;
    height: 227px;
  }

  .youshi .list .item .name {
    font-size: 16px;
  }

  .youshi .list .item .line {
    margin: 13px auto;
  }

  .youshi {
    padding: 55px 0;
  }

  .about .content {
    padding: 0;
  }
  .about .content ._title {
    margin-bottom: 17px;
  }

  .news .content .lf {
    padding-right: 0;
  }

  .about .content .summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    margin: 20px 0;
  }

  .about .content .more {
    margin: 0 auto;
    width: 94px;
    height: 36px;
  }
  .about .content .more img {
    width: 50px;
  }

  .news .content .rt {
    display: none;
  }

  .news .content .lf .more {
    width: 130px;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
  }

  .lng_en .tedian .item .name {
    min-height: 60px;
  }

  .lng_en .youshi .list .item {
    height: auto;
  }
  .lng_en .youshi .list .item .summary {
    min-height: 100px;
  }
  .lng_en .tedian .item {
    height: 161px;
  }
}

/*# sourceMappingURL=index.css.map */
