@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-05-18 17:01:05
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-05-19 14:13:21
 */

/* 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";

.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: block;
  overflow: hidden;
  text-align: center;
  color: var(--color3);
}
.title>h1 {
  line-height: 38px;
  font-size: 26px;
  font-weight: bold;
}
.title>div {
  line-height: 30px;
  font-size: 20px;
}
.title-white {
  color: #fff;
}

.more {
  display: flex;
  justify-content: center;
}
.more>a {
  width: 100%;
  max-width: 236px;
  float: left;
  height: 54px;
  font-size: 16px;
  color: var(--color3);
  border: 2px solid var(--color-main);
  background-color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.more>a:hover {
  color: #fff;
  border-color: var(--color-hover);
}

@media (max-width: 767px) {
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>div {
    font-size: 14px;
    line-height: 20px;
  }

  .more>a {
    max-width: 80%;
    height: 34px;
    font-size: 14px;
  }
}

/* 首页样式 */
/* 我们的服务 */
.service {
  padding: 35px 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}
.service-list>li {
  width: 25%;
  float: left;
  padding: 0 30px;
  margin: 5px 0;
}
.service-list>li .service-icon {
  display: block;
  overflow: hidden;
  height: 118px;
  position: relative;
}
.service-list>li>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  color: #4a4a4a;
  font-weight: bold;
}
.service-list>li .service-text {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  height: 96px;
  line-height: 24px;
  font-size: 16px;
  color: var(--color3);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.service-list>li .more {
  margin-top: 25px;
}

@media (max-width: 1240px) {
  .service-list {
    margin-top: 50px;
  }
  .service-list>li {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .service {
    padding: 30px 0;
  }
  .service-list {
    margin-top: 30px;
  }
  .service-list>li {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .service {
    padding: 15px 0;
  }
  .service-list {
    margin-top: 10px;
    justify-content: space-between;
  }
  .service-list>li {
    width: calc(50% - 5px);
    padding: 0;
  }
  .service-list>li .service-icon {
    height: 50px;
  }
  .service-list>li>h1 {
    line-height: 30px;
    margin-top: 5px;
    font-size: 16px;
  }
  .service-list>li .service-text {
    margin-top: 5px;
    height: 48px;
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .service-list>li .more {
    margin-top: 5px;
  }
}

/* 甫盛产品中心 */
.product {
  background-image: url(../images/product-bj.jpg);
  padding: 60px 0;
}
.product-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 75px;
}
.product-item>li {
  width: calc(50% - 10px);
  border: 2px solid #d6d6d9;
  background-color: #fff;
  padding: 34px;
  margin-bottom: 20px;
}
.product-item>li>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 20px;
  color: var(--color3);
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-item>li .product-item-text {
  display: block;
  overflow: hidden;
  height: 60px;
  line-height: 30px;
  font-size: 16px;
  color: var(--color3);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 20px 0 25px 0;
}
.product-item>li .more {
  justify-content: flex-start;
}

.product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.product-nav>li {
  margin: 10px 0 0 0;
}
.product-nav>li>a {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 48px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  padding: 0 10px;
}
.product-nav>li>a::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.product-nav>li.product-active>a::after,
.product-nav>li>a:hover::after {
  width: 100%;
}
.product-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.product-content>div {
  display: none;
}
.product-content>div:first-child {
  display: block;
}
.product-content .swiper {
  width: 100%;
}
.product-content .swiper .swiper-slide{
  height: auto;
}
.product-content .swiper a {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-color: #fff;
  padding: 1px;
}
.product-content .swiper a::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #d6d6d9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.product-content .swiper a::after {
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
}
.product-content .swiper a .img::before {
  padding-top: 64.1791045%;
}
.product-content .swiper a .product-box {
  display: block;
  overflow: hidden;
  padding: 20px 15px;
}
.product-content .swiper a .product-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 16px;
  color: #003a96;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-content .swiper a .product-box>div {
  display: block;
  overflow: hidden;
  margin-top: 10px;
}
.product-content .swiper a .product-box>div>p {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 16px;
  color: var(--color6);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-content .swiper a .product-box>div>p>span {
  float: left;
  color: var(--color3);
}
.product-content .swiper a:hover::after {
  width: 100%;
}

@media (max-width: 1440px) {
  .product-item {
    margin-top: 60px;
  }
  .product-item>li {
    padding: 25px;
  }
}
@media (max-width: 1240px) {
  .product {
    padding: 50px 0;
  }
  .product-item {
    margin-top: 50px;
  }
  .product-item>li {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-item {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-item {
    margin-top: 10px;
  }
  .product-item>li {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
  }
  .product-item>li>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .product-item>li .product-item-text {
    height: 40px;
    line-height: 20px;
    font-size: 12px;
    margin: 5px 0;
  }
  .product-item>li .more>a {
    max-width: 140px;
  }

  .product-nav>li {
    margin: 5px 0 0 0;
  }
  .product-nav>li>a {
    height: 30px;
    font-size: 14px;
    padding: 0 5px;
  }
  .product-content {
    margin-top: 10px;
  }
  .product-content .swiper a .product-box {
    padding: 10px;
  }
  .product-content .swiper a .product-box>div {
    margin-top: 5px;
  }
  .product-content .swiper a .product-box>div>p {
    line-height: 20px;
    font-size: 12px;
  }
}

/* 选择甫盛的理由 */
.choose {
  padding: 50px 0;
  background-image: url(../images/choose-bj.jpg);
}
.choose-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 65px;
}
.choose-list>li {
  width: 50%;
  padding: 0 30px;
  margin-bottom: 30px;
}
.choose-list>li .choose-icon {
  width: 112px;
  height: 115px;
  position: relative;
  float: left;
  margin-right: 20px;
}
.choose-list>li .choose-box {
  display: block;
  overflow: hidden;
}
.choose-list>li .choose-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 20px;
  color: var(--color3);
  font-weight: bold;
}
.choose-list>li .choose-box>div {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: var(--color3);
  min-height: 112px;
  margin-top: 10px;
}
.choose .more>a {
  margin: 0 5px;
}
.choose .more>a:first-child {
  border-color: var(--color-hover);
  background-color: var(--color-hover);
  color: #fff;
}

@media (max-width: 1240px) {
  .choose-list {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .choose {
    padding: 30px 0;
  }
  .choose-list {
    margin-top: 30px;
  }
  .choose-list>li {
    padding: 0 15px;
  }
  .choose-list>li .choose-box>div {
    line-height: 24px;
    min-height: 96px;
  }
}
@media (max-width: 767px) {
  .choose {
    padding: 15px 0;
  }
  .choose-list {
    margin-top: 10px;
  }
  .choose-list>li {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .choose-list>li .choose-icon {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }
  .choose-list>li .choose-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .choose-list>li .choose-box>div {
    line-height: 22px;
    font-size: 14px;
    min-height: 44px;
    margin-top: 5px;
  }
}

/* 甫盛物联优势 */
.advantage {
  background-image: url(../images/advantage-bj.png);
  background-position: center bottom;
  background-size: 1920px 375px;
  padding: 35px 0;
}
.advantage-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  margin-top: 40px;
  padding: 0 15px;
  font-size: 16px;
  color: var(--color3);
  line-height: 35px;
  min-height: 658px;
}
.advantage-content>img {
  width: 46.9285%;
  float: left;
  margin-right: 35px;
}
.advantage-content>div {
  flex: 1;
}

.advantage-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 20px;
}
.advantage-list>li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantage-list>li .advantage-icon {
  width: 100%;
  display: block;
  overflow: hidden;
  height: 108px;
  position: relative;
}
.advantage-list>li>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.advantage-list>li .advantage-text {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .advantage {
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  .advantage {
    padding: 15px 0;
    background-size: 1920px 250px;
  }
  .advantage-content {
    margin-top: 10px;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    min-height: 658px;
  }
  .advantage-content>img {
    width: 100%;
    margin-right: 0;
  }
  .advantage-content>div {
    width: 100%;
    margin-top: 10px;
  }
  .advantage-list {
    margin-top: 10px;
    justify-content: space-between;
  }
  .advantage-list>li {
    width: 30%;
  }
  .advantage-list>li .advantage-icon {
    height: 50px;
  }
  .advantage-list>li>h1 {
    line-height: 24px;
    margin-top: 10px;
    font-size: 16px;
  }
  .advantage-list>li .advantage-text {
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
  }
}

/* 关于甫盛 */
.about {
  background-image: url(../images/about-bj.png);
  background-position: right center;
  background-size: auto;
  padding: 40px 0 70px 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.about-left {
  width: calc(50% - 30px);
  overflow: hidden;
  position: relative;
}
.about-left::before {
  content: "";
  display: block;
  padding-top: 54.19355%;
}
.about-right {
  width: 50%;
  display: flex;
  align-items: center;
}
.about-box {
  width: 100%;
  max-width: 730px;
  padding: 30px;
  padding-left: 0;
}
.about-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-main);
}
.about-box .about-text {
  display: block;
  overflow: hidden;
  line-height: 28px;
  height: 336px;
  font-size: 16px;
  color: var(--color3);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
}
.about .more {
  margin-top: 15px;
  justify-content: flex-start;
}

@media (max-width: 1240px) {
  .about {
    padding: 40px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-content {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-left {
    width: 100%;
  }
  .about-right {
    width: 100%;
  }
  .about-box {
    padding: 15px;
  }
  .about-box .about-text {
    height: auto;
    line-height: 24px;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  .about-box .more {
    justify-content: center;
  }
  .about-box .more>a {
    max-width: 140px;
  }
}

/* 应用场景 */
.application {
  background-image: url(../images/application-bj.jpg);
  padding: 75px 0;
}
.application-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 50px;
}
.application-list>li {
  width: 110px;
  cursor: pointer;
  margin-bottom: 30px;
}
.application-list>li .application-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color3);
  border-radius: 50%;
  background: url(../images/application-li.png) no-repeat center center #fff;
}
.application-list>li .application-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.application-list>li .application-icon>img:first-child {
  opacity: 1;
}
.application-list>li .application-icon>img:last-child {
  opacity: 0;
}
.application-list>li>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.application-list>li:hover .application-icon {
  background: var(--color-hover);
  border-color: var(--color-hover);
}
.application-list>li:hover .application-icon>img:first-child {
  opacity: 0;
}
.application-list>li:hover .application-icon>img:last-child {
  opacity: 1;
}

@media (max-width: 1440px) {
  .application {
    padding: 60px 0;
  }
}
@media (max-width: 1240px) {
  .application {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .application {
    padding: 30px 0;
  }
  .application-list {
    margin-top: 30px;
  }
  .application-list>li {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .application {
    padding: 15px 0;
  }
  .application-list {
    margin-top: 10px;
    justify-content: space-between;
  }
  .application-list>li {
    width: calc(100% / 3);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .application-list>li .application-icon {
    width: 100%;
    max-width: 110px;
  }
}

/* 解决方案/资源中心/技术支持 */
.index-box {
  padding: 25px 0;
}
.index-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 32px);
  margin-left: -16px;
}
.index-list>li {
  width: calc(calc(100% / 3) - 32px);
  margin: 0 16px 15px 16px;
}
.index-list>li .index-title {
  display: block;
  overflow: hidden;
  line-height: 42px;
  font-size: 26px;
  color: var(--color3);
  font-weight: bold
}
.index-list>li .index-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}
.index-list>li .index-img::before {
  content: "";
  display: block;
  padding-top: 39.101124%;
}
.index-list>li>dl {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.index-list>li>dl>dd {
  display: block;
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d6d6d9;
}
.index-list>li>dl>dd:last-child {
  padding: 0;
  margin: 0;
  border: none;
}
.index-list>li>dl>dd>a {
  display: block;
  overflow: hidden;
}
.index-list>li>dl>dd>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  color: var(--color3);
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-list>li>dl>dd>a>div {
  display: block;
  overflow: hidden;
  height: 56px;
  line-height: 28px;
  font-size: 16px;
  color: var(--color3);
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index-list>li>dl>dd>a:hover>h1 {
  color: var(--color-hover);
}
.index-list>li .more {
  justify-content: flex-start;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .index-box {
    padding: 15px 0;
  }
  .index-list {
    width: 100%;
    margin-left: 0;
  }
  .index-list>li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .index-list>li .index-title {
    line-height: 30px;
    font-size: 18px;
  }
  .index-list>li>dl {
    margin-top: 10px;
  }
  .index-list>li>dl>dd {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .index-list>li>dl>dd>a>div {
    height: 44px;
    line-height: 22px;
    font-size: 14px;
    margin-top: 5px;
  }
  .index-list>li .more {
    margin-top: 10px;
  }
  .index-list>li .more>a {
    max-width: 140px;
  }
}

/* 定制您的智能化需求 */
.customized {
  background-image: url(../images/customized-bj.jpg);
  padding: 50px 0 25px 0;
}
.customized-title {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 26px;
  color: #fff;
  font-weight: bold;
}
.customized-form {
  width: calc(100% + 32px);
  margin-left: -16px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.customized-form>label {
  width: calc(calc(100% / 3) - 32px);
  margin: 0 16px 15px 16px;
  display: flex;
  flex-direction: column;
  line-height: 22px;
  font-size: 16px;
  color: #fff;
}
.customized-form>label>input {
  width: 100%;
  display: block;
  margin-top: 10px;
  height: 50px;
  border: 1px solid #d6d6d9;
  padding: 0 30px 0 15px;
  font-size: 16px;
  color: var(--color3);
  overflow: hidden;
  background: url(../images/customized-icon.png) no-repeat right center #fff;
}
.customized-btn {
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.customized-btn>button {
  width: 236px;
  height: 54px;
  background-color: var(--color-hover);
  font-size: 16px;
  color: #fff;
}

@media (max-width: 991px) {
  .customized {
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  .customized {
    padding: 15px 0;
  }
  .customized-title {
    line-height: 30px;
    font-size: 20px;
    text-align: center;
  }
  .customized-form {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .customized-form>label {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .customized-form>label>input {
    margin-top: 5px;
    height: 40px;
    font-size: 14px;
  }
  .customized-btn {
    margin-top: 10px;
  }
  .customized-btn>button {
    width: 100%;
    height: 40px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
}
.place-title {
  width: 100%;
  float: left;
  padding: 35px 0;
  line-height: 30px;
  font-size: 16px;
  color: var(--color3);
  border-bottom: 1px solid var(--colorC);
}
.place-nav{
  width: 100%;
  float: left;
}
.place-nav>li>a {
  color: var(--color3);
}
.place-nav>li>a::after {
  background-color: var(--color-main);
}
.place-nav>li.product-active>a {
  color: var(--color-main);
}

.place-content {
  width: 100%;
  float: left;
  padding: 50px 0;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: var(--color3);
}

@media (max-width: 991px) {
  .place-title {
    padding: 20px 0;
  }
  .place-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%);
  }

  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品中心 */
/* 智能网关 */
.gateway>.container {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d9d9d9;
  padding: 40px 0;
}
.gateway-title {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-top: 16px;
}
.gateway-content {
  display: block;
  font-size: 16px;
  color: var(--color3);
  line-height: 28px;
  margin-top: 30px;
}
.gateway-content>img {
  width: 50%;
  float: right;
  display: block;
  height: auto;
  padding: 0 20px;
  margin-top: -86px;
}

@media (max-width: 767px) {
  .gateway>.container {
    padding: 15px 0;
  }
  .gateway-title {
    line-height: 30px;
    font-size: 20px;
    margin-top: 0;
    text-align: center;
  }
  .gateway-content {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .gateway-content>img {
    width: 100%;
    float: none;
    padding: 0;
    margin: 0 0 10px 0;
  }
}

/* 甫盛智能网关 */
.product-gateway {
  padding-top: 25px;
}
.product-gateway-title {
  display: block;
  overflow: hidden;
  text-align: center;
  color: var(--color3);
}
.product-gateway-title>h1 {
  line-height: 40px;
  font-size: 30px;
  font-weight: bold;
}
.product-gateway-title>div {
  margin-top: 25px;
  font-size: 16px;
  line-height: 28px;
}
.product-gateway .product-nav {
  margin-top: 30px;
}
.product-gateway .product-nav>li>a {
  color: var(--color3);
}
.product-gateway .product-nav>li>a::after {
  background-color: var(--color-main);
}
.product-gateway .product-nav>li.product-active>a,
.product-gateway .product-nav>li>a:hover  {
  color: var(--color-main);
}

.product-gateway-list {
  display: flex;
  flex-wrap: wrap;
  width: 1420px;
/*  margin-top: 40px;*/
}
.product-gateway-list>li {
  width: 335px;
  margin: 0 20px 40px 0;
}
.product-gateway-list>li a {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-color: #fff;
  padding: 1px;
}
.product-gateway-list>li a::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #d6d6d9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.product-gateway-list>li a::after {
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
}
.product-gateway-list>li a .img::before {
  padding-top: 64.1791045%;
}
.product-gateway-list>li a .product-box {
  display: block;
  overflow: hidden;
  padding: 20px 15px;
}
.product-gateway-list>li a .product-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 16px;
  color: #003a96;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-gateway-list>li a .product-box>div {
  display: block;
  overflow: hidden;
  margin-top: 10px;
}
.product-gateway-list>li a .product-box>div>p {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 16px;
  color: var(--color6);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-gateway-list>li a .product-box>div>p>span {
  float: left;
  color: var(--color3);
}
.product-gateway-list>li a:hover::after {
  width: 100%;
}

@media (max-width: 1440px) {
  .product-gateway-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-gateway-list>li {
    width: 23%;
    margin: 0 1% 40px 1%;
  }
}
@media (max-width: 1240px) {
  .product-gateway-list>li {
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 991px) {
  .product-gateway-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 20px 1%;
  }
}
@media (max-width: 767px) {
  .product-gateway {
    padding: 15px 0;
  }
  .product-gateway-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-gateway-title>div {
    margin-top: 0;
    font-size: 14px;
    line-height: 24px;
  }
  .product-gateway .product-nav {
    margin-top: 10px;
  }
  .product-gateway-list {
    width: 100%;
    margin: 10px 0 0 0;
    justify-content: space-between;
  }
  .product-gateway-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-gateway-list>li a .product-box {
    padding: 10px;
  }
  .product-gateway-list>li a .product-box>div {
    margin-top: 5px;
  }
  .product-gateway-list>li a .product-box>div>p {
    line-height: 20px;
    font-size: 12px;
  }
}

/* 产品列表 */
.priduct-main-list {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
}
.priduct-main-list .product-gateway-title>h1 {
  color: var(--color-main);
}
.priduct-main-list .product-gateway-title>div {
  margin-top: 15px;
}
.priduct-main-list .product-nav {
  margin-top: 30px;
}
.priduct-main-list .product-nav>li>a {
  color: var(--color3);
}
.priduct-main-list .product-nav>li>a::after {
  background-color: var(--color-main);
}
.priduct-main-list .product-nav>li.product-active>a {
  color: var(--color-main);
}

@media (max-width: 767px) {
  .priduct-main-list {
    padding: 15px 0;
  }
  .priduct-main-list .product-gateway-title>div {
    margin-top: 10px;
  }
  .priduct-main-list .product-nav {
    margin-top: 10px;
  }
}

/* 产品详情 */
.product-details-main .place-title {
  border-bottom: none;
  border-top: 1px solid var(--colorC);
}

.product-details {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0;
}
.product-details-left {
  width: 50%;
  float: left;
  position: relative;
}
.product-details-left::before {
  content: '';
  display: block;
  padding-top: 42.857143%;
}
.product-details-right {
  width: 50%;
  padding: 30px 10px;
  padding-right: 0
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: var(--color3);
  font-weight: bold;
  margin-top: 25px;
}
.product-details-text {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 28px;
  color: var(--color3);
  margin-top: 20px
}

.product-details-content {
  width: 100%;
  float: left;
  margin-top: 20px;
  font-size: 16px;
  line-height: 28px;
  color: #333
}
.product-details-content img{
  max-width: 100% !important;
	height: auto !important;
}
.product-details-content table{
  max-width: 100% !important;
	height: auto !important;
  border-collapse:collapse !important;
}
.product-details-content table td{
  border: 1px #ccc solid !important;
	padding: 5px !important;
}
.product-details-title {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  border-top: 1px solid #d9d9d9;
}
.product-details-title>span {
  float: left;
  min-width: 164px;
  text-align: center;
  padding: 0 15px;
  height: 46px;
  line-height: 46px;
  background-color: var(--color-main);
  font-size: 16px;
  color: #fff;
}
.product-details-content>img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
.product-details-content>h1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.product-details-content>h2 {
  font-weight: bold;
}

@media (max-width: 1240px) {
  .product-details {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .product-details {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .product-details {
    padding: 15px 0;
  }
  .product-details-left {
    width: 100%;
  }
  .product-details-right {
    width: 100%;
    padding: 0;
  }
  .product-details-right>h1 {
    line-height: 24px;
    margin-top: 10px;
  }
  .product-details-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .product-details-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    min-width: 120px;
    height: 40px;
    line-height: 40px;
  }
  .product-details-content>h1 {
    font-size: 16px;
    margin-bottom: 10px;
  }







}
/* END-产品中心 */

/* 解决方案/资源中心/技术支持 */
.info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info-list>li {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--colorC);
}
.info-list>li>a {
  width: 100%;
  float: left;
  display: flex;
}
.info-list>li>a .info-img {
  width: 30%;
  overflow: hidden;
  position: relative;
}
.info-list>li>a .info-box {
  width: 70%;
  padding-left: 20px;
}
.info-list>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: var(--color3);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list>li>a .info-box .info-text {
  display: block;
  overflow: hidden;
  height: 90px;
  line-height: 30px;
  font-size: 14px;
  color: var(--color6);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}
.info-list>li>a .info-box .info-time {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: var(--color9);
}
.info-list>li>a:hover .info-img>img {
  transform: scale(1.1);
}
.info-list>li>a:hover .info-box>h1 {
  color: var(--color-main);
  font-weight: bold;
}

.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: 1240px) {
  .info-list>li>a .info-img {
    width: 40%;
  }
  .info-list>li>a .info-box {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .info-list>li {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .info-list>li>a .info-img {
    width: 40%;
  }
  .info-list>li>a .info-box {
    width: 60%;
    padding-left: 15px;
  }
  .info-list>li>a .info-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .info-list>li>a .info-box .info-text {
    height: 48px;
    line-height: 24px;
    -webkit-line-clamp: 2;
    margin: 4px 0;
  }
  .info-list>li>a .info-box .info-time {
    font-size: 12px;
  }

  .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: 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-联系我们 */