.hr {
  height: 100px;
}

._title {
  text-align: center;
}
._title p {
  font-size: 30px;
  color: #3c3c3c;
}
._title .message {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._title .message .line {
  height: 1px;
  width: 300px;
  background: #999999;
}
._title .message span {
  font-size: 14px;
  color: #999999;
  display: block;
  margin: 0 20px;
}

/*product*/
.product {
  padding-left: 5%;
  padding-right: 5%;
}
.product .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.product .list .item {
  text-align: center;
  margin: 5px;
}
.product .list .item .pic {
  overflow: hidden;
  position: relative;
}
.product .list .item .pic .name_box {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40%;
  margin-top: -40%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  color: white;
  font-size: 22px;
}
.product .list .item:hover .pic .name_box {
  display: flex;
}
.product .list .item:hover .name {
  opacity: 0;
}
.product .list .item .name {
  margin-top: 15px;
  font-size: 14px;
  color: black;
}

/*zbout*/
.about {
  background: #f8f8f8;
  padding: 70px 0;
}
.about .lf {
  position: relative;
  padding-right: 79px;
  padding-left: 110px;
  padding-top: 100px;
}
.about .lf .pr {
  position: absolute;
  top: 0;
  left: 0;
}
.about .lf .title {
  font-weight: bold;
  font-size: 36px;
  color: black;
  margin-bottom: 5px;
}
.about .lf .title2 {
  font-size: 16px;
  color: #828282;
  border-bottom: 1px solid #828282;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.about .lf .sumamry {
  line-height: 2;
  font-size: 14px;
  color: #828282;
}
.about .lf .more {
  text-align: right;
}
.about .rt {
  position: relative;
}
.about .rt .line {
  width: 200px;
  height: 1px;
  background: #999999;
  position: absolute;
  left: 0;
  bottom: 37px;
}
.about .rt .more {
  text-transform: uppercase;
  font-size: 14px;
  color: #999999;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*news*/
.news ._title {
  margin-bottom: 30px;
}
.news .content {
  margin-left: 5%;
  margin-right: 5%;
  background: white;
  padding: 30px;
  margin-top: -134px;
  position: relative;
}
.news .list {
  display: flex;
  justify-content: space-between;
}
.news .list .news_pic {
  width: 22%;
}
.news .list .item {
  width: 22%;
}
.news .list .item .time {
  margin-bottom: 35px;
  display: flex;
  align-items: flex-end;
}
.news .list .item .time .moon {
  font-size: 30px;
  color: #999999;
}
.news .list .item .time .year {
  font-size: 14px;
  color: #999999;
  position: relative;
  bottom: 5px;
  left: 4px;
}
.news .list .item .title {
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
  margin-top: 40px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.news .list .item .summary {
  font-size: 14px;
  color: #828282;
  margin-bottom: 50px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.news .list .item .more {
  font-size: 14px;
  border-left: 1px solid #999999;
  color: #999999;
  padding-left: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.news .more_box {
  margin: 0 auto;
  background: #0049bc;
  color: white;
  width: 370px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

@media (max-width: 1450px) {
  .hr {
    height: 70px;
  }

  .about .lf {
    padding-top: 40px;
  }

  .news .list .item .time {
    margin-bottom: 15px;
  }

  .news .list .item .title {
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 15px;
  }

  .news .list .item .summary {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  ._title .message .line {
    width: 35px;
  }

  ._title p {
    font-size: 22px;
  }

  ._title .message span {
    font-size: 12px;
    margin: 0 10px;
  }

  .product .list {
    margin: 0 -5px;
    grid-template-columns: repeat(2, 1fr);
  }

  .product .list .item {
    margin-bottom: 20px;
  }

  .hr {
    height: 40px;
  }

  .about .lf .pr {
    display: none;
  }

  .about .lf {
    padding: 0;
  }

  .about .lf .title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
  }

  .about .lf .title2 {
    font-size: 14px;
  }

  .about {
    padding: 50px 0;
  }

  .about .rt .line {
    display: none;
  }

  .about .rt .more {
    display: none;
  }

  .news .content {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -24px;
    padding: 10px;
  }

  .product {
    padding-left: 15px;
    padding-right: 15px;
  }

  .news .list .news_pic {
    display: none;
  }

  .news .list {
    display: block;
  }

  .news .list .item {
    width: 100%;
    margin-bottom: 20px;
  }

  .news .more_box {
    margin-top: 15px;
    height: 40px;
    width: 47%;
  }
}

/*# sourceMappingURL=index.css.map */
