@charset "UTF-8";
.check {
  float: left;
  margin-right: 8px;
}

.check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.check input[type="checkbox"] + label:before {
  content: '';
  background: #ccc;
  border-radius: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 1px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  box-sizing: border-box;
}

.check input[type="checkbox"]:checked + label:before {
  background: url(../img/temp/gou.png) 0 0/cover no-repeat;
}

.radio {
  float: left;
  margin-right: 28px;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"] + label:before {
  content: '';
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #9b9b9b;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  top: 2px;
  margin-right: 5px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  box-sizing: border-box;
}

.radio input[type="radio"]:checked + label:before {
  background-color: #cf181c;
  border: 3px solid #cf181c;
  box-shadow: inset 0 0 0 3px #f4f4f4;
}

/*美化滚动条*/
.scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #ddd;
}

.scrollbar::-webkit-scrollbar-button {
  display: block;
  width: 1px;
  height: 1px;
}

.scrollbar.auto-hide::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: transparent;
}

.scrollbar.auto-hide:hover::-webkit-scrollbar-thumb {
  background-color: #c3c3c3;
}

.scrollbar.auto-hide:hover::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 滚动条样式 */
::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: #999;
}

/* header */
header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 9;
  transition: all .5s;
}

header.scrl {
  background: #2f5375;
  border-bottom: 1px solid #2f5375;
}

header .inWrap {
  display: flex;
  justify-content: space-between;
  margin: 0 5%;
  height: 88px;
  align-items: center;
}

header .logo {
  width: 489px;
}

header .logo a {
  display: block;
}

header .logo img {
  width: 100%;
}

header .nav {
  display: flex;
  align-items: center;
}

header .nav-main ul {
  display: flex;
}

header .nav-main ul li {
  margin-right: 60px;
  position: relative;
}

header .nav-main ul li > a {
  color: #fff;
}

header .nav-main ul li > a .icon {
  margin-left: 14px;
  transition: all .3s;
  display: inline-block;
}

header .nav-main ul li.active > a {
  color: #fe8c48;
}

header .nav-main ul li:hover > a .icon {
  transform: rotate(180deg);
}

header .nav-main ul li:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}

header .nav-main ul .dropMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
  padding-top: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

header .nav-main ul .dropMenu .menu-in {
  background: #fff;
  padding: 20px 0;
  border-radius: 10px;
}

header .nav-main ul .dropMenu a {
  display: block;
  text-align: center;
  margin: 5px 0;
  font-size: 18px;
  padding: 0 10px;
  white-space: nowrap;
}

header .btnSearch {
  background: transparent;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}

header .btnSearch .iconfont {
  font-size: 24px;
}

.mb-menu {
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 20px;
  display: none;
}

.mb-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  border-radius: 3px;
}

.mb-menu span::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: -6px;
  transform: translate(-50%, 0);
  left: 50%;
  border-radius: 3px;
}

.mb-menu span::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -6px;
  transform: translate(-50%, 0);
  left: 50%;
  border-radius: 3px;
}

.mb-menu.on span {
  background: transparent;
}

.mb-menu.on span::before {
  transform: translate(-50%, 50%) rotate(45deg);
  top: 0;
}

.mb-menu.on span::after {
  transform: translate(-50%, 50%) rotate(-45deg);
  bottom: 0;
}

.searchField {
  background-color: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 10px 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  transform: translateY(-100%);
}

.searchField.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.searchField .form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.searchField .tit {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.searchField .txt {
  flex: 1;
}

.searchField .txt input[type='text'] {
  background: #eee;
  width: 100%;
  height: 45px;
  padding: 0 20px;
}

.searchField .btn-searach {
  width: 60px;
  height: 45px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fe8c48;
}

.searchField .btn-searach i {
  display: block;
  font-size: 26px;
}

.searchField .btn-searach:hover {
  opacity: .9;
}

.fubox {
    background-color: #fff;
    position: absolute;
    left: 13.5%;
    width: 70%;
    min-height: 50px;
    margin: 0 auto;
    /* display: block;*/
    visibility: hidden;
    transition: all .5s ease-in-out;
    transform: translateY(-3%);
    opacity:.1;

}

.fubox.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.serchnavbox{ width:100%; clear:both;}

.serchnav {
    width: 98%;
    margin: 0 auto;
    font-size: 16px;
    color: #575757;
    cursor: pointer;
    line-height: 30px;
    font-weight: 500;
}

.serchcont {
    width: 98%;
    margin: 0 auto;
}

.serchcont span {
    width: 20%;
    float: left;
    font-size: 16px;
    line-height: 35px;
    color: #6f6f6f;
    cursor: pointer;
}

.kong{ width:100%; height:10px; clear:both;}

/* banner */
.banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.banner .swiper-banner {
  height: 100%;
}

.banner .swiper-slide {
  position: relative;
}

.banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner .swiper-slide .img {
  width: 100%;
  height: 100%;
}

.banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper-slide .more {
  position: absolute;
}

.banner .banner-pagination {
  position: absolute;
  right: 30px;
  bottom: 60px;
  z-index: 5;
}

.banner .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  color: #999898;
  font-size: 18px;
  opacity: 1;
  margin-right: 40px;
}

.banner .swiper-pagination-bullet-active {
  color: #fff;
}

.solution {
  background: center center /cover no-repeat;
  padding: 266px 0 76px;
  color: #fff;
}

.solution .txt h2 {
  font-weight: normal;
}

.solution .txt h5 {
  font-size: 26px;
  font-weight: normal;
  width: 55%;
}

.solution .btn {
  margin: 30px 0 145px;
}

.solution .btn a {
  display: block;
  width: 116px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #fff;
}

.solution .btn a:hover {
  background: #fff;
  color: #fe8c48;
}

.solution .bd {
  display: flex;
  align-items: center;
  gap: 3%;
}

.solution .item {
  display: flex;
  align-items: center;
  width: 50%;
}

.solution .item .circle {
  width: 172px;
  height: 172px;
  border-radius: 100%;
  background: rgba(236, 236, 236, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2b2b2b;
  flex-shrink: 0;
  margin-right: 24px;
}

.solution .item .circle-small {
  width: 152px;
  height: 152px;
}

.solution .item .tt {
  line-height: 30px;
}

.solution .item .tt p {
  text-align: justify;
}

.news {
  background: #f1fafe;
  padding: 120px 0 66px;
  position: relative;
  z-index: 1;
}

.news .title {
  text-align: center;
  margin-bottom: 60px;
}

.news .bd {
  position: relative;
}

.news .swiper-news {
  overflow: hidden;
}

.news .swiper-news .txt .txt {
  height: 156px;
}

.news .swiper-news .txt .txt h2 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: normal;
  margin: 15px 0;
}

.news .swiper-news .txt .txt p {
  color: #5d5d5d;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .swiper-news .datetime {
  border-bottom: 1px solid #abaeb0;
  padding-bottom: 20px;
  line-height: 1;
}

.news .swiper-news .datetime b {
  font-size: 64px;
  font-weight: normal;
}

.news .swiper-news .btn {
  margin-bottom: 30px;
}

.news .swiper-news .btn a {
  display: block;
  width: 116px;
  height: 34px;
  line-height: 34px;
  color: #0370d3;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #0370d3;
  font-size: 16pxm;
}

.news .swiper-news .btn a:hover {
  background: #0370d3;
  color: #fff;
}

.news .swiper-news .img {
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
}

.news .swiper-news .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.news .swiper-news .img a:hover img {
  transform: scale(1.06);
}

.news .swiper-news .swiper-slide:hover .txt h2 a {
  color: #fe8c48;
}

.news .swiper-news .swiper-slide:hover .img img {
  transform: scale(1.05);
}

.news .swiper-button-prev {
  left: -10%;
}

.news .swiper-button-next {
  right: -10%;
}

.news .swiper-pagination {
  position: relative;
  margin-top: 150px;
}

.news .swiper-pagination-bullet {
  width: 19px;
  height: 19px;
  background: #888388;
  opacity: 1;
  margin: 0 11px;
}

.news .swiper-pagination-bullet-active {
  background: #ddd;
}

footer {
  background: #2f5375;
  padding: 80px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
}

footer .left {
  width: 50%;
}

footer .nav-foot {
  display: flex;
  gap: 20px;
}

footer .nav-foot dl {
  width: 50%;
  display: flex;
  flex-direction: column;
}

footer .nav-foot dt {
  color: #fff;
  font-size: 18px;
}

footer .nav-foot dd div {
  margin-top: 18px;
}

footer .nav-foot dd a {
  color: #fff;
  font-size: 16px;
}

footer .nav-foot dd a:hover {
  color: #fe8c48;
}

footer .right {
  width: 50%;
  position: relative;
  padding: 24px 0;
  padding-left: 29px;
  display: flex;
}

footer .right::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}

footer .right .qrcode {
  width: 200px;
  margin-right: 20px;
}

footer .right .qrcode .img {
  width: 100%;
}

footer .right .qrcode .img img {
  width: 100%;
}

footer .right .qrcode p {
  text-align: center;
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

footer .right .other .logo {
  width: 155px;
  margin-bottom: 15px;
}

footer .right .other .logo img {
  width: 100%;
}

footer .right .other p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

@media screen and (max-width: 1440px) {
  header .logo {
    width: 360px;
  }
  header .nav-main ul li {
    margin-right: 30px;
  }
  .banner .swiper-pagination-bullet {
    margin-right: 20px;
  }
  .solution {
    padding: 200px 0 60px;
  }
  .solution .txt h5 {
    font-size: 22px;
  }
  .solution .item .circle {
    width: 160px;
    height: 160px;
  }
  .solution .item .circle-small {
    width: 140px;
    height: 140px;
  }
  .news .swiper-news .datetime b {
    font-size: 50px;
  }
  footer {
    padding: 60px 0;
  }
  footer .right .qrcode {
    width: 180px;
  }
  footer .right .other .logo {
    width: 141px;
  }
}

@media screen and (max-width: 1280px) {
  .banner .swiper-pagination-bullet {
    margin-right: 10px;
    font-size: 16px;
  }
  .solution {
    padding: 150px 0 40px;
  }
  .solution .btn {
    margin-bottom: 100px;
  }
  .solution .item .circle {
    width: 140px;
    height: 140px;
    font-size: 16px;
  }
  .solution .item .circle-small {
    width: 120px;
    height: 120px;
  }
  .news {
    padding: 100px 0 40px;
  }
  .news .swiper-news .datetime b {
    font-size: 40px;
  }
  .news .swiper-button-next {
    right: 0;
  }
  .news .swiper-button-prev {
    left: 0;
  }
  .news .swiper-pagination {
    margin-top: 75px;
  }
  .news .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}

@media screen and (max-width: 1024px) {
  header .inWrap {
    height: 78px;
    margin: 0 20px;
  }
  .banner .banner-pagination {
    bottom: 30px;
  }
  .banner {
    height: 75vh;
  }
  .news {
    padding: 70px 0 30px;
  }
  .news .title {
    margin-bottom: 30px;
  }
  .news .swiper-news .img {
    height: 195px;
    border-radius: 10px;
  }
  .news .swiper-news .datetime b {
    font-size: 30px;
  }
}

.mb {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .mb {
    display: block;
  }
  body {
    overflow-x: hidden;
  }
  .bodyTop {
    padding-top: 80px;
  }
  header.is-open {
    background: #0370d3;
  }
  header .inWrap {
    height: 60px;
  }
  header .logo {
    width: 60px;
  }
  header .inner {
    height: 80px;
  }
  header .nav-main {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 20%;
    top: 60px;
    width: 80%;
    background: #0370d3;
    height: calc(100vh - 60px);
    transition: all .5s;
    transform: translateX(100%);
    overflow-y: auto;
  }
  header .nav-main.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  header .nav-main ul {
    display: block;
    padding: 0 20px 30px;
  }
  header .nav-main ul li {
    margin-right: 0;
    margin-bottom: 10px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
  }
  header .nav-main ul li:hover .dropMenu {
    transform: none;
    display: block;
  }
  header .nav-main ul li > a {
    display: flex;
    justify-content: space-between;
  }
  header .nav-main ul .dropMenu {
    transform: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    left: 0;
    padding-top: 0;
    display: none;
  }
  header .nav-main ul .dropMenu .menu-in {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    border-radius: 0;
    margin-top: 10px;
  }
  header .nav-main ul .dropMenu .menu-in a {
    text-align: left;
    color: #fff;
    font-size: 14px;
    padding-left: 20px;
  }
  header .mb-menu {
    display: block;
    margin-left: 20px;
    margin-right: 0;
  }
  header .searchField .pix-in {
    position: relative;
  }
  header .searchField .form {
    margin-right: 40px;
  }
  header .searchField .txt input[type='text'] {
    height: 40px;
  }
  header .searchField .btn-searach {
    height: 40px;
  }
  header .searchField .tit span {
    display: none;
  }
  header .searchField .tit .close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
  }
  header .searchField .tit .close i {
    font-size: 24px;
  }
  .banner {
    height: 60vw;
  }
  .banner .banner-pagination {
    right: 0;
    bottom: 20px;
    width: 100%;
    text-align: center;
    width: 100%;
  }
  .banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    overflow: hidden;
    text-indent: 9999px;
    background: #ccc;
  }
  .banner .swiper-pagination-bullet-active {
    background: #fff;
  }
  .solution {
    padding: 100px 0 40px;
  }
  .solution .txt h5 {
    font-size: 16px;
  }
  .solution .btn {
    margin-bottom: 50px;
  }
  .solution .item .circle {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
  .solution .txt h5 {
    width: 100%;
  }
  .solution .bd {
    flex-wrap: wrap;
  }
  .solution .item {
    width: 100%;
    margin-bottom: 10px;
  }
  .news .swiper-pagination {
    margin-top: 40px;
  }
  .news .swiper-button-next, .news .swiper-button-prev {
    display: none;
  }
  .news .swiper-news .img {
    height: 140px;
  }
  .news .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  footer {
    padding: 30px 0;
  }
  footer .wrap {
    flex-wrap: wrap;
  }
  footer .left {
    width: 100%;
  }
  footer .right {
    width: 100%;
  }
  footer .right::before {
    display: none;
  }
  footer .right .other .logo {
    width: 100px;
  }
  footer .right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .nav-foot {
    flex-direction: column;
  }
  footer .nav-foot dl {
    width: 100%;
    text-align: center;
  }
  footer .nav-foot dl dt {
    font-weight: bold;
  }
  footer .nav-foot dl dd {
    font-size: 14px;
  }
  footer .right .qrcode {
    margin-bottom: 30px;
  }
  footer .right .qrcode .img {
    width: 100px;
    margin: 0 auto;
  }
  footer .right .qrcode p {
    font-size: 14px;
  }
  footer .nav-foot dd a {
    font-style: 14px;
  }
  footer .nav-foot dd div {
    margin-top: 10px;
  }
  footer .right .other .logo {
    margin: 0 auto 10px;
  }
}

/* 关于我们 */
.header-in {
  background: #fff;
}

.header-in .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.header-in .nav-main ul li > a {
  color: #29211f;
}

.header-in .btnSearch {
  color: #29211f;
}

.header-in.scrl {
  background: #fff;
  border-bottom: 1px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.banner-in {
  margin-top: 84px;
  height: 353px;
  background: center center /cover no-repeat;
}

.banner-in .wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.banner-in .wrap .txt {
  margin: 0 5%;
}

.banner-in .wrap .txt h5 {
  text-transform: uppercase;
  font-weight: lighter;
}

.defualtBox .title {
  text-align: center;
  margin-bottom: 50px;
}

.defualtBox .title h5 {
  color: #6f6f6f;
  margin-top: 20px;
  font-weight: normal;
  width: 66%;
  margin: 20px auto 0;
}

.companyIntro {
  overflow: hidden;
  padding: 45px 0 85px;
}

.companyIntro .bd {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}

.companyIntro .bd .img {
  width: 50.28571%;
}

.companyIntro .bd .img img {
  width: 100%;
}

.companyIntro .bd .txt {
  width: 44.64286%;
}

.companyIntro .bd .txt p {
  color: #6f6f6f;
  margin-bottom: 15px;
  text-indent: 42px;
}

.qiyeMubiao {
  background: #f6f6f6;
  padding: 40px 0 95px;
}

.qiyeMubiao .bd ul {
  display: flex;
  margin-left: -9px;
  margin-right: -9px;
  align-items: stretch;
}

.qiyeMubiao .bd ul li {
  width: 33.33%;
  padding: 0 9px;
}

.qiyeMubiao .bd ul li .img {
  height: 100%;
}

.qiyeMubiao .bd ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ourPrice {
  background: center center /cover no-repeat;
  text-align: center;
  padding: 108px 0 148px;
}

.ourPrice .txt {
  width: 50.5%;
  margin: 0 auto;
  border: 5px solid #fff;
  border-radius: 5px;
  padding: 36px 0 30px;
  color: #fff;
}

.ourPrice .txt h2 {
  font-weight: normal;
}

.ourPrice .txt h5 {
  font-weight: normal;
}

.ourPrice .txt h5 span {
  margin: 0 5%;
}

.qiyeYuanj {
  padding: 50px 0;
}

.qiyeYuanj .imgs ul {
  display: flex;
  margin-left: -9px;
  margin-right: -9px;
  align-items: stretch;
}

.qiyeYuanj .imgs ul li {
  width: 33.33%;
  padding: 0 9px;
}

.qiyeYuanj .imgs ul li .img {
  height: 100%;
}

.qiyeYuanj .imgs ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productYs {
  padding-bottom: 135px;
}

.productYs .youshiItems ul {
  display: flex;
  justify-content: space-between;
}

.productYs .youshiItems ul li {
  width: 15.85714%;
}

.productYs .youshiItems ul li .icon {
  width: 148px;
  margin: 0 auto 40px;
}

.productYs .youshiItems ul li .icon img {
  width: 100%;
  transition: all .5s;
}

.productYs .youshiItems ul li .tt h3 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
}

.productYs .youshiItems ul li .tt p {
  color: #6f6f6f;
}

.productYs .youshiItems ul li:hover .icon img {
  transform: rotateY(180deg);
}

.moreCompany {
  background: center bottom /cover no-repeat;
  padding: 40px 0;
  overflow: hidden;
}

.moreCompany .hd {
  display: flex;
  justify-content: space-between;
}

.moreCompany .hd .tit {
  text-align: center;
}

.moreCompany .hd .tit h2 {
  font-weight: normal;
  margin-bottom: 37px;
}

.moreCompany .box-hezuoHB {
  width: 31.14286%;
}

.moreCompany .box-hezuoHB ul {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
  flex-wrap: wrap;
}

.moreCompany .box-hezuoHB ul li {
  width: 50%;
  padding: 0 12px 37px;
}

.moreCompany .box-hezuoHB ul li img {
  width: 100%;
}

.moreCompany .box-honor {
  width: 66.28571%;
}

.moreCompany .box-honor .imgs ul {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}

.moreCompany .box-honor .imgs ul li {
  width: 25%;
  padding: 0 12px;
  height: 100%;
}

.moreCompany .box-honor .imgs ul li .img {
  height: 100%;
}

.moreCompany .box-honor .imgs ul li .img img {
  width: 100%;
}

.moreCompany .box-liuyan {
  display: flex;
  background: rgba(255, 255, 255, 0.78);
}

.moreCompany .box-liuyan .tit {
  width: 109px;
  height: 98px;
  background: #2b8bef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moreCompany .box-liuyan .tit span {
  color: #fff;
}

.moreCompany .box-liuyan .cnt {
  flex: 1;
}

.moreCompany .box-liuyan .cnt ul {
  display: flex;
  align-items: center;
  height: 98px;
}

.moreCompany .box-liuyan .cnt ul li {
  display: flex;
  padding: 5px 0 5px 3%;
  position: relative;
  width: 28%;
  align-items: center;
}

.moreCompany .box-liuyan .cnt ul li:last-child {
  width: 16%;
}

.moreCompany .box-liuyan .cnt ul li .ipt {
  flex: 1;
}

.moreCompany .box-liuyan .cnt ul li .ipt input {
  width: 100%;
  height: 38px;
  border: 1px solid #cdcdcd;
  padding: 0 10px;
}

.moreCompany .box-liuyan .cnt ul li .btn-submit {
  background: #1a8aff;
  border-radius: 10px;
  width: 115px;
  height: 48px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .banner-in {
    height: auto;
    padding: 80px 0;
  }
  .productYs .youshiItems ul li .icon {
    width: 110px;
    height: 100px;
  }
  .moreCompany .box-liuyan .cnt ul li .btn-submit {
    width: 100px;
  }
  .header-in .wrap {
    height: 78px;
  }
  .banner-in {
    margin-top: 78px;
  }
}

@media screen and (max-width: 768px) {
  .header-in {
    background: #0370d3;
  }
  .header-in.scrl {
    background: #0370d3;
    border-bottom: none;
  }
  .header-in .btnSearch {
    color: #fff;
  }
  .header-in .wrap {
    height: 60px;
  }
  .banner-in {
    margin-top: 60px;
  }
  .header-in .nav-main ul li > a {
    color: #fff;
  }
  .companyIntro, .qiyeMubiao {
    padding: 30px 0 60px;
  }
  .companyIntro .bd {
    flex-wrap: wrap;
  }
  .companyIntro .bd .img {
    width: auto;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
  }
  .companyIntro .bd .img img {
    max-width: 100%;
  }
  .companyIntro .bd .txt {
    width: 100%;
  }
  .defualtBox .title {
    margin-bottom: 25px;
  }
  .ourPrice {
    padding: 60px 0 80px;
  }
  .ourPrice .txt {
    border-width: 3px;
  }
  .productYs .youshiItems ul {
    flex-wrap: wrap;
  }
  .productYs .youshiItems ul li {
    width: 50%;
    padding: 0 10px;
  }
  .productYs {
    padding-bottom: 80px;
  }
  .moreCompany .hd {
    flex-wrap: wrap;
  }
  .moreCompany .box-hezuoHB {
    width: 100%;
  }
  .moreCompany .box-honor {
    width: 100%;
    margin-bottom: 20px;
  }
  .moreCompany .box-liuyan .tit {
    height: 120px;
  }
  .moreCompany .box-liuyan .cnt {
    padding: 10px 0;
  }
  .moreCompany .box-liuyan .cnt ul {
    flex-wrap: wrap;
  }
  .moreCompany .box-liuyan .cnt ul li {
    width: 50%;
    padding: 0 0 0 2%;
  }
  .moreCompany .box-liuyan .cnt ul li .ipt input {
    height: 30px;
  }
  .moreCompany .box-liuyan .cnt ul li .btn-submit {
    width: 90px;
    height: 30px;
    border-radius: 3px;
  }
}

@media screen and (max-width: 520px) {
  .banner-in {
    padding: 40px 0;
  }
  .defualtBox .title h5 {
    font-size: 16px;
  }
  .qiyeMubiao .bd ul, .qiyeYuanj .imgs ul, .moreCompany .box-honor .imgs ul {
    margin-left: -3px;
    margin-right: -3px;
  }
  .qiyeMubiao .bd ul li, .qiyeYuanj .imgs ul li, .moreCompany .box-honor .imgs ul li {
    padding: 0 3px;
  }
  .ourPrice .txt {
    width: 100%;
  }
  .moreCompany .hd .tit h2 {
    margin-bottom: 20px;
  }
  .productYs .youshiItems ul li {
    margin-bottom: 20px;
  }
  .productYs .youshiItems ul li .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  .productYs .youshiItems ul li .tt p {
    font-size: 16px;
  }
  .moreCompany .box-liuyan .cnt {
    padding: 10px;
  }
  .moreCompany .box-liuyan .cnt ul li {
    width: 100%;
  }
  .moreCompany .box-liuyan .cnt ul li {
    padding: 5px;
  }
  .moreCompany .box-liuyan {
    display: block;
  }
  .moreCompany .box-liuyan .tit {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .moreCompany .box-liuyan .cnt ul {
    height: auto;
  }
  .moreCompany .box-liuyan .cnt ul .name {
    width: 100px;
    text-align: right;
  }
  .moreCompany .box-liuyan .cnt ul li:last-child {
    width: 100%;
  }
  .moreCompany .box-liuyan .cnt ul li .btn-submit {
    margin: 0 auto;
    display: block;
    margin-top: 10px;
  }
}

/* 产品中心 */
.jinrongBt {
  padding: 70px 0 60px;
}

.jinrongBt .bd ul {
  display: flex;
  justify-content: space-between;
}

.jinrongBt .bd ul li {
  width: 30.42857%;
}

.jinrongBt .bd ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jinrongBt .bd ul li .txt {
  padding: 20px 18px;
}

.jinrongBt .bd ul li .txt h2 {
  font-weight: normal;
  margin-bottom: 10px;
}

.jinrongBt .bd ul li .txt p {
  color: #6f6f6f;
  line-height: 1.6;
}

.jiudianBz {
  background: center center /cover no-repeat;
  padding: 45px 0 60px;
  overflow: hidden;
}

.jiudianBz .bd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.jiudianBz .img {
  width: 44.42857%;
}

.jiudianBz .img img {
  width: 100%;
}

.jiudianBz .txt {
  width: 49%;
}

.jiudianBz .txt .item {
  margin-bottom: 20px;
}

.jiudianBz .txt .tit {
  margin-bottom: 10px;
}

.jiudianBz .txt .tit h3 {
  border-radius: 20px;
  background: #f6a126;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 49px;
  font-weight: normal;
}

.jiudianBz .txt p {
  color: #6f6f6f;
}

.kuaisuDk {
  background: center center /cover no-repeat;
  padding: 45px 0 60px;
  overflow: hidden;
}

.kuaisuDk .bd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.kuaisuDk .img {
  width: 46.07143%;
}

.kuaisuDk .img img {
  width: 100%;
}

.kuaisuDk .txt {
  width: 46.42857%;
}

.kuaisuDk .txt .item {
  margin-bottom: 40px;
}

.kuaisuDk .txt .tit {
  margin-bottom: 10px;
}

.kuaisuDk .txt .tit h3 {
  border-radius: 20px;
  background: #26aaf6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 49px;
  font-weight: normal;
}

.kuaisuDk .txt p {
  color: #6f6f6f;
}

.gexinfDz {
  background: center center /cover no-repeat;
  padding: 45px 0 60px;
  overflow: hidden;
}

.gexinfDz .bd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.gexinfDz .img {
  width: 57%;
  position: relative;
  left: -6.5%;
}

.gexinfDz .img img {
  width: 100%;
}

.gexinfDz .txt {
  width: 46.42857%;
  position: absolute;
  right: 3%;
  top: 50px;
}

.gexinfDz .txt .item {
  margin-bottom: 40px;
}

.gexinfDz .txt .tit {
  margin-bottom: 10px;
}

.gexinfDz .txt .tit h3 {
  height: 49px;
  font-weight: normal;
}

.gexinfDz .txt p {
  color: #6f6f6f;
}

.OTAjk {
  background: center bottom /cover no-repeat;
  padding: 45px 0 160px;
  overflow: hidden;
}

.OTAjk .title h5 {
  width: 75%;
}

.OTAjk .imgs ul {
  display: flex;
  justify-content: space-between;
}

.OTAjk .imgs ul li {
  width: 30.42857%;
}

.OTAjk .imgs ul li .img {
  height: 280px;
  overflow: hidden;
}

.OTAjk .imgs ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.OTAjk .imgs ul li .img:hover img {
  transform: scale(1.05);
}

.shangmenWh {
  padding: 90px 0 135px;
  overflow: hidden;
  background: center center /cover no-repeat;
}

.shangmenWh .bd {
  padding-left: 11.57143%;
  color: #fff;
}

.shangmenWh .bd .tit {
  margin-bottom: 20px;
}

.shangmenWh .bd .tit h3 {
  font-weight: normal;
}

.shangmenWh .bd .labels {
  line-height: 45px;
  background: #2f5375;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.shangmenWh .bd .labels span {
  display: inline-block;
  margin: 0 18px;
}

.shangmenWh .bd p {
  width: 400px;
}

@media screen and (max-width: 1440px) {
  .OTAjk .imgs ul li .img {
    height: 220px;
  }
}

@media screen and (max-width: 1024px) {
  .OTAjk .imgs ul li .img {
    height: 196px;
  }
  .jiudianBz .txt .tit h3, .kuaisuDk .txt .tit h3 {
    width: 130px;
    height: 42px;
  }
  .gexinfDz .txt .tit h3 {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .defualtBox .title h5 {
    width: 100%;
    margin-top: 10px;
  }
  .jinrongBt {
    padding: 40px 0;
  }
  .jinrongBt .bd ul {
    flex-wrap: wrap;
  }
  .jinrongBt .bd ul li .txt {
    padding: 10px 5px;
  }
  .jinrongBt .bd ul li {
    width: 48%;
  }
  .OTAjk {
    padding: 40px 0 70px;
  }
  .OTAjk .imgs ul {
    flex-wrap: wrap;
  }
  .OTAjk .imgs ul li {
    width: 48%;
    margin-bottom: 20px;
  }
  .OTAjk .imgs ul li .img {
    height: 196px;
  }
  .jiudianBz .txt .tit h3, .kuaisuDk .txt .tit h3 {
    width: 120px;
    height: 40px;
  }
  .jiudianBz .img, .jiudianBz .txt, .kuaisuDk .txt, .kuaisuDk .img {
    width: 100%;
  }
  .jiudianBz .txt {
    margin-top: 20px;
  }
  .gexinfDz {
    padding: 40px 0 0;
  }
  .gexinfDz .img {
    width: 100%;
    left: 0;
  }
  .gexinfDz .txt {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
  }
  .gexinfDz .txt .tit h3 {
    height: auto;
  }
  .shangmenWh .bd {
    padding-left: 0;
  }
  .shangmenWh .bd .labels {
    padding: 0 10px;
  }
  .shangmenWh {
    padding: 40px 0 80px;
  }
}

@media screen and (max-width: 520px) {
  .shangmenWh .bd p {
    width: 100%;
  }
  .OTAjk .imgs ul li .img {
    height: 28vw;
  }
  .shangmenWh .bd .labels span {
    margin: 0 10px;
  }
}

/* 服务支持 */
.jdGlxt {
  padding: 200px 0 170px;
  overflow: hidden;
  background: center center /cover no-repeat;
}

.jdGlxt .bd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5%;
}

.jdGlxt .img {
  width: 36.45833%;
}

.jdGlxt .img img {
  width: 100%;
}

.jdGlxt .info {
  width: 57.14286%;
}

.jdGlxt .info .tit {
  display: flex;
  line-height: 1;
  align-items: center;
  margin-bottom: 35px;
}

.jdGlxt .info .tit h3 {
  font-size: 88px;
  color: #1a8aff;
  letter-spacing: -7px;
  margin-right: 10px;
}

.jdGlxt .info .tit-sub span {
  color: #616060;
  line-height: 1.2;
}

.jdGlxt .info .tit-sub h4 {
  letter-spacing: -2px;
}

.jdGlxt .info .txt ul {
  display: flex;
  flex-wrap: wrap;
}

.jdGlxt .info .txt ul li {
  width: 50%;
  color: #616060;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jdGlxt .info .btn {
  margin-top: 50px;
}

.jdGlxt .info .btn a {
  display: flex;
  width: 334px;
  height: 100px;
  background: #1a8aff;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
}

.jdGlxt .info .btn a .icon {
  display: inline-block;
  width: 37px;
  margin-right: 33px;
  line-height: 1;
}

.jdGlxt .info .btn a .icon img {
  width: 100%;
  line-height: 1;
}

.jdGlxt .info .btn a:hover {
  background: #036ddb;
}

.lgGlxt {
  padding: 116px 0 133px;
  background: center center /cover no-repeat;
  overflow: hidden;
}

.lgGlxt .bd {
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  flex-direction: row-reverse;
}

.lgGlxt .img {
  width: 38.46154%;
}

.lgGlxt .img img {
  width: 100%;
}

.lgGlxt .info {
  width: 45.92308%;
}

.lgGlxt .info .tit .tit-sub {
  width: 486px;
  margin: 10px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #1a8aff;
  padding: 5px 30px;
  color: #fff;
}

.lgGlxt .info .tit .tit-sub span {
  margin: 0 16px;
  font-size: 26px;
  display: inline-block;
  position: relative;
}

.lgGlxt .info .tit .tit-sub span::after {
  content: '';
  display: block;
  width: 1px;
  height: 29px;
  background: #fff;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.lgGlxt .info .tit .tit-sub span:last-child::after {
  display: none;
}

.lgGlxt .info .tit p {
  color: #616060;
}

.lgGlxt .imgs {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.lgGlxt .imgs .img1 img {
  width: 100%;
}

.PMSservc {
  padding: 100px 0 135px;
  overflow: hidden;
  background: center center /cover no-repeat;
}

.PMSservc .bd {
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
}

.PMSservc .img {
  width: 37.53846%;
}

.PMSservc .img img {
  width: 100%;
}

.PMSservc .info {
  width: 54.61538%;
}

.PMSservc .info .tit h3 b {
  color: #0db5a7;
}

.PMSservc .info .tit p {
  color: #6f6f6f;
  margin: 10px 0 20px;
}

.PMSservc .info .txt li {
  margin-bottom: 10px;
  font-size: 26px;
  position: relative;
  display: flex;
  align-items: center;
}

.PMSservc .info .txt li::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: #0db5a7;
  margin-right: 14px;
  transition: all .5s;
}

.PMSservc .info .txt li:hover::before {
  transform: scale(0.8);
}

.sbservc {
  padding: 100px 0 100px;
  overflow: hidden;
  background: center center /cover no-repeat;
}

.sbservc .bd {
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  flex-direction: row-reverse;
}

.sbservc .img {
  width: 62.15385%;
}

.sbservc .img img {
  width: 100%;
}

.sbservc .info {
  width: 36.38462%;
  margin-top: 80px;
}

.sbservc .info .tit h3 b {
  color: #9f7b6e;
}

.sbservc .info .tit h4 {
  font-weight: normal;
  margin: 15px 0 10px;
}

.sbservc .info .tit p {
  color: #6f6f6f;
  text-align: justify;
}

@media screen and (max-width: 1440px) {
  .banner-in {
    height: 310px;
  }
  .jdGlxt {
    padding: 150px 0 80px;
  }
  .jdGlxt .bd {
    padding: 0;
  }
  .jdGlxt .info .tit h3 {
    font-size: 60px;
  }
  .jdGlxt .info .btn a {
    width: 234px;
    height: 80px;
  }
  .jdGlxt .info .btn {
    margin-top: 25px;
  }
  .jdGlxt .info .btn a .icon {
    width: 28px;
    margin-right: 15px;
  }
  .lgGlxt {
    padding: 90px 0 100px;
  }
  .lgGlxt .info .tit .tit-sub {
    width: 400px;
    padding: 5px 10px;
  }
  .lgGlxt .info .tit .tit-sub span {
    font-size: 22px;
  }
  .PMSservc {
    padding: 80px 0 100px;
  }
  .PMSservc .info .txt li {
    font-size: 22px;
  }
  .PMSservc .info .txt li::before {
    width: 12px;
    height: 12px;
  }
  .PMSservc .bd {
    padding: 0;
  }
  .sbservc {
    padding: 80px 0;
  }
  .sbservc .bd {
    padding: 0;
  }
  .lgGlxt .bd {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .banner-in {
    height: 280px;
  }
  .jdGlxt {
    padding: 100px 0 80px;
  }
  .jdGlxt .info .tit {
    margin-bottom: 20px;
  }
  .jdGlxt .info .txt ul li {
    margin-bottom: 10px;
  }
  .jdGlxt .info .btn a {
    width: 200px;
    height: 70px;
  }
  .lgGlxt .info .tit .tit-sub span {
    font-size: 18px;
  }
  .lgGlxt .info .tit .tit-sub {
    width: 330px;
    padding: 5px;
  }
  .lgGlxt .info .tit .tit-sub span::after {
    height: 18px;
    right: -17px;
  }
  .PMSservc .info .txt li {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .banner-in {
    height: 200px;
  }
  .jdGlxt {
    padding: 80px 0 60px;
  }
  .jdGlxt .info .btn a {
    width: 180px;
    height: 50px;
  }
  .jdGlxt .info .btn a .icon {
    width: 20px;
  }
  .lgGlxt .info .tit .tit-sub span {
    font-size: 16px;
  }
  .lgGlxt .info .tit .tit-sub {
    width: 300px;
    padding: 5px;
  }
  .lgGlxt .info .tit .tit-sub span::after {
    height: 18px;
    right: -17px;
  }
  .PMSservc .info .txt li {
    font-size: 16px;
  }
  .jdGlxt .img, .lgGlxt .img, .PMSservc .img, .sbservc .img {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .jdGlxt .img img, .lgGlxt .img img, .PMSservc .img img, .sbservc .img img {
    max-width: 100%;
    width: auto;
  }
  .jdGlxt .info {
    width: 100%;
  }
  .jdGlxt .info .tit h3 {
    font-size: 50px;
  }
  .lgGlxt .bd {
    flex-wrap: wrap;
  }
  .lgGlxt .info {
    width: 100%;
  }
  .PMSservc .bd {
    flex-wrap: wrap;
  }
  .PMSservc .info {
    width: 100%;
  }
  .sbservc .bd {
    flex-wrap: wrap;
  }
  .sbservc .info {
    width: 100%;
    margin-top: 0;
  }
  .jdGlxt .info .txt ul li {
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .jdGlxt .info .tit h3 {
    font-size: 46px;
  }
}

.solution-1 {
  padding: 77px 0 70px;
  overflow: hidden;
}

.solution-1 .item {
  margin-bottom: 37px;
  border-radius: 20px;
  display: flex;
  transition: all .5s;
  overflow: hidden;
}

.solution-1 .item:last-child {
  margin-bottom: 0;
  border: 1px solid #73d0bb;
}

.solution-1 .item:last-child .copyright-name {
  background: #ccf9ef;
}

.solution-1 .item:last-child:hover {
  border: 1px solid #00be94;
}

.solution-1 .item:first-child {
  border: 1px solid #b4e0ff;
}

.solution-1 .item:first-child .copyright-name {
  background: #d6eeff;
}

.solution-1 .item:first-child:hover {
  border: 1px solid #1a84d0;
}

.solution-1 .copyright-name {
  width: 18.71429%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-1 .copyright-name .l-title {
  padding: 0 12%;
}

.solution-1 .copyright-name h2 {
  color: #213675;
  margin-bottom: 12px;
  text-align: center;
}

.solution-1 .copyright-name p {
  color: #7886a7;
  margin-bottom: 15px;
  text-align: justify;
}

.solution-1 .copyright-name a {
  display: block;
  width: 92px;
  height: 34px;
  line-height: 34px;
  border-radius: 10px;
  background: #ff1a50;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

.solution-1 .copyright-name a:hover {
  background: #e90037;
}

.solution-1 .copyright-cont {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding: 10px 5%;
}

.solution-1 .copyright-cont ul li {
  padding: 8px 0;
}

.solution-1 .copyright-cont ul li .bqfw {
  display: flex;
  align-items: center;
}

.solution-1 .copyright-cont ul li .bqfw .ic {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 1;
  margin-right: 15px;
}

.solution-1 .copyright-cont ul li .bqfw .ic img {
  width: 100%;
}

.solution-1 .copyright-cont ul li .cancel {
  color: #929292;
}

.solution-detail {
  background: center center /cover no-repeat;
  overflow: hidden;
  padding: 25px 0 55px;
}

.solution-detail .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solution-detail .hd-l {
  width: 45.28571%;
}

.solution-detail .hd-r {
  width: 56.07143%;
  text-align: center;
  margin-right: -5%;
}

.solution-detail .hd-r img {
  max-width: 100%;
}

.solution-detail .item-box {
  padding: 20px 0;
  border-bottom: 1px dashed #6f6f6f;
}

.solution-detail .item-box .s-hd {
  display: flex;
  margin-bottom: 12px;
}

.solution-detail .item-box .s-hd span {
  display: inline-block;
  width: 80px;
  height: 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  background: #43b5fb;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 30px;
}

.solution-detail .item-box .s-hd h3 {
  font-weight: normal;
  line-height: 34px;
}

.solution-detail .item-box .s-bd p {
  color: #6f6f6f;
}

.solution-detail .ft {
  margin-top: 20px;
}

.solution-detail .ft ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-right: -2%;
}

.solution-detail .ft ul li {
  width: 33.33%;
  padding: 0 2%;
  border-right: 1px solid #a8a4a4;
  margin: 40px 0;
}

.solution-detail .ft ul li:nth-child(3n) {
  border-right: none;
}

.solution-detail .ft ul li .item-box {
  border-bottom: none;
  height: 100%;
}

.solution-detail .hd2 {
  flex-direction: row-reverse;
}

.solution-detail .ft2 ul {
  border-bottom: 1px dashed #6f6f6f;
}

.solution-detail .ft2 ul:last-child {
  border-bottom: none;
}

@media screen and (max-width: 1024px) {
  .solution-1 {
    padding: 47px 0 40px;
  }
  .solution-1 .item {
    border-radius: 10px;
  }
  .solution-1 .copyright-cont {
    padding: 10px 3%;
  }
  .solution-1 .copyright-cont ul li {
    padding: 5px 0;
  }
  .solution-1 .copyright-cont ul li .bqfw .ic {
    width: 15px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .solution-1 .item {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .solution-1 .copyright-name {
    width: 100%;
  }
  .solution-1 .copyright-name p {
    display: none;
  }
  .solution-1 .copyright-name .l-title {
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .solution-1 .copyright-name a {
    margin: 0;
  }
  .solution-1 .copyright-name h2 {
    margin-bottom: 0;
  }
  .solution-detail .hd {
    flex-wrap: wrap;
  }
  .solution-detail .hd-l {
    width: 100%;
  }
  .solution-detail .hd-r {
    width: 100%;
    margin: 20px 0;
  }
  .solution-detail .ft ul li {
    width: 100%;
    border-bottom: 1px dashed #6f6f6f;
    border-right: none;
  }
  .solution-detail .ft ul li {
    margin: 0;
  }
  .solution-detail .ft2 ul {
    border-bottom: none;
  }
  .solution-1 .copyright-cont ul li .bqfw {
    font-size: 14px;
  }
  .solution-1 .copyright-cont ul {
    width: 100%;
  }
  .solution-1 .copyright-cont {
    flex-wrap: wrap;
  }
}
