@charset "utf-8";

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  max-height: 100%;
  scroll-behavior: smooth;
}

:root {
  --green: #91c42f;
  --orange: #ff7d34;
  --yellow: #fca700;
  --red: red;
  --white: #fff;
  --black: #333;
  --grey: #f5f5f5;
  --darkgrey: #999;
  --fontSize-12: 12px;
  --fontSize-14: 14px;
  --fontSize-15: 15px;
  --fontSize-16: 16px;
  --fontSize-18: 18px;
  --fontSize-20: 20px;
  --fontSize-22: 22px;
  --fontSize-24: 24px;
  --fontSize-26: 26px;
  --fontSize-28: 28px;
  --fontSize-30: 30px;
  --fontSize-32: 32px;
  --fontSize-34: 34px;
  --fontSize-36: 36px;
  --fontSize-38: 38px;
  --fontSize-40: 40px;
  --fontSize-42: 42px;
  --fontSize-48: 48px;
  --fontSize-64: 64px;
  --grey444: #444;
  --grey666: #666;
  --grey999: #999;
  --greyccc: #ccc;
  --greyeee: #eee;
  --greyddd: #ddd;
  --lh140: 140%;
  --lh160: 160%;
  --lh180: 180%;
  --lh200: 200%;
  --lh220: 220%;
  --vh100: 100vh;
}


body {
  color: var(--black);
}

body,
button,
input,
select,
textarea,
.form-select,
.form-control,
.btn {
  font-family: pingfang SC,
    helvetica neue,
    arial,
    hiragino sans gb,
    microsoft yahei ui,
    microsoft yahei,
    simsun,
    sans-serif;
  font-size: var(--fontSize-16);
}

body,
p,
h1,
ul,
li,
input,
img,
figure,
h3,
h1,
h2,
h4,
h5,
h6,
dl,
dd,
dt {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="reset"],
input[type="button"],
textarea {
  -webkit-appearance: none;
}


address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}


small {
  font-size: 12px;
}

ul,
ol {
  list-style: none;
}

sub {
  bottom: 0
}

a {
  text-decoration: none;
  color: #010114
}

a:hover {
  color: var(--green);
  text-decoration: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

abbr[title] {
  border-bottom: 1px dotted;
  cursor: footer-help;
}

legend {
  color: var(--textColor);
}

fieldset,
img {
  border: 0;
  max-width: 100%;
}

a img {
  vertical-align: text-bottom;
}


textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

button,
input,
select,
textarea {
  font-size: 100%;
}

button,
input,
select {
  vertical-align: middle;
}


caption,
th {
  text-align: left;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.text-green {
  color: var(--green);
}

.text-red {
  color: var(--red);
}

.text-orange {
  color: var(--orange);
}

.text-grey {
  color: var(--grey);
}

.text666 {
  color: var(--grey666)
}

.text999 {
  color: var(--grey999);
}

.bg-grey {
  background: var(--grey);
}

.bg-green {
  background: var(--green);
}

.text-capital {
  text-transform: uppercase
}

.arial {
  font-family: Arial, Helvetica, sans-serif;
}

.fw-900 {
  font-weight: 900;
}

.lh140 {
  line-height: 140%;
}

.lh160 {
  line-height: 160%;
}

.lh180 {
  line-height: 180%;
}

.lh200 {
  line-height: 200%;
}

.lh220 {
  line-height: 220%;
}

.pt-item {
  padding-top: 80px !important;
}

.pb-item {
  padding-bottom: 80px !important;
}


/**************滚动条样式**********/

::-webkit-scrollbar {
  width: 10px;
  height: 1px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .3);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, .1);
}

/**************框架公用样式**********/
.photo em {
  display: block;
  overflow: hidden;
}

.photo img {
  transition: 0.5s;
}

.photo:hover img {
  transform: scale(1.1);
}

.iconfont {
  font-size: inherit;
}

.container-fluid {
  max-width: 1630px;
}

.container-fluid-min {
  max-width: 1230px;
}

header {
  background: var(--white);
  box-shadow: 0 0 3px rgba(0, 0, 0, .15);
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
}

header .logo img {
  height: 33px;
}

header .logo section h1 {
  font-size: 25px;
  font-weight: 900;
}

.nav li {
  position: relative;
  font-size: var(--fontSize-18);
}

.nav li a {
  display: block;
  height: 80px;
  line-height: 80px;
  text-align: center;
  padding: 0 30px;
}

.nav li a i {
  transform: rotate(90deg);
  display: inline-block;
  font-size: var(--fontSize-14);
  margin-left: 10px;
}

.nav li:hover a,
.nav .current {
  color: var(--green);
  font-weight: bolder
}

.nav li .current i,
.nav li:hover i {
  font-weight: normal;
}

.nav li ul {
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 1000;
  border-radius: 0 0 5px 5px;
  display: none;
  box-shadow: 0 15px 20px -8px rgba(0, 0, 0, .1);
  background-color: #fff;
  border: 0 solid #000;
}

.nav li ul li {
  width: 180px
}

.nav li ul li a {
  padding: 0 15px;
}

.nav li:hover ul {
  display: block;
  top: 80px;
}

.nav li:hover ul li {
  margin: 0;

}

.nav li:hover ul li a {
  height: 35px;
  width: 100%;
  line-height: 35px;
  color: #333;
  opacity: 1;
  font-size: var(--fontSize-15);
  position: relative;
  z-index: 2;
  border-bottom: 0;
}


.nav li ul li:hover a,
.nav li ul li a.current {
  color: var(--green);
}

/**************手机导航**********/

.sp_nav,
.sjj_nav {
  display: none;
}

.sp_nav {
  width: 32px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  color: #fff;
  z-index: 999
}

.sp_nav_se {
  top: 0;
}

.sp_nav span {
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  transition: all ease 0.35s
}

.sp_nav span {
  background: #333;
}

.sp_nav_se span {
  width: 24px;
  background: #fff;
}

.sp_nav span:nth-of-type(1) {
  top: 0px
}

.sp_nav span:nth-of-type(2) {
  top: 8px
}

.sp_nav span:nth-of-type(3) {
  top: 16px
}

.sp_nav_se span:nth-of-type(1) {
  top: 20px;
  transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
  width: 0
}

.sp_nav_se span:nth-of-type(3) {
  top: 20px;
  transform: rotate(-45deg)
}

.sjj_nav {
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 100vh;
  line-height: 40px;
  top: -120vh;
  left: 0;
  right: 0;
  overflow: auto;
  overflow-x: hidden;
  transition: top ease 0.35s;
  margin: 0 auto
}

.nav_show {
  top: 0;
  padding: 60px 20px;
  background: #333
}

.sjj_nav>ul>li:first-child {
  overflow: hidden;
  border-top: 0
}

.sjj_nav a.sjj_nav_link {
  width: 100%;
  display: block;
}

.sjj_nav ul li i {
  position: absolute;
  right: 0px;
  top: 0;
  width: 50%;
  text-align: right;
  color: rgba(255, 255, 255, .5);
  transform: rotate(0);
  transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se+i {
  transform: rotate(90deg)
}

.sjj_nav ul li {
  position: relative;
  line-height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.sjj_nav ul li ul {
  display: none
}

.sjj_nav ul li a {
  color: #ccc;
  display: block;
}

.sjj_nav ul li li {
  margin-left: 20px;
}

.sjj_nav ul li li:last-child {
  border-bottom: none;
}

.sjj_nav ul li ul li a {
  color: #999;
  text-align: left;
}

.sjj_nav ul li i svg {
  width: 20px;
  height: 20px;
  fill: #555;
}

.header-tel i {
  font-size: 35px;
}

.header-tel h5 {
  font-size: var(--fontSize-18);
  line-height: 110%;
}

.banner {
  padding-top: 80px;
}

.banner .swiper-container {
  height: calc(100vh - 76px);
}

.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 150px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: .6;
}

.banner .swiper-pagination-bullet {
  background: var(--white);
}

.swiper-pagination-bullet-active,
.banner .swiper-pagination-bullet-active {
  background: var(--green);
}

.banner-video {
  height: 100%;
  object-fit: cover;
}

.banner-zc {
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 5;
}

.advantage-list {
  gap: 2%;
  z-index: 5;
  margin-top: -120px;
}

.advantage-list li {
  width: 19%;
  background: var(--white);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, .08);
  border-radius: 10px;
  padding: 50px 20px;
}

.advantage-list li i {
  font-size: 80px;
  color: var(--green);
}

.advantage-list li:hover {
  background: var(--green);
}

.advantage-list li:hover i,
.advantage-list li:hover {
  color: var(--white);
}

.project-name h2 {
  font-size: var(--fontSize-42);
  margin-bottom: 15px;
}

.project-name span {
  font-size: var(--fontSize-18);
  display: block;
}

.project-name h4 {
  font-size: var(--fontSize-22);
}

.industry-list {
  width: 60%;
  padding-bottom: 60px;
}

.industry-list-menu {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  cursor: pointer;
}

.industry-list-menu h4 {
  font-size: var(--fontSize-26);
}

.industry-list-menu i {
  font-size: var(--fontSize-20);
}

.industry-list ul {
  width: 305px;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 110px;
  display: none;
}

.industry-list ul li a {
  width: 100%;
}

.industry-list ul li a {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
}


.industry-list ul li,
.industry-list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.industry-list ul li a:hover {
  opacity: .8;
}

.industry-list:hover ul {
  display: block;
}

.industry-img {
  margin-top: -40px;
}

.solution-list ul {
  gap: 2%;
  margin-top: 20px;
}

.solution-list li {
  width: 32%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 32%;
  transition: .3s;
  margin-top: 30px;
}

.solution-list li,
.solution-list li a {
  color: var(--white);
}

.solution-list li img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
}

.solution-list li article {
  position: absolute;
  width: 100%;
  z-index: 5;
  padding: 25px;
  bottom: 0;
  background: linear-gradient(to top, rgba(145, 196, 47, .6), rgba(145, 196, 47, 0));
}

.solution-list li article h3 {
  font-size: var(--fontSize-30);
  margin-bottom: 10px;
}

.solution-list li .click-more {
  margin-top: 10px;
  display: block;
  font-size: var(--fontSize-18);
}

.solution-list li .click-more:hover {
  color: var(--green);
}

.solution-list li .click-more i {
  transition: .3s;
  display: inline-block;
}

.solution-list li .click-more:hover i {
  margin-left: 10px !important;
}

.solution-list li section {
  font-size: var(--fontSize-20);
  display: none;
}

.solution-list li article section a,
.solution-list li:hover section {
  display: block;
}

.solution-list li article section a:hover {
  opacity: .6;
}

.ad-technology .swiper-slide {
  height: 660px;
}

.ad-technology .swiper-slide section {
  color: var(--white);
  padding-top: 150px;
}

.ad-technology .swiper-slide section h3 {
  font-size: var(--fontSize-30);
  margin: 20px 0 40px;
}

.ad-technology .swiper-container {
  padding-bottom: 50px;
}

.click-more1 {
  background: var(--green);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 5px;
  transition: .3s;
  display: inline-block;
}

.click-more1:hover {
  background: #80b818;
  color: var(--white);
}

.service-list .swiper-button-prev,
.service-list .swiper-button-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--white);
  font-size: var(--fontSize-22);
  color: var(--green);
  border-radius: 50%;
}

.service-list .swiper-slide {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.service-list .swiper-slide figure {
  display: none !important;
  position: absolute;
  bottom: 0;
  z-index: 5;
  padding: 30px 60px 60px;
  color: var(--white);
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
}

.service-list .swiper-slide figure section {
  width: 200px;
}

.service-list .swiper-slide figure section h3 {
  line-height: 1.2;
}

.service-list .swiper-slide figure p {
  width: calc(100% - 300px);
  line-height: 180%;
}

.service-list .swiper-slide figure a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: var(--green);
  font-size: var(--fontSize-20);
  color: var(--white);
  transition: .3s;
}

.service-list .swiper-slide figure a:hover {
  background: #80b818;
}

.service-list .swiper-slide-active figure {
  display: flex !important;
}

.service-list .swiper-button-next {
  right: 23%;
}

.service-list .swiper-button-prev {
  left: 23%;
}

footer,
footer a {
  color: var(--white);
}

footer {
  font-size: var(--fontSize-18);
  padding-top: 50px;
}

footer dl dd,
footer .footer-logo-contact p {
  line-height: 180%;
}

footer dl dt {
  font-size: var(--fontSize-20);
  margin-bottom: 15px;
}

footer a:hover {
  color: var(--white);
  opacity: .8;
}

footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, .5);
  padding: 20px 0;
  margin-top: 40px;
}

.solution-list-about {
  padding-top: 130px;
}

.solution-list-about ul {
  gap: 1.5%;
}

.solution-list-about li {
  width: 23.875%;
  padding-bottom: 23.875%;
}

.solution-list-about li article h3 {
  font-size: var(--fontSize-24);
}

.solution-list-about li:hover .click-more {
  color: var(--green);
}

.solution-list-about li:hover .click-more i {
  margin-left: 10px !important;
}

.min-banner {
  color: var(--white);
  /* height: 500px; */
  margin-top: 80px;
}

.min-banner .container-fluid {
  position: relative;
  z-index: 5;
  left: 0;
  right: 0;
}


.min-banner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
}

.min-banner .crumb-list {
  bottom: 10px;
  font-size: var(--fontSize-18);
}

.min-banner .crumb-list,
.min-banner .crumb-list a {
  color: var(--white)
}

.min-banner .crumb-list a:hover {
  color: var(--green);
}

.whois-num ul {
  gap: 2%;
}

.whois-num li {
  width: 19%;
  background: var(--white);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, .08);
  border-radius: 10px;
  padding: 50px 20px;
}

.whois-num li i {
  font-size: 80px;
  color: var(--green);
}

.whois-num li h2 {
  font-size: var(--fontSize-42);
}

.whois-num li:hover {
  background: var(--green);
}

.whois-num li:hover,
.whois-num li:hover i {
  color: var(--white);
}

.main-content {
  font-size: var(--fontSize-18);
  font-weight: bolder;
}

.main-content p {
  line-height: inherit;
}

.fqa-list .list-item {
  background: #e6e7e8;
  padding: 0 30px;
  border-radius: 10px;
}

.fqa-list .list-item .list-item-header {
  padding: 20px 0;
  cursor: pointer;
}

.fqa-list .list-item .list-item-header i {
  font-size: var(--fontSize-22);
  color: var(--darkgrey);
  transition: .3s;
}

.fqa-list .list-item .list-item-header.active i {
  transform: rotate(90deg);
}

.fqa-list .list-item .list-item-header h5 {
  font-size: var(--fontSize-22);
}

.fqa-list .list-item+.list-item {
  margin-top: 15px;
}

.fqa-list .list-item .list-item-content {
  font-size: var(--fontSize-18);
  font-weight: bolder;
  padding: 20px 0;
  display: none;
  border-top: 1px solid #ccc;
}

.list-item-header.active+.list-item-content {
  display: block;
}

.value-ad {
  height: 500px;
}

.value-ad h2 {
  font-size: var(--fontSize-42);
}

.value-text {
  border-radius: 10px;
  padding: 60px 50px;
  font-size: var(--fontSize-18);
  font-weight: bolder;
}

.value-text section {
  width: 48%;
  text-indent: 36px;
}

.value-text section:first-child {
  color: var(--green);
}

.click-more2 {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 5px 15px;
  border-radius: 50em;
  display: inline-block;
  transition: .3s;
}

.click-more2:hover {
  background: var(--green);
  color: var(--white);
}

.products-list li {
  width: 33.33%;
  border-bottom: 1px solid rgba(145, 196, 47, .6);
  padding: 40px 0;
}


.products-list li section {
  border-right: 1px solid rgba(145, 196, 47, .6);
  padding: 0 30px;
}

.products-list li:nth-child(3n) section {
  border-right: 0;
}

.products-list li em {
  border-bottom: 1px solid rgba(145, 196, 47, .6);
}

.blank-filling {
  height: 20px;
  margin-top: -10px;
}

.development-ad {
  height: 650px;
  padding-top: 130px;
}

.dyx-content img,
.dyx-content section {
  width: 46%;
}

.contact-list {
  padding-top: 130px;
}

.contact-list li {
  padding: 30px 100px;
}

.contact-list li p {
  font-size: var(--fontSize-20);
  font-weight: bolder;
}

.contact-list li h5:first-child {
  border-bottom: 2px solid var(--green);
  display: inline-block;
  padding-bottom: 5px;
}

.contact-list li+li,
.contact-us li+li {
  border-left: 1px solid #ddd;
}

.contact-us li {
  padding: 30px 60px;
}

.contact-us li i {
  font-size: 80px;
}

.contact-us li h5 {
  color: #666;
}

.join-list li {
  width: 32%;
}

.join-list li em {
  position: relative;
  padding-bottom: 65%;
}

.join-list li em img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-list li section {
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 0;
}

.join-list li section p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 96px;
}

.join-table table tr th {
  font-size: var(--fontSize-24);
  color: var(--green);
  padding: 15px 10px;
}

.join-table table thead th {
  background: #f2f6f8;
  border: 1px solid #dee2e6;
  border-bottom-color: #dee2e6 !important;
  white-space: nowrap;
}

.join-table table tr td {
  font-size: var(--fontSize-18);
  padding: 12px 10px;
  border: 1px solid #dee2e6;
}

.news-list {
  padding-top: 130px;
}

.menu-list a {
  background: var(--greyccc);
  padding: 10px 20px;
  font-size: var(--fontSize-18);
  border-radius: 5px;
  margin: 0 15px;
}

.menu-list a:hover,
.menu-list a.current {
  background: var(--green);
  color: var(--white);
}

.news-list ul {
  gap: 2%;
}

.news-list li {
  width: 32%;
  margin-bottom: 30px;
}

.news-list li em {
  position: relative;
  padding-bottom: 65%;
}

.news-list li em img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.news-list li section {
  padding: 30px;
  background: #f1f1f1;
}

.news-list li section h4 {
  font-size: var(--fontSize-20);
}

.news-list li section p {
  margin: 20px 0;
  font-size: var(--fontSize-16);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #666;
}

.news-list li section span {
  font-size: var(--fontSize-18);
  font-weight: bold;
  color: var(--darkgrey);
}

.news-list li .news-more {
  display: flex;
  padding-left: 30px;
  color: var(--white);
  font-size: var(--fontSize-18);
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e4e3e3;
}

.news-list li .news-more i {
  font-size: var(--fontSize-28);
  color: var(--green);
  display: inline-block;
  margin-top: 15px;
  transition: .3s;
  font-weight: normal;
}

.news-list li .news-more b {
  width: 100px;
  height: 0;
  /* 透明边框 + 有色边框组合出梯形形状 */
  border-bottom: 60px solid #f1f1f1;
  /* 绿色底边，高度对应梯形高度 */
  border-left: 40px solid transparent;
  /* 左侧透明斜边，宽度控制倾斜程度 */
  border-right: 0 solid transparent;
  /* 右侧无边框，保持垂直 */
  border-top: 0 solid transparent;
}

.news-list li:hover .news-more i {
  margin-left: 10px;
}

.news-show {
  padding-top: 130px;
}

.related-articles {
  box-shadow: 0 0 10px rgba(0, 0, 0, .08);
  border-radius: 5px;
  padding: 30px 15px;
}

.related-articles li a {
  display: flex;
  align-items: center;
}

.related-articles li a em {
  margin: 0 15px;
}

.related-articles li a img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.related-articles li a section {
  width: 165px;
}

.related-articles li a span {
  color: #999;
  margin-top: 5px;
  display: inline-block;
}

.product-menu {
  width: 280px;
}

.product-menu h4 {
  padding: 10px 15px;
}

.product-menu h4 i {
  float: right;
  font-weight: normal;
  display: none;
}

.product-menu section {
  border: 1px solid #eee;
  border-radius: 0 0 5px 5px;
  border-top: 0;
}

.product-menu section a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: var(--fontSize-20);
}

.product-menu section a:hover,
.product-menu section a.current {
  color: var(--green);
}

.product-menu section a:last-child {
  border: 0;
}

.product-menu section a i {
  color: var(--green);
  margin-right: 10px;
}

.product-center-list {
  width: calc(100% - 320px);
}

.products-list-name {
  border-bottom: 2px solid var(--green);
  padding: 2px 0;
  border-radius: 0 0 0 12px;
}

.products-list-name h2 {
  margin-left: 5px;
  border-radius: 10px;
  padding-left: 10px;
  margin-bottom: -2px;
  position: relative;
  z-index: 5;
}

.products-list-name::after {
  content: '';
  background: #91c42f;
  border-radius: 10px 0 0 10px;
  display: inline-block;
  position: absolute;
  height: 100%;
  width: 65px;
  z-index: -1;
  left: 0;
  top: 0;
}

.product-center-content {
  font-size: var(--fontSize-16);
}

.products-dec img {
  width: 460px;
}

.products-dec figure {
  width: calc(100% - 500px);
}

.products-dec figure a {
  padding: 6px 15px;
  border: 1px solid var(--green);
  border-radius: 5px;
  color: var(--green);
  margin-right: 5px;
}

.products-dec figure a:hover,
.products-dec figure a.current {
  background: var(--green);
  color: var(--white);
}

.product-center-content li {
  line-height: 180%;
}

.product-center-content li::before {
  content: '•';
  color: var(--green);
  display: inline-block;
  margin-right: 10px;
}

.main-content .table {
  border-radius: 10px;
}

.main-content .table thead {
  background: var(--green);
  color: var(--white);
  font-size: var(--fontSize-22);
}

.advantage-list-pro li {
  padding: 0 30px;
}

.advantage-list-pro li+li {
  border-left: 1px solid #eee;
}

.advantage-list-pro li i {
  font-size: 80px;
  color: var(--green);
}

.application-list section {
  width: 42%;
  font-size: var(--fontSize-16);
}

.application-list-name {
  display: inline-block;
}

.application-list-name::after {
  content: '';
  height: 2px;
  background: var(--green);
  display: block;
}

.application-list section p {
  margin-bottom: 15px;
}

.application-list li {
  line-height: 180%;
}

.application-list li::before,
.main-content li::before,
.list-item-content li::before {
  content: '•';
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
}

.guolv-list ul {
  gap: 2%;
  padding-top: 70px;
  padding-bottom: 70px;
}

.guolv-list li {
  background: var(--white);
  width: 32%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.guolv-list li em {
  position: relative;
  padding-bottom: 65%;
}

.guolv-list li em img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.guolv-list li section {
  padding: 40px;
}

.guolv-list li section h3 {
  font-size: var(--fontSize-26);
  margin: 15px 0 30px;
}

.guolv-list li section p {
  font-size: var(--fontSize-18);
  line-height: 180%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guolv-list li .click-more3 {
  padding: 15px 35px;
  border-top: 1px solid #eee;
  font-size: var(--fontSize-18);
  color: var(--green);
}

.guolv-list li .click-more3 i {
  font-size: var(--fontSize-22);
}

.cyj-content {
  width: 60%;
}

.glbussiness {
  padding-top: 130px;
}

.page {
  width: 100%;
  padding: 50px 0 15px 0;
  text-align: center;
  overflow: hidden;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page a,
.page span {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 3px 10px;
  margin: 0 3px;
  background: #fff
}

.page span,
.page a:hover {
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff !important;
  border-radius: 5px;
}

.page .prev,
.page .next {
  margin: 0 10px;
}

@media screen and (max-width:1680px) {
  .container-fluid {
    max-width: 90%;
  }
}

@media screen and (max-width:1440px) {
  .pro-banner {
    height: 300px;
  }

  .whois-num li {
    width: 22.5%;
  }

  .solution-list li section {
    font-size: var(--fontSize-18);
  }
}

@media screen and (max-width:1280px) {
  .container-fluid {
    max-width: 100%;
  }
}

@media screen and (max-width:767px) {

  body,
  p,
  h1,
  ul,
  li,
  input,
  img,
  figure,
  h3,
  h1,
  h2,
  h4,
  h5,
  h6,
  dl,
  dd,
  dt {
    line-height: 1.4;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
  }


  .sp_nav,
  .sjj_nav,
  .product-menu h4 i {
    display: block;
  }

  .nav,
  .header-tel,
  .service-list .swiper-slide figure p,
  .related-articles li a em,
  .min-banner h5 {
    display: none !important;
  }

  .service-list .swiper-slide figure {
    display: flex !important;
  }

  .pt-item {
    padding-top: 30px !important;
  }

  .pb-item {
    padding-bottom: 30px !important;
  }

  header {
    padding: 10px 0;
  }

  header .logo img {
    height: 35px;
  }

  .banner {
    padding-top: 56px;
  }

  .banner .swiper-container {
    height: 40vh;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .whois-num li h2 {
    font-size: var(--fontSize-30);
  }

  .project-name h2,
  .value-ad h2 {
    font-size: var(--fontSize-24);
  }


  .ad-technology .swiper-slide section h3,
  .fqa-list .list-item .list-item-header h5,
  h2,
  .news-list li .news-more i,
  .product-menu h4,
  .guolv-list li section h3,
  .industry-list-menu h4 {
    font-size: var(--fontSize-20);
  }

  .solution-list li article h3,
  .service-list .swiper-button-prev,
  .service-list .swiper-button-next,
  footer dl dt,
  .project-name h4,
  .fqa-list .list-item .list-item-header i,
  .join-table tr th,
  h4,
  .product-menu section a,
  .main-content .table thead,
  .guolv-list li .click-more3 i,
  .service-list .swiper-slide figure section h3 {
    font-size: var(--fontSize-18);
  }


  .service-list .swiper-slide figure a,
  footer,
  h5,
  .fqa-list .list-item .list-item-content,
  .news-list li section span,
  .news-list li .news-more,
  .guolv-list li .click-more3,
  .contact-list li p,
  .min-banner h2 {
    font-size: var(--fontSize-16);
  }

  body,
  button,
  input,
  select,
  textarea,
  .form-select,
  .form-control,
  .btn,
  .solution-list li section,
  .join-table tr td,
  .solution-list li .click-more,
  .application-list section,
  .project-name span,
  .news-list li section p {
    font-size: var(--fontSize-15);
  }

  .min-banner h4,
  .min-banner .crumb-list {
    font-size: 14px;
  }

  .industry-list,
  .service-list .swiper-slide figure p,
  footer dl,
  .value-text section,
  .dyx-content img,
  .dyx-content section,
  .join-list li,
  .related-articles li a section,
  .product-menu,
  .product-center-list,
  .product-menu section,
  .products-dec img,
  .products-dec figure,
  .application-list section,
  .cyj-content,
  .guolv-list li,
  .min-banner section,
  .service-list .swiper-slide figure section {
    width: 100%;
  }

  .advantage-list li,
  .solution-list li,
  .whois-num li,
  .news-list li,
  .related-articles li {
    width: 48%;
  }

  .min-banner .container-fluid {
    padding-bottom: 20px;
  }

  .min-banner h2 {
    height: 20px;
    overflow: hidden
  }

  .advantage-list li,
  .whois-num li {
    padding: 20px 15px;
    margin: 8px 0;
  }

  .solution-list li article h3 {
    margin-bottom: 5px;
  }

  .solution-list li .click-more {
    margin-top: 5px;
  }

  .solution-list ul,
  .news-list ul {
    justify-content: space-between;
  }

  .solution-list li {
    padding-bottom: 50%;
    margin-top: 15px;
  }

  .solution-list li article,
  .service-list .swiper-slide figure {
    padding: 15px;
  }

  .ad-technology .swiper-slide {
    height: 260px;
  }

  .ad-technology .swiper-slide section {
    padding-top: 50px;
  }

  .ad-technology .swiper-slide section h3 {
    margin: 15px 0 20px;
  }

  .service-list {
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
  }

  .service-list .swiper-button-prev,
  .service-list .swiper-button-next,
  .service-list .swiper-slide figure a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .service-list .swiper-button-prev {
    left: 15px;
  }

  .service-list .swiper-button-next {
    right: 15px;
  }

  .industry-list ul {
    top: 75px;
  }

  .industry-list:hover ul {
    display: none;
  }

  .click-more1 {
    padding: 6px 15px;
  }

  footer,
  .product-center-list {
    padding-top: 30px;
  }

  footer dl,
  .dyx-content section,
  .join-list li+li,
  .products-dec figure,
  .application-list section+section,
  .guolv-list li {
    margin-top: 15px;
  }

  footer dl dt {
    margin-bottom: 5px;
  }

  footer dl dd {
    display: inline-block;
    margin-right: 10px;
  }

  footer .footer-copyright {
    padding: 10px 0;
  }

  .solution-list-about,
  .contact-list,
  .news-list,
  .news-show,
  .glbussiness {
    padding-top: 90px;
  }

  .min-banner {
    margin-top: 56px;
    /* height: 200px; */
  }

  /* .pro-banner {
    height: 120px;
  } */

  .fqa-list .list-item,
  .advantage-list-pro li {
    padding: 0 15px;
  }

  .fqa-list .list-item .list-item-content,
  .fqa-list .list-item .list-item-header {
    padding: 10px 0;
  }

  .banner .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 120px;
  }

  .min-banner h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .value-ad {
    height: 260px;
  }

  .value-text,
  .news-list li section,
  .guolv-list li section {
    padding: 12px;
  }

  .value-text section+section {
    margin-top: 15px;
  }

  .products-list li {
    width: 50%;
  }

  .products-list li:nth-child(3n) section {
    border-right: 1px solid rgba(145, 196, 47, .6);
  }

  .products-list li:nth-child(2n) section {
    border-right: 0;
  }

  .products-list li section {
    padding: 0 15px;
  }

  .products-list li section p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .development-ad {
    height: 300px;
    padding-top: 60px;
  }

  .contact-list li {
    padding: 30px 0;
  }

  .contact-list li+li,
  .contact-us li+li {
    border-left: 0;
    border-top: 1px solid #ddd;
  }

  .news-list li section p {
    margin: 10px 0;
    -webkit-line-clamp: 2;
  }

  .news-list li .news-more {
    padding-left: 15px;
  }

  .news-list li .news-more b {
    width: 70px;
    border-bottom: 30px solid #f1f1f1;
  }

  .news-list li .news-more i {
    margin-top: 2px;
  }

  .related-articles {
    padding: 15px 10px;
  }

  .related-articles li a section {
    padding: 0 10px;
  }

  .related-articles li a section h6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-menu h4 i {
    transition: .3s;
  }

  .product-menu h4.active i {
    transform: rotate(90deg);
  }

  .product-menu section {
    display: none;
    position: absolute;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
    z-index: 8;
  }

  .guolv-list ul {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .guolv-list li section h3 {
    margin: 10px 0;
  }

  .guolv-list li .click-more3 {
    padding: 10px 15px;
  }

  .menu-list a {
    margin: 0 10px;
  }

  .solution-list li:hover section {
    display: none;
  }

  .whois-num li h2 {
    margin-top: 5px !important;
  }

  .join-list li section p {
    height: auto;
  }
}