/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

/* main */
/* 关于我们 */
.about {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.about-title {
  display: block;
  overflow: hidden;
  text-align: center;
}
.about-title>h2 {
  line-height: 60px;
  font-size: 60px;
  color: #000;
  opacity: 0.2;
  text-transform: uppercase;
}
.about-title>h1 {
  display: flex;
  justify-content: center;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}
.about-title>h1>span {
  float: left;
  padding: 0 45px;
  font-size: 30px;
  color: #0274c9;
  line-height: 40px;
  position: relative;
}
.about-title>h1>span::before {
  content: "";
  width: 64px;
  float: left;
  height: 11px;
  background: url(../images/title-left.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.about-title>h1>span::after {
  content: "";
  width: 64px;
  float: left;
  height: 11px;
  background: url(../images/title-right.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.about-left {
  width: calc(50% - 13px);
  float: left;
  position: relative;
  padding-right: 20px;
}
.about-left::before {
  content: "";
  width: 100%;
  float: left;
  height: calc(100% - 40px);
  background-color: #009b52;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-left .about-img {
  width: calc(100% + 233px);
  float: left;
  height: 100%;
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 2;
}
.about-right {
  width: 50%;
  float: left;
  padding-left: 40px;
}
.about-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 50px;
  font-size: 20px;
  color: #333;
}
.about-right>.about-text {
  display: block;
  overflow: hidden;
  height: 300px;
  line-height: 30px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
.about-right>.about-more {
  display: block;
  overflow: hidden;
  margin: 10px 0;
}
.about-right>.about-more>a {
  width: 144px;
  float: left;
  height: 36px;
  line-height: 34px;
  border-radius: 18px;
  text-align: center;
  border: 1px dotted #0274c9;
  font-size: 14px;
  color: #333;
}
.about-right>.about-more>a:hover {
  background-color: #0274c9;
  color: #fff;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: 1220px;
}
.about-list>li {
  width: 285px;
  float: left;
  margin: 30px 20px 0 0;
}
.about-list>li>a {
  height: 100%;
  display: block;
  overflow: hidden;
  border: 2px solid #0068b5;
  padding: 56px 60px 36px 60px;
}
.about-list>li>a .about-icon {
  width: 100%;
  height: 46px;
  overflow: hidden;
  position: relative;
}
.about-list>li>a .about-icon>img {
  right: initial;
}
.about-list>li>a .about-icon>img:first-child {
  opacity: 1;
}
.about-list>li>a .about-icon>img:last-child {
  opacity: 0;
}
.about-list>li>a h2 {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 22px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
.about-list>li>a .about-txt {
  display: block;
  overflow: hidden;
  min-height: 72px;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}
.about-list>li>a:hover {
  background-color: #0068b5;
}
.about-list>li>a:hover .about-icon>img:first-child {
  opacity: 0;
}
.about-list>li>a:hover .about-icon>img:last-child {
  opacity: 1;
}
.about-list>li>a:hover h2,
.about-list>li>a:hover .about-txt {
  color: #fff;
}


@media (max-width: 1220px) {
  .about-list {
    width: 102%;
    margin-left: -1%;
  }
  .about-list>li {
    width: 23%;
    margin: 30px 1% 0 1%;
  }
  .about-list>li>a {
    padding: 40px 40px 30px 40px;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-content {
    margin-top: 20px;
  }
  .about-right {
    padding-left: 20px;
  }
  .about-list>li>a {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-title>h2 {
    line-height: 30px;
    font-size: 30px;
  }
  .about-title>h1 {
    margin-top: -15px;
  }
  .about-title>h1>span {
    padding: 0 10px;
    font-size: 20px;
    line-height: 30px;
  }
  .about-title>h1>span::before {
    width: 30px;
  }
  .about-title>h1>span::after {
    width: 30px;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-left {
    width: 100%;
    padding-right: 0;
  }
  .about-left::before {
    height: initial;
    background-color: initial;
    position: relative;
    padding-top: 50%;
  }
  .about-left .about-img {
    width: 100%;
    right: 0;
  }
  .about-right {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .about-right>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .about-right>.about-text {
    height: auto;
    line-height: 24px;
    -webkit-line-clamp: initial;
  }
  .about-right>.about-more>a {
    width: 112px;
    height: 32px;
    line-height: 30px;
    border-radius: 16px;
  }

  .about-list>li {
    width: 48%;
    margin: 10px 1% 0 1%;
  }
  .about-list>li>a {
    padding: 10px;
  }
  .about-list>li>a .about-icon {
    height: 40px;
  }
}

/* 热门产品 */
.product {
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 70px 0 35px 0;
}
.product-left {
  width: 285px;
  float: left;
}
.menu-title {
  display: block;
  overflow: hidden;
  background-color: #0067b4;
  padding: 30px 40px;
  color: #fff;
  line-height: 20px;
  font-size: 14px;
}
.menu-title>h1 {
  line-height: 34px;
  font-size: 24px;
}
.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid #fff;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  border-left: 9px solid #f7f8f8;
  background-color: #f7f8f8;
  padding: 0 25px;
}
.menu-list>li>a>span {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #333;
  padding-left: 16px;
  position: relative;
}
.menu-list>li>a>span::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid #000;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  background-color: #0067b4;
  border-left-color: #009b52;
}
.menu-list>li:hover>a>span,
.menu-list>li.menu-active>a>span {
  color: #fff;
}
.menu-list>li:hover>a>span::before,
.menu-list>li.menu-active>a>span::before {
  border-left-color: #fff;
}

.menu-child-list {
  display: none;
  overflow: hidden;
  background-color: #fff;
  padding: 0 25px 0 70px;
}
.menu-child-list>li {
  display: block;
  overflow: hidden;
  line-height: 36px;
}
.menu-child-list>li>a {
  font-size: 14px;
  color: #333;
}
.menu-child-list>li>a:hover {
  color: #026bbc;
}
.menu-child-list>li>a.act {
  color: #026bbc;
}

.menu-contact {
  display: block;
  overflow: hidden;
  background: url(../images/product-menu-img.jpg) no-repeat center center;
  background-size: cover;
  padding: 35px 20px;
}
.menu-contact .menu-hotline {
  display: block;
  overflow: hidden;
  line-height: 24px;
  color: #fff;
  font-size: 14px;
}
.menu-contact .menu-hotline>span {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 24px;
  font-weight: bold;
}
.menu-contact .menu-contact-text {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 18px;
  font-size: 14px;
  color: #fff;
}

.product-right {
  width: 895px;
  float: right;
}
.product-right>h1 {
  float: left;
  font-size: 24px;
  line-height: 26px;
  padding-bottom: 9px;
  border-bottom: 3px solid #0067b4;
  color: #333;
  margin-bottom: 15px;
}
.product-list {
  display: block;
  overflow: hidden;
  width: 915px;
}
.product-list>li {
  width: 285px;
  float: left;
  margin: 0 20px 15px 0;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 9px 9px 0 9px;
}
.product-list>li>a .product-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.product-list>li>a .product-img::before {
  content: "";
  display: block;
  padding-top: 80.18868%;
}
.product-list>li>a>h2 {
  display: block;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: normal;
}
.product-list>li>a:hover {
  border-color: #0067b4;
}
.product-list>li>a:hover .product-img>img {
  transform: scale(1.1);
}
.product-list>li>a:hover>h2 {
  color: #0067b4;
}

@media (max-width: 1220px) {
  .product {
    padding: 50px 0;
  }
  .product-left {
    width: 24%;
  }
  .product-right {
    width: 74%;
  }
  .product-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-list>li {
    width: 31.333333%;
    margin: 0 1% 15px 1%;
  }
}

@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-left {
    width: 29%;
  }
  .menu-title {
    padding: 20px;
  }
  .menu-list>li>a {
    padding: 0 15px;
  }
  .menu-child-list {
    padding: 0 15px 0 40px;
  }
  .menu-contact {
    padding: 20px;
  }
  .product-right {
    width: 69%;
  }
  .product-list>li {
    width: 48%;
    margin: 0 1% 15px 1%;
  }
  .product-list>li:last-child {
    /*display: none;*/
  }
}

@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-left {
    width: 100%;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
  }
  .menu-title-active {
    text-align: left;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .product-right {
    width: 100%;
    margin-top: 15px;
  }
  .product-list>li {
    margin: 0 1% 10px 1%;
  }
  .menu-list {
    display: none;
  }
  .menu-list>li>a>span {
    height: 40px;
    line-height: 40px;
  }
}

/* 4大优势 */
.advantage {
  width: 100%;
  overflow: hidden;
  padding: 75px 0;
}
.advantage-title-img {
  display: block;
  overflow: hidden;
}
.advantage-title-img>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.advantage-list {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.advantage-list>li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 50px;
}
.advantage-list>li .advantage-left {
  width: 41%;
  float: left;
}
.advantage-list>li .advantage-left>img {
  display: block;
  max-width: 100%;
  height: auto;

}
.advantage-list>li .advantage-right {
  width: 55.5%;
  float: left;
}
.advantage-list>li .advantage-right .advantage-box {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.advantage-list>li .advantage-right .advantage-box:last-child {
  margin: 0;
}
.advantage-list>li .advantage-right .advantage-box .advantage-number {
  width: 80px;
  height: 80px;
  background-color: #0067b4;
  font-size: 48px;
  color: #fff;
  font-family: "Source Han Sans CN";
  font-weight: bold;
  border-right: 7px solid #cce1f0;
  border-bottom: 7px solid #cce1f0;
  float: left;
  margin: 10px 30px 0 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.advantage-list>li .advantage-right .advantage-box .advantage-title {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 14px;
  color: #202020;
}
.advantage-list>li .advantage-right .advantage-box .advantage-title>h1 {
  line-height: 32px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.advantage-list>li .advantage-right .advantage-box .advantage-heng {
  display: block;
  overflow: hidden;
  height: 10px;
  margin: 12px 0;
  position: relative;
}
.advantage-list>li .advantage-right .advantage-box .advantage-heng::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #dbdbdb;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.advantage-list>li .advantage-right .advantage-box .advantage-heng::after {
  content: "";
  width: 202px;
  float: left;
  height: 10px;
  background-color: #0067b4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.advantage-list>li .advantage-right .advantage-box .advantage-text {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #666;
}
.advantage-list>li:nth-child(odd) {
  flex-direction: row-reverse;
}
.advantage-list>li:nth-child(odd) .advantage-left>img {
  float: right;
}
.advantage-list>li:last-child {
  margin: 0;
}

@media (max-width: 1220px) {
  .advantage {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .advantage {
    padding: 30px 0;
  }
  .advantage-list>li {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .advantage {
    padding: 20px 0;
  }
  .advantage-list {
    margin-top: 15px;
  }
  .advantage-list>li {
    margin-bottom: 15px;
  }
  .advantage-list>li .advantage-left {
    width: 100%;
  }
  .advantage-list>li .advantage-right {
    width: 100%;
    margin-top: 15px;
  }
  .advantage-list>li .advantage-right .advantage-box {
    margin-bottom: 15px;
  }
  .advantage-list>li .advantage-right .advantage-box .advantage-number {
    width: 50px;
    height: 50px;
    font-size: 30px;
    border-right: 4px solid #cce1f0;
    border-bottom: 4px solid #cce1f0;
    margin: 0 10px 0 0;
  }
  .advantage-list>li .advantage-right .advantage-box .advantage-title {
    line-height: 20px;
    font-size: 12px;
  }
  .advantage-list>li .advantage-right .advantage-box .advantage-title>h1 {
    line-height: 30px;
    font-size: 16px;
  }
  .advantage-list>li .advantage-right .advantage-box .advantage-heng {
    height: 5px;
    margin: 5px 0;
  }
}

/* 应用领域 */
.application {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.application-list {
  display: block;
  overflow: hidden;
  width: 1220px;
  margin-top: 20px;
}
.application-list>li {
  width: 285px;
  float: left;
  margin: 20px 20px 0 0;
}
.application-list>li>a {
  display: block;
  overflow: hidden;
  position: relative;
}
.application-list>li>a::before {
  content: "";
  display: block;
  padding-top: 86.66667%;
}
.application-list>li>a .application-hover {
  width: 100%;
  height: 46px;
  background-color: rgba(245, 245, 245, 1);
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.application-list>li>a .application-hover::before {
  content: "";
  width: 0;
  height: 0;
  float: left;
  border: 2px solid transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.application-list>li>a .application-hover .application-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 0;
}
.application-list>li>a .application-hover>h1 {
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  color: #333;
  font-weight: normal;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.application-list>li:nth-child(1) {
  width: 464px;
}
.application-list>li:nth-child(2),
.application-list>li:nth-child(3) {
  width: 348px;
}
.application-list>li:nth-child(1)>a::before,
.application-list>li:nth-child(2)>a::before,
.application-list>li:nth-child(3)>a::before {
  padding-top: 300px;
}
.application-list>li:nth-child(1)>a:hover .application-hover::before {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
}
.application-list>li:nth-child(2)>a:hover .application-hover::before,
.application-list>li:nth-child(3)>a:hover .application-hover::before {
  width: calc(100% - 60px);
  height: calc(100% - 60px);
}
.application-list>li>a:hover .application-hover {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.application-list>li>a:hover .application-hover::before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #fff;
}
.application-list>li>a:hover .application-hover .application-icon {
  height: 26px;
  margin-bottom: 5px;
}
.application-list>li>a:hover .application-hover>h1 {
  color: #fff;
}

@media (max-width: 1220px) {
  .application-list {
    width: 102%;
    margin-left: -1%;
  }
  .application-list>li {
    width: 23%;
    margin: 20px 1% 0 1%;
  }
  .application-list>li:nth-child(1) {
    width: 37%;
  }
  .application-list>li:nth-child(2),
  .application-list>li:nth-child(3) {
    width: 28.5%;
  }
}

@media (max-width: 991px) {
  .application {
    padding: 30px 0;
  }
  .application-list>li:nth-child(1)>a::before,
  .application-list>li:nth-child(2)>a::before,
  .application-list>li:nth-child(3)>a::before {
    padding-top: 200px;
  }
}

@media (max-width: 767px) {
  .application {
    padding: 20px 0;
  }
  .application-list {
    margin-top: 5px;
  }
  .application-list>li {
    width: 48%;
    margin: 10px 1% 0 1%;
  }
  .application-list>li:nth-child(1) {
    width: 100%;
  }
  .application-list>li:nth-child(2),
  .application-list>li:nth-child(3) {
    width: 48%;
  }
  .application-list>li:nth-child(1)>a::before {
    padding-top: 55%;
  }
  .application-list>li:nth-child(2)>a::before,
  .application-list>li:nth-child(3)>a::before {
    padding-top: 86.66667%;
  }
  .application-list>li>a .application-hover>h1 {
    line-height: 40px;
    padding: 0 10px;
  }
  .application-list>li:nth-child(1)>a:hover .application-hover::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
  .application-list>li:nth-child(2)>a:hover .application-hover::before,
  .application-list>li:nth-child(3)>a:hover .application-hover::before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

/* 化工资讯 */
.info {
  width: 100%;
  overflow: hidden;
  padding: 60px 0 40px 0;
  background-color: #f5f5f5;
}
.info-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.info-left {
  width: 44.25%;
  float: left;
}
.info-left>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
}
.info-left>a .info-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.info-left>a .info-img::before {
  content: "";
  display: block;
  padding-top: 59.58646617%;
}
.info-left>a .info-box {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 15px 20px 30px 30px;
}
.info-left>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-left>a .info-box .info-text {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  margin: 10px 0;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.info-left>a .info-box .info-time {
  display: block;
  overflow: hidden;
  line-height: 26px;
  background: url(../images/info-icon.png) no-repeat left center;
  padding-left: 20px;
  font-size: 14px;
  color: #0274c9;
}
.info-left>a:hover .info-img>img {
  transform: scale(1.1);
}
.info-left>a:hover .info-box>h1 {
  color: #0274c9;
}

.info-list {
  width: 52.25%;
  float: right;
}
.info-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.info-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  padding: 10px;
  border-right: 4px solid #fff;
}
.info-list>li>a .info-number {
  width: 130px;
  float: left;
  height: 115px;
  background-color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: 20px;
  font-size: 16px;
  color: #333;
}
.info-list>li>a .info-number>span {
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 48px;
  font-size: 56px;
}
.info-list>li>a .info-box {
  width: calc(100% - 130px);
  float: left;
  padding: 10px 0 0 20px;
}
.info-list>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list>li>a .info-box .info-text {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}
.info-list>li>a:hover {
  border-right-color: #009b52;
}
.info-list>li>a:hover .info-number {
  background-color: #0a6db7;
  color: #fff;
}
.info-list>li>a:hover .info-box>h1 {
  color: #0a6db7;
}

@media (max-width: 991px) {
  .info {
    padding: 30px 0;
  }
  .info .about-title>h2 {
    line-height: 50px;
    font-size: 50px;
  }
  .info-left>a .info-box {
    padding: 15px;
  }

  .info-list>li {
    margin-bottom: 20px;
  }
  .info-list>li>a .info-number {
    width: 115px;
  }
  .info-list>li>a .info-box {
    width: calc(100% - 115px);
  }
}

@media (max-width: 767px) {
  .info {
    padding: 20px 0;
  }
  .info .about-title>h2 {
    line-height: 30px;
    font-size: 28px;
  }
  .info-content {
    margin-top: 15px;
  }
  .info-left {
    width: 100%;
  }
  .info-left>a .info-img {
    width: 30%;
    float: left;
  }
  .info-left>a .info-box {
    width: 70%;
    float: left;
    padding: 10px;
  }
  .info-left>a .info-box .info-text {
    height: 40px;
    line-height: 20px;
    margin: 5px 0;
    font-size: 12px;
  }
  .info-left>a .info-box .info-time {
    line-height: 20px;
    font-size: 12px;
  }

  .info-list {
    width: 100%;
  }
  .info-list>li {
    margin: 10px 0 0 0;
  }
  .info-list>li>a {
    padding: 5px;
    border-right: 2px solid #fff;
  }
  .info-list>li>a .info-number {
    width: 80px;
    height: 100px;
    font-size: 14px;
  }
  .info-list>li>a .info-number>span {
    line-height: 30px;
    font-size: 30px;
  }
  .info-list>li>a .info-box {
    width: calc(100% - 80px);
    padding: 0 0 0 10px;
  }
  .info-list>li>a .info-box .info-text {
    height: 60px;
    line-height: 20px;
    font-size: 12px;
  }
}
/* END-main */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.main-left {
  width: 285px;
  float: left;
}
.main-right {
  width: 895px;
  float: right;
}
.place-title {
  width: 100%;
  float: left;
  height: 38px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.place-title>h1 {
  float: left;
  height: 38px;
  line-height: 26px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  border-bottom: 3px solid #0067b4;
}
.place-title>.place-right {
  float: right;
  line-height: 34px;
  font-size: 14px;
  color: #666;
}
.place-title>.place-right>span {
  color: #0274c9;
}
.place-content {
  width: 100%;
  float: left;
  padding-top: 15px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #333;
}
.company  img{ max-width:100% !important; height:auto !important;}
@media (max-width: 1220px) {
  .main-left {
    width: 24%;
  }
  .main-right {
    width: 74%;
  }
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .main-left {
    width: 29%;
  }
  .main-right {
    width: 69%;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .main-right {
    width: 100%;
  }
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品展示 */
.product-details {
  display: block;
  overflow: hidden;
}
.product-details-tt {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 15px;
}
.product-details-img {
  display: block;
  overflow: hidden;
  padding: 30px 0;
}
.product-details-img>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.product-details-title {
  display: block;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  background-color: #f6f6f6;
}
.product-details-title>span {
  float: left;
  min-width: 270px;
  background-color: #fff;
  padding: 0 15px;
  line-height: 34px;
  font-size: 14px;
  color: #333;
  text-align: center;
}
.product-details-content {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 26px;
  color: #333;
  padding-top: 20px;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .product-details-img {
    padding: 0 0 15px 0;
  }
  .product-details-title>span {
    min-width: 100px;
  }
  .product-details-content {
    padding-top: 15px;
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-产品展示 */

/* 化工资讯 */
.news-list {
  display: block;
  overflow: hidden;
}
.news-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.news-list>li>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  background-color: #f5f5f5;
}
.news-list>li>a .info-img {
  width: 30%;
  overflow: hidden;
  position: relative;
}
.news-list>li>a .info-img::before {
  content: "";
  display: block;
  padding-top: 59.58646617%;
}
.news-list>li>a .info-box {
  width: 70%;
  float: left;
  overflow: hidden;
  padding: 20px;
}
.news-list>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .info-box .info-text {
  display: block;
  overflow: hidden;
  height: 90px;
  line-height: 30px;
  margin: 10px 0;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list>li>a .info-box .info-time {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #999;
}
.news-list>li>a:hover {
  background-color: #0067b4;
}
.news-list>li>a:hover .info-img>img {
  transform: scale(1.1);
}
.news-list>li>a:hover .info-box>h1,
.news-list>li>a:hover .info-box .info-text,
.news-list>li>a:hover .info-box .info-time {
  color: #fff;
}

.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.1;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}
.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 28px;
  color: #333;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .news-list>li {
    margin-bottom: 20px;
  }
  .news-list>li>a .info-img {
    width: 40%;
  }
  .news-list>li>a .info-box {
    width: 60%;
    padding: 15px;
  }
  .news-list>li>a .info-box .info-text {
    height: 72px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .news-list>li {
    margin-bottom: 10px;
  }
  .news-list>li>a .info-box {
    padding: 10px;
  }
  .news-list>li>a .info-box .info-text {
    height: 40px;
    line-height: 20px;
    -webkit-line-clamp: 2;
    margin: 5px 0;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-化工资讯 */

/* 联系我们 */
.contact-text {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.contact-map {
  width: 100%;
  overflow: hidden;
  height: 400px;
  border: none;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .contact-text {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-map {
    margin-top: 10px;
    height: 300px;
  }
}
/* END-联系我们 */