.product_container .banner {
  background: url(/templates/pc/gontrol/images/img/product.png) no-repeat center;
}
.industry-container .banner {
  background: url(/templates/pc/gontrol/images/img/industry.png) no-repeat center;
}
.download-container .banner {
  background: url(/templates/pc/gontrol/images/img/download_banner.png) no-repeat center;
}
.zhaopin-container .banner {
  background: url(/templates/pc/gontrol/images/img/zhaopin.png) no-repeat center;
}
.zhaopin-container {
  background-color: #eee;
}
.yingxiao-container .banner {
  background: url(/templates/pc/gontrol/images/img/yinxiao.png) no-repeat center;
}
.contact-container .banner {
  background: url(/templates/pc/gontrol/images/img/contact_banner.png) no-repeat center;
}
.product_container .pro_d {
  display: flex;
  border: 1px solid #eee;
  border-radius: 5px;
}
.product_container .pro_d .pro_img {
  width: 410px;
  height: 410px;
  padding: 50px;
}
.product_container .pro_d .pro_img img {
  width: 100%;
  height: 100%;
}
.product_container .pro_d .pro_des {
  flex: 1;
  padding: 50px 50px 50px 0;
}
.product_container .pro_d .pro_des .title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.product_container .pro_d .pro_des .tag {
  width: 190px;
  padding: 10px;
  border: 1px solid #fccd97;
  border-radius: 5px;
  background-color: #fffdf0;
  margin: 20px 0;
  line-height: 24px;
}
.product_container .pro_d .pro_des .tag li {
  display: flex;
  align-items: center;
}
.product_container .pro_d .pro_des .tag span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background-color: #fb9502;
  color: #fff;
  margin-right: 5px;
  font-size: 10px;
  padding: 3px;
  box-sizing: content-box;
}
.product_container .pro_d .pro_des .infor {
  line-height: 27px;
}
.product_content {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 0 70px 0;
}
.product_content .product-left {
  width: 940px;
}
.product_content .product-left .screen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 38px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  padding: 0 20px;
  color: #999;
}
.product_content .product-left .screen .screen_l {
  display: flex;
}
.product_content .product-left .screen .screen_l a {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}
.product_content .products_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 940px;
  height: fit-content;
}
.product_content .products_list .list-item {
  display: block;
  width: 220px;
  padding: 15px 10px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.product_content .products_list .list-item:hover {
  box-shadow: 0 0 5px 3px #eee;
}
.product_content .products_list .list-item:hover .title .line {
  width: 100%;
  transition: all 0.3s linear;
}
.product_content .products_list .list-item:nth-child(4n) {
  margin-right: 0;
}
.product_content .products_list .list-item .title {
  width: 100%;
  margin-bottom: 20px;
}
.product_content .products_list .list-item .title p {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product_content .products_list .list-item .title .line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #e70012;
  margin-top: 15px;
  transition: 0.3s;
}
.product_content .products_list .list-item img {
  display: block;
  width: 180px;
  height: 180px;
  padding: 15px;
  margin: 0 auto;
}
.news_content {
  padding: 0 0 70px 0;
}
.news_list {
  width: 100%;
  height: fit-content;
}
.news_list .news_item {
  position: relative;
  display: flex;
  height: 230px;
  border-bottom: 2px solid #f6f6f6;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f4f4f4;
}
.news_list .news_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 2px;
  text-align: center;
  background-color: transparent;
  transition: all 0.3s linear;
}
.news_list .news_item:hover::after {
  width: 100%;
  height: 2px;
  text-align: center;
  background-color: #e70012;
}
.news_list .news_item .cover {
  width: 230px;
  height: 200px;
}
.news_list .news_item .cover img {
  width: 100%;
  height: 100%;
}
.news_list .news_item:nth-child(2n) .cover {
  position: absolute;
  right: 15px;
}
.news_list .news_item .details {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 890px;
  margin-left: 30px;
  padding-right: 30px;
}
.news_list .news_item .details .des h5 {
  font-size: 18px;
}
.news_list .news_item .details .des p {
  display: -webkit-box;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #666;
  line-height: 25px;
  margin: 30px 0 20px 0;
  text-align: justify;
}
.news_list .news_item .details .des p span {
  margin-right: 20px;
}
.news_list .news_item .details .des .times {
  display: flex;
  align-items: center;
}
.news_list .news_item .details .des .times .layui-icon {
  font-size: 20px;
  margin-right: 10px;
  font-weight: 700;
}
.detail_content {
  padding: 70px 0;
}
