@charset "UTF-8";
.aaaa {
  text-align: center;
}

:root {
  --size: 1;
}

@media screen and (min-width: 950px) and (max-width: 1280px) {
  :root {
    --size: 0.495;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  :root {
    --size: 0.66667;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  :root {
    --size: 0.75;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1920px) {
  :root {
    --size: 0.83334;
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --size: 1;
  }
}
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px;
}
.header .logo img {
  width: 182px;
}
.header .header-row {
  position: relative;
  height: 100px;
  width: 1200px;
  margin: 0 auto;
  --box-height: 60px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .header .header-row {
    margin: 0 10px;
    width: auto;
  }
}
@media (max-width: 950px) {
  .header .header-row {
    margin: 0 10px;
    width: auto;
  }
}
@media (max-width: 400px) {
  .header .header-row {
    margin: 0 10px;
    height: 60px;
  }
}
.header .header-row .main-menu-nav {
  position: relative;
  height: 100%;
}
@media (max-width: 950px) {
  .header .header-row .main-menu-nav {
    display: none;
  }
}
.header .header-row .lang {
  display: none;
  position: absolute;
  top: 120px;
  right: -37px;
  width: 105px;
  height: 77px;
  background: #fff;
  border-radius: 5px;
}
   
   
    .header .header-row .lang::before {
        position: absolute;
        left: 50%;
        top: -20px;
        transform: translateX(-50%);
        content: "";
        border: 10px solid #fff;
        border-color: transparent;
        border-bottom-color: #fff;
    }
.header .header-row .lang p {
  cursor: pointer;
  text-align: center;
  line-height: 38px;
  border-bottom: 1px solid #dcdcdc;
}
.header .header-row .lang p:nth-of-type(2) {
  border-bottom: none;
}
.header .header-row .pc-search-box {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0;
}
@keyframes search {
  from {
    top: 50px;
  }
  to {
    top: 0;
  }
}
.header .header-row .pc-search-box-show {
  display: block;
  animation: 0.5s search;
  animation-fill-mode: forwards;
}
.header .header-row .search-box {
  margin: 15px 0;
  margin-left: 50px;
  height: var(--box-height);
  background: #fff;
}
.header .header-row .search-box form {
  width: 100%;
}
.header .header-row .search-box .input {
  border: 1px solid #d2d2d2;
  width: calc(100% - 30px - 50px);
  height: 30px;
  outline: none;
}
.header .header-row .search-box .btn {
  cursor: pointer;
  width: 30px;
  height: 28px;
  border: 1px solid #000;
  color: #fff;
  font-size: 20px;
  outline: none;
  background: #000;
  text-align: center;
}
.header .header-row .search-box .clear {
  cursor: pointer;
  padding: 20px;
  margin-left: 10px;
}
.header .header-row .search-box .clear .iconfont {
  font-size: 12px;
}
.header .header-row .main-menu {
  height: 100%;
  transition: all 0.5s;
}
.header .header-row .main-menu .main-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 16px;
  margin-left: 50px;
  padding: 25px 0;
  cursor: pointer;
  overflow: visible;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .header .header-row .main-menu .main-menu-item {
    margin-left: 20px;
  }
}
.header .header-row .main-menu .main-menu-item a {
  display: block;
  display: flex;
  align-items: center;
  height: 100%;
}
.header .header-row .main-menu .main-menu-item:hover .children {
  display: block;
}
.header .header-row .main-menu .main-menu-item:hover a {
  color: #8829af;
}
.header .header-row .main-menu .main-menu-item img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.header .header-row .main-menu .main-menu-item .children {
  position: absolute;
  left: 0;
  top: 100%;
  width: 200px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
  display: none;
}
.header .header-row .main-menu .main-menu-item .children p {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0 10px;
  border-bottom: 1px #eaf7fd solid;
  background: #f5fbfe;
}
.header .header-row .main-menu .main-menu-item .children p:hover {
  background: #fff;
}
.header .header-row .main-menu .main-menu-item .children a {
  display: block;
  color: #3e3934;
  line-height: 60px;
  font-size: 13px;
}
.header .header-row .main-menu .main-menu-item .children a::before {
  display: none !important;
}
.header .header-row .main-menu .active a {
  color: #8829af;
}
.header .header-row .main-menu .active a::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: #8829af;
  transform: translate(-50%, -50%);
}
.header .header-row .main-mobile-menu {
  display: none;
}
@media (max-width: 950px) {
  .header .header-row .main-mobile-menu {
    display: block;
  }
}
.header .header-row .main-mobile-menu .icon-item {
  cursor: pointer;
  margin-right: 10px;
  padding: 10px;
}
.header .header-row .main-mobile-menu .iconfont {
    font-size: 20px;
    color: #452e88;
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav {
  display: none;
  position: fixed;
  left: 0;
  top: 100px;
  background: #f6f6f6;
  width: 100%;
  height: 100%;
}
@media (max-width: 400px) {
  .header .header-row .main-mobile-menu .main-mobile-menu-nav {
    top: 60px;
  }
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav li {
  position: relative;
  border-bottom: 1px solid #dadada;
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav li .xia {
  cursor: pointer;
  font-size: 16px;
  outline: none;
  border: none;
  background: transparent;
  width: 35px;
  height: 50px;
  position: absolute;
  right: 7px;
  z-index: 9;
  top: 0;
}
.header .header-row .main-mobile-menu .main-mobile-menu-nav li a {
  padding: 5px 12px 5px 30px;
  color: #333;
  font-size: 14px;
  display: block;
  line-height: 35px;
}
.header .header-row .main-mobile-menu .children {
  display: none;
}
.header .header-row .mobile-search-box {
  height: 50px;
  display: none;
  justify-content: center;
  position: fixed;
  text-align: center;
  top: 100px;
  background: #fff;
  left: 0;
  margin: 0;
  width: 100%;
}
@media (max-width: 400px) {
  .header .header-row .mobile-search-box {
    top: 60px;
  }
}
.header .header-row .mobile-search-box .input {
  height: 30px;
}

footer.footer {
  padding-top: 30px;
  width: 100%;
  height: 400px;
  background: rgb(69, 46, 136);
}
@media (max-width: 950px) {
  footer.footer {
    height: auto;
  }
}
footer.footer .content {
  width: 1200px;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 950px) and (max-width: 1200px) {
  footer.footer .content {
    width: 850px;
  }
}
@media (max-width: 950px) {
  footer.footer .content {
    width: 80%;
    padding-bottom: 40px;
    margin: 0 auto;
    flex-direction: column;
  }
}
footer.footer .content .box {
  width: 380px;
  color: #b4e7ff;
  font-size: 16px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  footer.footer .content .box {
    width: 270px;
  }
}
@media (max-width: 950px) {
  footer.footer .content .box {
    width: 100%;
  }
}
footer.footer .content .box .tit {
  padding: 15px 0;
  font-size: 24px;
  color: #fff;
  border-bottom: 2px solid #fff;
}
footer.footer .content .box .national-flag {
  margin: 20px 0 15px;
}
footer.footer .content .box .national-flag img {
  margin-right: 10px;
}
footer.footer .content .box .contact {
  margin: 20px 0;
  font-family: "ali", serif;
}
footer.footer .content .box .text {
  color: rgb(231, 226, 249);
}
footer.footer .content .box .link {
  margin-top: 83px;
}
footer.footer .content .box .link li {
  margin: 1em 0;
}
footer.footer .content .box .link a {
  color: rgb(231, 226, 249);
}
footer.footer .content .box .social {
  margin-top: 83px;
}
footer.footer .content .box .social span {
  display: inline-block;
  margin-right: 10px;
  font-size: 50px;
  margin-bottom: 20px;
  color: #fff;
}


/* ======= Compare / OEM Section — pixel-accurate styles (final pass) ======= */
.compare-wrapper{max-width:1180px;margin:28px auto;padding:0 18px}
.compare-box{background:#fff;border:1px solid #e7e7e7;border-radius:6px;overflow:visible}
.compare-header{background:#fff;padding:44px 20px 18px;text-align:center;border-bottom:1px solid #eee}
.compare-header h2{color:#533089;font-size:36px;margin:0;font-weight:900;letter-spacing:0.4px}
.compare-header .compare-underline{width:84px;height:6px;background:#533089;margin:12px auto;border-radius:4px}
.compare-header .compare-sub{color:#222;margin-top:12px;font-size:15px}

.compare-body{display:flex;align-items:stretch;gap:0;padding:20px 28px 26px}
.compare-side{flex:1;display:flex;flex-direction:row;align-items:center;gap:20px;padding:0 22px}
.compare-side .inner-box{width:100%;border:1px solid #e9e9e6;padding:28px;border-radius:4px;background:#fff;min-height:360px}
.compare-side .motor-image{flex:0 0 320px;display:flex;justify-content:center}
.compare-side .motor-image img{max-width:320px;width:100%;height:auto;display:block}
.compare-features{flex:1}
.compare-features h4{color:#533089;margin:6px 0 14px;font-size:20px}
.features-list{list-style:none;padding:0;margin:0}
.features-list li{padding:10px 0;color:#333;position:relative;padding-left:36px;line-height:1.75}
.features-list.negative li:before{content:'✕';position:absolute;left:0;top:50%;transform:translateY(-50%);color:#8a2b9b;font-weight:700;font-size:14px}
.features-list.positive li:before{content:'✓';position:absolute;left:0;top:50%;transform:translateY(-50%);color:#533089;font-weight:700;font-size:14px}

.compare-center{width:140px;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}
.compare-center .divider{width:1px;height:360px;background:#e6e6e6;position:relative}
.compare-center .vs{position:absolute;top:50%;transform:translateY(-50%);background:#533089;color:#fff;width:96px;height:96px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:34px;border:6px solid #fff}

/* OEM/ODM plate */
.oem-plate{margin-top:22px;border:1px solid #e9e9e9;border-radius:6px;background:#fff;padding:18px}
.oem-inner{max-width:1180px;margin:0 auto;display:flex;align-items:stretch;padding:18px}
.oem-text{flex:1;padding-right:28px}
.oem-text h3{color:#533089;margin:0 0 10px;font-size:22px}
.oem-text p{color:#333;margin:0;line-height:1.8}
.oem-features{flex:2;display:flex;align-items:center;justify-content:space-between;padding-left:28px;border-left:1px solid #ececec}
.oem-col{display:flex;flex-direction:column;align-items:center;gap:12px;flex-basis:22%;min-width:160px}
.oem-col .ico{width:100px;height:100px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid #533089;color:#533089}
.oem-col .ico i{font-size:40px}
.oem-col .txt{color:#333;text-align:center;font-size:14px}

/* Right-side list alignment: keep icons at text edge */
.right-side .features-list li{padding-left:0;padding-right:36px;text-align:right}
.right-side .features-list li:before{right:0;left:auto}

@media (max-width:1000px){
  .compare-body{flex-direction:column;padding:12px}
  .compare-side{flex-direction:column;align-items:center;text-align:center;padding:18px}
  .compare-center{width:100%;height:0;padding:0}
  .compare-center .divider{display:none}
  .compare-center .vs{position:relative;margin:16px 0}
  .oem-inner{flex-direction:column;align-items:flex-start}
  .oem-features{width:100%;border-left:none;padding-left:0;display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between}
  .oem-col{flex-basis:45%;max-width:45%}
}

.copyright {
  flex-wrap: wrap;
  position: relative;
  color: #b4e7ff;
  font-size: 16px;
  color: #fff;
  text-align: center;
  height: 61px;
  background: rgb(41, 20, 95);
}
@media (max-width: 950px) {
  .copyright {
    font-size: 12px;
  }
}
.copyright .shu {
  margin: 0 10px;
}
.copyright .link {
  color: #b4e7ff;
  color: #fff;
  margin-left: 5px;
  font-size: 16px;
}
.copyright .link:hover {
  color: #fff;
}
.copyright .up {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 20%;
  width: 54px;
  height: 54px;
  border-radius: 5px 5px 0 0;
  background: rgb(69, 46, 136);
  color: #fff;
}
@media (max-width: 950px) {
  .copyright .up {
    display: none;
  }
}
.copyright .up span {
  display: block;
}

.fullwidth-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  overflow: hidden;
  height: 840px;
  width: 100%;
  background: url("../img/about-bottom.jpg") no-repeat center;
  background-size: cover;
  align-items: center;
  justify-content: center;
}
.fullwidth-box h1 {
  text-align: center;
  font-size: 60px;
  color: #fff;
}
@media (min-width: 0) and (max-width: 1500px) {
  .fullwidth-box h1 {
    font-size: 45px;
  }
}
.fullwidth-box .desc {
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.fullwidth-box .fullwidth-swiper {
  overflow: hidden;
  margin: 100px auto 0;
  width: 1200px;
  height: 200px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .fullwidth-box .fullwidth-swiper {
    width: 850px;
  }
}
@media (max-width: 950px) {
  .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
.fullwidth-box .fullwidth-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.fullwidth-box .fullwidth-swiper .swiper-slide img {
  width: 100%;
  margin: 0 auto;
}

.home .plate .tlt {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 0px) and (max-width: 1200px) {
  .home .plate .tlt {
    font-size: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .plate .tlt {
    font-size: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .plate .tlt {
    font-size: 45px;
  }
}
.home .plate .tlt span {
    color: rgba(69, 46, 136, 1);
}
.home .banner {
    position: relative;
    background: url("../img/indbanner3.jpg") no-repeat center;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
}
@media (max-width: 950px) {
  .home .banner {
    height: calc(100vh - 100px);
  }
}
@media (max-width: 400px) {
  .home .banner {
    height: calc(100vh - 60px);
  }
}
.home .banner video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home .banner video::-webkit-media-controls-fullscreen-button {
  display: none;
}
.home .banner video::-webkit-media-controls-play-button {
  display: none;
}
.home .banner video::-webkit-media-controls-timeline {
  display: none;
}
.home .banner video::-webkit-media-controls-current-time-display {
  display: none;
}
.home .banner video::-webkit-media-controls-time-remaining-display {
  display: none;
}
.home .banner video::-webkit-media-controls-mute-button {
  display: none;
}
.home .banner video::-webkit-media-controls-toggle-closed-captions-button {
  display: none;
}
.home .banner video::-webkit-media-controls-volume-slider {
  display: none;
}
.home .banner video::-webkit-media-controls-enclosure {
  display: none;
}
.home .banner video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none !important;
}
.home .banner .swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .banner .box {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 1200px;
  margin: 0 auto;
  color: #fff;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .banner .box {
    width: 950px;
  }
}
@media (max-width: 950px) {
  .home .banner .box {
    width: 95%;
    align-items: center;
  }
}
.home .banner .box .h1 {
  font-size: 100px;
  font-family: "font-blod";
  font-weight: bold;
  transition: all 0.5s;
  white-space: nowrap;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .banner .box .h1 {
    white-space: nowrap;
    font-size: 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  .home .banner .box .h1 {
    font-size: 80px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .banner .box .h1 {
    font-size: 70px;
  }
}
@media (max-width: 950px) {
  .home .banner .box .h1 {
    font-size: 30px;
    text-align: center;
  }
}
@media (min-width: 400px) and (max-width: 550px) {
  .home .banner .box .h1 {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .home .banner .box .h1 {
    font-size: 20px;
  }
}
.home .banner .box .h2 {
  margin: 10px 0;
  font-size: 48px;
  font-family: "ali";
  transition: all 0.5s;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .banner .box .h2 {
    font-size: 30px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .banner .box .h2 {
    font-size: 30px;
  }
}
@media (max-width: 950px) {
  .home .banner .box .h2 {
    font-size: 18px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .home .banner .box .h2 {
    font-size: 16px;
  }
}
.home .banner .box p {
  line-height: 1.5;
  font-size: 18px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .banner .box p {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .home .banner .box p {
    text-align: center;
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .home .banner .box p {
    display: none;
  }
}
.home .banner .box .to {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  background: #6f318a;
  padding: 0 20px;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 400px) {
  .home .banner .box .to {
    width: 200px;
    font-size: 12px;
  }
}
.home .banner .box .to i {
  display: flex;
  align-items: flex-end;
  padding-top: 10px;
  font-size: 30px;
}
@media (max-width: 400px) {
  .home .banner .box .to i {
    font-size: 20px;
  }
}
.home .product {
  overflow: hidden;
  padding-bottom: 80px;
  background: rgb(247, 247, 247);
}
.home .product .type {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 60px 0;
  gap: 30px;
}
.home .product .type .btn1 {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgb(255, 255, 255);
  color: rgb(55, 55, 55);
  font-family: Microsoft YaHei;
  font-size: 16px;
  border: none;
  outline: none;
  font-weight: 600;
}
    .home .product .type .btn1:hover {
        background: linear-gradient(180deg, rgb(127, 97, 214), rgb(69, 46, 136) 100%);
        color: #fff;
    }
.home .product .type .active {
  background: linear-gradient(180deg, rgb(127, 97, 214), rgb(69, 46, 136) 100%);
  color: #fff;
}
.home .product .list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.home .product .list .item {
  width: 320px;
  border: 2px solid transparent;
  height: 360px;
  border-radius: 10px;
  display: flex;
  transition: all 0.5s;
  cursor: pointer;
  flex-direction: column;
  background: rgb(255, 255, 255);
}
    .home .product .list .item .img {
        margin: auto auto 0 auto;
        width: 280px;
        height: 280px;
    }

        .home .product .list .item .img img {
            width: 100%;
            -o-object-fit: cover;
            object-fit: cover;
        }
.home .product .list .item .name {
  height: 60px;
  color: rgb(69, 46, 136);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .product .list .item:hover {
  box-shadow: 0px 4px 16px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid rgb(69, 46, 136);
}
.home .product .list .space {
  width: 320px;
  display: block;
  height: 0;
}
@media screen and (min-width: 1800px) {
  .home .product .list .space {
    width: 0;
  }
}
.home .Motron {
}
.home .Motron .content {
  padding: 0 5%;
}
@media (max-width: 950px) {
  .home .Motron .content {
    flex-wrap: wrap;
  }
}
.home .Motron .content .item {
  position: relative;
  width: 21%;
  height: 600px;
  margin-bottom: 20px;
  background: url("../img/Reamco_Electric_Motors-16-of-45.jpg") no-repeat center;
  background-size: cover;
}
@media (max-width: 950px) {
  .home .Motron .content .item {
    width: 100%;
  }

    .db3 .a2 {
        width: 90%;
    }
    .db3 .a1 {
        font-size: 20px;
    }
}
.home .Motron .content .item:nth-of-type(2) {
  background-image: url("../img/Reamco_Electric_Motors-20-of-45.jpg");
}
.home .Motron .content .item:nth-of-type(3) {
  background-image: url("../img/Reamco_Electric_Motors-26-of-45.jpg");
}
.home .Motron .content .item:nth-of-type(4) {
  background-image: url("../img/capability-statorconstruction.jpg");
}
.home .Motron .content .item::before {
  display: none;
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  border: 2px solid #b4e7ff;
  z-index: 99;
  border-bottom: none;
  border-right: none;
  width: 98px;
  height: 98px;
}
.home .Motron .content .item::after {
  display: none;
  position: absolute;
  content: "";
  right: 10px;
  bottom: 10px;
  border: 2px solid #b4e7ff;
  border-left: none;
  border-top: none;
  width: 98px;
  height: 98px;
}
.home .Motron .content .item:hover .shade {
  transition: all 0.1s;
  display: block;
}
.home .Motron .content .item:hover::after {
  display: block;
}
.home .Motron .content .item:hover::before {
  display: block;
}
.home .Motron .content .item:hover .box {
  display: block;
}
.home .Motron .content .item .shade {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(8, 78, 109, 0.7);
  animation: zhang 0.5s;
}
@keyframes zhang {
  from {
    width: 0;
    height: 0;
  }
  to {
    width: 100%;
    height: 100%;
  }
}
.home .Motron .content .item .box {
  display: none;
  position: relative;
  z-index: 99;
  color: #fff;
  text-align: center;
}
.home .Motron .content .item .box .title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 55px;
  font-weight: bold;
  white-space: pre-wrap;
}
@media screen and (max-width: 1500px) {
  .home .Motron .content .item .box .title {
    font-size: 14px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .Motron .content .item .box .title {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .home .Motron .content .item .box .title {
    font-size: 18px;
  }
}
.home .Motron .content .item .box ul li {
  font-size: 16px;
  line-height: 26px;
}
.home .Motron .content .item .box .view {
  cursor: pointer;
  margin: 50px auto 0;
  width: 102px;
  height: 41px;
  line-height: 41px;
  background: #6f318a;
  color: #fff;
  font-size: 18px;
}
.home .Motron .content .active .shade {
  transition: all 0.1s;
  display: block;
}
.home .Motron .content .active::after {
  display: block;
}
.home .Motron .content .active::before {
  display: block;
}
.home .Motron .content .active .box {
  display: block;
}
.home .news_Box {
  background: #eaf7fd;
}
.home .news_Box .content {
  position: relative;
  width: 1200px;
  padding: 0 0 20px;
  margin: 0 auto;
  padding-bottom: 180px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .news_Box .content {
    width: 930px;
  }
}
@media (max-width: 950px) {
  .home .news_Box .content {
    width: 100%;
    padding: 0 0 150px;
    flex-wrap: wrap;
  }
}
.home .news_Box .item {
  width: 48%;
}
@media (max-width: 950px) {
  .home .news_Box .item {
    width: 90%;
    margin: 0 auto;
  }
}
.home .news_Box .tit {
  font-size: 60px;
  font-weight: bold;
  margin: 100px 0 50px;
  color: #452e88;
  line-height: 1.4;
}
@media (min-width: 0px) and (max-width: 1200px) {
  .home .news_Box .tit {
    font-size: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .news_Box .tit {
    font-size: 40px;
  }
}
.home .news_Box .tit .motrons {
  color: #8829af;
}
.home .news_Box .Why {
  margin-right: 4%;
}
.home .news_Box .Why .box {
  font-size: 17px;
  color: #000;
  line-height: 1.5;
}
.home .news_Box .news .hot a {
  color: #000;
  font-size: 24px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .home .news_Box .news .hot a {
    font-size: 20px;
  }
}
.home .news_Box .news h4 {
  font-size: 16px;
  line-height: 1.5;
}
.home .news_Box .news .fusion-meta-info {
  flex-wrap: wrap;
  margin-top: 150px;
  white-space: nowrap;
  border: 1px solid #b5ddf1;
  border-left: none;
  border-right: none;
  padding: 5px 0;
  font-size: 13px;
  color: #656565;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .home .news_Box .news .fusion-meta-info {
    margin-top: 100px;
  }
}
@media (max-width: 950px) {
  .home .news_Box .news .fusion-meta-info {
    margin-top: 50px;
  }
}
.home .news_Box .news .fusion-meta-info .fusion-read-more {
  color: #084e6d;
  font-size: 13px;
}
.home .news_Box .news .fusion-meta-info a {
  color: #000;
}
.home .job {
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url("../img/job.jpg") no-repeat center;
  background-size: cover;
  padding: 0 20px;
}
.home .job .log {
  margin: 80px auto 10px;
  width: 158px;
}
@media (max-width: 950px) {
  .home .job .log {
    width: 100px;
  }
}
.home .job .log img {
  width: 100%;
}
.home .job .tit {
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  margin-block-start: 30px;
  margin-block-end: 20px;
}
@media (max-width: 950px) {
  .home .job .tit {
    font-size: 20px;
  }
}
@media (min-width: 950px) and (max-width: 1500px) {
  .home .job .tit {
    font-size: 35px;
  }
}
.home .job .h3 {
  text-align: center;
  color: #fff;
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 950px) {
  .home .job .h3 {
    font-size: 12px;
  }
}
.home .job .video {
  margin: 0 auto;
  width: 576px;
  height: 330px;
}
@media (max-width: 950px) {
  .home .job .video {
    width: auto;
    height: auto;
    margin: 0;
  }
}
.home .job .video video {
  width: 100%;
  height: 100%;
}
.home .job .emit {
  margin: 30px 0;
  background: #6f318a;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 950px) {
  .home .job .emit {
    font-size: 13px;
  }
}
.home .job .tips {
  text-align: center;
  color: #10aaef;
  font-size: 24px;
}
@media (max-width: 950px) {
  .home .job .tips {
    font-size: 15px;
  }
}
.cooperation {
  background: rgb(114, 104, 141);
  height: 260px;
  overflow: hidden;
}
.cooperation .cooperation-swiper {
  overflow: hidden;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cooperation .cooperation-swiper {
    width: 850px;
  }
}
@media (max-width: 950px) {
  .cooperation .cooperation-swiper {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .cooperation .cooperation-swiper {
    width: 100%;
  }
}
.cooperation .cooperation-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.cooperation .cooperation-swiper .swiper-slide img {
  width: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
@media (max-width: 400px) {
  .cooperation .cooperation-swiper .swiper-slide img {
    width: 100%;
  }
}
@media (max-width: 950px) {
  .cooperation .cooperation-swiper .swiper-slide img {
    width: 100%;
  }
}

.about .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .about .banner {
    top: 60px;
  }
}
.about .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .plate {
  background: #fff;
  padding-top: 90px;
}
.about .plate .tit {
  position: relative;
  padding-bottom: 40px;
  text-align: center;
  line-height: 1.4;
  font-size: 60px;
  font-weight: bold;
  color: #452e88;
}
@media (max-width: 950px) {
  .about .plate .tit {
    font-size: 35px;
  }
}
@media (min-width: 950px) and (max-width: 1500px) {
  .about .plate .tit {
    font-size: 45px;
  }
}
.about .plate .tit span {
  color: #8829af;
}
.about .plate .tit::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 74px;
  height: 4px;
  transform: translate(-50%, 0);
  background: #8829af;
}
.about .plate .tips {
  margin: 30px 0 50px;
  color: #452e88;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 950px) {
  .about .plate .tips {
    font-size: 15px;
  }
}
.about .plate .content {
  justify-content: space-between;
  margin: 0 auto;
  width: 1200px;
  padding-bottom: 120px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .about .plate .content {
    width: 920px;
  }
}
@media (max-width: 950px) {
  .about .plate .content {
    width: auto;
    margin: 0 20px;
    flex-direction: column;
  }
}
.about .plate .content .txt {
  width: 45%;
}
@media (max-width: 950px) {
  .about .plate .content .txt {
    width: 100%;
  }
}
.about .plate .content .txt p {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom:14px;
}
.about .plate .content .slideshow {
  width: 45%;
  height: 20vw;
}
@media (max-width: 950px) {
  .about .plate .content .slideshow {
    width: 100%;
    height: auto;
  }
}
.about .plate .content .slideshow .control {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.about .plate .content .slideshow .control .right {
  transform: rotate(180deg);
}
.about .plate .content .slideshow .control .every {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #858585;
  margin-left: 10px;
}
.about .plate .content .slideshow .control .every .iconfont {
  font-size: 30px;
  color: #fff;
}
.about .plate .content .swiper {
  width: 100%;
  height: 20vw;
}
@media (max-width: 950px) {
  .about .plate .content .swiper {
    width: 100%;
    height: auto;
  }
}
.about .plate .content .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.about .plate .content .swiper .swiper-wrapper img {
  width: 100%;
  height: auto;
}
.about .fullwidth-box {
  margin-bottom: 10px;
  overflow: hidden;
  height: 840px;
  width: 100%;
  background: url("../img/about-bottom.jpg") no-repeat center;
  background-size: cover;
}
.about .fullwidth-box h1 {
  text-align: center;
  font-size: 60px;
  color: #fff;
}
@media (min-width: 0px) and (max-width: 1500px) {
  .about .fullwidth-box h1 {
    font-size: 35px;
  }
}
.about .fullwidth-box .desc {
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.about .fullwidth-box .fullwidth-swiper {
  overflow: hidden;
  margin: 100px auto 0;
  width: 1200px;
  height: 200px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .about .fullwidth-box .fullwidth-swiper {
    width: 850px;
  }
}
@media (max-width: 950px) {
  .about .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .about .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
.about .fullwidth-box .fullwidth-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.about .fullwidth-box .fullwidth-swiper .swiper-slide img {
  width: 100%;
  margin: 0 auto;
}

.cap .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .cap .banner {
    top: 60px;
  }
}
.cap .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cap .zls {
  padding: 90px 0 150px;
  background: #f2fbff;
  overflow: hidden;
}
@media (max-width: 950px) {
  .cap .zls {
    padding: 45px 0 75px;
    height: auto;
  }
}
.cap .zls .title {
  margin-block-start: 0;
  color: #452e88;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .cap .zls .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .cap .zls .title {
    font-size: 40px;
  }
}
.cap .zls .fen {
  width: 74px;
  height: 4px;
  background: #8829af;
  margin: 0 auto;
}
.cap .zls .desc {
  margin: 60px 0;
  font-size: 24px;
  text-align: center;
  color: #452e88;
}
@media (max-width: 950px) {
  .cap .zls .modules {
    flex-wrap: wrap;
    padding: 0 5%;
  }
}
.cap .zls .modules .item {
  padding: 0 20px;
  width: 310px;
  height: 320px;
  background: #fff;
  border-radius: 6px;
  margin-right: 47px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .cap .zls .modules .item {
    width: 250px;
  }
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .modules .item {
    width: 210px;
    height: auto;
  }
}
@media (max-width: 950px) {
  .cap .zls .modules .item {
    width: 80%;
    height: auto;
    margin-right: 0;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.cap .zls .modules .item:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
}
.cap .zls .modules .item:hover ul li {
  color: #0fa9ee;
}
.cap .zls .modules .item:nth-of-type(4) {
  margin-right: 0;
}
.cap .zls .modules .item .tit {
  color: #0a2c45;
  font-size: 24px;
}
.cap .zls .modules .item ul {
  color: #452e88;
  font-size: 16px;
}
.cap .zls .modules .item ul li {
  line-height: 1.8;
}
.cap .zls .swiper {
  width: 1200px;
  margin: 0 auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .swiper {
    width: auto;
    margin: 0 30px;
  }
}
@media (max-width: 950px) {
  .cap .zls .swiper {
    width: auto;
    margin: 0 30px;
  }
}
.cap .zls .swiper .swiper-button-next,
.cap .zls .swiper .swiper-button-prev {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 10;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  top: 50%;
  transition: all 0.3s ease;
}
.cap .zls .swiper .swiper-button-next::after,
.cap .zls .swiper .swiper-button-prev::after {
  font-size: 14px;
}
.cap .zls .swiper .swiper-slide {
  width: 390px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .swiper .swiper-slide {
    height: auto;
  }
}
@media (max-width: 950px) {
  .cap .zls .swiper .swiper-slide {
    height: auto;
  }
}
.cap .zls .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.cap .zls .text {
  width: 1200px;
  margin: 60px auto;
  color: #000;
  font-size: 18px;
  line-height: 1.778;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .cap .zls .text {
    width: auto;
    margin: 0 30px;
  }
}
@media (max-width: 950px) {
  .cap .zls .text {
    width: auto;
    margin: 0 30px;
  }
}
.cap .zls .text .color {
  color: #452e88;
}
.cap .zls .text .tit {
  color: #452e88;
  font-size: 24px;
}
.cap .zls .text .det {
  margin: 60px auto;
}
.cap .zls .text ul {
  padding-inline-start: 40px;
}
.cap .zls .text ul li {
  list-style: initial;
  display: list-item;
  text-align: -webkit-match-parent;
}
.cap .zls .text ul li::marker {
  color: #0fa9ee;
}
.cap .zls .text ul ul {
  margin-top: 10px;
}
.cap .zls .text ul ul li {
  list-style: circle;
}
.cap .detail {
  height: auto;
}

.the-ramco .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .the-ramco .banner {
    top: 60px;
  }
}
.the-ramco .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.the-ramco .plate {
  overflow: hidden;
}
.the-ramco .zls {
  background: #fff;
}
.the-ramco .zls .title {
  padding-top: 30px;
  color: #452e88;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .the-ramco .zls .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .the-ramco .zls .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .the-ramco .zls .title {
    font-size: 40px;
  }
}
.the-ramco .zls .fen {
  width: 74px;
  height: 4px;
  background: #8829af;
  margin: 0 auto;
}
.the-ramco .zls .desc {
  margin: 60px 0;
  font-size: 24px;
  text-align: center;
  color: #452e88;
}
.the-ramco .box {
  background: #fff;
  padding-bottom: 50px;
}
.the-ramco .box .title {
  color: #452e88;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .the-ramco .box .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .the-ramco .box .title {
    font-size: 25px;
  }
}
.the-ramco .box .desc {
  margin: 29px 0 40px;
  font-size: 24px;
  text-align: center;
  color: #1b1b1b;
  line-height: 1.667;
}
.the-ramco .box .photo {
  margin: 0 auto;
  width: 360px;
  height: 360px;
}
.the-ramco .box .photo img {
  width: 100%;
  height: 100%;
}
.the-ramco .box:nth-of-type(2n) {
  background: #f2fbff;
}

.contact .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .contact .banner {
    top: 60px;
  }
}
.contact .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .plate {
  overflow: hidden;
  background: #fff;
}
.contact .zls {
  background: #fff;
}
.contact .zls .title {
  padding-top: 35px;
  color: #452e88;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .contact .zls .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .contact .zls .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .contact .zls .title {
    font-size: 40px;
  }
}
.contact .zls .fen {
  width: 74px;
  height: 4px;
  background: #8829af;
  margin: 0 auto;
}
.contact .zls .desc {
  margin: 55px 0;
  font-size: 24px;
  text-align: center;
  color: #452e88;
}
.contact .form {
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .contact .form {
    width: auto;
    margin: 0 20px;
  }
}
@media (max-width: 950px) {
  .contact .form {
    width: auto;
    margin: 0 10px;
  }
}
.contact .form .form-item {
  margin-top: 16px;
  margin-right: 4%;
  width: 48%;
}
.contact .form .form-item:nth-of-type(2n) {
  margin-right: 0;
}
.contact .form .form-item .tlt {
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #0a2c45;
  font-size: 18px;
}
.contact .form .form-item .tlt span {
  color: #8829af;
  font-size: 30px;
}
.contact .form .form-item :where(select, input) {
  width: 100%;
  height: 45px;
  border: 1px solid #79888f;
  border-radius: 5px;
  outline: none;
  padding: 0 5px;
}
.contact .form .form-item .bottom-name {
  margin-top: 5px;
  color: #5f5f5f;
  font-size: 14px;
}
.contact .form .form-item textarea {
  width: 100%;
  height: 286px;
  outline: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #79888f;
}
.contact .form .submit {
  margin: 50px 0;
  width: 112px;
  height: 50px;
  color: #fff;
  font-size: 18px;
  background: #8829af;
  border-radius: 5px;
  border: none;
  outline: none;
}
.contact .form .lenth {
  width: 100%;
}
.contact .info {
  background: #f2fbff;
}
.contact .info .box {
  overflow: hidden;
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .contact .info .box {
    width: auto;
    margin: 0 30px;
  }
}
@media (max-width: 950px) {
  .contact .info .box {
    width: auto;
    margin: 0 20px;
  }
}
.contact .info .box .tit {
  margin: 30px 0;
  font-size: 24px;
  color: #0b658d;
  font-weight: bold;
}
.contact .info .box ul li {
  font-family: "ali", serif;
  line-height: 1.78;
  color: #0a2c45;
  font-size: 16px;
}
.contact .info .box ul li .iconfont {
  font-size: 20px;
}
.contact .info .box .social {
  padding-bottom: 80px;
  color: #8829af;
}
.contact .info .box .social .iconfont {
  font-size: 30px;
}

.news .banner {
  position: relative;
  height: 100px;
  width: 100%;
  overflow: hidden;
}
.news .banner .txt {
  margin: 40px auto 0;
  width: 1200px;
}
.news .banner .txt .name {
  color: #8829af;
  font-size: 36px;
}
.news .banner .txt .nav {
  color: #e1f3ff;
  font-size: 14px;
}
.news .banner .txt .nav a {
  color: #e1f3ff;
  font-size: 14px;
}
.news .banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.news .list {
  padding-bottom: 100px;
}
.news .list .item {
  width: 1200px;
  margin: 40px auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .news .list .item {
    width: auto;
    margin: 40px 20px;
  }
}
@media (max-width: 950px) {
  .news .list .item {
    width: auto;
    margin: 40px 20px;
  }
}
.news .list .item .title a {
  font-size: 24px;
  color: #000;
}
.news .list .item .desc {
  font-weight: unset;
  font-size: 16px;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news .list .item .info {
  height: 40px;
  border: 1px solid #b5ddf1;
  border-left: none;
  border-right: none;
  color: #656565;
  font-size: 13px;
}
@media (max-width: 950px) {
  .news .list .item .info .b {
    display: none;
  }
}
@media (max-width: 400px) {
  .news .list .item .info .a {
    display: none;
  }
  .news .list .item .info .b {
    display: none;
  }
}
.news .list .item .info .more {
  color: #084e6d;
  display: flex;
  align-items: center;
}

@media (max-width: 950px) {
  .news.detail .banner .txt {
    width: 100%;
    text-align: center;
  }
}
.news.detail .banner .name {
  color: #8829af;
  font-size: 14px;
}
@media (max-width: 950px) {
  .news.detail .banner .name {
    width: 100%;
    text-align: center;
  }
}
.news.detail .banner .nav {
  font-size: 14px;
}
.news.detail .banner .nav a {
  color: #e1f3ff;
  font-size: 14px;
}
@media (max-width: 950px) {
  .news.detail .banner .nav {
    display: none;
  }
}
.news.detail .container .content {
  width: 1200px;
  margin: 50px auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .news.detail .container .content {
    width: auto;
    margin: 50px 20px;
  }
}
@media (max-width: 950px) {
  .news.detail .container .content {
    width: auto;
    margin: 50px 20px;
  }
}
.news.detail .container .content .title {
  color: #000;
}
.news.detail .container .content .text {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

.motron .title {
  margin-top: 85px;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.motron .log {
  margin: 30px;
  text-align: center;
}
.motron .desc {
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.motron .form {
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .motron .form {
    width: auto;
    margin: 0 20px;
  }
}
@media (max-width: 950px) {
  .motron .form {
    width: auto;
    margin: 0 10px;
  }
}
.motron .form .form-item {
  margin-top: 16px;
  margin-right: 4%;
  width: 48%;
}
.motron .form .form-item:nth-of-type(2n) {
  margin-right: 0;
}
.motron .form .form-item .tlt {
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}
.motron .form .form-item .tlt span {
  color: #8829af;
  font-size: 30px;
}
.motron .form .form-item :where(select, input) {
  width: 100%;
  height: 45px;
  border: 1px solid #79888f;
  border-radius: 5px;
  outline: none;
  padding: 0 5px;
}
.motron .form .form-item .bottom-name {
  margin-top: 5px;
  color: #5f5f5f;
  font-size: 14px;
}
.motron .form .form-item textarea {
  width: 100%;
  height: 286px;
  outline: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #79888f;
}
.motron .form .submit {
  margin: 50px 0;
  width: 112px;
  height: 50px;
  color: #fff;
  font-size: 18px;
  background: #8829af;
  border-radius: 5px;
  border: none;
  outline: none;
}
.motron .form .lenth {
  width: 100%;
}
.motron .info {
  background: #f2fbff;
  height: 300px;
}
@media (max-width: 950px) {
  .motron .info {
    flex-wrap: wrap;
    height: auto;
  }
}
.motron .info .item {
  margin: 0 80px;
}
@media (max-width: 950px) {
  .motron .info .item {
    width: 80%;
    margin: 30px auto;
  }
}
.motron .info .item .name {
  text-align: center;
  color: #452e88;
  font-size: 18px;
}
.motron .info .item .text {
  text-align: center;
  margin-top: 20px;
  color: #8829af;
  font-size: 24px;
}
.motron .info .fen {
  margin: 0 20px;
  width: 1px;
  height: 110px;
  background: #c1c1c1;
}
@media (max-width: 950px) {
  .motron .info .fen {
    display: none;
  }
}

.show {
  display: block !important;
}

.products .banner {
  position: sticky;
  z-index: -1;
  top: 100px;
}
@media (max-width: 400px) {
  .products .banner {
    top: 60px;
  }
}
.products .banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .plate {
  overflow: hidden;
  background-color: #fff;
}
.products .plate .title {
  padding-top: 30px;
  color: #452e88;
  font-size: 60px;
  text-align: center;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .products .plate .title {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .products .plate .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .products .plate .title {
    font-size: 40px;
  }
}
.products .plate .fen {
  width: 74px;
  height: 4px;
  background: #8829af;
  margin: 0 auto;
}
.products .plate .desc {
    margin: 60px auto;
    font-size: 24px;
    text-align: center;
    color: #000;
    max-width: 1111px;
}
.products .product {
  overflow: hidden;
  padding-bottom: 80px;
  background: rgb(247, 247, 247);
}
.products .product .type {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 60px 0;
  gap: 30px;
}
    .products .product .type .btn1 {
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 6px;
        background: rgb(255, 255, 255);
        color: rgb(55, 55, 55);
        font-family: Microsoft YaHei;
        font-size: 16px;
        border: none;
        outline: none;
        font-weight: 600;
    }
.products .product .type .btn1:hover {
  background: linear-gradient(180deg, rgb(127, 97, 214), rgb(69, 46, 136) 100%);
  color: #fff;

}
.products .product .type .active {
  background: linear-gradient(180deg, rgb(127, 97, 214), rgb(69, 46, 136) 100%);
  color: #fff;
}
.products .product .list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.products .product .list .item {
  width: 320px;
  border: 2px solid transparent;
  height: 360px;
  border-radius: 10px;
  display: flex;
  transition: all 0.5s;
  cursor: pointer;
  flex-direction: column;
  background: rgb(255, 255, 255);
}
.products .product .list .item .img {
  margin: auto auto 0 auto;
  width: 280px;
  height: 280px;
}
.products .product .list .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .product .list .item .name {
  height: 60px;
  color: rgb(69, 46, 136);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .product .list .item:hover {
  box-shadow: 0px 4px 16px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid rgb(69, 46, 136);
}
.products .product .list .space {
  width: 320px;
  display: block;
  height: 0;
}
@media screen and (min-width: 1800px) {
  .products .product .list .space {
    width: 0;
  }
}
.products .fullwidth-box {
  margin-bottom: 10px;
  overflow: hidden;
  height: 840px;
  width: 100%;
  background: url("../img/product-about.jpg") no-repeat center;
  background-size: cover;
}
.products .fullwidth-box h1 {
  text-align: center;
  font-size: 60px;
  color: #fff;
}
@media (min-width: 0px) and (max-width: 1500px) {
  .products .fullwidth-box h1 {
    font-size: 35px;
  }
}
.products .fullwidth-box .desc {
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.products .fullwidth-box .fullwidth-swiper {
  overflow: hidden;
  margin: 100px auto 0;
  width: 1200px;
  height: 200px;
}
@media (min-width: 950px) and (max-width: 1200px) {
  .products .fullwidth-box .fullwidth-swiper {
    width: 850px;
  }
}
@media (max-width: 950px) {
  .products .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .products .fullwidth-box .fullwidth-swiper {
    width: 80%;
  }
}
.products .fullwidth-box .fullwidth-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.products .fullwidth-box .fullwidth-swiper .swiper-slide img {
  width: 100%;
  margin: 0 auto;
}
.products .mianbanxie {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 18vw;
}
@media screen and (max-width: 1000px) {
  .products .mianbanxie {
    padding: 0 2vw;
  }
}
.products .mianbanxie .item {
  display: flex;
  align-items: center;
  color: rgb(100, 104, 129);
  font-family: Noto Sans SC;
  font-size: 12px;
  font-weight: 500;
}
.products .mianbanxie .item .icon {
  margin-right: 5px;
}
.products .mianbanxie .acc {
  color: #452e88;
}
.products .produce-list {
  background: rgb(247, 247, 247);
}
.products .produce-list .produce-list-title {
  padding: 40px 0;
  color: #452e88;
  font-family: Microsoft YaHei UI;
  font-size: 36px;
  text-align: center;
  font-weight: 600;
}
.products .produce-list .produce-list-content {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  width: calc(1600px * var(--size));
  gap: calc(30px * var(--size));
}
@media screen and (max-width: 1280px) and (min-width: 950px) {
  .products .produce-list .produce-list-content {
    width: 90%;
  }
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content {
    width: 90%;
    flex-direction: column;
  }
}
.products .produce-list .produce-list-content .ll {
  width: calc(420px * var(--size));
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .ll {
    width: 90%;
    margin: 0 auto;
  }
}
.products .produce-list .produce-list-content .ll .item {
  border-radius: 10px;
  border: 1px solid transparent;
  width: 100%;
  background: white;
  padding: calc(15px * var(--size)) calc(20px * var(--size));
  display: grid;
  grid-template-rows: calc(60px * var(--size)) 0fr;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 10px;
}
.products .produce-list .produce-list-content .ll .item .top {
  display: flex;
  height: calc(60px * var(--size));
  align-items: center;
  justify-content: space-between;
  color: #452e88;
  font-family: Microsoft YaHei UI;
  font-size: 20px;
  font-weight: 600;
}
.products .produce-list .produce-list-content .ll .item .top .title {
  width: calc(300px * var(--size));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.products .produce-list .produce-list-content .ll .item .top .icon {
  width: calc(36px * var(--size));
  height: calc(36px * var(--size));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.products .produce-list .produce-list-content .ll .item .top .icon img {
  width: calc(23.5px * var(--size));
  height: calc(13.47px * var(--size));
}
.products .produce-list .produce-list-content .ll .item .check-list {
  min-height: 0;
  overflow: hidden;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #452e88;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei UI;
  font-size: 14px;
  font-weight: 400;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon {
  position: relative;
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon input {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon .img {
  width: 16px;
  height: 16px;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon .img img:first-child {
  display: block;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon .img img:last-child {
  display: none;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon input:checked + .img img:first-child {
  display: none !important;
}
.products .produce-list .produce-list-content .ll .item .check-list .check-item .info .icon input:checked + .img img:last-child {
  display: block !important;
}
.products .produce-list .produce-list-content .ll .ac.item {
  border: 1px solid rgb(136, 41, 175);
  grid-template-rows: 60px 1fr;
}
.products .produce-list .produce-list-content .ll .ac.item .top .icon {
  transform: rotate(180deg);
}
.products .produce-list .produce-list-content .rr {
  width: calc(100% - 450px * var(--size));
  /* 分页容器：居中 + 基础样式 */
  /* 输入框、按钮通用样式 */
  /* 选中状态 */
  /* 按钮 hover 效果 */
  /* 适配小屏幕：元素自动换行，避免挤压 */
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .rr {
    width: 90%;
    margin: 0 auto;
  }
}
.products .produce-list .produce-list-content .rr .card {
  width: 100%;
}
.products .produce-list .produce-list-content .rr .card .card-item {
  width: 100%;
  padding: calc(35px * var(--size)) calc(20px * var(--size));
  margin-bottom: 20px;
  transition: all 0.3s;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: flex-start;
  gap: calc(50px * var(--size));
}
.products .produce-list .produce-list-content .rr .card .card-item:hover {
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1280px) and (min-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
}
.products .produce-list .produce-list-content .rr .card .card-item .card-img {
  width: calc(280px * var(--size));
  height: calc(280px * var(--size));
  margin-top: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item .card-img {
    margin: 0 auto;
    width: 280px;
    height: 280px;
  }
}
.products .produce-list .produce-list-content .rr .card .card-item .card-img img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info {
  width: calc(100% - 340px * var(--size));
}
@media screen and (max-width: 1280px) and (min-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item .card-info {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item .card-info {
    width: 90%;
    margin: 0 auto;
  }
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .product-title {
  color: rgb(69, 46, 136);
  font-family: Noto Sans SC;
  font-size: 20px;
  font-weight: 600;
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .product-model {
  margin: 5px 0 20px;
  color: rgb(109, 114, 120);
  font-family: Noto Sans SC;
  font-size: 16px;
  font-weight: 600;
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .features {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item .card-info .features {
    flex-direction: column;
  }
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .features::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgb(231, 226, 246);
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item .card-info .features::after {
    display: none;
  }
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .features .features-item {
  width: 40%;
}
@media screen and (max-width: 950px) {
  .products .produce-list .produce-list-content .rr .card .card-item .card-info .features .features-item {
    width: 90%;
    margin: 0 auto;
  }
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .features .features-item .features-item-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-family: Noto Sans SC;
  margin-bottom: 10px;
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .features .features-item .features-item-col .label {
  color: #71688c;
  width: 50%;
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .features .features-item .features-item-col .value {
  color: #000000;
  text-align: right;
  width: 50%;
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .more-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgb(69, 46, 136);
  color: rgb(255, 255, 255);
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
}
.products .produce-list .produce-list-content .rr .card .card-item .card-info .more-btn:hover {
  background: rgb(136, 41, 175);
}
.products .produce-list .produce-list-content .rr .pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px; /* 元素间距 */
  font-size: 14px;
  color: #333;
  margin: 40px 0;
  flex-wrap: wrap; /* 适配小屏幕换行 */
}
.products .produce-list .produce-list-content .rr .pagination input {
  width: 50px;
  padding: 4px 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
}
.products .produce-list .produce-list-content .rr .pagination button,
.products .produce-list .produce-list-content .rr .pagination span.page-btn {
  padding: 4px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.products .produce-list .produce-list-content .rr .pagination span.page-btn.active {
  background-color: #6c5ce7;
  color: #fff;
  border-color: #6c5ce7;
}
.products .produce-list .produce-list-content .rr .pagination button:hover,
.products .produce-list .produce-list-content .rr .pagination span.page-btn:hover {
  background-color: #f5f5f5;
}
@media (max-width: 500px) {
  .products .produce-list .produce-list-content .rr .pagination {
    gap: 8px;
  }
  .products .produce-list .produce-list-content .rr .pagination input,
  .products .produce-list .produce-list-content .rr .pagination button,
  .products .produce-list .produce-list-content .rr .pagination span.page-btn {
    font-size: 12px;
    padding: 3px 8px;
  }
}

.products-detail {
  /* 产品主内容 */
  /* 更多信息板块 */
  /* 描述板块 */
  /* 下载板块 */
  /* 响应式设计 - 960px以下 */
  /* 小屏幕手机适配 - 600px以下 */
}
.products-detail .product-details {
  padding: 50px 0;
  background: rgb(247, 247, 247);
}
.products-detail .container {
  width: 1380px;
  margin: 0 auto;
}
@media screen and (max-width: 1450px) {
  .products-detail .container {
    width: 1000px;
  }
}
@media screen and (max-width: 1000px) {
  .products-detail .container {
    width: 90%;
  }
}
.products-detail .section-title {
  display: flex;
  align-items: center;
  position: relative;
  color: rgb(69, 46, 136);
  font-family: Microsoft YaHei UI;
  font-size: 24px;
  font-weight: 600;
}
.products-detail .section-title::before {
  content: "";
  margin-right: 5px;
  width: 3px;
  height: 24px;
  background: rgb(136, 41, 175);
}
.products-detail .product-media {
  width: 100;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .products-detail .product-media {
    display: block;
  }
}
.products-detail .product-media .imgBox {
  width: 584px;
}
@media screen and (max-width: 1450px) {
  .products-detail .product-media .imgBox {
    width: 450px;
  }
}
@media screen and (max-width: 1000px) {
  .products-detail .product-media .imgBox {
    width: 100%;
  }
}
.products-detail .product-media .imgBox .main-image {
  width: 584px;
  height: 584px;
  margin: 0 auto;
}
@media screen and (max-width: 1450px) {
  .products-detail .product-media .imgBox .main-image {
    width: 450px;
    height: 450px;
  }
}
@media screen and (max-width: 1000px) {
  .products-detail .product-media .imgBox .main-image {
    width: 90vw;
    height: 90vw;
  }
}
.products-detail .product-media .imgBox .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-detail .product-media .imgBox .swiperBox {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-detail .product-media .imgBox .swiperBox .control {
  margin: 0 10px;
}
.products-detail .product-media .imgBox .swiperBox .control i {
  font-size: 20px;
  color: #452e88;
}
.products-detail .product-media .imgBox .swiperBox .swiper {
  width: 280px;
  height: 80px;
  margin: 0;
}
.products-detail .product-media .imgBox .swiperBox .swiper .swiper-slide {
  width: 80px !important;
  height: 80px !important;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid rgb(129, 115, 168);
  border-radius: 6px;
}
.products-detail .product-media .imgBox .swiperBox .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.products-detail .product-media .imgBox .swiperBox .swiper .swiper-slide-active {
  border: 1px solid rgb(136, 41, 175);
  border-radius: 6px;
}
.products-detail .product-media .product-info {
  padding: 30px;
  width: 570px;
  height: 695px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1450px) {
  .products-detail .product-media .product-info {
    width: 450px;
  }
}
@media screen and (max-width: 1000px) {
  .products-detail .product-media .product-info {
    width: 100%;
    margin-top: 20px;
  }
}
.products-detail .product-media .product-info .product-title {
  margin-bottom: 15px;
  color: rgb(69, 46, 136);
  font-family: Microsoft YaHei;
  font-size: 20px;
  font-weight: 600;
}
.products-detail .product-media .product-info .product-model {
  color: rgb(109, 114, 120);
  font-family: Noto Sans SC;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 20px;
  font-weight: 600;
}
.products-detail .product-media .product-info .product-desc {
  border-bottom: 1px solid rgb(169, 160, 192);
  border-top: 1px solid rgb(169, 160, 192);
  margin-top: 10px;
  margin-bottom: 30px;
  color: #555555;
  line-height: 1.7;
  min-height: 440px;
}
.products-detail .product-media .product-info .tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 90px;
  gap: 0 18px;
  width: calc(100% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}
    .products-detail .product-media .product-info .tabs a {
        display: block;
        height: 28px;
        border: 1px solid rgb(69, 46, 136);
        border-radius: 100px;
        background: rgb(255, 255, 255);
        padding: 0 10px;
        line-height: 28px;
    }
.products-detail .features {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 950px) {
  .products-detail .features {
    flex-direction: column;
  }
}
.products-detail .features::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgb(231, 226, 246);
}
@media screen and (max-width: 950px) {
  .products-detail .features::after {
    display: none;
  }
}
.products-detail .features .features-item {
  width: 40%;
}
@media screen and (max-width: 950px) {
  .products-detail .features .features-item {
    width: 90%;
    margin: 0 auto;
  }
}
.products-detail .features .features-item .features-item-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-family: Noto Sans SC;
  margin-bottom: 20px;
}
.products-detail .features .features-item .features-item-col .label {
  color: #71688c;
  width: 50%;
}
.products-detail .features .features-item .features-item-col .value {
  color: #000000;
  text-align: right;
  width: 50%;
}
.products-detail .specs-table {
  width: 100%;
  border-collapse: collapse;
}
.products-detail .specs-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.products-detail .specs-table td {
  padding: 12px 10px;
}
.products-detail .specs-table td:first-child {
  font-weight: 600;
  width: 40%;
}
.products-detail .more-info {
  padding: 40px 0;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
}
.products-detail .product-description {
  padding: 50px 0;
  background: rgb(247, 247, 247);
}
.products-detail .desc-content {
  display: flex;
  gap: 40px;
}
.products-detail .desc-image {
  width: 40%;
}
.products-detail .desc-image img {
  width: 100%;
}
.products-detail .desc-text {
  width: 60%;
}
.products-detail .desc-text h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  font-weight: 600;
  color: rgb(69, 46, 136);
}
.products-detail .desc-text ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.products-detail .desc-text li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: rgb(57, 48, 84);
}
.products-detail .downloads {
  padding: 40px 0;
  background-color: #fff;
}
.products-detail .download-cards {
  display: flex;
  gap: 30px;
}
.products-detail .download-card {
  flex: 1;
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
  height: auto;
  border-radius: 5px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
}
.products-detail .download-card .bg {
  width: 100%;
  margin: 0 auto;
  height: 334px;
  background: #000;
  border: 1px solid rgb(129, 115, 168);
  border-radius: 6px;
  background: rgb(129, 115, 168);
  padding: 15px;
}
@media screen and (max-width: 1400px) {
  .products-detail .download-card .bg {
    height: 253px;
  }
}
@media screen and (max-width: 1000px) {
  .products-detail .download-card .bg {
    width: 200px;
    height: 200px;
  }
}
.products-detail .download-card .bg img {
  width: 100%;
  height: 100%;
}
.products-detail .download-card h4 {
  margin-bottom: 20px;
  font-size: 16px;
}
.products-detail .download-btn {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(69, 46, 136);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.products-detail .download-btn .text {
  margin-right: 5px;
}
.products-detail .download-btn:hover {
  background-color: #0052a3;
}
@media (max-width: 960px) {
  .products-detail {
    /* 头部导航 */
    /* 产品主内容 */
    /* 更多信息板块 */
    /* 描述板块 */
    /* 下载板块 */
  }
  .products-detail .product-details .container {
    flex-direction: column;
  }
  .products-detail .product-media,
  .products-detail .product-info {
    width: 100%;
  }
  .products-detail .product-title {
    font-size: 20px;
  }
  .products-detail .info-label,
  .products-detail .info-value {
    width: calc(50% - 10px);
  }
  .products-detail .desc-content {
    flex-direction: column;
  }
  .products-detail .desc-image,
  .products-detail .desc-text {
    width: 100%;
  }
  .products-detail .download-cards {
    flex-direction: column;
  }
  .products-detail .download-card {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .products-detail .info-label,
  .products-detail .info-value {
    width: 100%;
  }
  .products-detail .thumbnails {
    flex-wrap: wrap;
  }
  .products-detail .tab-link {
    padding: 8px 12px;
    font-size: 14px;
  }
  .products-detail .section-title {
    font-size: 18px;
  }
}/*# sourceMappingURL=css.css.map */



.db3 {
    background: rgba(69, 46, 136, 1); width:100%; height:100px; margin:5px auto 20px auto;
}
    .db3 .a1 {
        font-weight: 700;
        font-size: 24px;
        line-height: 100px;
        color: #fff;
        text-align: center;
        float:left;
    }

    .db3 .a2 {
        width:1188px; height:100px; margin:0 auto;
    }
    .db3 .a3 {
        width: 245px;
        height: 50px;
        float: right;
        color: rgba(69, 46, 136, 1);
        line-height: 50px;
        border-radius: 6px;
        text-indent: 34px;
        margin-top: 25px;
        font-weight: bold;
        background: #fff;
    }
        .db3 .a3 span {
                margin-left: 20px;
        }



.compare-plate {
    border: 1px solid #eee;
    background: #fafafa;
    padding: 28px 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.compare-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.compare-title {
    font-size: 28px;
    color: #533089;
    font-weight: 700;
    margin: 0 0 8px
}

.compare-sub {
    color: #333;
    margin-bottom: 18px
}

.compare-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee
}

.compare-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

    .compare-col.left, .compare-col.right {
        padding: 10px
    }

.motor-img img {
    max-width: 240px;
    width: 88%;
    height: auto;
    display: block;
    margin: 0 auto
}

.compare-col.center {
    flex: 0 0 80px;
    position: relative
}

.vs-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #533089;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin: 0 auto
}

.compare-lists {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    gap: 30px
}

.compare-list {
    flex: 1;
    text-align: left;
    padding: 18px
}

    .compare-list h3 {
        color: #533089;
        margin-bottom: 10px
    }

    .compare-list ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

        .compare-list ul li {
            padding: 6px 0;
            color: #333
        }

.right-list {
    text-align: right
}

/* OEM/ODM */
.oem-plate {
    margin-top: 18px;
    border: 1px solid #eee;
    background: #fff;
    padding: 18px;
    border-radius: 6px
}

.oem-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 6px
}

.oem-text {
    flex: 1
}

    .oem-text h3 {
        color: #533089;
        margin: 0 0 10px
    }

    .oem-text p {
        color: #333;
        margin: 0
    }

.oem-icons {
    flex: 2;
    display: flex;
    justify-content: space-around;
    align-items: center
}

.oem-item {
    text-align: center;
    max-width: 160px
}

    .oem-item .label {
        margin-top: 8px;
        color: #333
    }

    .oem-item i {
        font-size: 36px;
        color: #533089
    }

/* Responsive */
@media (max-width:950px) {
    .compare-panel {
        flex-direction: column
    }

    .compare-lists {
        flex-direction: column
    }

    .right-list {
        text-align: left
    }

    .oem-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .oem-icons {
        width: 100%;
        justify-content: space-between
    }
}


.home .banner .box .a1 {
    color: #000;
    font-size: 50px;
    font-weight: bold;
    line-height: 60px;
    width:630px;
    margin-bottom:20px;
}

.home .banner .box .a2 {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    width:520px;
}
.home .banner .box .a3 {
    margin-top:100px;
}
    .home .banner .box .a3 span {
        margin-left: 8px;
    }
    .home .banner .box .a3 .a31 {
        width: 240px;
        height: 50px;
        background: rgba(69, 46, 136, 1);
        color: #fff;
        float: left;
        font-size: 20px;
        line-height: 50px;
        text-indent: 20px;
        border-radius: 6px;
        border: 1px solid rgba(69, 46, 136, 1);
    }


    .home .banner .box .a3 .a32 {
        width: 270px;
        height: 50px;
        background:#fff;
        color: rgba(69, 46, 136, 1);
        float: left;
        font-size: 20px;
        line-height: 50px;
        text-indent: 20px;
        border-radius: 6px;
        margin-left: 20px;
        border: 1px solid rgba(69, 46, 136, 1);
    }
.db4k {
    background:#fff;width:100%; height:260px;
}
.db4 {
    width: 1410px;
    margin: 0 auto;
    height: 260px;
}
.db4 .a1 {
    width: 320px;
    height: 200px;
    border: 1px solid rgba(225, 225, 225, 1);
    background: rgba(248, 248, 248, 1);
    border-radius: 10px;
    float: left;
    margin:0 15px;
}
    .db4 .a1 .b1 {
        font-size: 18px;
        text-align: center;
        color: rgba(69, 46, 136, 1);
        font-weight: bold;
        margin:28px auto;
    }
    .db4 .a1 .b2 {
        width:268px;
        height:104px;
        margin:0 auto;
        overflow:hidden;
        font-size: 16px;
        line-height: 23px;
    }


@media screen and (min-width: 950px) and (max-width: 1920px) {
    .products .product .list .item .img {
        width: 224px;
        height: auto;
        width: 88%;
    }
    .products .product .list .item {
        width: 256px;
        height: auto;
        width: 19%;
    }
    .products .product .list {
        height: auto;
        overflow: hidden;
        gap: 1%;
    }
}
