/* 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 */
/* 搜索 */
.search {
  width: 100%;
  overflow: hidden;
}
.search>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search-text {
  float: left;
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 10px 10px 0;
  line-height: 24px;
  font-family: "Source Han Sans CN";
  font-size: 15px;
}
.search-text>span {
  float: left;
  color: #2f2f2f;
  font-weight: bold;
}
.search-text>a {
  float: left;
  margin: 0 10px;
  color: #858585;
}
.search-text>a:hover {
  text-decoration: underline;
  color: #0045a3;
}

.search-form {
  width: 26%;
  float: right;
  border-bottom: 1px solid #818181;
}
.search-form>input {
  width: calc(100% - 20px);
  float: left;
  height: 75px;
  line-height: 75px;
  font-size: 14px;
  color: #222;
  font-family: "Source Han Sans CN";
  padding-right: 15px;
}
.search-form>input::-webkit-input-placeholder {
  color: #aeaeae;
}
.search-form>input:-moz-placeholder {
  color: #aeaeae;
}
.search-form>button {
  width: 20px;
  float: left;
  height: 75px;
  background: url(../images/search-btn.png) no-repeat center center;
}

@media (max-width: 767px) {
  .search>.container {
    flex-direction: column-reverse;
  }
  .search-text {
    width: 100%;
    flex: none;
    font-size: 13px;
    padding: 10px 0;
  }
  .search-text>a {
    margin: 0 3px;
  }
  .search-form {
    width: 100%;
  }
  .search-form>input {
    height: 40px;
  }
  .search-form>button {
    height: 40px;
  }
}

/* 产品中心 */
.product {
  width: 100%;
  overflow: hidden;
  background: url(../images/product-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 50px 0 70px 0;
}
.product-title {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 16px;
  text-align: center;
  font-family: "Source Han Sans CN";
}
.product-title::before {
  content: "";
  width: 100%;
  max-width: 74px;
  float: left;
  height: 1px;
  background-color: #0045a3;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.product-title::after {
  content: "";
  width: 100%;
  max-width: 372px;
  float: left;
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.product-title>h1 {
  line-height: 40px;
  font-size: 30px;
  color: #2f2f2f;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.product-title>h1>span {
  color: #0045a3;
}
.product-title>div {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 36px;
  color: #2f2f2f;
  opacity: 0.2;
  text-transform: uppercase;
  margin-top: -16px;
}
.product-swiper {
  margin-top: 35px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 90px;
}
.product-swiper .swiper-slide>a {
  display: block;
  overflow: hidden;
  background: url(../images/product-li-bj.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: 5px;
  padding-bottom: 30px;
}
.product-swiper .swiper-slide>a .product-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.product-swiper .swiper-slide>a .product-img::before {
  content: "";
  display: block;
  padding-top: 96.66667%;
}
.product-swiper .swiper-slide>a>h1 {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  text-align: center;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Source Han Sans CN";
  font-size: 18px;
  color: #2f2f2f;
}
.product-swiper .swiper-slide>a:hover .product-img>img {
  transform: scale(1.1);
}
.product-swiper .swiper-slide>a:hover>h1 {
  color: #0045a3;
}
.product-prev,
.product-next {
  width: 114px;
  float: left;
  height: 44px;
  border-radius: 22px;
  background-color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  right: calc(50% + 10px);
  bottom: 0;
  cursor: pointer;
}
.product-next {
  right: initial;
  left: calc(50% + 10px);
}
.product-prev>img:first-child,
.product-next>img:first-child {
  opacity: 1;
}
.product-prev>img:last-child,
.product-next>img:last-child {
  opacity: 0;
}
.product-prev:hover,
.product-next:hover {
  background-color: #0045a3;
}
.product-prev:hover>img:first-child,
.product-next:hover>img:first-child {
  opacity: 0;
}
.product-prev:hover>img:last-child,
.product-next:hover>img:last-child {
  opacity: 1;
}

@media (max-width: 1300px) {
  .product {
    padding: 50px 0;
  }
  .product-swiper {
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-title {
    padding-bottom: 6px;
  }
  .product-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-title>div {
    line-height: 20px;
    font-size: 20px;
    margin-top: -10px;
  }
  .product-swiper {
    margin-top: 15px;
    padding-bottom: 40px;
  }
  .product-swiper .swiper-slide>a {
    padding-bottom: 0;
  }
  .product-swiper .swiper-slide>a>h1 {
    line-height: 40px;
    font-size: 16px;
  }
  .product-prev,
  .product-next {
    width: 90px;
    height: 30px;
    border-radius: 15px;
  }
}

/* 立即试用 */
.public-search {
  width: 100%;
  overflow: hidden;
  background: url(../images/search-bj1.jpg) no-repeat center center;
  background-size: cover;
  padding: 35px 0;
}
.public-search-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-end;
}
.public-search-form>label {
  width: 13%;
  float: left;
}
.public-search-form>label .public-search-title {
  float: left;
  line-height: 28px;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
}
.public-search-form>label .public-search-title>img {
  float: left;
  margin-left: 15px;
}
.public-search-form>label>select {
  width: 100%;
  float: left;
  height: 40px;
  margin-top: 6px;
  border-radius: 5px;
  background-color: #fff;
  background-repeat: no-repeat;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/down-arrow.png);
  background-position: calc(100% - 15px) center;
  padding: 0 30px 0 15px;
  font-size: 14px;
  color: #929292;
}
.public-search-form>label>input {
  width: 100%;
  float: left;
  height: 40px;
  margin-top: 6px;
  border-radius: 5px;
  background-color: #fff;
  padding: 0 30px 0 15px;
  font-size: 14px;
  color: #929292;
}
.public-search-form>label>input::-webkit-input-placeholder {
  color: #929292;
}
input:-moz-placeholder {
  color: #929292;
}
.public-search-form>button {
  width: 13%;
  float: left;
  height: 40px;
  border-radius: 5px;
  background-color: #0045a3;
  font-family: "Source Han Sans CN";
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

/* 租赁中心 */
.lease {
  width: 100%;
  overflow: hidden;
  background: url(../images/lease-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0;
}
.lease-list {
  display: block;
  overflow: hidden;
  width: 1299px;
  margin-top: 50px;
}
.lease-list>li {
  width: 414px;
  float: left;
  margin: 0 19px 19px 0;
}
.lease-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.lease-list>li>a .lease-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.lease-list>li>a .lease-img::before {
  content: "";
  display: block;
  padding-top: 59.661836%;
}
.lease-list>li>a>h1 {
  width: 100%;
  height: 100%;
  float: left;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 15px;
  line-height: 54px;
  color: #fff;
  font-size: 18px;
  font-family: "Source Han Sans CN";
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lease-list>li>a:hover .lease-img>img {
  transform: scale(1.1);
}
.lease-list>li>a:hover>h1 {
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
}

@media (max-width: 1300px) {
  .lease {
    padding: 50px 0;
  }
  .lease-list {
    width: 102%;
    margin-left: -1%;
    margin-top: 40px;
  }
  .lease-list>li {
    width: 31.333333%;
    margin: 0 1% 19px 1%;
  }
}

@media (max-width: 991px) {
  .lease {
    padding: 30px 0;
  }
  .lease-list {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .lease {
    padding: 15px 0;
  }
  .lease-list {
    margin-top: 10px;
  }
  .lease-list>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }
  .lease-list>li>a>h1 {
    line-height: 40px;
    font-size: 16px;
  }
}

/* 服务优势 */
.choose {
  width: 100%;
  overflow: hidden;
  /*padding: 60px 15px;*/
  padding: 60px 0;
  background: url(../images/choose-bj.jpg) no-repeat center center;
  background-size: cover;
}
.choose-title {
  display: block;
  overflow: hidden;
  background: url(../images/choose-title-bj.png) no-repeat center center;
  text-align: center;
  padding: 32px 0 0 0;
  font-family: "Source Han Sans CN";
}
.choose-title>div {
  font-size: 48px;
  color: #0045a3;
  font-weight: bold;
  line-height: 62px;
}
.choose-title>h1 {
  line-height: 44px;
  font-size: 30px;
  color: #2f2f2f;
}
.choose-content {
  display: block;
  overflow: hidden;
  /* margin-top: 35px; */
}
.choose-content>img {
  display: block;
  /*max-width: 100%;*/
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1300px) {
  .choose {
    padding: 50px 15px;
  }
}

@media (max-width: 991px) {
  .choose {
    padding: 30px 15px;
  }
}

@media (max-width: 767px) {
  .choose {
    /*padding: 15px;*/
	padding: 15px 0;
  }
  .choose-title {
    padding: 0;
    background-size: contain;
  }
  .choose-title>div {
    font-size: 24px;
    line-height: 30px;
  }
  .choose-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
}

/* 优秀资质 */
.certificate {
  width: 100%;
  overflow: hidden;
  background: url(../images/certificate-bj.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.certificate-left {
  width: 42.5%;
  float: left;
  padding: 90px 60px 90px 15px;
  background-color: rgba(255, 255, 255, 0.66);
}
.certificate-swiper {
  width: 100%;
  max-width: 378px;
  float: right;
}
.certificate-swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.certificate-swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 144.708995%;
}

.certificate-right {
  width: 57.5%;
  float: right;
  padding: 80px 15px 95px 65px;
}
.certificate-title {
  display: block;
  overflow: hidden;
  font-family: "Source Han Sans CN";
  color: #fff;
}
.certificate-title>div {
  line-height: 60px;
  font-family: "Source Han Sans CN Light";
  font-size: 48px;
}
.certificate-title>h1 {
  line-height: 44px;
  font-size: 30px;
}
.certificate-thumbs-swiper {
  width: 100%;
  max-width: 720px;
  float: left;
  margin-top: 40px;
}
.certificate-thumbs-swiper .swiper-slide {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.certificate-thumbs-swiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 144.708995%;
}
.certificate-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 0.8;
}
.certificate-thumbs-button {
  width: 100%;
  float: left;
  margin-top: 40px
}
.certificate-thumbs-button>div {
  width: 42px;
  float: left;
  height: 42px;
  margin-right: 30px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.certificate-thumbs-button>div:hover {
  opacity: 0.8;
}

@media (max-width: 1300px) {
  .certificate-left {
    padding: 50px 30px 50px 15px;
  }
  .certificate-right {
    padding: 50px 15px 50px 30px;
  }
}

@media (max-width: 991px) {
  .certificate-left {
    padding: 30px 20px 30px 15px;
  }
  .certificate-right {
    padding: 30px 15px 30px 20px;
  }
  .certificate-thumbs-swiper {
    margin-top: 30px;
  }
  .certificate-thumbs-button {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .certificate-right {
    width: 100%;
    padding: 15px;
  }
  .certificate-title {
    text-align: center;
  }
  .certificate-title>div {
    line-height: 30px;
    font-size: 30px;
  }
  .certificate-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .certificate-thumbs-swiper {
    margin-top: 10px;
  }
  .certificate-thumbs-button {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .certificate-thumbs-button>div {
    margin: 0 10px;
  }
}

/* 客户案例 */
.case {
  width: 100%;
  overflow: hidden;
  padding: 80px 0 30px 0;
}
.case-swiper {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  padding-bottom: 60px;
}
.case-swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.case-swiper .swiper-slide>a .case-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.case-swiper .swiper-slide>a .case-img::before {
  content: "";
  display: block;
  padding-top: 49.71494%;
}
.case-swiper .swiper-slide>a .case-hover {
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 69, 163, 0.8);
  float: left;
  max-width: 300px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.case-swiper .swiper-slide>a .case-hover h1 {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 30px;
  font-size: 24px;
  color: #fff;
  font-family: "Source Han Sans CN";
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}
.case-swiper .swiper-slide>a .case-hover .case-text {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  margin: 20px 0;
}
.case-swiper .swiper-slide>a .case-hover .case-text>span {
  float: left;
  font-size: 14px;
  opacity: 0.8;
}
.case-swiper .swiper-slide>a .case-hover .case-more {
  width: 122px;
  float: left;
  height: 38px;
  line-height: 36px;
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-family: "Source Han Sans CN";
  font-size: 14px;
  color: #fff;
}
.case-swiper .swiper-slide>a .case-hover .case-more>img {
  float: right;
  margin-left: 15px;
}
.case-swiper .swiper-slide-active>a .case-hover {
  opacity: 1;
}
/* 圆点 */
.case-swiper .swiper-pagination {
  opacity: 1;
  bottom: 0;
  display: flex;
  justify-content: center;
}
.case-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  float: left;
  background: #ccc;
  opacity: 1;
}
.case-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.case-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 11px;
}
.case-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #0045a3;
}

@media (max-width: 1300px) {
  .case {
    padding: 50px 0 30px 0;
  }
  .case-swiper {
    margin-top: 40px;
    padding-bottom: 50px;
  }
  .case-swiper .swiper-slide>a .case-img::before {
    padding-top: 70.71494%;
  }
}

@media (max-width: 991px) {
  .case {
    padding: 30px 0;
  }
  .case-swiper {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .case-swiper .swiper-slide>a .case-img::before {
    padding-top: 80.71494%;
  }
  .case-swiper .swiper-slide>a .case-hover {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .case {
    padding: 15px;
  }
  .case-swiper {
    margin-top: 10px;
    padding-bottom: 15px;
  }
  .case-swiper .swiper-slide>a .case-hover {
    max-width: 180px;
    padding: 10px;
  }
  .case-swiper .swiper-slide>a .case-hover h1 {
    padding: 10px 0;
    font-size: 16px;
    line-height: 22px;
  }
  .case-swiper .swiper-slide>a .case-hover .case-text {
    line-height: 24px;
    font-size: 14px;
    margin: 10px 0;
  }
  .case-swiper .swiper-slide>a .case-hover .case-more {
    width: 100px;
    height: 32px;
    line-height: 30px;
    border-radius: 16px;
  }
  .case-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
  .case-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
}


.case-content {
  width: 100%;
  overflow: hidden;
  padding: 95px 0;
}
.case-content>.container {
  display: block;
  overflow: hidden;
  background: url(../images/case-bj.png) no-repeat center center;
  background-size: contain;
}
.case-content-swiper .swiper-slide>a {
  width: 100%;
  overflow: hidden;
  float: left;
  border-radius: 50%;
  position: relative;
}
.case-content-swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.case-content-swiper .swiper-slide>a>h1 {
  width: 100%;
  height: 100%;
  float: left;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(0, 69, 163, 0.8);
  position: absolute;
  left: 0;
  top: 70%;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding-bottom: 70%;
}
.case-content-swiper .swiper-slide>a:hover>img {
  transform: scale(1.1);
}

@media (max-width: 1300px) {
  .case-content {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .case-content {
    padding: 30px 0;
  }
  .case-content>.container {
    background: none;
  }
}

@media (max-width: 767px) {
  .case-content {
    padding: 15px 0;
  }
  .case-content-swiper .swiper-slide>a>h1 {
    top: 60%;
    padding-bottom: 60%;
  }
}

/* 新闻动态 */
.news {
  width: 100%;
  overflow: hidden;
  padding: 70px 0 95px 0;
  background: url(../images/news-bj.jpg) no-repeat center center;
  background-size: cover;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.news-box {
  width: calc(50% - 15px);
  float: left;
}
.news-box>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.news-box>a::before {
  content: "";
  display: block;
  padding-top: 31.3099042%;
}
.news-list {
  width: 100%;
  float: left;
  display: block;
  overflow: hidden;
  background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  padding: 25px 35px 0 35px;
}
.news-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #d5d7d8;
  line-height: 48px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2f2f2f;
  font-size: 16px;
}
.news-list>li>a {
  color: #2f2f2f;
}
.news-list>li>a>span {
  float: left;
  font-size: 18px;
  color: #7c94b5;
  margin-right: 10px;
}
.news-list>li>a:hover {
  color: #0045a3;
}

@media (max-width: 1300px) {
  .news {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-content {
    margin-top: 30px;
  }
  .news-list {
    padding: 10px 20px 0 20px;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-list {
    padding: 10px 10px 0 10px;
  }
  .news-list>li {
    line-height: 36px;
    font-size: 14px;
  }
}

/* 咨询即可赠送精美礼品 */
.consult {
  width: 100%;
  overflow: hidden;
  background: url(../images/consult-bj.jpg) no-repeat center center;
  background-size: cover;
}
.consult-title {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.consult-title>h1 {
  float: left;
  line-height: 56px;
  font-family: "Source Han Sans CN";
  font-size: 30px;
  color: #fff;
  border-bottom: 2px solid #fff;
}
.consult-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 35px;
}
.consult-form>input {
  width: 30%;
  float: left;
  margin: 0 9px;
  height: 50px;
  line-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  border-radius: 10px;
  padding: 0 20px;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  color: #fff;
}
.consult-form>input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.consult-form>input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.consult-form>button {
  width: 17%;
  float: left;
  height: 50px;
  background-color: #0045a3;
  font-family: "Source Han Sans CN Medium";
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
}
.consult-text {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 35px;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
.consult-text>span {
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 1300px) {
  .consult-title {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .consult-title {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .consult-title {
    margin-top: 15px;
  }
  .consult-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .consult-form {
    margin-top: 10px;
  }
  .consult-form>input {
    width: 100%;
    margin: 0;
    height: 40px;
    line-height: 38px;
    padding: 0 10px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .consult-form>button {
    width: 100%;
    height: 40px;
    font-size: 16px;
  }
  .consult-text {
    margin-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
  .consult-text>span {
    font-size: 16px;
  }
}

/* 净水之星 */
.water {
  width: 100%;
  overflow: hidden;
  margin-top: 75px;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.water-list {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.water-list>li {
  width: 25%;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding: 24px 15px;
}
.water-list>li>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1300px) {
  .water {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .water {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .water {
    margin-top: 15px;
  }
  .water-list>li {
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px;
  }
}
/* END-main */


/* 品牌故事 */
.dqwz-title {
  width: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
  line-height: 28px;
  padding: 15px 0;
  font-size: 14px;
  color: #9e9e9e;
}
.dqwz-title span {
  color: #292929;
}

@media (max-width: 767px) {
  .dqwz-title {
    line-height: 20px;
    padding: 10px 0;
  }
}

/* 锚点导航 */
.about-nav {
  width: 100%;
  overflow: hidden;
  padding: 35px 0;
  position: relative;
  left: 0;
  top: 0;
  z-index: 11;
}
.about-nav ul {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  overflow: hidden;
  padding-left: 1px;
  background-color: #fff;
}
.about-nav ul>li {
  float: left;
  flex: 1;
  margin-left: -1px;
}
.about-nav ul>li>a {
  display: block;
  overflow: hidden;
  height: 66px;
  line-height: 64px;
  text-align: center;
  border: 1px solid #d0d0d0;
  font-size: 17px;
  color: #454545;
}
.about-nav ul>li:first-child>a {
  border-radius: 5px 0 0 5px;
}
.about-nav ul>li:last-child>a {
  border-radius: 0 5px 5px 0;
}
.about-nav ul>li>a:hover,
.about-nav ul>li.about-active>a {
  background-image: linear-gradient(to right, #0046a4, #029de2);
  color: #fff;
}
.nav_fixed {
  position: fixed;
  top: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .about-nav {
    padding: 25px 0;
  }
}

@media (max-width: 767px) {
  .about-nav {
    padding: 15px 0;
  }
  .about-nav ul>li {
    flex: none;
    width: 20%;
  }
  .about-nav ul>li>a {
    height: 42px;
    line-height: 40px;
    font-size: 15px;
  }
}

/* 浩园简介 */
.about {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
}
.about-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 40px;
  position: relative;
  padding-bottom: 15px;
  font-family: "Source Han Sans CN";
  font-size: 30px;
  color: #292929;
}
.about-title::after {
  content: "";
  width: 58px;
  height: 2px;
  float: left;
  background-color: #042fa5;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.about-img {
  width: calc(50% - 15px);
  float: left;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about-img::before {
  content: "";
  display: block;
  padding-top: 54.4%;
}
.about-text {
  width: calc(50% - 15px);
  float: left;
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-title {
    line-height: 30px;
    padding-bottom: 5px;
    font-size: 20px;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-img {
    width: 100%;
  }
  .about-text {
    width: 100%;
    margin-top: 10px;
  }
}

/* 立即试用 */
.about-search {
  width: 100%;
  overflow: hidden;
  margin: 90px 0;
}

@media (max-width: 1300px) {
  .about-search {
    margin: 40px 0;
  }
}

/* 荣誉资质 */
.honor {
  width: 100%;
  overflow: hidden;
  background: url(../images/about-certificate-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0 90px 0;
}
.honor-content {
  display: flex;
  position: relative;
  margin-top: 45px;
}
.honor-swiper {
  width: 100%;
  float: left;
}
.honor-swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border: 1px solid #aeaead;
  border-radius: 10px;
}
.honor-swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 144.708995%;
}
.honor-swiper .swiper-slide>a:hover>img {
  transform: scale(1.1);
}
.honor-prev,
.honor-next {
  width: 42px;
  float: left;
  height: 42px;
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.honor-next {
  left: initial;
  right: -80px;
}
.honor-prev:hover,
.honor-next:hover {
  opacity: 0.8;
}

@media (max-width: 1300px) {
  .honor {
    padding: 50px 0;
  }
  .honor-prev,
  .honor-next {
    left: -10px;
  }
  .honor-next {
    left: initial;
    right: -10px;
  }
}

@media (max-width: 991px) {
  .honor {
    padding: 30px 0;
  }
  .honor-content {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .honor {
    padding: 15px 0;
  }
  .honor-content {
    margin-top: 10px;
  }
  .honor-prev,
  .honor-next {
    width: 24px;
    height: 24px;
  }
}

/* 工厂厂房 */
.workshop {
  width: 100%;
  overflow: hidden;
  background: url(../images/workshop-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0 80px 0;
}
.workshop .about-title {
  color: #fff;
}
.workshop .about-title::after {
  background-color: rgba(255, 255, 255, 0.4);
}
.workshop-list {
  display: block;
  overflow: hidden;
  margin-top: 55px;
  width: calc(100% + 16px);
  margin-left: -8px;
}
.workshop-list>li {
  width: calc(25% - 16px);
  float: left;
  margin: 0 8px 16px 8px;
}
.workshop-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.workshop-list>li>a::before {
  content: "";
  display: block;
  padding-top: 70.792208%;
}
.workshop-list>li>a:hover>img {
  transform: scale(1.1);
}
.workshop-list>li:first-child {
  width: calc(50% - 16px);
}
.workshop-list>li:first-child>a::before {
  padding-top: 71.949287%;
}

@media (max-width: 1300px) {
  .workshop {
    padding: 50px 0;
  }
  .workshop-list {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .workshop {
    padding: 30px 0;
  }
  .workshop-list {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .workshop {
    padding: 15px 0;
  }
  .workshop-list {
    margin-top: 15px;
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .workshop-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .workshop-list>li:first-child {
    width: 100%;
  }
  .workshop-list>li:first-child>a::before {
    padding-top: 50.949287%;
  }
}

/* 制造能力 */
.make {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.make-text {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 17px;
  color: #545454;
  line-height: 30px;
  margin-top: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dcdcdc;
}
.make-list {
  display: block;
  overflow: hidden;
  width: 1314px;
  margin-top: 18px;
}
.make-list>li {
  width: 404px;
  float: left;
  margin: 34px 34px 0 0;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.make-list>li::before {
  content: "";
  display: block;
  padding-top: 66.336634%;
}

@media (max-width: 1300px) {
  .make {
    padding: 70px 0;
  }
  .make-list {
    width: 102%;
    margin-left: -1%;
  }
  .make-list>li {
    width: 31.33333%;
    margin: 34px 1% 0 1%;
  }
}

@media (max-width: 991px) {
  .make {
    padding: 30px 0;
  }
  .make-text {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .make-list>li {
    margin: 20px 1% 0 1%;
  }
}

@media (max-width: 767px) {
  .make {
    padding: 15px 0;
  }
  .make-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .make-list {
    margin: 0;
  }
  .make-list>li {
    margin: 10px 1% 0 1%;
  }
}

/* 技术研发 */
.technology {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
  background: url(../images/technology-bj.jpg) no-repeat center center;
  background-size: cover;
}
.technology .about-title {
  color: #fff;
}
.technology .about-title::after {
  background-color: #fff;
}
.technology-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 55px;
}
.technology-list>li {
  width: calc(50% - 20px);
  float: left;
  margin-bottom: 20px;
}
.technology-list>li>a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
.technology-list>li>a .technology-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.technology-list>li>a .technology-img::before {
  content: "";
  display: block;
  padding-top: 48.70968%;
}
.technology-list>li>a .technology-box {
  display: block;
  overflow: hidden;
  background-color: #fff;
  padding: 30px 20px;
}
.technology-list>li>a .technology-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 18px;
  color: #414141;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.technology-list>li>a .technology-box .technology-text {
  display: block;
  overflow: hidden;
  line-height: 22px;
  margin-top: 10px;
  font-size: 16px;
  color: #818181;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.technology-list>li>a:hover .technology-img>img {
  transform: scale(1.1);
}
.technology-list>li>a:hover .technology-box {
  background-color: #0045a3;
}
.technology-list>li>a:hover .technology-box>h1,
.technology-list>li>a:hover .technology-box .technology-text {
  color: #fff;
}

@media (max-width: 1300px) {
  .technology {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .technology {
    padding: 30px 0;
  }
  .technology-list {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .technology {
    padding: 15px 0;
  }
  .technology-list {
    margin-top: 0;
  }
  .technology-list>li {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .technology-list>li>a {
    display: flex;
    flex-wrap: wrap;
  }
  .technology-list>li>a .technology-img {
    width: 30%;
    float: left;
  }
  .technology-list>li>a .technology-box {
    width: 70%;
    float: left;
    padding: 15px;
  }
}

/* 行业追求/社会责任/文化精神 */
.info-box {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.info-box>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info-box>.container>div {
  width: 32.03125%;
  float: left;
}
.info-box>.container>div>h1 {
  display: block;
  overflow: hidden;
  line-height: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c2c2c2;
  font-family: "Source Han Sans CN";
  font-size: 30px;
  color: #292929;
}
.info-box>.container>div>a {
  width: 100%;
  float: left;
  margin-top: 20px;
}
.info-box>.container>div>a .info-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.info-box>.container>div>a .info-img::before {
  content: "";
  display: block;
  padding-top: 48.292683%;
}
.info-box>.container>div>a .info-text {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 15px;
  color: #575757;
  margin-top: 15px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1300px) {
  .info-box {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .info-box {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .info-box {
    padding: 15px 0;
  }
  .info-box>.container>div {
    width: 100%;
    margin-bottom: 10px;
  }
  .info-box>.container>div:last-child {
    margin: 0;
  }
  .info-box>.container>div>h1 {
    line-height: 30px;
    padding-bottom: 10px;
    font-size: 20px;
  }
  .info-box>.container>div>a {
    margin-top: 10px;
  }
  .info-box>.container>div>a .info-text {
    line-height: 24px;
    font-size: 14px;
    margin-top: 5px;
  }
}

/* 品牌好评 */
.brand {
  width: 100%;
  overflow: hidden;
  background: url(../images/brand-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0;
}
.brand .about-title {
  color: #fff;
}
.brand .about-title::after {
  background-color: #fff;
}
.brand-swiper {
  margin-top: 65px;
}
.brand-swiper .swiper-slide .brand-img {
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  border: 20px solid rgba(255, 255, 255, 0.2);
}
.brand-swiper .swiper-slide .brand-img>div {
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.brand-swiper .swiper-slide .brand-img>div::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.brand-swiper .swiper-slide h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 25px;
  font-weight: normal;
}
.brand-swiper .swiper-slide .brand-text {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
}
.brand-swiper .swiper-slide:hover .brand-img>div>img {
  transform: scale(1.1);
}

@media (max-width: 1300px) {
  .brand {
    padding: 50px 0;
  }
  .brand-swiper {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .brand {
    padding: 30px 0;
  }
  .brand-swiper {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .brand {
    padding: 15px 0;
  }
  .brand-swiper {
    margin-top: 10px;
  }
  .brand-swiper .swiper-slide .brand-img {
    border: 5px solid rgba(255, 255, 255, 0.2);
  }
  .brand-swiper .swiper-slide h1 {
    line-height: 24px;
    font-size: 16px;
    margin-top: 5px;
  }
  .brand-swiper .swiper-slide .brand-text {
    font-size: 14px;
    margin-top: 5px;
  }
}

/* 免费就近预约 */
.reservation {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.reservation-title {
  display: flex;
  justify-content: center;
}
.reservation-title>h1 {
  float: left;
  line-height: 38px;
  font-family: "Source Han Sans CN";
  color: #111;
  font-size: 30px;
}
.reservation-title>h1::after {
  content: "";
  width: 100%;
  display: block;
  overflow: hidden;
  height: 2px;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
  margin-top: 10px;
}
.reservation-form {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}
.reservation-form>input,
.reservation-form>select {
  width: 24.0625%;
  float: left;
  height: 58px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 18px;
  color: #656565;
  background-color: #fff;
}
.reservation-form>select {
  background-repeat: no-repeat;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/down-arrow.png);
  background-position: calc(100% - 15px) center;
}
.reservation-form>input:nth-child(1),
.reservation-form>input:nth-child(2),
.reservation-form>select:nth-child(3) {
  width: 32.421875%;
}
.reservation-button {
  display: flex;
  justify-content: center;
  width: 100%;
  float: left;
  margin-top: 30px;
}
.reservation-button>button {
  width: 254px;
  float: left;
  height: 58px;
  background-color: #042fa5;
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.reservation-list {
  width: 100%;
  float: left;
  margin-top: 55px;
}
.reservation-list>li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reservation-list>li .reservation-left {
  width: 50%;
  float: left;
  padding: 38px 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reservation-list>li .reservation-left>div {
  width: calc(50% - 18px);
  float: left;
  height: 54px;
  border-radius: 27px;
  line-height: 54px;
  text-align: center;
  margin: 18px 0;
  background-color: #fff;
  font-size: 18px;
  color: #363636;
  font-weight: bold;
}
.reservation-list>li .reservation-right {
  width: 50%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.reservation-list>li .reservation-right>div {
  float: left;
  font-family: "Source Han Sans CN";
  font-size: 24px;
  color: #fff;
}
.reservation-list>li .reservation-right>a {
  width: 142px;
  height: 142px;
  float: left;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.2);
  margin: 0 10px;
}
.reservation-list>li .reservation-right>a>div {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.reservation-list>li .reservation-right>a>div .reservation-icon {
  width: 100%;
  overflow: hidden;
  height: 36px;
  position: relative;
}
.reservation-list>li .reservation-right>a>div>h6 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  color: #4d4d4d;
  font-weight: normal;
}
.reservation-list>li:nth-child(1) {
  background-image: url(../images/about-search-bj1.jpg);
}
.reservation-list>li:nth-child(2) {
  background-image: url(../images/about-search-bj2.jpg);
}

@media (max-width: 1300px) {
  .reservation {
    padding: 50px 0;
  }
  .reservation-list {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .reservation {
    padding: 30px 0;
  }
  .reservation-form {
    margin-top: 30px;
  }
  .reservation-button {
    margin-top: 10px;
  }
  .reservation-list {
    margin-top: 30px;
  }
  .reservation-list>li .reservation-left {
    padding: 30px 15px;
  }
  .reservation-list>li .reservation-left>div {
    margin: 10px 0;
  }
  .reservation-list>li .reservation-right>div {
    font-size: 18px;
  }
  .reservation-list>li .reservation-right>a {
    width: 110px;
    height: 110px;
    border-width: 5px;
    margin: 0 5px;
  }
}

@media (max-width: 767px) {
  .reservation {
    padding: 15px 0;
  }
  .reservation-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .reservation-title>h1::after {
    margin-top: 5px;
  }
  .reservation-form {
    margin-top: 10px;
  }
  .reservation-form>input,
  .reservation-form>select {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 15px;
    font-size: 14px;
  }
  .reservation-form>input:nth-child(1),
  .reservation-form>input:nth-child(2),
  .reservation-form>select:nth-child(3) {
    width: 100%;
  }
  .reservation-button {
    margin-top: 0;
  }
  .reservation-button>button {
    width: 100%;
    height: 40px;
    font-size: 16px;
  }
  .reservation-list {
    margin-top: 0;
  }
  .reservation-list>li {
    margin-top: 10px;
  }
  .reservation-list>li .reservation-left {
    width: 100%;
    padding: 10px;
  }
  .reservation-list>li .reservation-left>div {
    width: calc(50% - 5px);
    margin: 5px 0;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
    font-size: 16px;
  }
  .reservation-list>li .reservation-right {
    width: 100%;
    padding: 10px;
  }
  .reservation-list>li .reservation-right>div {
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
}

/* 净水之星 */
.brand-bottom {
  width: 100%;
  overflow: hidden;
}
.brand-bottom-list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: calc(100% + 4px);
  margin-left: -2px;
}
.brand-bottom-list>li {
  width: 14.285%;
  float: left;
  padding: 0 2px;
  margin-top: 4px;
}
.brand-bottom-list>li>a {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 54px;
  text-align: center;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  color: #fff;
}
.brand-bottom-list>li:nth-child(7n+1)>a {
  background-color: #0061ad;
}
.brand-bottom-list>li:nth-child(7n+2)>a {
  background-color: #0061ad;
}
.brand-bottom-list>li:nth-child(7n+3)>a {
  background-color: #006fc6;
}
.brand-bottom-list>li:nth-child(7n+4)>a {
  background-color: #0084ee;
}
.brand-bottom-list>li:nth-child(7n+5)>a {
  background-color: #0899ff;
}
.brand-bottom-list>li:nth-child(7n+6)>a {
  background-color: #00c3df;
}
.brand-bottom-list>li:nth-child(7n+7)>a {
  background-color: #13dbf7;
}
.brand-bottom .water {
  margin: 0;
  background: url(../images/about-bottom-bj.jpg) no-repeat center center;
  background-size: cover;
  border-top: none;
}

@media (max-width: 1300px) {
  .brand-bottom-list>li>a {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .brand-bottom-list>li>a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .brand-bottom-list>li {
    width: 50%;
  }
  .brand-bottom-list>li>a {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
/* END-品牌故事 */

/* 产品中心 */
.product-nav {
  width: 100%;
  float: left;
  display: block;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 40px;
}
.product-nav>li {
  display: block;
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}
.product-nav>li>div {
  width: auto;
  min-width: 730px;
  float: left;
}
.product-nav>li>div>h1 {
  width: 120px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-family: "Source Han Sans CN Medium";
  background-image: linear-gradient(to right, #002fa1, #0299e0);
  float: left;
  border-radius: 5px;
  font-weight: normal;
  margin: 5px 10px 5px 0;
}
.product-nav>li>div>a {
  float: left;
  line-height: 32px;
  font-size: 16px;
  color: #595959;
  font-family: "Source Han Sans CN";
  margin: 5px 10px;
}
.product-nav>li>div>a:hover , .product-nav>li>div>a.active{
  color: #0133a4;
  text-decoration: underline;
}
.product-nav>li>a {
  width: 124px;
  float: left;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-family: "Source Han Sans CN";
  border-radius: 16px;
  font-size: 16px;
  color: #fff;
  background-image: linear-gradient(to right, #002fa1, #0299e0);
}

@media (max-width: 767px) {
  .product-nav {
    padding: 5px 0;
    margin-bottom: 10px;
  }
  .product-nav>li {
    padding: 5px 0;
  }
  .product-nav>li>div {
    width: 100%;
    min-width: initial;
  }
  .product-nav>li>div>h1 {
    width: 100px;
    height: 26px;
    line-height: 26px;
    margin: 2px 4px 2px 0;
    font-size: 14px;
  }
  .product-nav>li>div>a {
    line-height: 26px;
    font-size: 14px;
    margin: 2px;
  }
  .product-nav>li>a {
    width: 110px;
    float: right;
    height: 26px;
    line-height: 26px;
    border-radius: 13px;
    font-size: 14px;
  }
}

/* 办公楼直饮机/校园饮水机/幼儿园饮水机/工厂用净水机/医院用净水机/经典热卖/热门推荐机型/大通量机型/家商两用机型/其他配件/独特定制 */
.produce-boxs {
  width: calc(50% - 13px);
  margin-bottom: 10px;
}
.produce-title {
  display: block;
  overflow: hidden;
  line-height: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bababa;
}
.produce-title>h1 {
  display: flex;
  align-items: center;
  float: left;
  font-size: 20px;
  color: #363636;
  font-family: "Source Han Sans CN Medium";
}
.produce-title>h1>img {
  float: left;
  width: auto;
  height: auto;
  max-height: 30px;
  margin-right: 10px;
}
.produce-title>a {
  float: right;
  height: 30px;
  display: flex;
  align-items: center;
  position: relative;
}
.produce-title>a>img {
  width: 21px;
  float: right;
  height: 21px;
}
.produce-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.produce-list>li {
  width: calc(50% - 50px);
  float: left;
  margin-top: 35px;
}
.produce-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
}
.produce-list>li>a .produce-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.produce-list>li>a .produce-img::before {
  content: "";
  display: block;
  padding-top: 114.1509434%;
}
.produce-list>li>a>h2 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 16px;
  color: #3a3a3a;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.produce-list>li>a .produce-text {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 5px;
  font-size: 14px;
  color: #848484;
}
.produce-list>li>a .produce-text>img {
  float: left;
  margin-right: 5px;
}
.produce-list>li>a:hover .produce-img>img {
  transform: scale(1.1);
}
.produce-list>li>a:hover>h2 {
  color: #0133a4;
}


.produce-boxs-pulic{
	width: 100% !important;
}
.produce-boxs-pulic .produce-list{
	width: 102%;
	margin-left: -1%;
	margin-top: 20px;
	justify-content: flex-start
}
.produce-boxs-pulic .produce-list>li {
  width: 23%;
  margin: 0 1% 30px 1%;
}






.produce-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.produce-more>a {
  width: 112px;
  float: left;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 17px;
  font-size: 16px;
  color: #fff;
  background-image: linear-gradient(to right, #0045a3, #029ee3);
}
.produce-others {
  width: calc(25% - 13px);
  margin-left: 20px;
}
.produce-customized {
  width: calc(25% - 13px);
}
.produce-others .produce-list>li,
.produce-customized .produce-list>li {
  width: calc(100% - 43px);
}

@media (max-width: 991px) {
  .produce-title>h1 {
    font-size: 16px;
  }
  .produce-list>li {
    width: calc(50% - 15px);
    margin-top: 20px;
  }
  .produce-more {
    margin-top: 20px;
  }
  .produce-others .produce-list>li,
  .produce-customized .produce-list>li {
    width: calc(100% - 15px);
  }
	
	.produce-boxs-pulic .produce-list>li {
	  width: 31.33333%;
	  margin: 0 1% 20px 1%;
	}
}

@media (max-width: 767px) {
  .produce-boxs {
    width: 100%;
  }
  .produce-list>li {
    width: calc(50% - 10px);
    margin-top: 15px;
  }
  .produce-more {
    margin-top: 15px;
  }
  .produce-others {
    width: calc(50% - 10px);
    margin-left: 0;
  }
  .produce-customized {
    width: calc(50% - 13px);
  }
  .produce-others .produce-list>li,
  .produce-customized .produce-list>li {
    width: 100%;
  }
	.produce-boxs-pulic .produce-list>li {
	  width: 48%;
	  margin: 0 1% 10px 1%;
	}
}

/* 独特定制 */
.produce-star {
  width: 100%;
  float: left;
}
.produce-star .produce-title {
  border-bottom-width: 2px;
}
.produce-star .produce-list>li {
  width: 24%;
  margin-top: 20px;
}
.produce-star .produce-list>li>a {
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: initial;
}
.produce-star .produce-list>li>a::before {
  content: "";
  display: block;
  padding-top: 120%;
}

/* 金钻王系列推荐 */
.produce-gold .produce-list>li {
  width: 33%;
}
.produce-gold .produce-list>li>a::before {
  padding-top: 80%;
}

/* 开水器推荐 */
.produce-boiling .produce-list {
  justify-content: space-between;
}
.produce-boiling .produce-list>li {
  width: calc(50% - 10px);
}
.produce-boiling .produce-list>li>a::before {
  padding-top: 55%;
}

/* 大容量推荐 */
.produce-capacity .produce-list {
  width: 102%;
  margin-left: -1%;
}
.produce-capacity .produce-list>li {
  width: 48%;
  float: left;
  margin: 20px 1% 0 1%;
}
.produce-capacity .produce-list>li:nth-child(1),
.produce-capacity .produce-list>li:nth-child(2),
.produce-capacity .produce-list>li:nth-child(3) {
  width: 31.333333%;
}
.produce-capacity .produce-list>li>a::before {
  padding-top: 75%;
}

/* 商务直饮水方案 */
.drinking-water {
  width: 100%;
  overflow: hidden;
  background: url(../images/produce-bj1.jpg) no-repeat center center;
  background-size: cover;
  padding: 75px 0;
}
.drinking-water-list {
  display: flex;
  flex-wrap: wrap;
  width: 102%;
  margin-left: -1%;
}
.drinking-water-list>li {
  width: 23%;
  float: left;
  margin: 0 1%;
  background: url(../images/produce-li-bj1.png) no-repeat center center;
  background-size: 100% 100%;
  padding: 30px 0;
}
.drinking-water-list>li>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 36px;
  font-size: 24px;
  color: #363636;
  font-family: "Source Han Sans CN Medium";
  font-weight: normal;
}
.drinking-water-list>li>.drinking-water-text {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 16px;
  color: #363636;
  min-height: 130px;
  padding-left: 60px;
  margin-top: 10px;
}
.drinking-water-list>li>.drinking-water-text>span {
  color: #0032a3;
}
.drinking-water-list>li>a {
  width: 112px;
  display: block;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #0032a3;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  font-family: "Source Han Sans CN Medium";
  margin: 15px auto 0 auto;
}
.drinking-water-list>li>a:hover {
  background-color: #029ee3;
}
.drinking-water-list>li:nth-child(even) {
  background: url(../images/produce-li-bj2.png) no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 1300px) {
  .drinking-water {
    padding: 50px 0;
  }
  .drinking-water-list>li>.drinking-water-text {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .drinking-water {
    padding: 30px 0;
  }
  .drinking-water-list>li {
    padding: 25px 0;
  }
  .drinking-water-list>li>h1 {
    font-size: 18px;
  }
  .drinking-water-list>li>.drinking-water-text {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .drinking-water {
    padding: 15px 0;
  }
  .drinking-water-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .drinking-water-list>li {
    width: calc(50% - 10px);
    padding: 10px 0;
    background-color: #fff !important;
    margin: 5px 0;
  }
  .drinking-water-list>li>h1 {
    font-size: 16px;
    line-height: 30px;
  }
  .drinking-water-list>li>.drinking-water-text {
    line-height: 24px;
    font-size: 14px;
    min-height: initial;
  }
  .drinking-water-list>li>a {
    width: 90px;
    height: 30px;
    line-height: 30px;
    margin: 10px auto 0 auto;
  }
}

/* 新老用户 */
.produce-reservation {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.produce-reservation .reservation-list {
  margin: 0;
}
.produce-reservation .reservation-list>li:first-child {
  margin: 0;
}

@media (max-width: 1300px) {
  .produce-reservation {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .produce-reservation {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .produce-reservation {
    padding: 15px 0;
  }
}

/* 智能净水直饮水时代 */
.produce-hf {
  width: 100%;
  overflow: hidden;
  background: url(../images/produce-hf-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}
.produce-hf img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.produce-hf-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.produce-hf-button>a {
  width: 178px;
  float: left;
  height: 50px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  border-radius: 10px;
}
.produce-hf-button>a:first-child {
  background-color: #042fa5;
}
.produce-hf-button>a:last-child {
  background-color: #00c0ff;
}

@media (max-width: 1300px) {
  .produce-hf {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .produce-hf {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .produce-hf {
    padding: 15px 0;
  }
  .produce-hf-button {
    margin-top: 10px;
  }
  .produce-hf-button>a {
    width: 110px;
    height: 30px;
    margin: 0 5px;
    font-size: 16px;
  }
}

/* 净水之星 */
.produce-bottom {
  width: 100%;
  overflow: hidden;
}
.produce-bottom .water {
  background: url(../images/produce-water-bj.jpg) no-repeat center center;
  background-size: cover;
  margin: 0;
}


/* 产品特点/产品参数 */
.specifics {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.specifics>.container {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
}
.specifics-left {
  width: 50%;
  float: left;
  border-right: 1px solid #ddd;
  padding: 15px;
}
.specifics-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.specifics-img::before {
  content: "";
  display: block;
  padding-top: 61.11112%;
}
.specifics-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}
.specifics-box>div {
  margin: 0 10px;
}
.specifics-button {
  width: 186px;
  float: left;
}
.specifics-button>a {
  width: 100%;
  float: left;
  height: 54px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background-image: linear-gradient(#fff, #f1f1f1);
  font-size: 18px;
  color: #434343;
  margin-top: 16px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.specifics-button>a:first-child {
  margin: 0;
}
.specifics-subimg {
  width: 164px;
  float: left;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.specifics-right {
  width: 50%;
  float: right;
  padding: 50px 90px;
}
.specifics-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 30px;
  color: #002fa6;
}
.specifics-text-box {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.specifics-text-box>h2 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 18px;
  color: #323232;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
}
.specifics-text-box .specifics-txt {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  font-size: 14px;
  color: #434343;
  line-height: 30px;
  min-height: 150px;
}

@media (max-width: 1300px) {
  .specifics-right {
    padding: 50px;
  }
}

@media (max-width: 991px) {
  .specifics {
    padding: 30px 0;
  }
  .specifics-button,
  .specifics-subimg {
    width: 120px;
  }
  .specifics-right {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .specifics {
    padding: 15px 0;
  }
  .specifics-left {
    width: 100%;
  }
  .specifics-button,
  .specifics-subimg {
    width: 40%;
  }
  .specifics-button>a {
    height: 40px;
    font-size: 16px;
    margin-top: 10px;
  }
  .specifics-button>a:first-child {
    margin: 0;
  }
  .specifics-right {
    width: 100%;
    padding: 15px;
  }
  .specifics-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .specifics-text-box {
    margin-top: 10px;
  }
  .specifics-text-box>h2 {
    line-height: 26px;
    font-size: 16px;
    padding-bottom: 5px;
  }
  .specifics-text-box .specifics-txt {
    margin-top: 5px;
    line-height: 24px;
    min-height: initial;
  }
}

/* 产品详情 */
.product-details {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.product-details-title {
  display: flex;
  justify-content: center;
  position: relative;
}
.product-details-title::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #e3e3e3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product-details-title>h1 {
  float: left;
  background-color: #fff;
  padding: 0 15px;
  font-size: 24px;
  color: #222;
  font-weight: normal;
  line-height: 40px;
  position: relative;
  z-index: 2;
}
.product-details img {
  /*display: block;*/
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .product-details {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .product-details {
    padding: 15px 0;
  }
  .product-details-title>h1 {
    padding: 0 10px;
    font-size: 18px;
    line-height: 30px;
  }
  .product-details img {
    margin-top: 10px;
  }
}

/* 推荐机型 */
.model {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.model-swiper {
  width: calc(100% + 20px);
  margin-left: -10px;
  overflow: hidden;
  margin-top: 35px;
}
.model-swiper .swiper-slide {
  padding: 10px;
}
.model-swiper .swiper-slide>a {
  width: 100%;
  float: left;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.model-swiper .swiper-slide>a .model-icon {
  width: 59px;
  float: left;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
}
.model-swiper .swiper-slide>a .model-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.model-swiper .swiper-slide>a .model-img::before {
  content: "";
  display: block;
  padding-top: 157.46606335%;
}
.model-swiper .swiper-slide>a>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
  line-height: 28px;
  font-size: 16px;
  color: #3a3a3a;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.model-swiper .swiper-slide>a>span {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-bottom: 25px;
  line-height: 24px;
  font-size: 16px;
  color: #55bddb;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.model-swiper .swiper-slide>a:hover .model-img>img {
  transform: scale(1.1);
}
.model-button {
  display: flex;
  justify-content: space-around;
  margin-top: 55px;
}
.model-button>a {
  width: 23%;
  float: left;
  height: 54px;
  background-color: #7bc8fe;
  font-size: 18px;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.model-button>a:hover {
  background-color: #002fa6;
}

@media (max-width: 1300px) {
  .model-button {
    margin-top: 40px;
  }
  .model-button>a {
    width: 30%;
  }
}

@media (max-width: 991px) {
  .model {
    padding: 20px 0;
  }
  .model-swiper {
    margin-top: 20px;
  }
  .model-button {
    margin-top: 20px;
  }
  .model-button>a {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .model {
    padding: 15px 0;
  }
  .model-swiper {
    margin-top: 15px;
  }
  .model-swiper .swiper-slide>a>span {
    margin-bottom: 10px;
  }
  .model-button {
    margin-top: 15px;
  }
  .model-button>a {
    width: 48%;
    font-size: 16px;
    height: auto;
    line-height: 24px;
    padding: 10px;
    text-align: center;
  }
}

/* 如果您有更多需求？ 欢迎给我们留言咨询 */
.message {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.message-form {
  width: 102%;
  margin-left: -1%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message-form>h1 {
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 38px;
  text-align: center;
  font-size: 24px;
  color: #3a3a3a;
  margin-bottom: 10px;
}
.message-form>input {
  width: 31.33333%;
  float: left;
  margin: 0 1% 30px 1%;
  border: 1px solid #e2e2e2;
  height: 54px;
  line-height: 52px;
  padding: 0 15px;
  font-size: 16px;
  color: #222;
  border-radius: 10px;
}
.message-form>textarea {
  width: 98%;
  float: left;
  height: 162px;
  border: 1px solid #e2e2e2;
  margin: 0 1% 30px 1%;
  font-size: 16px;
  color: #222;
  border-radius: 10px;
  padding: 15px;
  line-height: 22px;
  color: #222;
}
.message-form>button {
  width: 98%;
  float: left;
  margin: 0 1%;
  height: 60px;
  background-color: #0045a3;
  font-size: 24px;
  color: #fff;
  border-radius: 10px;
}
.message-form>input::-webkit-input-placeholder {
  color: #b6b6b6;
}
.message-form>input:-moz-placeholder {
  color: #b6b6b6;
}
.message-form>textarea::-webkit-input-placeholder {
  color: #b6b6b6;
}
.message-form>textarea:-moz-placeholder {
  color: #b6b6b6;
}

@media (max-width: 991px) {
  .message {
    padding: 20px 0;
  }
  .message-form>input,
  .message-form>textarea {
    margin: 0 1% 20px 1%;
  }
}

@media (max-width: 767px) {
  .message {
    padding: 15px 0;
  }
  .message-form {
    width: 100%;
    margin-left: 0;
  }
  .message-form>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .message-form>input {
    width: 100%;
    margin: 0 0 10px 0;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    border-radius: 5px;
  }
  .message-form>textarea {
    width: 100%;
    margin: 0 0 10px 0;
    font-size: 14px;
    border-radius: 5px;
    padding: 10px 15px;
  }
  .message-form>button {
    width: 100%;
    margin: 0;
    height: 40px;
    font-size: 18px;
    border-radius: 5px;
  }
}

/* 合作案例 */
.case {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.produce-case-list {
  display: block;
  overflow: hidden;
  width: 1316px;
  margin-top: 35px;
}
.produce-case-list>li {
  width: 293px;
  float: left;
  margin: 0 36px 20px 0;
}
.produce-case-list>li>a {
  display: block;
  overflow: hidden;
}
.produce-case-list>li>a .produce-case-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.produce-case-list>li>a .produce-case-img::before {
  content: "";
  display: block;
  padding-top: 59.10653%;
}
.produce-case-list>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 20px;
  color: #363636;
  font-family: "Source Han Sans CN";
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 15px;
  font-weight: normal;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e4e4;
}
.produce-case-list>li>a>h1>span {
  width: 38px;
  float: right;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background-color: #0045a3;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  margin-top: 10px;
}
.produce-case-text {
  display: block;
  overflow: hidden;
  height: 120px;
  line-height: 30px;
  margin-top: 10px;
  font-size: 16px;
  color: #3b3b3b;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.produce-case-text>span {
  float: left;
  font-size: 14px;
  opacity: 0.7;
}
.produce-case-list>li>a:hover .produce-case-img>img {
  transform: scale(1.1);
}
.produce-case-list>li>a:hover>h1 {
  color: #0045a3;
}

@media (max-width: 1300px) {
  .produce-case-list {
    width: 102%;
    margin-left: -1%;
  }
  .produce-case-list>li {
    width: 23%;
    margin: 0 1% 20px 1%;
  }
}

@media (max-width: 991px) {
  .case {
    padding: 20px 0;
  }
  .produce-case-list {
    margin-top: 25px;
  }
  .produce-case-list>li {
    width: 31.33333%;
  }
}

@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .produce-case-list {
    margin-top: 10px;
  }
  .produce-case-list>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }
  .produce-case-list>li>a>h1 {
    line-height: 30px;
    font-size: 16px;
    margin-top: 5px;
    padding-bottom: 5px;
  }
  .produce-case-list>li>a>h1>span {
    margin-top: 6px;
  }
  .produce-case-text {
    height: 72px;
    line-height: 24px;
    margin-top: 5px;
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  .produce-case-text>span {
    font-size: 12px;
  }
}
/* END-产品中心 */

/* 浩圆服务 */
/* 浩圆净水服务保障 */
.ensure {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.ensure-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 42px;
  font-size: 36px;
  color: #292929;
  font-family: "Source Han Sans CN";
}
.ensure-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  background-color: #042fa5;
  margin: 20px auto 0 auto;
}
.ensure-list {
  display: flex;
  flex-wrap: wrap;
  width: 1316px;
}
.ensure-list>li {
  width: 293px;
  float: left;
  margin: 40px 36px 0 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  height: 116px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 18px;
  color: #292929;
}
.ensure-list>li>img {
  float: left;
  margin-right: 20px;
}

@media (max-width: 1300px) {
  .ensure {
    padding: 50px 0;
  }
  .ensure-list {
    width: 102%;
    margin-left: -1%;
  }
  .ensure-list>li {
    width: 23%;
    margin: 40px 1% 0 1%;
  }
}

@media (max-width: 991px) {
  .ensure {
    padding: 30px 0;
  }
  .ensure-list>li {
    margin: 20px 1% 0 1%;
    height: 90px;
  }
  .ensure-list>li>img {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .ensure {
    padding: 15px 0;
  }
  .ensure-title {
    line-height: 30px;
    font-size: 20px;
  }
  .ensure-title::after {
    width: 40px;
    margin: 5px auto 0 auto;
  }
  .ensure-list>li {
    width: 48%;
    margin: 10px 1% 0 1%;
    height: 50px;
    font-size: 16px;
  }
  .ensure-list>li>img {
    width: auto;
    height: 30px;
    margin-right: 10px;
  }
}

/* 智能净水直饮水时代 */
.service-hf .produce-hf {
  background: url(../images/service-bj1.jpg) no-repeat center center;
  background-size: cover;
}
.service-hf-list {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  margin-top: -27px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.service-hf-list>li {
  width: 20%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 35px 0;
}
.service-hf-list>li>img {
  float: left;
  margin-right: 20px;
}
.service-hf-list>li>div {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #959595;
}
.service-hf-list>li>div>span {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 18px;
  color: #0c0c0c;
}

@media (max-width: 1300px) {
  .service-hf-list>li>img {
    height: 30px;
    margin-right: 5px;
  }
}

@media (max-width: 991px) {
  .service-hf-list {
    justify-content: center;
  }
  .service-hf-list>li {
    width: 33.333333%;
    padding: 15px 0;
  }
  .service-hf-list>li>img {
    height: auto;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .service-hf-list {
    padding: 5px;
    margin-top: 15px;
  }
  .service-hf-list>li {
    padding: 5px;
  }
  .service-hf-list>li>img {
    height: 30px;
    margin-right: 0;
  }
  .service-hf-list>li>div {
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
  }
  .service-hf-list>li>div>span {
    line-height: 24px;
    font-size: 16px;
    margin-top: 5px;
  }
}

/* 核心优势 */
.superiority {
  width: 100%;
  overflow: hidden;
  padding: 75px 0;
}
.superiority-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.superiority-list>li {
  width: 100%;
  float: left;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 0 38px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}
.superiority-list>li .superiority-left {
  width: 19.53125%;
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 30px;
}
.superiority-list>li .superiority-left .superiority-title {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  font-family: "Source Han Sans CN";
}
.superiority-list>li .superiority-left .superiority-title>span {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: #fff;
}
.superiority-list>li .superiority-left .superiority-title::after {
  content: "";
  display: block;
  overflow: hidden;
  width: 48px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
}
.superiority-list>li .superiority-right {
  width: 80.46875%;
  float: left;
  padding: 20px 45px;
}
.superiority-list>li .superiority-right .superiority-dl {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.superiority-list>li .superiority-right .superiority-dl>dd {
  width: calc(50% - 50px);
  float: left;
  margin: 28px 0;
  display: flex;
  align-items: center
}
.superiority-list>li .superiority-right .superiority-dl>dd .superiority-icon {
  width: 88px;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
}
.superiority-list>li .superiority-right .superiority-dl>dd .superiority-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.superiority-list>li .superiority-right .superiority-dl>dd .superiority-text {
  width: calc(100% - 88px);
  float: left;
  padding-left: 20px;
  font-size: 14px;
  color: #666;
  line-height: 18px;
  font-family: "Source Han Sans CN";
}
.superiority-list>li .superiority-right .superiority-dl>dd .superiority-text>h3 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #202020;
  margin-bottom: 5px;
}

@media (max-width: 1300px) {
  .superiority {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .superiority {
    padding: 30px 0;
  }
  .superiority-list {
    margin-top: 0;
  }
  .superiority-list>li .superiority-left {
    width: 30%;
    padding: 20px;
  }
  .superiority-list>li .superiority-right {
    width: 70%;
    padding: 20px 30px;
  }
  .superiority-list>li .superiority-right .superiority-dl>dd {
    width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .superiority {
    padding: 15px 0;
  }
  .superiority-list>li {
    margin-top: 15px;
  }
  .superiority-list>li .superiority-left {
    width: 100%;
    padding: 15px;
  }
  .superiority-list>li .superiority-left .superiority-title {
    text-align: center;
  }
  .superiority-list>li .superiority-left .superiority-title>span {
    line-height: 30px;
    font-size: 20px;
  }
  .superiority-list>li .superiority-left .superiority-title::after {
    margin: 5px auto 0 auto;
  }
  .superiority-list>li .superiority-right {
    width: 100%;
    padding: 15px;
  }
  .superiority-list>li .superiority-right .superiority-dl>dd {
    width: 100%;
    margin: 5px 0;
  }
}

/* 过滤原理 */
.filter {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.filter>div {
  width: 50%;
  float: left;
  background-color: #f3f3f3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 90px;
  display: flex;
}
.filter-left {
  justify-content: flex-end;
  padding-right: 40px;
}
.filter-right {
  justify-content: flex-start;
  background-image: url(../images/filter-bj.jpg);
  padding-left: 40px;
}
.filter-box {
  width: 100%;
  float: left;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-title {
  width: 175px;
  float: left;
  height: 175px;
  background: url(../images/filter-title-bj.png) no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 30px;
  color: #393939;
  font-family: "Source Han Sans CN Medium";
  position: relative;
  z-index: 2;
}
.filter-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: -20px;
}
.filter-img::before {
  content: "";
  display: block;
  padding-top: 67.5%;
}

@media (max-width: 1300px) {
  .filter>div {
    padding-bottom: 50px;
  }
  .filter-left {
    padding-right: 20px;
    padding-left: 20px;
  }
  .filter-right {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .filter>div {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .filter>div {
    padding: 10px !important;
  }
  .filter-title {
    width: 80px;
    height: 80px;
    font-size: 16px;
  }
}

/* 同行对比 */
.contrast {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.contrast-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 42px;
  font-size: 36px;
  color: #292929;
}
.contrast-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.contrast-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contrast-imgs>div {
  width: 40%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contrast-imgs>div:nth-child(2) {
  width: 20%;
}
.contrast-imgs>div>img {
  display: block;
  max-width: 100%;
  height: auto;
}
.contrast-list {
  display: block;
  overflow: hidden;
  margin-top: 25px;
}
.contrast-list>li {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
.contrast-list>li .contrast-left {
  width: 43.59375%;
  float: left;
  background-color: #e7e7e7;
  border-radius: 5px;
  line-height: 24px;
  font-size: 16px;
  color: #505050;
  padding: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.contrast-list>li .contrast-center {
  width: 11.484375%;
  float: left;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  line-height: 24px;
  padding: 15px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-family: "Source Han Sans CN";
  background-image: linear-gradient(to right, #042fa5, #01a2ec);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contrast-list>li .contrast-right {
  width: 43.59375%;
  float: left;
  background-color: #f5f5f5;
  border-radius: 5px;
  line-height: 24px;
  font-size: 16px;
  color: #505050;
  padding: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

@media (max-width: 1300px) {
  .contrast {
    padding: 50px 0;
  }
  .contrast-list>li .contrast-left,
  .contrast-list>li .contrast-right {
    width: 42%;
  }
  .contrast-list>li .contrast-center {
    width: 14%;
  }
}

@media (max-width: 991px) {
  .contrast {
    padding: 30px 0;
  }
  .contrast-list>li .contrast-left,
  .contrast-list>li .contrast-right {
    width: 40%;
  }
  .contrast-list>li .contrast-center {
    width: 18%;
  }
}

@media (max-width: 767px) {
  .contrast {
    padding: 15px 0;
  }
  .contrast-title {
    line-height: 30px;
    font-size: 20px;
  }
  .contrast-content {
    margin-top: 10px;
  }
  .contrast-list>li .contrast-left,
  .contrast-list>li .contrast-right {
    width: 41%;
    padding: 5px;
    font-size: 12px;
    line-height: 16px;
  }
  .contrast-list>li .contrast-center {
    width: 15%;
    flex-wrap: wrap;
    padding: 5px;
    font-size: 16px;
    line-height: 20px;
  }
}

/* 公司实力 */
.service-strength {
  width: 100%;
  overflow: hidden;
  background: url(../images/service-strength-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 90px 0;
}
.service-strength .contrast-title {
  color: #fff;
}
.service-strength-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 55px;
}
.service-strength-list>li {
  width: 210px;
  float: left;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 80px;
}
.service-strength-list>li::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.service-strength-list>li .service-strength-hover {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.service-strength-list>li .service-strength-hover .service-strength-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 50px;
}
.service-strength-list>li .service-strength-hover .service-strength-text {
  display: block;
  overflow: hidden;
  height: 34px;
  line-height: 34px;
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  color: #fff;
}

.service-strength-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
.service-strength-text>div {
  width: 12.5%;
  float: left;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  line-height: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.service-strength-text>div>span {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 30px;
  color: #0437aa;
  font-weight: bold;
  margin-bottom: 5px;
}

@media (max-width: 1300px) {
  .service-strength {
    padding: 60px 0;
  }
  .service-strength-list {
    margin-top: 50px;
  }
  .service-strength-list>li {
    margin: 0 50px;
  }
  .service-strength-text {
    margin-top: 70px;
  }
}

@media (max-width: 991px) {
  .service-strength {
    padding: 30px 0;
  }
  .service-strength-list {
    margin-top: 30px;
  }
  .service-strength-list>li {
    width: 25%;
    margin: 0 20px;
  }
  .service-strength-text {
    margin-top: 40px;
  }
  .service-strength-text>div>span {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .service-strength {
    padding: 15px 0;
  }
  .service-strength-list {
    margin-top: 15px;
  }
  .service-strength-list>li {
    width: 31.333333%;
    margin: 0 1%;
  }
  .service-strength-list>li .service-strength-hover .service-strength-icon {
    height: 30px;
  }
  .service-strength-list>li .service-strength-hover .service-strength-text {
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    font-size: 16px;
  }
  .service-strength-text {
    margin-top: 0;
  }
  .service-strength-text>div {
    width: 30%;
    padding-bottom: 10px;
    line-height: 16px;
    font-size: 12px;
    margin-top: 10px;
  }
  .service-strength-text>div>span {
    font-size: 20px;
    line-height: 30px;
  }
}

/* 八大售后 */
.after-sales {
  width: 100%;
  overflow: hidden;
  background: url(../images/after-sales-bj.jpg) no-repeat center top;
  background-size: 100% auto;
  padding: 90px 0;
}
.after-sales-nav {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #d1d1d1;
  margin-top: 50px;
}
.after-sales-nav ul {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.after-sales-nav ul>li {
  width: 10.9375%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  align-content: flex-end;
}
.after-sales-nav ul>li>h1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  background: url(../images/after-sales-bj.png) no-repeat center center;
  background-size: 100% 100%;
}
.after-sales-nav ul>li>h1::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.after-sales-nav ul>li>h1 .after-sales-number {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 72px;
  color: rgba(4, 47, 165, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.after-sales-nav ul>li>h1>span {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  font-size: 18px;
  color: #585858;
  font-weight: bold;
}
.after-sales-nav ul>li::after {
  content: "";
  width: 1px;
  float: left;
  height: 186px;
  background-color: #d1d1d1;
}
.after-sales-nav ul>li:nth-child(even)::after {
  height: 70px;
}

.after-sales-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
}
.after-sales-list>li {
  width: calc(50% - 20px);
  float: left;
  margin-top: 20px;
}
.after-sales-list>li .after-sales-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.after-sales-list>li .after-sales-img::before {
  content: "";
  display: block;
  padding-top: 53.2258065%;
}
.after-sales-list>li h1 {
  display: block;
  overflow: hidden;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 24px;
  color: #3c3c3c;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
}
.after-sales-list>li:hover .after-sales-img>img {
  transform: scale(1.1);
}
.after-sales-list>li:hover h1 {
  color: #002fa6;
}

@media (max-width: 1300px) {
  .after-sales {
    padding: 50px 0;
  }
  .after-sales-list {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .after-sales {
    padding: 30px 0;
  }
  .after-sales-nav {
    margin-top: 30px;
  }
  .after-sales-nav ul>li>h1 .after-sales-number {
    font-size: 50px;
  }
  .after-sales-nav ul>li>h1>span {
    font-size: 16px;
  }
  .after-sales-nav ul>li::after {
    height: 120px;
  }
  .after-sales-nav ul>li:nth-child(even)::after {
    height: 50px;
  }

  .after-sales-list {
    margin-top: 30px;
  }
  .after-sales-list>li h1 {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .after-sales {
    padding: 15px 0;
  }
  .after-sales-nav {
    margin-top: 10px;
  }
  .after-sales-nav ul>li {
    width: 24%;
    margin-bottom: 10px;
  }
  .after-sales-nav ul>li>h1 .after-sales-number {
    font-size: 40px;
  }
  .after-sales-nav ul>li>h1>span {
    font-size: 14px;
  }
  .after-sales-nav ul>li::after {
    display: none;
  }
  .after-sales-list {
    margin-top: 0;
  }
  .after-sales-list>li {
    width: calc(50% - 5px);
    margin-top: 10px;
  }
  .after-sales-list>li h1 {
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}

/* 浩圆云4G 尽饮健康水 一键掌握 */
.onekey {
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
}
.onekey-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 56px;
  font-size: 50px;
  color: #000;
}
.onekey-content {
  display: block;
  overflow: hidden;
  position: relative;
  margin-top: 70px;
  padding: 55px 0;
}
.onekey-content>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.onekey-list {
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.onekey-list>li {
  width: 260px;
  float: left;
  border: 10px solid #eef8ff;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
}
.onekey-list>li>a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  height: 124px;
  line-height: 32px;
  font-size: 22px;
  color: #000;
  padding: 10px;
  font-family: "Source Han Sans CN";
  background-image: linear-gradient(#c3e7fe, #fff);
}
.onekey-list>li:nth-child(1) {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.onekey-list>li:nth-child(2) {
  left: 13.28125%;
  top: 23%;
}
.onekey-list>li:nth-child(3) {
  right: 13.28125%;
  top: 23%;
}
.onekey-list>li:nth-child(4) {
  left: 13.28125%;
  bottom: 23%;
}
.onekey-list>li:nth-child(5) {
  right: 13.28125%;
  bottom: 23%;
}
.onekey-list>li:nth-child(6) {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@media (max-width: 1300px) {
  .onekey {
    padding: 50px 0;
  }
  .onekey-content {
    margin-top: 50px;
    padding: 50px 0;
  }
  .onekey-list>li:nth-child(2) {
    left: 0;
  }
  .onekey-list>li:nth-child(3) {
    right: 0
  }
  .onekey-list>li:nth-child(4) {
    left: 0;
  }
  .onekey-list>li:nth-child(5) {
    right: 0;
  }
}

@media (max-width: 991px) {
  .onekey {
    padding: 30px 0;
  }
  .onekey-title {
    line-height: 40px;
    font-size: 30px;
  }
  .onekey-content {
    margin-top: 30px;
    padding: 30px 0;
  }
  .onekey-list>li>a {
    height: 110px;
    line-height: 30px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .onekey {
    padding: 15px 0;
  }
  .onekey-title {
    line-height: 30px;
    font-size: 20px;
  }
  .onekey-content {
    margin-top: 10px;
    padding: 0;
  }
  .onekey-list {
    height: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .onekey-list>li {
    width: calc(50% - 5px);
    border: 5px solid #eef8ff;
    position: relative !important;
    left: initial !important;
    right: initial !important;
    top: initial !important;
    bottom: initial !important;
    transform: initial !important;
    margin-top: 10px;
  }
  .onekey-list>li>a {
    height: auto;
    line-height: 24px;
    font-size: 14px;
  }
}

/* 合作伙伴 */
.coop {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background-color: #f6f6f6;
}
.coop-title {
  display: block;
  overflow: hidden;
  line-height: 42px;
  font-size: 36px;
  color: #292929;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #c4c4c4;
}
.coop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 35px;
}
.coop-nav>li {
  width: 122px;
  float: left;
  margin: 0 9px 10px 9px;
  height: 46px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #eaeaea;
  background-color: #eaeaea;
  font-size: 18px;
  color: #292929;
  border-radius: 22px;
  cursor: pointer;
}
.coop-nav>li:hover,
.coop-nav>li.coop-active {
  border-color: #042fa5;
  background-color: #fff;
  color: #042fa5;
  font-weight: bold;
}
.coop-content {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.coop-content>div {
  display: none;
}
.coop-content>div:first-child {
  display: block;
}
.coop-list {
  display: block;
  overflow: hidden;
  width: 1296px;
}
.coop-list>li {
  width: 200px;
  float: left;
  margin: 0 16px 16px 0;
}
.coop-list>li>a {
  width: 100%;
  overflow: hidden;
  position: relative;
	display: block;
}
.coop-list>li>a::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.coop-list>li>a:hover>img {
  transform: scale(1.1);
}

@media (max-width: 1300px) {
  .coop {
    padding: 50px 0;
  }
  .coop-list {
    width: 102%;
    margin-left: -1%;
  }
  .coop-list>li {
    width: 14.66666%;
    margin: 0 1% 16px 1%;
  }
}

@media (max-width: 991px) {
  .coop {
    padding: 30px 0;
  }
  .coop-content {
    margin-top: 20px;
  }
  .coop-list>li {
    width: 23%;
  }
}

@media (max-width: 767px) {
  .coop {
    padding: 15px 0;
  }
  .coop-title {
    line-height: 30px;
    font-size: 20px;
    padding-bottom: 10px;
  }
  .coop-nav {
    margin-top: 10px;
  }
  .coop-nav>li {
    width: 32.333333%;
    margin: 0 0.5% 1% 0.5%;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    border-radius: 20px;
  }
  .coop-content {
    margin-top: 10px;
  }
  .coop-list>li {
    width: 31.33333%;
  }
}
/* END-浩圆服务 */

/* 新闻中心 */
.news-main {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.news-main>.container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-main-left {
  width: 245px;
  float: left;
  border-right: 1px solid #ececec;
  padding-right: 40px;
}
.news-about {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
.news-about-list {
  display: block;
  overflow: hidden;
}
.news-about-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 1px;
}
.news-about-list>li>a {
  display: flex;
  align-items: center;
  height: 55px;
  background-color: #f0f0f0;
  padding: 0 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 17px;
  color: #2f2f2f;
}
.news-about-list>li>a .news-about-icon {
  width: 28px;
  float: left;
  height: 28px;
  position: relative;
  margin-right: 20px;
}
.news-about-list>li>a .news-about-icon>img:first-child {
  opacity: 1;
}
.news-about-list>li>a .news-about-icon>img:last-child {
  opacity: 0;
}
.news-about-list>li>a:hover,
.news-about-list>li.news-about-active>a {
  background-color: #0032a3;
  color: #fff;
}
.news-about-list>li>a:hover .news-about-icon>img:first-child,
.news-about-list>li.news-about-active>a .news-about-icon>img:first-child {
  opacity: 0;
}
.news-about-list>li>a:hover .news-about-icon>img:last-child,
.news-about-list>li.news-about-active>a .news-about-icon>img:last-child {
  opacity: 1;
}

.news-about-title {
  display: block;
  overflow: hidden;
  line-height: 44px;
  border-bottom: 1px solid #c9c9c9;
  font-size: 16px;
  color: #373737;
  font-weight: bold;
}
.hot-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5px;
}
.hot-list>li {
  width: calc(50% - 5px);
  float: left;
  margin-top: 10px;
}
.hot-list>li>a {
  display: block;
  overflow: hidden;
  height: 34px;
  line-height: 32px;
  border: 1px solid #eaeaea;
  text-align: center;
  padding: 0 10px;
  font-size: 14px;
  color: #787878;
}
.hot-list>li>a:hover {
  background-color: #0032a3;
  border-color: #0032a3;
  color: #fff;
}

.hotcp {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  padding: 0 30px;
}
.hotcp .hotcp-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hotcp .hotcp-img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.hotcp h1 {
  display: block;
  overflow: hidden;
  line-height: 40px;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  color: #696969;
  margin-top: 10px;
}
.hotcp-prev,
.hotcp-next {
  width: 30px;
  float: left;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/hotcp-left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
.hotcp-next {
  left: initial;
  right: 0;
  background-image: url(../images/hotcp-right.png);
}
.hotcp-prev:hover {
  background-image: url(../images/hotcp-left-hover.png);
}
.hotcp-next:hover {
  background-image: url(../images/hotcp-right-hover.png);
}

.news-form {
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.news-form>label {
  width: 100%;
  float: left;
  margin-bottom: 10px;
  border: 1px solid #ebebeb;
}
.news-form>label>h6 {
  width: 50px;
  float: left;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  color: #767676;
  text-align: right;
  font-weight: normal;
}
.news-form>label>input {
  width: calc(100% - 50px);
  float: left;
  height: 34px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
}
.news-form>button {
  width: 100%;
  float: left;
  height: 36px;
  background-color: #029ce2;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}

.news-honor {
  widows: 100%;
  overflow: hidden;
  padding: 0 30px;
  position: relative;
  margin-top: 15px;
}
.news-honor a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.news-honor a::before {
  content: "";
  display: block;
  padding-top: 139.864865%;
}
.news-honor-prev,
.news-honor-next {
  width: 30px;
  float: left;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/hotcp-left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
.news-honor-next {
  left: initial;
  right: 0;
  background-image: url(../images/hotcp-right.png);
}
.news-honor-prev:hover {
  background-image: url(../images/hotcp-left-hover.png);
}
.news-honor-next:hover {
  background-image: url(../images/hotcp-right-hover.png);
}

.hd {
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
}
.hd>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.hd>a::before {
  content: "";
  display: block;
  padding-top: 82.4391%;
}
.hd>a>h6 {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  padding: 0 10px;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  float: left;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.news-dianhua {
  display: block;
  overflow: hidden;
  margin-top: 35px;
  line-height: 22px;
  font-size: 15px;
  color: #616161;
  padding-left: 50px;
  background: url(../images/news-dianhua.png) no-repeat left center;
}
.news-dianhua>span {
  display: block;
  overflow: hidden;
  font-size: 22px;
  color: #0045a3;
  font-weight: bold;
}
.news-dianhua-text {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 18px;
  font-size: 14px;
  color: #575757;
}

.news-main-right {
  width: 996px;
  float: right;
}
.news-dqwz-title {
  width: 100%;
  float: left;
  height: 44px;
  border-bottom: 1px solid #ddd;
}
.news-dqwz-title>span {
  float: left;
  height: 44px;
  border-bottom: 1px solid #0048a5;
  font-size: 24px;
  color: #373737;
}

.xw-list {
  width: 100%;
  float: left;
}
.xw-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}
.xw-list>li>a {
  width: 100%;
  float: left;
  background-color: #f9f9f9;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 30px;
  align-items: center;
}
.xw-list>li>a .xw-left {
  width: 60%;
  float: left;
}
.xw-list>li>a .xw-left>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 18px;
  color: #373737;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xw-list>li>a .xw-left .xw-text {
  display: block;
  overflow: hidden;
  height: 96px;
  line-height: 24px;
  font-size: 14px;
  color: #626262;
  margin-top: 15px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.xw-list>li>a .xw-left .xw-more {
  display: block;
  overflow: hidden;
}
.xw-list>li>a .xw-left .xw-more>span {
  float: left;
  min-width: 120px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  text-align: center;
  margin-right: 10px;
  font-size: 12px;
  color: #626262;
  padding: 0 5px;
  margin-top: 10px;
}
.xw-list>li>a .xw-left .xw-more>span:first-child {
  border-color: #0032a3;
  color: #0032a3;
}
.xw-list>li>a .xw-right {
  width: 30%;
  float: left;
  overflow: hidden;
  position: relative;
  transform: translateX(120%);
}
.xw-list>li>a .xw-right::before {
  content: "";
  display: block;
  padding-top: 61.01695%;
}
.xw-list>li>a:hover .xw-right {
  transform: translateX(0);
}

@media (max-width: 1300px) {
  .news-main {
    padding: 50px 0;
  }
  .news-main-left {
    width: 24%;
    padding-right: 2%;
  }
  .news-main-right {
    width: 74%;
  }
}

@media (max-width: 991px) {
  .news-main {
    padding: 30px 0;
  }
  .news-main-left {
    width: 29%;
  }
  .news-main-right {
    width: 69%;
  }
  .xw-list>li>a {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .news-main {
    padding: 0;
  }
  .news-main-left {
    width: 100%;
    padding: 0;
    border: none;
    margin: 0;
  }
  .news-about {
    margin: 0;
  }
  .news-about-title {
    width: calc(100% + 40px);
    margin: 0 0 0 -20px;
    background-color: #0032a3;
    line-height: 50px;
    border-bottom: none;
    font-size: 20px;
    color: #fff;
    position: relative;
    padding: 0 20px;
  }
  .news-about-title::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .news-about-list {
    display: none;
    transition: initial;
  }
  .news-about-list>li {
    margin: 1px 0 0 0;
  }
  .news-about-list>li>a {
    height: 40px;
  }
  .news-main-right {
    width: 100%;
    padding: 20px 0;
  }

  .xw-list>li>a {
    padding: 10px;
    align-items: initial;
  }
  .xw-list>li>a .xw-left {
    width: 70%;
    padding-right: 10px;
  }
  .xw-list>li>a .xw-left>h1 {
    font-size: 16px;
  }
  .xw-list>li>a .xw-left .xw-text {
    height: 48px;
    margin-top: 5px;
    -webkit-line-clamp: 2;
  }
  .xw-list>li>a .xw-left .xw-more {
    display: block;
    overflow: hidden;
  }
  .xw-list>li>a .xw-left .xw-more>span {
    display: none;
    margin-top: 5px;
  }
  .xw-list>li>a .xw-left .xw-more>span:first-child {
    display: block;
  }
  .xw-list>li>a .xw-right {
    transform: translateX(0);
  }
}
/* END-新闻中心 */

/* 热门问答 */
.questions-nav {
  width: 100%;
  overflow: hidden;
}
.questions-nav .product-nav>li>div {
  min-width: initial;
}
.questions-nav .product-nav>li>a {
  width: auto;
  float: right;
  line-height: 32px;
  margin: 5px 0;
  border-radius: initial;
  color: #989898;
  background-image: initial;
}
.questions-nav .product-nav>li>a:hover {
  text-decoration: underline;
  color: #0032a3;
}

/* 解答视频 */
.video {
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 60px 0;
}
.video-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 102%;
  margin-left: -1%
}
.video-box>li {
  width: 31.33333%;
  float: left;
  margin: 0 1%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.video-box>li>dl {
  display: block;
  overflow: hidden;
  padding: 5px 20px 25px 20px;
}
.video-box>li>dl>dd {
  display: block;
  overflow: hidden;
  line-height: 28px;
  padding: 10px 0;
  border-bottom: 1px solid #dfdfdf;
  color: #818181;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Source Han Sans CN";
}
.video-box>li>dl>dd>a {
  color: #818181;
}
.video-box>li>dl>dd>a>span {
  float: left;
}
.video-box>li>dl>dd:nth-child(1),
.video-box>li>dl>dd:nth-child(2) {
  background: url(../images/icon-hot.png) no-repeat right center;
  background-size: auto 28px;
  padding-right: 30px;
}


.video-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.video-list>li {
  width: calc(50% - 18px);
  float: left;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.video-list>li::before {
  content: "";
  display: block;
  padding-top: 58.6817%;
}
.video-list>li>video {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  object-fit: cover;
}

@media (max-width: 1300px) {
  .video {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .video {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .video {
    padding: 15px 0;
  }
  .video-box>li {
    width: 98%;
    margin-bottom: 10px;
  }
  .video-box>li>dl {
    padding: 5px 10px 10px 10px;
  }
  .video-list>li {
    width: 100%;
    margin-top: 10px;
  }
}

/* 上海学校净水器租赁 */
.qnews {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.qnews-box {
  width: 100%;
  float: left;
  margin-bottom: 50px;
}
.qnews-box:last-child {
  margin: 0;
}
.qnews-title {
  width: 100%;
  float: left;
  height: 58px;
  line-height: 38px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 24px;
  color: #1b1b1b;
  position: relative;
}
.qnews-title::after {
  content: "";
  width: 50px;
  float: left;
  height: 1px;
  background-color: #0045a3;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.qnews-list {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
}
.qnews-list>li {
  width: calc(50% - 40px);
  float: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.qnews-list>li .qnews-img {
  width: 258px;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin: 10px 0;
}
.qnews-list>li .qnews-img::before {
  content: "";
  display: block;
  padding-top: 75.5814%;
}
.qnews-list>li>dl {
  width: calc(100% - 258px);
  float: left;
  padding-left: 20px;
}
.qnews-list>li>dl>dd {
  display: block;
  overflow: hidden;
  line-height: 36px;
  color: #1b1b1b;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.qnews-list>li>dl>dd>a {
  font-size: 16px;
  color: #1b1b1b;
}
.qnews-list>li>dl>dd>a>span {
  float: left;
  color: #b5b5b5;
  margin-right: 5px;
}
.qnews-list>li>dl>dd>a:hover {
  color: #0045a3;
}

@media (max-width: 1300px) {
  .qnews-list>li .qnews-img {
    width: 220px;
  }
  .qnews-list>li>dl {
    width: calc(100% - 220px);
  }
}

@media (max-width: 991px) {
  .qnews {
    padding: 30px 0;
  }
  .qnews-box {
    margin-bottom: 30px;
  }
  .qnews-list>li {
    width: calc(50% - 10px);
  }
  .qnews-list>li>dl {
    width: 100%;
    line-height: 30px;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .qnews {
    padding: 15px 0;
  }
  .qnews-box {
    margin-bottom: 10px;
  }
  .qnews-title {
    height: 40px;
    line-height: 24px;
    padding-bottom: 5px;
    font-size: 18px;
  }
  .qnews-list {
    margin-top: 10px;
  }
  .qnews-list>li {
    width: 100%;
  }
  .qnews-list>li>dl>dd {
    line-height: 30px;
  }
  .qnews-list>li>dl>dd>a {
    font-size: 14px;
  }
}

/* 招聘计划 */
.works {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  padding: 65px 0;
}
.works-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 32px;
  font-size: 24px;
  color: #707070;
}
.works-title>h1 {
  display: block;
  overflow: hidden;
  line-height: 48px;
  font-size: 40px;
  color: #285d9f;
  font-weight: normal;
}
.works-list {
  display: block;
  overflow: hidden;
  margin-top: 45px;
  width: 1305px;
}
.works-list>li {
  width: 410px;
  float: left;
  margin: 0 25px 25px 0;
  background-color: #fff;
  padding: 30px 25px;
}
.works-list>li>h1 {
  display: block;
  overflow: hidden;
  line-height: 42px;
  font-size: 30px;
  color: #000;
}
.works-list>li .works-sub-title {
  display: block;
  overflow: hidden;
  padding: 15px 0 30px 0;
  border-bottom: 2px solid #e8e8e8;
}
.works-list>li .works-sub-title>span {
  float: left;
  line-height: 20px;
  font-size: 16px;
  color: #878787;
  margin-right: 20px;
}
.works-list>li .works-sub-title>span>img {
  float: left;
  width: auto;
  height: 20px;
  margin-right: 3px;
}
.works-list>li>h6 {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  line-height: 26px;
  font-size: 16px;
  color: #000;
  font-weight: normal;
}
.works-list>li .works-text {
  display: block;
  overflow: auto;
  margin-top: 25px;
  height: 200px;
  line-height: 25px;
  font-size: 15px;
  color: #999;
  padding-right: 15px;
}
.works-text::-webkit-scrollbar {
  width: 2px;
}
.works-text::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #e16e71;
}
.works-text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #e7e7e7;
}

@media (max-width: 1300px) {
  .works {
    padding: 50px 0;
  }
  .works-list {
    width: 102%;
    margin-left: -1%;
  }
  .works-list>li {
    width: 31.333333%;
    margin: 0 1% 25px 1%;
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .works {
    padding: 30px 0;
  }
  .works-list>li .works-sub-title>span {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .works {
    padding: 15px 0;
  }
  .works-title {
    line-height: 20px;
    font-size: 14px;
  }
  .works-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .works-list {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .works-list>li {
    width: 100%;
    padding: 15px;
  }
  .works-list>li>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .works-list>li .works-sub-title {
    padding: 10px 0;
  }
  .works-list>li .works-sub-title>span {
    font-size: 14px;
    margin-right: 10px;
  }
  .works-list>li>h6 {
    margin-top: 10px;
    line-height: 24px;
  }
  .works-list>li .works-text {
    margin-top: 10px;
    padding-right: 10px;
  }
}
/* END-热门问答 */

.place-content {
  width: 100%;
  float: left;
  padding-top: 35px;
}

.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: 15px 0;
  border-bottom: 1px dashed #ccc;
}
.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .place-content .news-list>li {
    margin: 0 0 10px 0 !important;
  }
  .place-content .news-list>li>a .news-img {
    width: 140px !important;
  }
  .place-content .news-list>li>a .news-box {
    width: calc(100% - 140px) !important;
    padding: 0 0 0 10px !important;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}