@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-11-02 09:52:44
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-11-02 16:34:43
 */

/* 字体 */
@import "../fonts/fonts.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.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;
}

.title {
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
.title>h1 {
  line-height: 38px;
  font-size: 24px;
  color: #111;
  margin-right: 10px;
}
.title>div {
  line-height: 30px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}
.title::after {
  content: "";
  width: 32px;
  height: 3px;
  background-color: #0d48b3;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media (max-width: 767px) {
  .title {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .title {
    padding-bottom: 5px;
  }
  .title>h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .title>div {
    line-height: 24px;
    font-size: 14px;
  }
  .title::after {
    width: 20px;
    height: 2px;
  }
}

/* banner大图 */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-swiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.banner-swiper .swiper-pagination {
  opacity: 1;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: var(--color-main);
  opacity: 0.5;
}
.banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.banner-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-hover);
}
.banner-swiper:hover .swiper-pagination {
  opacity: 1;
}
/* 箭头 */
.banner-swiper .banner-prev,
.banner-swiper .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 60px;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  outline: none;
  cursor: pointer;
}
.banner-swiper .banner-next {
  left: initial;
  right: 2%;
}
.banner-swiper:hover .banner-next,
.banner-swiper:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  /*圆点*/
  .banner-swiper .swiper-pagination {
    bottom: 10px;
  }
  .banner-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    opacity: 1;
    border-radius: 0 !important;
  }
  .banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
  .banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
  }
  .banner-swiper .swiper-pagination-bullet-active {
    width: 15px;
  }
}


/* 关于复舜 */
.about {
  background-color: #eeeff4;
  padding: 80px 0 90px 0;
}
.about>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-left {
  width: 55%;
  float: left;
  overflow: hidden;
  position: relative;
}
.about-left::before {
  content: "";
  display: block;
  padding-top: 55.1597052%;
}
.about-left>iframe,
.about-left>video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.about-left>video {
  object-fit: cover;
}
.about-right {
  width: 45%;
  background-color: #fff;
  padding: 45px 50px;
}
.about-right .about-text {
  display: block;
  overflow: hidden;
  height: 182px;
  line-height: 26px;
  font-size: 15px;
  color: #4e4e4e;
  margin-top: 30px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.about-right .about-more {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.about-right .about-more>a {
  width: 108px;
  float: left;
  height: 42px;
  border: 2px solid #eeeff4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0d48b3;
  border-radius: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  -o-border-radius: 21px;
}
.about-right .about-more>a:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  color: #fff;
}

@media (max-width: 1400px) {
  .about {
    padding: 70px 0;
  }
  .about-right {
    padding: 50px 60px;
  }
}
@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
  .about-right {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-right {
    padding: 30px;
  }
  .about-right .about-text {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-left {
    width: 100%;
  }
  .about-right {
    width: 100%;
    padding: 15px;
  }
  .about-right .about-text {
    height: 168px;
    line-height: 24px;
    font-size: 14px;
    margin-top: 10px;
    -webkit-line-clamp: 7;
  }
  .about-right .about-more {
    margin-top: 10px;
  }
  .about-right .about-more>a {
    width: 90px;
    height: 34px;
    border-radius: 17px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
  }
}

/* 产品中心 */
.product {
  padding: 100px 0 90px 0;
}
.product-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.product-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.product-nav>li {
  width: 150px;
  margin: 6px 0 0 6px;
}
.product-nav>li>a {
  display: block;
  overflow: hidden;
  height: 54px;
  border: 1px solid #d7d9e2;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.product-nav>li>a:hover,
.product-nav>li.product-active>a {
  background-color: var(--color-hover);
  color: #fff;
  border-color: var(--color-hover);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 18px);
  margin-left: -9px;
  margin-top: 60px;
}
.product-list>li {
  width: calc(calc(100% / 3) - 18px);
  margin: 0 9px 28px 9px;
}
.product-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.product-list>li>a::before {
  content: "";
  display: block;
  padding-top: 83.80744%;
}
.product-list>li>a .product-hover {
  width: 100%;
  height: 100%;
  background: url(../images/product-hover.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 15px;
}
.product-list>li>a .product-hover>h1 {
  width: 100%;
  text-align: center;
  overflow: hidden;
  line-height: 24px;
  font-size: 18px;
  color: #fff;
}
.product-list>li>a:hover>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media (max-width: 1400px) {
  .product {
    padding: 70px 0;
  }
  .product-nav>li {
    width: 110px;
  }
  .product-list {
    margin-top: 50px;
  }
}
@media (max-width: 1200px) {
  .product {
    padding: 50px 0;
  }
  .product-nav>li {
    width: 110px;
  }
  .product-list {
    margin-top: 40px;
  }
  .product-nav>li>a {
    height: 44px;
    line-height: 42px;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-nav>li {
    width: 120px;
  }
  .product-list {
    margin-top: 30px;
  }
  .product-list>li>a .product-hover {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-nav {
    flex: none;
    width: calc(100% + 4px);
    justify-content: center;
    margin-top: 10px;
  }
  .product-nav>li {
    width: calc(calc(100% / 3) - 4px);
    margin: 0 2px 4px 2px;
  }
  .product-nav>li>a {
    height: 34px;
    line-height: 32px;
    font-size: 14px;
  }
  .product-list {
    margin-top: 10px;
    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 .product-hover {
    padding: 10px;
  }
  .product-list>li>a .product-hover>h1 {
    font-size: 16px;
  }
}

/* 公司业绩 */
.achievement {
  background-color: #eeeff4;
  padding: 100px 0 130px 0;
}
.achievement-content {
  display: flex;
  position: relative;
  margin-top: 50px;
}
.achievement-content .swiper {
  width: 100%;
}
.achievement-content .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}
.achievement-content .swiper .swiper-slide>a .img::before {
  content: "";
  display: block;
  padding-top: 42.571429%;
}
.achievement-content .swiper .swiper-slide>a .achievement-hover {
  width: 100%;
  background-color: #fff;
  padding: 40px;
  max-width: 558px;
  position: absolute;
  left: 30px;
  bottom: 0;
  z-index: 2;
}
.achievement-content .swiper .swiper-slide>a .achievement-hover>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  color: #111;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.achievement-content .swiper .swiper-slide>a .achievement-hover .achievement-text {
  display: block;
  overflow: hidden;
  height: 96px;
  line-height: 24px;
  font-size: 15px;
  color: #595959;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 20px;
}
.achievement-content .swiper .swiper-slide>a .achievement-hover .achievement-more {
  display: block;
  overflow: hidden;
  width: 108px;
  margin-top: 10px;
  height: 42px;
  font-size: 14px;
  color: #0d48b3;
  border: 2px solid #eeeff4;
  line-height: 38px;
  text-align: center;
  border-radius: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  -o-border-radius: 21px;
}
.achievement-content .swiper .swiper-slide>a:hover .img>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.achievement-content .swiper .swiper-slide>a:hover .achievement-hover .achievement-more {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  color: #fff;
}
.achievement-content .prev-button,
.achievement-content .next-button {
  width: 45px;
  height: 18px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.achievement-content .next-button {
  left: initial;
  right: -90px;
}
.achievement-content .prev-button>img,
.achievement-content .next-button>img {
  filter: drop-shadow(0 18px var(--color-hover));
  -webkit-filter: drop-shadow(0 18px var(--color-hover));
  transition: initial;
  -webkit-transition: initial;
  -moz-transition: initial;
  -ms-transition: initial;
  -o-transition: initial;
}
.achievement-content .prev-button:hover>img,
.achievement-content .next-button:hover>img {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}

@media (max-width: 1600px) {
  .achievement-content {
    padding: 0 90px;
  }
  .achievement-content .prev-button,
  .achievement-content .next-button {
    left: 0;
  }
  .achievement-content .next-button {
    left: initial;
    right: 0;
  }
}
@media (max-width: 1400px) {
  .achievement {
    padding: 70px 0;
  }
  .achievement-content {
    padding: 0 40px;
  }
  .achievement-content .prev-button,
  .achievement-content .next-button {
    left: -20px;
  }
  .achievement-content .next-button {
    left: initial;
    right: -20px;
  }
}
@media (max-width: 1200px) {
  .achievement {
    padding: 50px 0;
  }
  .achievement-content {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .achievement {
    padding: 30px 0;
  }
  .achievement-content {
    margin-top: 30px;
  }
  .achievement-content .swiper .swiper-slide>a {
    padding-bottom: 30px;
  }
  .achievement-content .swiper .swiper-slide>a .achievement-hover {
    width: 60%;
    padding: 20px;
    left: 15px;
  }

}
@media (max-width: 767px) {
  .achievement {
    padding: 15px 0;
  }
  .achievement-content {
    margin-top: 15px;
    padding: 0 20px;
  }
  .achievement-content .swiper .swiper-slide>a {
    padding-bottom: 0;
  }
  .achievement-content .swiper .swiper-slide>a .achievement-hover {
    width: 100%;
    position: relative;
    padding: 15px;
    left: 0;
    bottom: 0;
  }
  .achievement-content .swiper .swiper-slide>a .achievement-hover>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .achievement-content .swiper .swiper-slide>a .achievement-hover .achievement-text {
    height: 66px;
    line-height: 22px;
    font-size: 13px;
    -webkit-line-clamp: 3;
    margin-top: 5px;
  }
  .achievement-content .swiper .swiper-slide>a .achievement-hover .achievement-more {
    width: 90px;
    margin-top: 5px;
    height: 34px;
    line-height: 30px;
    border-radius: 17px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
  }
  .achievement-content .prev-button,
  .achievement-content .next-button {
    width: 24px;
    height: 10px;
    left: -10px;
  }
  .achievement-content .next-button {
    left: initial;
    right: -10px;
  }
}

/* 照明知识及标准 */
.lighting {
  padding: 120px 0 90px 0;
}
.lighting-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.lighting-list>li {
  width: calc(50% - 18px);
  margin: 0 0 38px 0;
  display: flex;
}
.lighting-list>li>a {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f5f6f9;
  border: 1px solid #f5f6f9;
  padding: 24px 30px;
}
.lighting-list>li>a .lighting-img {
  width: 128px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.lighting-list>li>a .lighting-img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.lighting-list>li>a .lighting-box {
  flex: 1;
  padding-left: 25px;
}
.lighting-list>li>a .lighting-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 18px;
  color: #111;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lighting-list>li>a .lighting-box>div {
  display: block;
  overflow: hidden;
  max-height: 72px;
  line-height: 24px;
  font-size: 15px;
  color: #767676;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.lighting-list>li>a:hover {
  background-color: #fff;
}

@media (max-width: 1400px) {
  .lighting {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .lighting {
    padding: 50px 0;
  }
  .lighting-list {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .lighting {
    padding: 30px 0;
  }
  .lighting-list {
    margin-top: 30px;
  }
  .lighting-list>li {
    width: calc(50% - 10px);
    margin: 0 0 20px 0;
  }
  .lighting-list>li>a {
    padding: 20px;
  }
  .lighting-list>li>a .lighting-img {
    width: 108px;
  }
  .lighting-list>li>a .lighting-box {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .lighting {
    padding: 15px 0;
  }
  .lighting-list {
    margin-top: 15px;
  }
  .lighting-list>li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .lighting-list>li>a {
    padding: 10px;
  }
  .lighting-list>li>a .lighting-img {
    width: 80px;
  }
  .lighting-list>li>a .lighting-box {
    padding-left: 15px;
  }
  .lighting-list>li>a .lighting-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .lighting-list>li>a .lighting-box>div {
    max-height: 60px;
    line-height: 20px;
    font-size: 12px;
    margin-top: 5px;
  }
}

/* 新闻资讯 */
.news {
  background-color: #eeeff4;
  padding: 120px 0 70px 0;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.news-left {
  width: calc(50% - 18px);
  padding-top: 5px;
}
.news-left>a {
  display: flex;
  flex-direction: column;
}
.news-left>a .img::before {
  padding-top: 52.785924%;
}
.news-left>a .news-box {
  width: 100%;
  overflow: hidden;
  margin-top: 35px;
}
.news-left>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 18px;
  color: #111;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-left>a .news-box .news-text {
  display: block;
  overflow: hidden;
  margin: 10px 0;
  height: 48px;
  line-height: 24px;
  font-size: 15px;
  color: #797979;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-left>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 14px;
  font-size: 12px;
  color: #959595;
}
.news-left>a:hover .img>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.news-left>a:hover .news-box>h1 {
  color: var(--color-hover);
  font-weight: bold;
}

.news-right {
  width: 47.5%;
  display: flex;
  flex-direction: column;
}
.news-right>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 30px;
  margin-bottom: 45px;
}
.news-right>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 18px;
  color: #111;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li>a>h1>span {
  float: right;
  font-size: 12px;
  color: #a8a7a7;
  margin-left: 5px;
}
.news-right>li>a>div {
  display: block;
  overflow: hidden;
  line-height: 24px;
  margin-top: 10px;
  font-size: 15px;
  color: #797979;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li>a:hover>h1 {
  color: var(--color-hover);
  font-weight: bold;
}

@media (max-width: 1400px) {
  .news {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .news-right>li {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-content {
    margin-top: 30px;
  }
  .news-left>a .news-box {
    margin-top: 20px;
  }
  .news-right>li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-left {
    width: 100%;
    padding: 0;
  }
  .news-left>a {
    flex-direction: row;
  }
  .news-left>a .img {
    width: 40%;
  }
  .news-left>a .news-box {
    width: 60%;
    margin-top: 0;
    padding: 0 0 0 15px;
  }
  .news-left>a .news-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-left>a .news-box .news-text {
    margin: 5px 0;
    height: 40px;
    line-height: 20px;
    font-size: 12px;
  }

  .news-right {
    width: 100%;
    margin-top: 15px;
  }
  .news-right>li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .news-right>li>a>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-right>li>a>div {
    margin-top: 5px;
    font-size: 13px;
  }
}
/* END-首页样式 */

/* 内页大图 */
.nbanner {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nbanner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.nbanner>.container {
  width: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.nbanner>.container>h1 {
  line-height: 44px;
  font-size: 36px;
  font-family: "AlimamaShuHeiTi Bold";
}
.nbanner>.container>div {
  margin-top: 15px;
  line-height: 28px;
  font-size: 18px;
}


@media (max-width: 1200px) {
  .nbanner {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .nbanner {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .nbanner {
    height: 200px;
  }
  .nbanner>.container>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .nbanner>.container>div {
    margin-top: 5px;
    line-height: 20px;
    font-size: 14px;
  }
}
/* END-内页大图 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
}
.dqwz-title {
  width: 100%;
  float: left;
  background-color: #eeeff4;
}
.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  transition: initial;
}
.menu-list>li {
  margin: 0 45px;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 74px;
  line-height: 74px;
  font-size: 18px;
  color: #454545;
  text-align: center;
  position: relative;
}
.menu-list>li>a::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  color: var(--color-hover);
}
.menu-list>li:hover>a::after,
.menu-list>li.menu-active>a::after {
  width: 100%;
}

.dqwz-content {
  width: 100%;
  float: left;
  padding: 30px 0 70px 0;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 2;
  color: var(--color3);
  min-height:320px;
}
.company img{ max-width: 100% !important; height: auto !important;}
@media (max-width: 1400px) {
  .menu-list>li {
    margin: 0 25px;
  }

  .dqwz-content {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .menu-list>li {
    margin: 0 35px;
  }
  .dqwz-content {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .menu-list>li {
    margin: 0 20px;
  }
  .dqwz-content {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .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-main);
  }
  .menu-title-active {
    text-align: left;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list {
    display: none;
    width: 100%;
  }
  .menu-list>li {
    width: 100%;
    margin: 2px 0;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    font-size: 14px;
  }

  .dqwz-content {
    padding: 20px 0;
  }
  .company {
    line-height: 26px;
    font-size: 14px;
  }
  .company img{ max-width: 100% !important; height: auto !important; }
}
/* END-关于我们 */

/* 产品中心 */
.cp-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
}
.cp-list>li {
  width: calc(calc(100% / 3) - 24px);
  margin: 0 12px 26px 12px;
}
.cp-list>li>a {
  display: block;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 25px;
  padding-bottom: 0;
}
.cp-list>li>a .img {
  background-color: #f3f3f3;
}
.cp-list>li>a .img::before {
  content: "";
  display: block;
  padding-top: 72.0947631%;
}
.cp-list>li>a>h1 {
  display: block;
  overflow: hidden;
  height: 66px;
  line-height: 66px;
  text-align: center;
  font-size: 18px;
  color: #080808;
}
.cp-list>li>a:hover .img>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.cp-list>li>a:hover>h1 {
  color: #fff;
}


.product-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 30px;
  overflow: hidden;
}
.product-details-left {
  width: 50%;
  background-color: #f3f3f3;
  overflow: hidden;
  position: relative;
}
.product-details-left::before {
  content: "";
  display: block;
  padding-top: 62.068966%;
}
.product-details-right {
  width: 50%;
  padding: 10px 0 10px 50px;
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 30px;
  color: #080808;
}
.product-details-right .product-details-text {
  display: block;
  overflow: hidden;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 30px;
  margin-top: 25px;
}

.product-details-title {
  width: 100%;
  float: left;
  margin-top: 55px;
  font-size: 18px;
  color: #171717;
  line-height: 34px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c4c4c4;
}
.product-details-content {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #000;
  padding-top: 20px;
}
.product-details-content img {
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 1400px) {
  .product-details-right {
    width: 50%;
    padding: 30px 0 30px 60px;
  }
}
@media (max-width: 1200px) {
  .product-details-right {
    width: 50%;
    padding: 30px 0 30px 40px;
  }
}
@media (max-width: 991px) {
  .cp-list>li>a {
    padding: 15px;
    padding-bottom: 0;
  }
  .cp-list>li>a>h1 {
    height: 50px;
    line-height: 50px;
  }

  .product-details-right {
    padding: 15px 0 15px 30px;
  }
  .product-details-title {
    margin-top: 30px;
  }

}
@media (max-width: 767px) {
  .cp-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .cp-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .cp-list>li>a {
    padding: 5px;
    padding-bottom: 0;
  }
  .cp-list>li>a>h1 {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .product-details {
    padding: 0;
  }
  .product-details-left {
    width: 100%;
  }
  .product-details-right {
    width: 100%;
    padding: 15px;
  }
  .product-details-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-details-right .product-details-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .product-details-title {
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 5px;
  }
  .product-details-content {
    font-size: 14px;
    line-height: 24px;
    padding-top: 10px;
  }
}
/* END-产品中心 */

/* 照明知识及标准 */
.dqwz-content .lighting-list {
  margin: 0;
}
/* END-照明知识及标准 */

/* 新闻资讯 */
.info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info-list>li {
  width: calc(50% - 15px);
  margin-bottom: 30px;
}
.info-list>li>a {
  width: 100%;
  float: left;
  display: flex;
  background-color: #f5f6f9;
}
.info-list>li>a .img {
  width: 40%;
}
.info-list>li>a .info-box {
  width: 60%;
  padding: 20px;
  padding-left: 30px;
}
.info-list>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #111;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list>li>a .info-box .info-text {
  display: block;
  overflow: hidden;
  margin: 10px 0;
  height: 72px;
  line-height: 24px;
  font-size: 14px;
  color: #797979;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.info-list>li>a .info-box .info-time {
  display: block;
  overflow: hidden;
  line-height: 14px;
  font-size: 12px;
  color: #959595;
}
.info-list>li>a:hover .info-box>h1,
.info-list>li>a:hover .info-text,
.info-list>li>a:hover .info-time {
  color: #fff;
}


.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: 991px) {
  .info-list>li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .info-list>li>a .info-box {
    padding: 10px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .info-list>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .info-list>li>a .info-box {
    padding: 5px;
    padding-left: 15px;
  }
  .info-list>li>a .info-box>h1 {
    font-size: 16px;
  }
  .info-list>li>a .info-box .info-text {
    margin: 5px 0;
    height: 48px;
    -webkit-line-clamp: 2;
  }


  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 26px;
    font-size: 14px;
  }
  .news-details-content img{ max-width: 100% !important; height: auto !important; }
}
/* END-新闻资讯 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap
}
.contact-text {
  width: 40%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  background-color: var(--color-main);
  padding: 30px
}
.contact-map {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none
}
@media (max-width:767px) {
  .contact-text {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    width: 100%;
    height: 300px
  }
}
/* END-联系我们 */



.secondmenu-list {
  width: 100%;
  float: left;
  overflow: hidden;
  transition: initial;
  margin-top:10px;
  padding-top:10px;
}
.secondmenu-list>li {
  float: left;
  margin: 5px;
}
.secondmenu-list>li>a {
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  color: #222;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 15px;
}

.secondmenu-list>li:hover>a,
.secondmenu-list>li.menua>a {
  background-color: #0d48b3;
  color: #fff;
}

@media (max-width: 991px) {
  .secondmenu-list>li {
    width: calc(25% - 10px);
  }
  .secondmenu-list>li>a {
    height: 32px;
    line-height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .secondmenu-list {
    margin-top: 6px; padding-top:6px;
  }
  .secondmenu-list>li {
    width: 48%;
	padding:1%;
    margin: 3px 0 0 0;
  }
}
