@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-08-25 11:48:53
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-08-28 11:55:11
 */

/* 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/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

/* 首页样式 */
.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index-main {
  background: url(../images/solution-bj.jpg) no-repeat center top;
}
/* 洁净整体解决方案 */
.solution {
  width: 100%;
  overflow: hidden;
  padding: 65px 0;
}
.solution-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.solution-title>h1 {
  line-height: 50px;
  font-family: "Source Han Sans CN";
  font-size: 36px;
  font-weight: bold;
  color: var(--color-hover);
}
.solution-title>div {
  line-height: 38px;
  font-size: 24px;
  color: #575757;
}
.solution-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
.solution-list>li {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 35px;
  cursor: pointer;
}
.solution-list>li .solution-icon {
  width: 100%;
  max-width: 104px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
}
.solution-list>li .solution-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.solution-list>li .solution-icon>img {
  filter: drop-shadow(0 56px #fff);
  transition: all 0.6s;
}
.solution-list>li>h1 {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-top: 15px;
  font-size: 22px;
  color: #181818;
}
.solution-list>li .solution-text {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #646464;
}
.solution-list>li:hover .solution-icon {
  background-color: var(--color-hover);
}
.solution-list>li:hover .solution-icon>img {
  transform: translateY(-100%);
}

@media (max-width: 1400px) {
  .solution {
    padding: 60px 0;
  }
  .solution-list {
    margin-top: 50px;
  }
}
@media (max-width: 1200px) {
  .solution {
    padding: 50px 0;
  }
  .solution-list {
    margin-top: 40px;
  }
  .solution-list>li {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .solution {
    padding: 30px 0;
  }
  .solution-list {
    margin-top: 30px;
  }
  .solution-list>li {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .solution {
    padding: 15px 0;
  }
  .solution-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .solution-title>div {
    line-height: 20px;
    font-size: 14px;
  }
  .solution-list {
    margin-top: 10px;
    width: calc(100% + 10px);
    margin-left: -5px;
  }
  .solution-list>li {
    width: calc(25% - 10px);
    margin: 0 5px;
    padding: 0;
  }
  .solution-list>li .solution-icon {
    width: 80%;
  }
  .solution-list>li .solution-icon>img {
    height: 40px;
    filter: drop-shadow(0 40px #fff);
  }
  .solution-list>li>h1 {
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    font-size: 16px;
  }
  .solution-list>li .solution-text {
    margin-top: 5px;
    font-size: 12px;
    line-height: 18px;
  }
}

/* 宇田产品 */
.product {
  width: 100%;
  overflow: hidden;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-title {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-title>div {
  line-height: 32px;
  font-size: 36px;
  color: #e8e8e8;
  text-transform: uppercase;
  font-weight: bold;
}
.product-title>h1 {
  margin-top: 10px;
  font-size: 36px;
  line-height: 40px;
  font-family: "Source Han Sans CN";
  color: #0f0f0f;
}
.product-title>h1>span {
  color: var(--color-main);
  font-weight: bold;
}

.product-nav {
  width: 100%;
  float: left;
  overflow: hidden;
  margin-top: 40px;
  background-color: #f5f5f5;
}
.product-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-nav ul>li {
  width: 25%;
  border-right: 2px solid #fff;
}
.product-nav ul>li:last-child {
  border-right: none;
}
.product-nav ul>li>a {
  display: block;
  overflow: hidden;
  padding: 25px 10px;
  line-height: 30px;
  font-size: 22px;
  color: #333;
  text-align: center;
}
.product-nav ul>li.product-active>a {
  background-color: var(--color-hover);
  color: #fff;
}
.product-content {
  width: 100%;
  float: left;
  display: flex;
  position: relative;
}
.product-content>div {
  display: none;
  width: 100%;
  float: left;
  position: relative;
}
.product-content>div>.product-swiper {
  display: none;
}
.product-content>div:first-child {
  display: block;
}
.product-content>div:first-child>.product-swiper {
  display: block;
}
.product-swiper {
  width: 100%;
  overflow: hidden;
}
.product-swiper a {
  width: 100%;
  overflow: hidden;
  float: left;
  position: relative;
}
.product-swiper a::before {
  content: "";
  display: block;
  padding-top: 30.052834%;
}
.product-swiper>.container {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.product-swiper .prev-button,
.product-swiper .next-button {
  width: 48px;
  height: 48px;
  background-image: url(../images/product-left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.product-swiper .next-button {
  left: initial;
  right: 0;
  background-image: url(../images/product-right.png);
}

.product-hover {
  width: 100%;
  float: left;
  transform: translateY(-50%);
  position: relative;
  z-index: 2;
}
.product-hover>.container {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.product-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}
.product-left>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 28px;
  color: #313131;
}
.product-left>div {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 28px;
  font-size: 18px;
  color: #727272;
}
.product-right {
  width: 172px;
  display: flex;
  align-items: center;
}
.product-right>a {
  width: 100%;
  float: left;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #04b3fc;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #04b3fc;
}
.product-right>a:hover {
  background-color: var(--color-hover);
  color: #fff;
}

@media (max-width: 1200px) {
  .product-nav ul>li>a {
    padding: 15px 10px;
    font-size: 20px;
  }
  .product-swiper a::before {
    padding-top: 45.052834%;
  }
  .product-hover>.container {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .product-swiper a::before {
    padding-top: 55.052834%;
  }
  .product-hover>.container {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .product {
    padding-top: 15px;
  }
  .product-title>div {
    line-height: 20px;
    font-size: 20px;
  }
  .product-title>h1 {
    margin-top: 0;
    font-size: 20px;
    line-height: 30px;
  }
  .product-nav {
    margin-top: 10px;
  }
  .product-nav ul>li {
    width: 50%;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .product-nav ul>li:nth-child(even) {
    border-right: none;
  }
  .product-nav ul>li>a {
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .product-swiper a::before {
    padding-top: 75%;
  }
  .product-hover {
    transform: translateY(0);
  }
  .product-hover>.container {
    flex-wrap: wrap;
  }
  .product-left {
    flex: none;
    width: 100%;
  }
  .product-left>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .product-left>div {
    margin-top: 5px;
    line-height: 24px;
    font-size: 14px;
  }
  .product-right {
    justify-content: center;
    margin-top: 5px;
  }
  .product-right>a {
    max-width: 120px;
    height: 34px;
    font-size: 14px;
  }
  .product-right {
    width: 100%;
    display: flex;
    justify-self: center;
  }

  .product-swiper .prev-button, .product-swiper .next-button {
    width: 24px;
    height: 24px;
  }
}

/* 四大优势 */
.advantage {
  background-image: url(../images/advantage-bj.jpg);
  padding-bottom: 100px;
}
.advantage-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.advantage-title>h2 {
  height: 64px;
  line-height: 64px;
  font-size: 72px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.advantage-title>h1 {
  margin-top: -30px;
  position: relative;
  line-height: 54px;
  font-size: 48px;
  color: #0f0f0f;
  font-weight: bold;
  font-family: "Source Han Sans CN";
}
.advantage-title>h1>span {
  color: var(--color-main);
}
.advantage-title>div {
  line-height: 28px;
  font-size: 22px;
  color: #575757;
  margin-top: 10px;
}
.advantage-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.advantage-list>li {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
}
.advantage-list>li .advantage-left {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.advantage-list>li .advantage-left::before {
  content: "";
  display: block;
  padding-top: 64.4286%;
}
.advantage-list>li .advantage-right {
  width: 50%;
  padding: 60px;
}
.advantage-box {
  display: block;
  overflow: hidden;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.advantage-box:last-child {
  margin-bottom: 0;
}
.advantage-box .advantage-number {
  width: 100px;
  height: 100px;
  font-size: 48px;
  color: #aeaeae;
  font-weight: bold;
  float: left;
  background-color: #f7f7f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.advantage-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 26px;
  color: #04b3fc;
}
.advantage-box .advantage-text {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 24px;
  font-size: 16px;
  color: #818181;
}
.advantage-list>li:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 1400px) {
  .advantage {
    padding-bottom: 80px;
  }
  .advantage-list>li .advantage-right {
    padding: 50px;
  }
  .advantage-box {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

}
@media (max-width: 1200px) {
  .advantage {
    padding-bottom: 50px;
  }
  .advantage-list>li .advantage-right {
    padding: 40px;
  }
  .advantage-box {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .advantage {
    padding-bottom: 30px;
  }
  .advantage-list {
    margin-top: 30px;
  }
  .advantage-list>li .advantage-right {
    padding: 30px;
  }
  .advantage-box .advantage-number {
    width: 70px;
    height: 70px;
    font-size: 30px;
    margin-right: 10px;
  }
  .advantage-box>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .advantage-box .advantage-text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .advantage {
    padding: 15px 0;
  }
  .advantage-title>h2 {
    height: 40px;
    line-height: 40px;
    font-size: 40px;
  }
  .advantage-title>h1 {
    margin-top: -25px;
    line-height: 30px;
    font-size: 20px;
  }
  .advantage-title>div {
    line-height: 20px;
    font-size: 14px;
    margin-top: 0;
  }

  .advantage-list {
    margin-top: 10px;
  }
  .advantage-list>li .advantage-left {
    width: 100%;
  }
  .advantage-list>li .advantage-right {
    width: 100%;
    padding: 15px;
  }
  .advantage-box {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .advantage-box .advantage-number {
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: 5px;
  }
  .advantage-box>h1 {
    line-height: 30px;
    font-size: 18px;
    margin-top: 5px;
  }
  .advantage-box .advantage-text {
    width: 100%;
    float: left;
    margin-top: 5px;
    line-height: 22px;
    font-size: 14px;
  }
}

/* 服务项目 */
.service {
  padding: 100px 0;
  background-image: url(../images/service-bj.jpg);
}
.service-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-title>div {
  line-height: 32px;
  font-size: 36px;
  color: #e8e8e8;
  font-weight: bold;
  text-transform: uppercase;
}
.service-title>h1 {
  line-height: 42px;
  margin-top: 10px;
  font-size: 36px;
  font-family: "Source Han Sans CN";
  color: #fff;
}
.service-title>h1>span {
  color: var(--color-main);
  font-weight: bold;
}
.service .swiper {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}
.service .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.service .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 113.59517%;
}
.service .swiper .swiper-slide>a>h1 {
  width: 100%;
  overflow: hidden;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.service .swiper .swiper-slide>a:hover>img {
  transform: scale(1.1);
}


@media (max-width: 1400px) {
  .service {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .service {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .service {
    padding: 30px 0;
  }
  .service .swiper {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .service {
    padding: 15px 0;
  }
  .service .swiper {
    margin-top: 10px;
  }
  .service-title>div {
    line-height: 20px;
    font-size: 20px;
  }
  .service-title>h1 {
    line-height: 30px;
    margin-top: 0;
    font-size: 20px;
  }
  .service .swiper .swiper-slide>a>h1 {
    line-height: 30px;
    font-size: 16px;
    padding: 10px;
  }
}

/* 工程案例 */
.case {
  padding: 70px 0 90px 0;
}
.case-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.case-title>h6 {
  line-height: 42px;
  font-size: 36px;
  color: #e8e8e8;
  font-weight: bold;
  text-transform: uppercase;
}
.case-title>h1 {
  line-height: 50px;
  font-size: 36px;
  color: #0f0f0f;
  font-family: "Source Han Sans CN";
}
.case-title>h1>span {
  color: var(--color-main);
  font-weight: bold;
}
.case-title>div {
  line-height: 34px;
  margin-top: 10px;
  font-size: 22px;
  color: #575757;
}
#gallery {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}
#gallery .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
#gallery .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 39.07143%;
}
.thumbs {
  width: 100%;
  display: flex;
  position: relative;
}
.thumbs .swiper {
  width: 100%;
  overflow: hidden;
}
.thumbs .swiper .swiper-slide {
  border: 1px solid #dadada;
  padding: 22px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.thumbs .swiper .swiper-slide .case-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 45px;
}
.thumbs .swiper .swiper-slide .case-icon>img {
  filter: drop-shadow(0 45px #fff);
  transition: initial;
}
.thumbs .swiper .swiper-slide>h1 {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 24px;
  font-size: 18px;
  color: #2d2d2d;
  transition: initial;
}
.thumbs .swiper .swiper-slide-thumb-active {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
}
.thumbs .swiper .swiper-slide-thumb-active .case-icon>img {
  transform: translateY(-45px);
}
.thumbs .swiper .swiper-slide-thumb-active>h1 {
  color: #fff;
}
.thumbs .prev-button,
.thumbs .next-button {
  content: "";
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  font-family: SimSun;
  font-size: 48px;
  color: #5c5c5c;
  font-weight: bold;
  cursor: pointer;
}
.thumbs .next-button {
  left: initial;
  right: -70px;
}
.thumbs .prev-button::before {
  content: "<";
}
.thumbs .next-button::before {
  content: ">";
}
.thumbs .prev-button:hover,
.thumbs .next-button:hover {
  color: #adadad;
}

@media (max-width: 1600px) {
  .thumbs .prev-button,
  .thumbs .next-button {
    left: -30px;
  }
  .thumbs .next-button {
    left: initial;
    right: -30px;
  }
}
@media (max-width: 1500px) {
  .thumbs {
    padding: 0 40px;
  }
  .thumbs .prev-button,
  .thumbs .next-button {
    left: 0;
  }
  .thumbs .next-button {
    left: initial;
    right: 0;
  }
}
@media (max-width: 1400px) {
  .case {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .case {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .case {
    padding: 30px 0;
  }
  #gallery {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .case-title>h6 {
    line-height: 20px;
    font-size: 20px;
  }
  .case-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .case-title>div {
    line-height: 20px;
    margin-top: 0;
    font-size: 14px;
  }

  #gallery {
    margin-top: 10px;
  }
  #gallery .swiper-slide>a::before {
    padding-top: 50%;
  }
  .thumbs {
    padding: 10px 20px;
  }
  .thumbs .swiper .swiper-slide {
    padding: 10px 5px;
  }
  .thumbs .swiper .swiper-slide .case-icon {
    height: 30px;
  }
  .thumbs .swiper .swiper-slide>h1 {
    margin-top: 10px;
    line-height: 22px;
    font-size: 14px;
  }
  .thumbs .prev-button,
  .thumbs .next-button {
    font-size: 20px;
  }
}

/* 新闻资讯 */
.news {
  background-image: url(../images/news-bj.jpg);
  padding: 95px 0;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.news-left {
  width: calc(50% - 30px);
}
.news-left>a {
  width: 100%;
  float: left;
  background-color: #fff;
  padding: 30px;
  padding-top: 0;
}
.news-left>a .news-time {
  display: block;
  overflow: hidden;
  margin-top: -21px;
  line-height: 20px;
  font-size: 14px;
  color: #646464;
  font-weight: bold;
}
.news-left>a .news-time>span {
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 48px;
  color: #04b3fc;
}
.news-left>a .news-boxs {
  width: 100%;
  float: left;
  margin-top: 25px;
}
.news-left>a .news-boxs .news-box {
  width: 100%;
  overflow: hidden;
}
.news-left>a .news-boxs .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #373737;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-left>a .news-boxs .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #686868;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.news-left>a .news-boxs .news-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 15px;
}
.news-left>a .news-boxs .news-img::before {
  content: "";
  display: block;
  padding-top: 45%;
}
.news-left>a:hover .news-boxs .news-box>h1 {
  color: var(--color-hover);
}
.news-left>a:hover .news-boxs .news-img>img {
  transform: scale(1.1);
}

.news-right {
  width: calc(50% - 40px);
}
.news-right>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #8a8a8a;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news-right>li:last-child {
  margin-bottom: 0;
}
.news-right>li>a {
  width: 100%;
  float: left;
  display: flex;
}
.news-right>li>a .news-img {
  width: 164px;
  float: left;
  overflow: hidden;
  position: relative;
}
.news-right>li>a .news-box {
  width: calc(100% - 164px);
  float: left;
  padding-left: 20px;
}
.news-right>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 18px;
  color: #373737;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #686868;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 15px;
}
.news-right>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 12px;
  color: #b2b2b2;
  text-decoration: underline; padding-top:6px;
}
.news-right>li>a:hover .news-img>img {
  transform: scale(1.1);
}
.news-right>li>a:hover .news-box>h1 {
  color: var(--color-hover);
}


@media (max-width: 1400px) {
  .news {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .news-content {
    margin-top: 50px;
  }
  .news-left {
    width: calc(50% - 20px);
  }
  .news-right {
    width: calc(50% - 20px);
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-content {
    margin-top: 30px;
  }
  .news-right>li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-left {
    width: 100%;
  }
  .news-left>a {
    padding: 10px;
  }
  .news-left>a .news-boxs {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  .news-left>a .news-boxs .news-img {
    width: 40%;
    margin-top: 0;
  }
  .news-left>a .news-boxs .news-box {
    width: 60%;
    padding-left: 15px;
  }
  .news-left>a .news-boxs .news-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-left>a .news-boxs .news-box .news-text {
    height: 66px;
    line-height: 22px;
    font-size: 13px;
    margin: 5px 0;
  }
  .news-left>a .news-time {
    margin-top: 0;
    line-height: 20px;
    font-size: 14px;
  }

  .news-right {
    width: 100%;
    margin-top: 10px;
  }
  .news-right>li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .news-right>li>a .news-img {
    width: 40%;
  }
  .news-right>li>a .news-box {
    width: 60%;
    padding-left: 15px;
  }
  .news-right>li>a .news-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-right>li>a .news-box .news-text {
    height: 66px;
    line-height: 22px;
    font-size: 13px;
    margin: 5px 0;
  }
}

/* 关于宇田 */
.about {
  background-image: url(../images/about-bj.jpg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-left {
  width: 50%;
}
.about-left>div {
  width: 100%;
  max-width: 720px;
  float: right;
  padding-top: 66px;
  padding-left: 20px;
}
.about-title {
  display: block;
  overflow: hidden;
}
.about-title>div {
  display: block;
  overflow: hidden;
  line-height: 66px;
  font-size: 72px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}
.about-title>h1 {
  display: block;
  overflow: hidden;
  line-height: 46px;
  margin-top: -26px;
  font-size: 36px;
  color: #fff;
}
.about-box {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  background-color: #fff;
  padding: 40px 55px 40px 50px;
}
.about-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 24px;
  color: #04b3fc;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.about-box .about-text {
  display: block;
  overflow: hidden;
  height: 140px;
  line-height: 28px;
  font-size: 16px;
  color: #414141;
  margin-top: 15px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.about-box>a {
  float: left;
  margin-top: 25px;
  width: 172px;
  height: 52px;
  border: 1px solid var(--color-main);
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--color-main);
  border-radius: 10px;
}
.about-box>a:hover {
  background-color: var(--color-hover);
  color: #fff;
}

.about-right {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.about-right::before {
  content: "";
  display: block;
  padding-top: 58.125%;
}

@media (max-width: 1400px) {
  .about-left>div {
    padding-top: 60px;
  }
  .about-box {
    padding: 40px;
  }
}
@media (max-width: 1200px) {
  .about-left>div {
    padding-top: 50px;
  }
  .about-box {
    padding: 30px;
  }
  .about-title>div {
    line-height: 50px;
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .about-left>div {
    padding-top: 30px;
  }
  .about-box {
    padding: 20px;
  }
  .about-title>div {
    line-height: 40px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .about-left {
    width: 100%;
  }
  .about-left>div {
    padding-top: 15px;
    padding-left: 0;
  }
  .about-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-title>div {
    line-height: 20px;
    font-size: 20px;
  }
  .about-title>h1 {
    line-height: 30px;
    margin-top: 0;
    font-size: 20px;
  }
  .about-box {
    padding: 20px;
    margin-top: 10px;
  }
  .about-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .about-box .about-text {
    height: auto;
    line-height: 22px;
    font-size: 14px;
    margin-top: 5px;
    -webkit-line-clamp: initial;
  }
  .about-box>a {
    margin-top: 10px;
    width: 102px;
    height: 32px;
    line-height: 30px;
    font-size: 14px;
  }
  .about-right {
    width: 100%;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background-color: #f7f7f7;
}
.main>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-left {
  width: 255px;
}
.menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 82px;
  background-color: var(--color-main);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.menu-title>span {
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
  color: #fff;
}
.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
  background-color: #fff;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #ececec;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
  color: #404040;
  padding: 0 25px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-list>li>a::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/menu-jiantou1.png) no-repeat center center;
  background-size: 100% 100%;
  float: right;
  margin-top: 19px;
  margin-left: 10px;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  background-color: #f0f0f0;
  color: var(--color-hover);
  font-weight: bold;
}
.menu-list>li:hover>a::before,
.menu-list>li.menu-active>a::before {
  background: url(../images/menu-jiantou2.png) no-repeat center center;
  background-size: 100% 100%;
}

.menu-hotline {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  background: url(../images/menu-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 22px;
  padding-right: 30px;
  line-height: 22px;
  font-size: 14px;
  color: #fff;
}
.menu-hotline>p {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  padding-left: 25px;
  background: url(../images/menu-hotline.png) no-repeat left center;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}
.menu-hotline>p:first-child {
  margin-top: 10px;
}

.main-right {
  width: calc(100% - 255px);
  padding-left: 35px;
}
.place-title {
  width: 100%;
  float: left;
  line-height: 40px;
  font-size: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
}
.place-title>h1 {
  font-size: 22px;
  color: #292929;
}
.place-title>div {
  font-size: 14px;
  color: #8b8b8b;
}

.place-content {
  width: 100%;
  float: left;
  padding-top: 30px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 40px;
  color: #333;
}
.company img{ max-width:100% !important; height:auto !important;}

@media (max-width: 1400px) {
  .main-left {
    width: 18%;
  }
  .main-right {
    width: 82%;
  }
}
@media (max-width: 1200px) {
  .main-left {
    width: 20%;
  }
  .main-right {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .main-left {
    width: 28%;
  }
  .menu-hotline {
    padding: 15px;
  }
  .main-right {
    width: 72%;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
    background-color: var(--color-hover);
  }
  .menu-title-active {
    justify-content: flex-start;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list {
    display: none;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
  .menu-list>li>a::before {
    margin-top: 12px;
  }

  .main-right {
    width: 100%;
    padding: 0;
  }
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 服务项目/产品展示/工程案例 */
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 34px);
  margin-left: -17px;
}
.product-list>li {
  width: calc(calc(100% / 3) - 34px);
  margin: 0 17px 38px 17px;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 7px;
  padding-bottom: 0;
  background-color: #fff;
}
.product-list>li>a .img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.product-list>li>a .img::before {
  content: "";
  display: block;
  padding-top: 79.154079%;
}
.product-list>li>a>h1 {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #323232;
}
.product-list>li>a:hover {
  background-color: var(--color-hover);
}
.product-list>li>a:hover .img>img {
  transform: scale(1.1);
}
.product-list>li>a:hover>h1 {
  color: #fff;
}

.product-details {
  display: block;
  overflow: hidden;
}
.product-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--colorC);
}
.product-details-img{ width:100%; text-align:center; margin:10px auto}
.product-details-img img{ max-width:100% !important; height:auto !important; max-height:600px;}

.product-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1400px) {}
@media (max-width: 1200px) {
  .product-list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 30px);
    margin: 0 15px 30px 15px;
  }
  .product-list>li>a>h1 {
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .product-list {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin: 0 10px 20px 10px;
  }
  .product-list>li>a>h1 {
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .product-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a {
    padding: 4px;
    padding-bottom: 0;
  }
  .product-list>li>a>h1 {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .product-details-title {
    font-size: 16px;
  }
  .product-details-content {
    padding-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-服务项目/产品展示/工程案例 */

/* 新闻中心 */
.news-list {
  width: 100%;
}

.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: var(--color6);
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed var(--colorC);
}
.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) {
  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap
}
.contact-text {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: 30px
}
.contact-map {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
  margin-top: 20px
}
@media (max-width:767px) {
  .contact-text {
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    margin-top: 10px;
    height: 300px
  }
}
/* END-联系我们 */