@media (min-width: 1500px) {
  .container {
    max-width: 1420px;
  }
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  font-size: 15px;
  background: #fff;
  overflow-x: hidden;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

body.offcanvas-menu:before {
  opacity: 1;
  visibility: visible;
}

a {
  color: #e84545;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a:hover {
  color: #e84545;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  color: #000000;
}

.text-primary {
  color: #e84545 !important;
}

.text-black {
  color: #000000 !important;
}

a.text-primary {
  color: #e84545 !important;
}

a.text-primary:hover {
  color: #e84545 !important;
}

.bg-primary {
  background-color: #e84545 !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: "Montserrat", sans-serif;
}

.btn {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 4px;
  font-size: 14px;
}

.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.btn-primary {
  background: #e84545;
  border-color: #e84545;
}

.btn.btn-primary:hover {
  border-color: #ea5757;
  background: #ea5757;
}

.btn.btn-white {
  background-color: #ffffff;
}

.btn.btn-white:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.btn-outline-white {
  border: 1px solid #ffffff;
}

.btn.btn-outline-white:hover {
  background: #ffffff;
  color: #e84545 !important;
}

.btn.btn-outline-black {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn.btn-outline-black:hover {
  background: transparent;
  color: #e84545 !important;
}

.form-control,
.custom-select {
  border: 2px solid #e9ecef;
  font-size: 16px;
  height: 45px;
}

.form-control:active,
.form-control:focus,
.custom-select:active,
.custom-select:focus {
  border-color: #e84545;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.gutter-v1 {
  margin-right: -20px;
  margin-left: -20px;
}

@media (max-width: 991.98px) {
  .gutter-v1 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.gutter-v1>.col,
.gutter-v1>[class*="col-"] {
  padding-right: 20px;
  padding-left: 20px;
}

@media (max-width: 991.98px) {

  .gutter-v1>.col,
  .gutter-v1>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.spinner-border {
  color: #e84545;
}

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.position-relative {
  position: relative;
}

.logo {
  position: absolute;
  left: 2rem; /* 改用相对单位 */
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease; /* 添加过渡动画 */
}

.logo img {
  max-width: 12.5rem; /* 250px → rem单位 */
  width: auto;
  height: auto;
  display: block; /* 消除图片底部空隙 */
  transition: transform 0.3s ease; /* 添加缩放动画 */
  margin: 1rem auto;     /* 增加上下间距 */
}

.logo a {
  color: #e84545;
  display: inline-block; /* 保证点击区域 */
}

/* 移动端优化 */
@media (max-width: 768px) {
  .logo {
    left: 1rem; /* 缩小间距 */
    position: relative;
    top: auto;
    transform: none;
    text-align: center;
    margin: 0.5rem 0;
  }

  .logo img {
    max-width: 7rem; /* 移动端缩小尺寸 */
  }
}

/* 悬停效果 */
@media (hover: hover) {
  .logo a:hover img {
    transform: scale(1.05);
  }
}


.menu-absolute {
  position: absolute;
  right: 15px;
}


.site-mobile-menu-close>span {
  cursor: pointer;
  display: block;
  position: absolute;
  height: 30px;
  width: 30px;
}

.site-mobile-menu-close>span:before,
.site-mobile-menu-close>span:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 30px;
  background: #000000;
}

.site-mobile-menu-close>span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site-mobile-menu-close>span:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #ffffff;
  height: calc(100vh);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
}

.offcanvas-menu .site-mobile-menu {
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 5px 20px;
  display: block;
  position: relative;
  color: #000000;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #e84545;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li.active>a {
  color: #e84545;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 14px;
  z-index: 20;
  font-family: "icomoon";
  content: "\e313";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 14px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 14px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 14px;
  padding-left: 60px;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar .site-menu-toggle {
  color: #000000;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #000000;
}

.sticky-wrapper .site-navbar .site-menu>li>a {
  color: rgba(0, 0, 0, 0.8) !important;
}

.sticky-wrapper .site-navbar .site-menu>li>a:hover,
.sticky-wrapper .site-navbar .site-menu>li>a.active {
  color: #000000 !important;
}

.sticky-wrapper.is-sticky .burger:before,
.sticky-wrapper.is-sticky .burger span,
.sticky-wrapper.is-sticky .burger:after {
  background: #000000;
  -webkit-transition: .0s all ease;
  -o-transition: .0s all ease;
  transition: .0s all ease;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #000000;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #000000 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a {
  color: #000000 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a.active {
  color: #e84545 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li.active a {
  color: #e84545 !important;
}

.sticky-wrapper .shrink {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/* Burger */
.burger {
  width: 44px;           /* 扩大整体点击范围 */
  height: 44px;
  cursor: pointer;
  position: relative;
  margin-top: -85px;
  display: inline-block;
}

/* 创建三条横线 */
.burger:before,
.burger span,
.burger:after {
  width: 28px;           /* 视觉线条宽度保持原样 */
  height: 2px;
  display: block;
  background: #000;
  border-radius: 2px;
  position: absolute;
  left: 8px;             /* 保证线条居中 */
  content: "";
}

/* 三线位置 */
.burger:before {
  top: 8px;
}

.burger span {
  top: 16px;
}

.burger:after {
  top: 24px;
}

.burger.light:before,
.burger.light span,
.burger.light:after {
  background-color: #000000;
}

.burger:before,
.burger:after {
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}

.burger:before {
  top: 4px;
}

.burger span {
  top: 15px;
}

.burger:after {
  top: 26px;
}

/* Hover */
.burger:hover:before {
  top: 7px;
}

.burger:hover:after {
  top: 23px;
}

/* Click */
.burger.active span {
  opacity: 0;
}

.burger.active:before,
.burger.active:after {
  top: 40%;
}

.burger.active:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  /*for IE*/
}

.burger.active:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  /*for IE*/
}

.burger:focus {
  outline: none;
}

.overlay-svg {
  background-image: url("../images/overlay.svg");
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  top: 0;
  background-size: cover;
}

.wrap-slider {
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  padding: 15px;
  margin-top: -150px;
  position: relative;
  background-color: #ffffff;
}

.custom-feature {
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  text-align: center;
  padding: 30px;
  border-radius: 4px;
}

.custom-feature h3 {
  font-size: 18px;
  font-weight: bold;
}

.custom-feature p {
  font-size: 15px;
}

.custom-feature *:last-child {
  margin-bottom: 0;
}

.custom-feature [class^="icon-"] {
  display: block;
  margin-bottom: 30px;
  font-size: 50px;
  color: #e84545;
}

.section-stack {
  position: relative;
}

.section-stack img {
  width: 100%;
  display: block;
}

.section-stack .image-stack::after {
  content: ' ';
  display: table;
  clear: both;
}

.section-stack .image-stack__item--top {
  float: left;
  width: 66%;
  margin-right: -100%;
  position: relative;
  z-index: 1;
}

.section-stack .image-stack__item--top img {
  border: 4px solid #ffffff;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.section-stack .image-stack__item--bottom {
  float: right;
  width: 75%;
}

@supports ((display: -ms-grid) or (display: grid)) {
  .section-stack .image-stack {
    display: -ms-grid;
    display: grid;
    position: relative;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }

  .section-stack .image-stack__item--bottom {
    grid-column: 4 / -1;
    -ms-grid-row: 1;
    grid-row: 1;
    width: 100%;
  }

  .section-stack .image-stack__item--top {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-column: 1 / span 8;
    padding-top: 20%;
    width: 100%;
  }
}

.service {
  display: block;
}

.service img {
  margin-bottom: 30px;
  border-radius: 4px;
}

.service h3 {
  font-size: 18px;
}

.service p {
  color: #7a7a7a;
}

.site-cover-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.site-cover-2.overlay {
  position: relative;
}

.site-cover-2.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}

.pricing {
  background: #ffffff;
  padding: 30px;
}

.pricing .price>span {
  color: #cccccc;
}

.pricing .price>span>span {
  font-size: 3rem;
  color: #e84545;
}

.pricing ul li {
  margin-bottom: 20px;
}

.ul-check {
  margin-bottom: 50px;
}

.ul-check li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.ul-check li:before {
  left: 0;
  font-size: 20px;
  top: -.3rem;
  font-family: "icomoon";
  content: "\e5ca";
  position: absolute;
}

.ul-check.white li:before {
  color: #000000;
}

.ul-check.success li:before {
  color: #28a745;
}

.ul-check.primary li:before {
  color: #e84545;
}

.site-section {
  padding: 5rem 0;
  margin-bottom: 2rem; /* 这里的 2rem 可根据实际需求调整 */
}

.hero {
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.fixed-attachment {
  background-attachment: fixed;
}

.hero.overlay {
  position: relative;
}

.hero.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero,
.hero>.container>.row {
  height: 100vh;
  min-height: 600px;
}

.hero h1 {
  font-size: 34px;
  color: #000839;
}

@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 30px;
  }
}

.hero figure {
  position: relative;
}

.hero .quote {
  padding: 50px;
  background: #000839;
  color: #ffffff;
  width: 100%;
  bottom: -20px;
  left: -50px;
  position: absolute;
}

.feature.d-flex .icon-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  margin-right: 15px;
}

.feature .icon-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 69, 69, 0.2);
  z-index: -1;
}

.feature .icon-wrap [class^="icon-"] {
  font-size: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #e84545;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.feature .icon-wrap span {
  font-size: 30px;
  text-align: center;
}

.feature h3 {
  font-size: 14px;
  font-weight: 700;
}

.feature p {
  font-size: 18px;
}

.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-position: center center;
}

.site-blocks-cover.overlay {
  position: relative;
}

.site-blocks-cover.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
}

.site-blocks-cover .player {
  position: absolute;
  bottom: -250px;
  width: 100%;
}

.site-blocks-cover,
.site-blocks-cover>.container>.row {
  min-height: 600px;
  height: calc(100vh);
}

.site-blocks-cover.inner-page-cover,
.site-blocks-cover.inner-page-cover>.container>.row {
  min-height: 400px;
  height: calc(20vh);
}

.site-blocks-cover h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .site-blocks-cover h1 {
    font-size: 2rem;
  }
}

.site-blocks-cover p {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

.site-blocks-cover a {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: dotted 1px #ffffff;
}

.site-blocks-cover a:hover {
  color: #ffffff;
}

.site-blocks-cover .btn {
  color: #ffffff;
}

.site-blocks-cover .btn:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #e84545;
}

.site-blocks-cover .desc {
  font-size: 1.4rem;
  font-weight: 300;
}

.site-blocks-cover .intro-text {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .site-blocks-cover .display-1 {
    font-size: 3rem;
  }
}

.site-cover-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.site-cover-2.overlay {
  position: relative;
}

.site-cover-2.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}

.count-numbers .number {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
}

.count-numbers span {
  color: rgba(255, 255, 255, 0.7);
}

.how-it-works {
  margin-bottom: 70px;
}

.how-it-works .step {
  padding: 20px 70px 0 0;
  position: relative;
}

.how-it-works .step .icon-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e84545;
}

.how-it-works .step .icon-wrap>span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.how-it-works .step h3 {
  font-size: 16px;
  font-weight: 700;
}

.how-it-works .step p {
  font-size: 14px;
}

.trusted-by-companies {
  padding: 0rem 0 4rem 0;
  text-align: center;
}

.trusted-by-companies h2 {
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 700;
}

.pro {
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.pricing {
  text-align: center;
}

.bg-white .pricing .price>span {
  color: #000000;
}

.bg-white .pricing .price>span>span {
  font-size: 3rem;
  color: #000000;
}

.bg-white .pricing ul {
  text-align: left;
}

.bg-white .pricing ul li {
  color: #000000;
  margin-bottom: 20px;
}

.bg-white .pricing ul li:before {
  color: #000000 !important;
}

.bg-white .pricing ul li.remove {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.4);
}

.bg-white .pricing ul li.remove:before {
  color: rgba(0, 0, 0, 0.4);
}

.pricing .price>span>span {
  font-size: 3rem;
}

.pricing ul {
  text-align: left;
}

.pricing ul li {
  margin-bottom: 20px;
}

.pricing ul li.remove {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.4);
}

.pricing ul li.remove:before {
  color: rgba(0, 0, 0, 0.4);
}

/*--------- Start Portfolio Area -------------*/
.portfolio-area .primary-btn {
  color: #ffffff;
  background-color: #e84545;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-area .filters {
  text-align: center;
}

.portfolio-area .filters ul {
  padding: 0;
}

.portfolio-area .filters ul li {
  list-style: none;
  display: inline-block;
  padding: 18px 15px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 736px) {
  .portfolio-area .filters ul li {
    padding: 6px 6px;
  }
}

.portfolio-area .filters ul li:after {
  content: "";
  display: block;
  width: calc(0% - 60px);
  position: absolute;
  height: 2px;
  background: #333;
  -webkit-transition: width 350ms ease-out;
  -o-transition: width 350ms ease-out;
  transition: width 350ms ease-out;
}

.portfolio-area .filters ul li:hover:after {
  width: calc(100% - 60px);
  -webkit-transition: width 350ms ease-out;
  -o-transition: width 350ms ease-out;
  transition: width 350ms ease-out;
}

.portfolio-area .filters ul li.active {
  color: #e84545;
}

.portfolio-area .filters-content {
  margin-top: 50px;
}

.portfolio-area .filters-content .show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms;
}

.portfolio-area .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms;
}

.portfolio-area .filters-content .item {
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px;
}

.portfolio-area .filters-content .item img {
  border-radius: 10px;
}

.portfolio-area .filters-content .p-inner {
  padding: 20px 0px;
  text-align: center;
}

.portfolio-area .filters-content .item .p-inner .cat {
  font-size: 13px;
}

.portfolio-area .filters-content .item img {
  width: 100%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.middle {
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.isotope-card:hover .middle {
  opacity: 1;
}

.isotope-card {
  border-radius: 5px;
  overflow: hidden;
}

.isotope-card>a {
  overflow: hidden;
  position: relative;
  display: block;
}

.isotope-card>a:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  z-index: 2;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  background: rgba(0, 0, 0, 0.5);
}

.isotope-card>a img {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.isotope-card>a:hover:before {
  visibility: visible;
  opacity: 1;
}

.isotope-card>a:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.isotope-card>a:hover .contents {
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.isotope-card>a:hover .contents h3 {
  color: #ffffff;
}

.isotope-card .contents {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.thumb .overlay-bg {
  opacity: 0;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .thumb .overlay-bg {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.filters {
  text-align: center;
}

.filters ul {
  padding: 0;
  margin: 0 0 30px 0;
}

.filters ul li {
  display: block;                /* 一行一个项目 */
  width: 100%;                   /* 撑满整行 */
  padding: 3px 12px;             /* 缩短上下间距 */
  text-align: left;              /* 左对齐 */
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  box-sizing: border-box;
}


.filters ul li:hover {
  color: #e84545;
}

.filters ul li.active {
  color: #e84545;
}

.isotope-card {
  margin-bottom: 30px;
  display: block;
}

.isotope-card .relative {
  margin-bottom: 20px;
}

.isotope-card .contents h3 {
  color: #ffffff;
  font-size: 18px;
}

.isotope-card .contents .cat {
  color: #b3b3b3;
}

.no-nav .owl-nav {
  display: none;
}

.main-slider .owl-dots,
.custom-slider .owl-dots {
  bottom: -50px;
}

.main-slider .owl-nav,
.custom-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {

  .main-slider .owl-nav,
  .custom-slider .owl-nav {
    display: none;
  }
}

.main-slider .owl-nav .owl-prev,
.main-slider .owl-nav .owl-next,
.custom-slider .owl-nav .owl-prev,
.custom-slider .owl-nav .owl-next {
  position: absolute;
  top: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
}

.main-slider .owl-nav .owl-prev span,
.main-slider .owl-nav .owl-next span,
.custom-slider .owl-nav .owl-prev span,
.custom-slider .owl-nav .owl-next span {
  display: block;
  background: #ffffff;
  padding: 15px;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover,
.custom-slider .owl-nav .owl-prev:hover,
.custom-slider .owl-nav .owl-next:hover {
  -webkit-box-shadow: 0 7px 15px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 7px 15px -5px rgba(0, 0, 0, 0.2);
}

.main-slider .owl-nav .owl-prev,
.custom-slider .owl-nav .owl-prev {
  left: -30px;
}

.main-slider .owl-nav .owl-next,
.custom-slider .owl-nav .owl-next {
  right: -30px;
}

.main-slider .owl-nav .owl-next>span,
.custom-slider .owl-nav .owl-next>span {
  position: relative;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.services-section {
  background: #f8f9fa;
  padding: 70px 0;
}

.img-wrap-2 {
  margin-top: -120px;
  position: relative;
}

.img-wrap-2 .dotted:before {
  position: absolute;
  content: "";
  background-image: url("../images/dotted.png");
  height: 273px;
  width: 313px;
  z-index: -1;
  bottom: -50px;
  left: -50px;
}

.blog-entries-section {
  padding: 70px 0;
  background: #f8f9fa;
}

.post-entry {
  padding: 20px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  background: #ffffff;
  position: relative;
  top: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.post-entry .date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 8, 57, 0.5);
}

.post-entry h3 {
  font-size: 16px;
  font-weight: 700;
}

.post-entry h3 a {
  color: #000839;
}

.post-entry p {
  font-size: 14px;
}

.post-entry *:last-child {
  margin-bottom: 0;
}

.post-entry:hover,
.post-entry:focus {
  top: -5px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

.service-2.no-shadow.link {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.service-2 .service-icon {
  font-size: 24px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  position: relative;
  color: #e84545;
  background-color: #ffffff;
}

.service-2 .service-icon>svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.service-2 .service-contents h3 {
  font-size: 16px;
  color: #000000;
}

.service-2.horizontal .service-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  margin-right: 30px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.service-2.link {
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 7px;
}

.service-2.link .service-contents {
  color: #f50808;
  font-weight: bold;
  /* 加粗 */
  font-size: 18px;
  /* 字体大小 */
  position: relative;
  /* 相对定位 */
  top: 5px;
  /* 向下移动 2px */
}

.service-2.link .service-contents *:last-child {
  margin-bottom: 0;
}

.service-2.link:hover,
.service-2.link.active {
  background: #ffffff;
  -webkit-box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.05);
}

.service-2.link:hover .service-icon,
.service-2.link.active .service-icon {
  background-color: #f8f9fa;
  color: #000000;
}

.service-2.link.active {
  position: relative;
  overflow: hidden;
}

.service-2.link.active .service-icon {
  color: #ffffff;
  background-color: #e84545;
}

.section-grey {
  padding-top: 200px;
  padding-bottom: 200px;
  background: #f5f5f5;
}

@media (max-width: 991.98px) {
  .section-grey .img-wrap .img {
    margin-top: 0;
  }
}

.team h3 {
  font-size: 20px;
}

.team .pic {
  margin-bottom: 30px;
}

.team .pic img {
  border-radius: 4px;
}

.team .position {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

.slider-team-wrap .owl-dots {
  position: absolutre;
  margin-top: 30px;
}

.slider-team-wrap .slider-nav a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  background: #e84545;
  border-radius: 4px;
  position: relative;
  top: 0;
  -webkit-transition: .2s all ease;
  -o-transition: .2s all ease;
  transition: .2s all ease;
}

.slider-team-wrap .slider-nav a span {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-team-wrap .slider-nav a:hover {
  background: #ffffff;
  top: -2px;
}

.slider-team-wrap .slider-nav a:hover span {
  color: #e84545;
}

.more {
  position: relative;
  padding-right: 30px;
  display: inline-block;
}

.more span {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: transparent;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.more:hover {
  color: #ffffff;
}

.more:hover span {
  background: #e84545;
}

.more.dark {
  color: #000000;
}

.more.dark>span {
  color: #000000;
}

.more.dark:hover {
  color: #e84545;
}

.more.dark:hover span {
  color: #ffffff;
  background: #e84545;
}

.article {
  margin-bottom: 90px;
}

.article article img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .article {
    margin-bottom: 50px;
  }
}

.article .share {
  top: 20px;
  z-index: 95;
}

.article .share h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .article .share h3 {
    display: inline-block;
  }
}

.article .share .share-article {
  width: 100%;
}

.article .share .share-article li {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 991.98px) {
  .article .share .share-article li {
    display: inline !important;
  }
}

.article .share .share-article li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  color: #000000;
  border: 1px solid #efefef;
}

@media (max-width: 991.98px) {
  .article .share .share-article li a {
    display: inline-block !important;
  }
}

.article .share .share-article li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.comment-form-wrap {
  clear: both;
}

.comment-list {
  padding: 0;
  margin: 0;
}

.comment-list .children {
  padding: 50px 0 0 40px;
  margin: 0;
  float: left;
  width: 100%;
}

.comment-list li {
  padding: 0;
  margin: 0 0 30px 0;
  float: left;
  width: 100%;
  clear: both;
  list-style: none;
}

.comment-list li .vcard {
  width: 80px;
  float: left;
}

.comment-list li .vcard img {
  width: 50px;
  border-radius: 50%;
}

.comment-list li .comment-body {
  float: right;
  width: calc(100% - 80px);
}

.comment-list li .comment-body h3 {
  font-size: 20px;
}

.comment-list li .comment-body .meta {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .1em;
  color: #ccc;
  margin-bottom: 20px;
}

.comment-list li .comment-body .reply {
  padding: 7px 12px;
  background: #cccccc;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1rem;
}

.comment-list li .comment-body .reply:hover {
  color: #ffffff;
  background: #8c8c8c;
}

.categories_tags {
  font-weight: bold;
}

.post-single-navigation a {
  line-height: 1.5;
  border: 1px solid #efefef;
  background-color: transparent;
  padding: 30px;
  width: 48% !important;
  border-radius: 4px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: inline-block;
}

.post-single-navigation a span {
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.section-latest {
  padding-top: 100px;
  padding-bottom: 100px !important;
}

.floating-block {
  background: #ffffff;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 20px;
  top: 20px;
}

.floating-block h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.floating-block h3 {
  font-size: 13px;

}

.hero-slant {
  background-color: #ccc;
  position: relative;
  background-size: cover;
}
/* 桌面端保持原有视觉 */

/* 移动端适配策略 */
@media (max-width: 768px) {
  .hero-slant.overlay {
    height: 25vh !important; /* 强制覆盖所有环境下的高度 */
    min-height: 160px; /* 防止极端小屏幕过度压缩 */
    
    /* 视差系统优化 */
    background-attachment: scroll !important;
    transform: translate3d(0,0,0); /* 冻结潜在transform动画 */
    
    /* 视觉层次优化 */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); /* 更平缓的斜切角度 */
  }
  
  /* 禁用stellar.js相关效果 */
  .hero-slant.overlay[data-stellar-background-ratio] {
    background-position: center top !important;
  }
}


.hero-slant .container {
  position: relative;
}

.hero-slant,
.hero-slant>.container>.row {
  height: 100vh;
}

.hero-slant .sign-up-form {
  padding: 10px;
  border-radius: 7px;
  background: #ffffff;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.hero-slant .sign-up-form .form-control {
  border: none;
}

.hero-slant .sign-up-form .form-control:active,
.hero-slant .sign-up-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.hero-slant .sign-up-form input[type="submit"] {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  border-radius: 7px;
}

.hero-slant .intro {
  position: relative;
  z-index: 2;
  max-width: 500px;
  top: -30vh;
}

.hero-slant .hero_img {
  position: absolute;
  right: 0;
  z-index: 9;
  bottom: 100px;
}

@media (max-width: 991.98px) {
  .hero-slant .hero_img {
    position: relative;
    margin-top: -200px;
    bottom: -100px;
    margin-bottom: 140px;
  }
}

.hero-slant .slant {
  
  width: calc(100% + 2px);

  bottom: -2px;
  left: -2px;
  z-index: 1;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.pricing-section {
  padding: 70px 0;
}

@media (max-width: 991.98px) {
  .pricing-section {
    padding: 30px 0;
  }
}

.pricing-section .save-percent {
  font-size: 10px;
  background: #e84545;
  padding: 4px 10px;
  font-weight: 700;
  border-radius: 30px;
  color: #ffffff;
}

.pricing-section .period {
  font-size: 14px;
}

.pricing-section .period-toggle {
  width: 100px;
  border-radius: 30px;
  margin-left: 10px;
  margin-right: 10px;
  height: 30px;
  background: #ccc;
  position: relative;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.pricing-section .period-toggle:before {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  content: "";
  position: absolute;
  left: 1px;
  height: 28px;
  width: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.pricing-section .period-toggle.active:before {
  left: 71px;
}

.pricing-section .pricing-item {
  padding: 70px 30px;
  text-align: center;
}

.pricing-section .pricing-item h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
}

.pricing-section .pricing-item .description {
  margin-bottom: 20px;
}

.pricing-section .pricing-item.active {
  background: #ffffff;
  -webkit-box-shadow: 0 10px 30px -7px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px -7px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}

.pricing-section .pricing-item.active h3 {
  color: #e84545;
}

.pricing-section .pricing-item ul {
  text-align: left;
}

.pricing-section .pricing-item ul li {
  line-height: 1.4;
  margin-bottom: 8px;
}

.pricing-section .pricing-item .price-wrap {
  display: block;
  color: #e84545;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
}

.pricing-section .pricing-item .price-wrap>div {
  height: 46px;
  overflow: hidden;
}

.pricing-section .pricing-item .price-wrap>.price>div {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.pricing-section .pricing-item .period-wrap {
  font-size: 16px;
}

.pricing-section .pricing-item .period-wrap .period {
  height: 27px;
  line-height: 27px;
  overflow: hidden;
  font-size: 16px;
}

.pricing-section .pricing-item .period-wrap .period>div {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.pricing-section .pricing-item.yearly .price-wrap>.price>div {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pricing-section .pricing-item.yearly .period-wrap>.period>div {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.unit-4 .unit-4-icon {
  position: relative;
}

.unit-4 .unit-4-icon span {
  font-size: 2rem;
  color: #e84545;
  margin-left: 10px;
}

.unit-4 .unit-4-icon:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ccc;
  opacity: .2;
  z-index: -1;
  top: -9px;
}

.unit-4 h3 {
  font-size: 20px;
  color: #000000;
}

.testimonial-section {
  padding: 70px 0;
}

@media (max-width: 991.98px) {
  .testimonial-section {
    padding: 30px 0;
  }
}

.testimonial--wrap {
  padding: 40px 40px 70px 40px;
  background: #ffffff;
  border-radius: 7px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

.testimonial--wrap .owl-dots {
  bottom: -55px;
}

.testimonial-item .photo img {
  max-width: 80px;
  border-radius: 50%;
}

.testimonial-item .author {
  line-height: 1.4;
}

.testimonial-item .author cite {
  font-weight: 700;
  font-style: normal;
}

.testimonial-item blockquote {
  font-size: 20px;
  color: #000000;
}

.testimonial-item blockquote,
.testimonial-item blockquote *:last-child {
  margin-bottom: 0;
}

.custom-nav-wrap {
  position: relative;
  margin-top: 20px;
}

.custom-nav-wrap .custom-owl-prev,
.custom-nav-wrap .custom-owl-next {
  z-index: 2;
  position: absolute;
  font-size: 20px;
  color: #000000;
  width: 40px;
  height: 40px;
  display: block;
  border: 1px solid #efefef;
}

.custom-nav-wrap .custom-owl-prev span,
.custom-nav-wrap .custom-owl-next span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.custom-nav-wrap .custom-owl-prev:hover,
.custom-nav-wrap .custom-owl-next:hover {
  border-color: #000000;
}

.custom-nav-wrap .custom-owl-next {
  left: 50px;
  position: relative;
  position: absolute;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}



.owl-logos .owl-nav {
  display: none;
}

.owl-logos .owl-item .item {
  
  width: 200px;
  object-fit: cover;
}

.owl-logos img {
  margin: 0;
}

.blog_entry {
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

/* 添加边缘光效 */
.blog_entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, 
    rgba(266, 133, 244, 0.1), 
    transparent 60%);
}

/* 优化悬浮效果 */
.blog_entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15),
              0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.blog_entry:hover::before {
  opacity: 1;
}

/* 添加悬浮过渡 */
.blog_entry:hover .more a::after {
  transform: scaleX(1);
}

/* 优化链接动画 */
.more a {
  display: inline-block;
  transition: color 0.2s;
}

.more a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right center;
}

.more a:hover {
  color: #c53131;
}

/* 其他原有样式保持不变 */
.blog_entry img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog_entry h3 {
  font-size: 18px;
}

.blog_entry h3 a {
  color: #000000;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_entry .dp {
  min-height: 81px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_entry .date {
  color: #999999;
  display: block;
  font-size: .9rem;
  margin-bottom: 15px;
}



.features-lg .feature {
  padding: 70px 0;
}

@media (max-width: 991.98px) {
  .features-lg .feature {
    padding: 30px 0;
  }
}

.custom-accordion .accordion-item {
  background-color: #f9f9f9;
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: #999;
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background: #ffffff;
}

.custom-accordion .accordion-item .btn-link:before {
  font-family: 'icomoon';
  content: "\f196";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}

.custom-accordion .accordion-item .btn-link[aria-expanded="true"] {
  font-weight: 700;
  color: #e84545;
}

.custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
  font-family: 'icomoon';
  content: "\f147";
  position: absolute;
  color: #e84545;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-accordion .accordion-item.active {
  z-index: 2;
}

.custom-accordion .accordion-item.active .btn-link {
  color: #e84545;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: #888;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}

.control .caption {
  position: relative;
  top: -3px;
  font-size: 16px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
  background: #ccc;
}

.control input:checked~.control__indicator {
  background: #e84545;
}

.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
  background: #eb5c5c;
}

.control input:disabled~.control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none;
}

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 14px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.control input:checked~.control__indicator:after {
  display: block;
  color: #fff;
}

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.control--checkbox input:disabled~.control__indicator:after {
  border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked~.control__indicator {
  background-color: #e84545;
  opacity: .2;
}

.gal-item {
  display: block;
  margin-bottom: 8px;
}

.gal-item img {
  border-radius: 4px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  opacity: 1;
}

.gal-item:hover img {
  opacity: .5;
}

.social-icons li {
  display: inline-block;
}

.social-icons li a {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: #303030;
}

.social-icons li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.social-icons li a:hover {
  color: #ffffff;
}

.social-icons li:first-child a {
  padding-left: 0;
}

.social-icons.light li a {
  color: #000000;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: #f8f9fa;
}

.video-wrap {
  position: relative;
}

.video-wrap .play-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.video-wrap .play-wrap>span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-wrap:hover .play-wrap {
  width: 60px;
  height: 60px;
}

.owl-single.dots-absolute .owl-dots {
  bottom: 40px;
}

.owl-single.dots-absolute .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}

.owl-single .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
}

.owl-single .owl-dots .owl-dot {
  display: inline-block;
  margin: 5px;
}

.owl-single .owl-dots .owl-dot span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.owl-single .owl-dots .owl-dot.active span {
  background: #e84545;
}

.testimonial {
  max-width: 500px;
  text-align: center;
  margin-bottom: 30px;
}

.testimonial .name {
  font-size: 18px;
  color: #000000;
}

.testimonial .img-wrap img {
  margin: 0 auto;
  width: 70px;
  border-radius: 50%;
}

.list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.list-check li:before {
  content: "\e5ca";
  font-family: 'icomoon';
  position: absolute;
  top: -.3rem;
  font-size: 20px;
  left: 0;
}

.list-check.primary li:before {
  color: #e84545;
}

.site-footer {
  padding-top: 70px;
  padding-bottom: 30px;
  font-size: 15px;
  background-color: rgb(197, 197, 197); /* 这里设置为灰色，你也可以使用具体的十六进制颜色值，如 #808080 */
}

@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 30px;
  }
}

.site-footer a {
  color: #000000;
}


/* 友情链接 */
.friend-links {
  list-style: none;  /* 去除列表默认样式 */
  padding: 0;
  margin: 0;
}
.friend-links li {
  display: inline-block;  /* 或者 display: inline; */
  margin-right: 10px;  /* 可以设置链接之间的间隔距离 */
  font-size: 0.8em;
}

.friend-links li a {
  color: rgb(197, 197, 197); 
}

.friend-links li a:hover{
  color: rgb(197, 197, 197); 
}

.site-footer a:hover {
  color: #e84545;
}

.site-footer .widget {
  margin-bottom: 10px;
}

.site-footer .widget h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.site-footer .widget .social li {
  display: inline-block;
}

.site-footer .widget .social li a {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #f8f9fa;
  display: inline-block;
  position: relative;
  color: black;
}

.site-footer .widget .social li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-footer .widget .social li a:hover {
  color: #e84545;
}

.site-footer .widget .links li {
  display: block;
  margin-bottom: 8px;
}

.site-footer .widget .links li a {
  font-size: 15px;
  font-weight: 700;
}

.site-footer .widget .links li a:hover {
  color: #e84545;
}

.site-footer .copyright {
  position: relative;
  padding-top: 40px;
  margin-top: 40px;
}

.site-footer .copyright:before {
  top: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  content: "";
  height: 1px;
  background: #ebedee;
}

/* 修改或添加以下CSS */
.site-footer .widget ul.links {
  column-width: 150px;      /* 最小列宽控制分列时机 */
  column-gap: 30px;        /* 列间距 */
  column-fill: auto;       /* 按顺序填充列 */
  list-style: none;        /* 去除默认列表样式 */
  padding-left: 0;         /* 对齐修正 */
  max-height: 300px;       /* 可选：限制最大高度触发分列 */
}

/* 响应式调整 */
@media (max-width: 768px) {
  .site-footer .widget ul.links {
      column-width: 120px;  /* 移动端减小列宽 */
  }
}


.news-list .cases-wrap {
  border-bottom: 1px dashed #ddd;
}

.news-list .img {
  width: 250px;
}

.news-list .img img {
  width: 250px;
  max-height: 180px;
  object-fit: cover;
}

.news-list .cases-wrap a {
  color: #2b9e08;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list .cases-wrap a:hover {
  color: #e84545;
}

.news-list .pd {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.honor-list img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}



/* 让图片容器保持固定比例 */
.pro-list .border.rounded {
  position: relative;
}

/* 图片适配 */
.pro-list img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;  /* 推荐使用 cover，视觉一致 */
}



.pro-list .pro-text1 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pro-list .pro-text1 a {
  color: #000000;
}

.pro-list .pro-text1 a:hover {
  color: #e84545;
}

.pro-show .show-left img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .pro-show .show-left img {
    height: 250px;
  }
}

.pro-show .show-left .owl-nav {
  display: none;
}

.pro-show .show-left .owl-dots {
  bottom: 0;
}

.pro-show .show-right ul {
  padding: 0;
}

.pro-show .show-right ul li {
  list-style: none;
}

.pro-show .show-right ul li b {
  display: inline-block;
  width: 150px;
}

.filters ul li a {
  color: #000000;
}

.filters ul li.active a {
  color: #e84545;
}

.filters ul li a:hover {
  color: #e84545;
}

.isotope-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.hot-list .blog-img img {
  width: 80px;
  height: 54px;
  object-fit: cover;
}

.hot-list .heading a {
  color: #000000;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
}
.hot-list .heading a:hover {
  color: #e84545;
}

.hot-list .meta a {
  color: #7a7a7a;
}

@media (max-width: 768px) {
  .news-list .img {
    width: 100%;
  }

  .news-list .img img {
    width: 100%;
  }
}



.map {
  height: 450px;
  z-index: 1;
}

@media (max-width: 768px) {
  .map {
    height: 250px;
    z-index: 1;
  }
}

#back-to-top.position-fixed {
  bottom: 20px;
}

#back-to-top {
  right: 40px;
  top: auto;
  z-index: 10;
  display: none;
}

.position-fixed {
  position: fixed !important;
}

#back-to-top .btn.btn-primary {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: #e84545;
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 0;
}

.popover-body img {
  width: 100%;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.block-27 ul {
  display: block;
  margin: 0 auto;
}

.block-27 ul li {
  margin-left: 2px;
  margin-right: 2px;
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 400;
}

.block-27 ul li a,
.block-27 ul li span {
  color: gray;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
}

.block-27 ul li.active a,
.block-27 ul li.active span {
  background: #ea5757;
  color: #fff;
  border: 1px solid transparent;
}

/*--------------------------------*/
/* .End CSS
/*--------------------------------*/


/* 按钮样式 */
.btn {
  font-weight: bold;
  display: inline-block;
  padding: 10px 30px;
  background-color: red;
  /* 红色背景 */
  color: white;
  /* 白色字体 */
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  /* 圆角 */
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #cc0000;
  /* 鼠标悬停时背景变深 */
}

/* 应用场景文本样式 */
.custom-text {
  font-family: 'Noto Sans SC', sans-serif;
  /* 字体 */
  font-size: 22px;
  /* 字体大小 */
  line-height: 22px;
  /* 行高 */
  text-align: left;
  /* 左对齐 */
  letter-spacing: normal;
  /* 字母间距 */
  color: #606060;
  /* 文字颜色 */
  background-color: #bbbcbc;
  /* 背景色 */
  padding: 10px;
  /* 给段落加点内边距 */
}

/*.hero-slant.overlay {position: relative; }*/
/*.hero-slant.overlay:before {position: absolute;content: "";left: 0;bottom: 0;right: 0;top: 0;background: rgba(0, 0, 0, 0.2); }*/

/*英雄区域*/
/* 设置 .hero-slant.overlay 区域的固定高度 */
.hero-slant.overlay {
  position: relative;
  height: 28vh;
  /* 固定高度 */
  background-size: cover;
  /* 确保背景图像覆盖整个区域 */
  background-position: center center;
  /* 背景图像居中 */
  background-repeat: no-repeat;
  /* 不重复背景图 */
  background-attachment: fixed;
  /* 背景固定，不随页面滚动 */
}

/* 使背景滚动效果生效（可选，若需要） */
.hero-slant.overlay[data-stellar-background-ratio="0.5"] {
  background-attachment: scroll;
  /* 保证背景图片随着页面滚动 */
}

/* 手机端适配 */
@media (max-width: 767px) {
  /* 调整手机端高度 */
  .hero-slant.overlay {
    height: auto; /* 高度自适应 */
    min-height: 30vh; /* 可根据实际需求调整最小高度 */
    background-attachment: scroll; /* 禁用背景固定效果，避免性能问题 */
  }
}



/*原面包屑导航样式*/
/*.breadcrumb-text a{color: #e70d0d;}*/
/*.breadcrumb-text a:hover {color: #e84545;}*/

.breadcrumb-text {

  color: #ada1a1;
  /* 文字颜色改为白色 */

  padding: 12px 20px;
  /* 添加内边距，让文字不那么紧凑 */
  border-radius: 8px;
  /* 圆角效果，让整体更柔和 */
  font-size: 20px;
  /* 字体大小调整 */
  font-weight: bold;
  /* 使文字加粗 */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  /* 添加阴影，增加层次感 */
}

.breadcrumb-text a {
  color: #e20c4c;
  /* 确保链接也是白色 */
  text-decoration: none;
  /* 去掉下划线 */
  font-weight: 900;
  /* 使用更粗的字体粗细 */
}    

.breadcrumb-text a:hover {
  color: #fa0b0b;
  /* 鼠标悬浮时的颜色变化，增加可交互性 */
  text-decoration: underline;
  /* 鼠标悬浮时，添加下划线 */
  font-weight: bold;
}
/* 产品页列表展示 ---------------------------*/
.containee {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px; /* 添加上方间距 */
  border: 1px solid #ddd;
}

.containee h4 {
  color: #fff;
  /* 字体颜色为白色 */
  background-color: #f30707;
  /* 背景颜色为指定颜色 */
  font-size: 20px;
  margin-bottom: 10px;
  padding: 10px;
  /* 添加内边距使背景覆盖文字 */
  font-weight: bold;
  /* 字体加粗 */
  border-radius: 5px;
  /* 可选：给背景添加圆角效果 */
  margin-bottom: 20px;
  /* 添加下方间距 */
  text-align: center; /* 让文字水平居中 */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列布局 */
  gap: 0; /* 去除列之间的间距 */

}
@media (max-width: 768px) { /* 移动端断点 */
  .product-grid {
    grid-template-columns: 1fr !important; /* 强制单列 */
  }
  /* 解决相邻边框重叠问题 */
  .product-item {
    border-top: 1px solid #ccc; /* 保留顶部边框 */
    border-bottom: 1px solid #ccc; /* 保留底部边框 */
    border-left: 0; /* 去掉左侧边框 */
    border-right: 0; /* 去掉右侧边框 */
  }
  /* 第一个项添加顶部边框 */
  .product-item:first-child {
    border-top: 1px solid #ccc;
  }
}


.product-item {
  break-inside: avoid; /* 防止内容跨列断行 */
  margin-bottom: 0px; /* 底部外边距清零 */
  padding: 8px 15px; /* 内边距设置 */
  border-radius: 4px; /* 圆角效果 */
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; /* 背景色、位置和阴影过渡动画 */
  border: 1px solid #ccc; /* 为整个网格添加边框 */
}

.product-item:hover {
  transform: translateY(-5px); /* 鼠标悬停时向上移动 5px */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 鼠标悬停时添加阴影 */
}

.product-item a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  display: block;
}

.product-item span {
  display: block;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}

/* 导航样式----------------------------------- */
.site-nav {
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-nav h1 {
  margin: 0;
  padding: 0;
  font-size: 24px;
}

.site-nav {
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  z-index: 9999;
}

.site-nav {
  background: rgba(0, 0, 0, 0.3); /* 默认（桌面端）背景颜色 */
}

/* 移动端视图：屏幕宽度小于768px时应用 */
@media (max-width: 767px) {
  .site-nav {
    background: white; /* 移动端背景颜色改为白色 */
  }
}

.site-nav {
  backdrop-filter: blur(10px);
}

.site-nav {
  height: 100px; /* 默认桌面端高度 */
}

/* 移动端视图：屏幕宽度小于768px时应用 */
@media (max-width: 767px) {
  .site-nav {
    height: 85px; /* 移动端高度 */
  }
}

.site-nav {
  backdrop-filter: blur(10px);
}

.site-nav {
  left: 0;
}

.site-nav {
  right: 0;
}

.site-nav .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-nav .site-navigation .site-menu>li {
  display: inline-block;
}

.site-nav .site-navigation .site-menu>li>a {
  font-size: 18px;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  text-decoration: none !important;
}

.site-nav .site-navigation .site-menu>li>a:hover {
  color: #ee0707;
}

.site-nav .site-navigation .site-menu>li.cta-button a {
  padding: 10px 20px;
  border: 1px solid transparent;
  color: #ffffff;
  background: #fa0505;
  border-radius: 4px;
}

.site-nav .site-navigation .site-menu>li.cta-button a:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.site-nav .site-navigation .site-menu>li.active>a {
  color: #ffffff;
}

.site-nav .site-navigation .site-menu .has-children {
  position: relative;
}

.site-nav .site-navigation .site-menu .has-children>a {
  position: relative;
  padding-right: 20px;
}

.site-nav .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 14px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

/* === 多级菜单 主下拉容器 横排多列 === */

/* 导航菜单容器 */
.site-nav .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%; /* 水平居中 */
  transform: translateX(-50%); /* 水平居中 */
  z-index: 100;
  padding: 25px 35px;
  margin-top: 20px;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px 35px;
  width: 1200px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

/* 每个li作为一列 */
.site-nav .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  display: flex;
  flex-direction: column;
}

/* 隐藏三角箭头 */
.site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  display: none;
}

/* 二级菜单标题 - 黑色字体 */
.site-nav .site-navigation .site-menu .has-children .dropdown > li > a {
  display: block;
  padding: 8px 0 12px;
  font-weight: bold;
  font-size: 16px;
  color: #333333 !important;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s ease;
  text-decoration: none;
  
  /* 文本溢出控制 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* 二级菜单悬停变色 */
.site-nav .site-navigation .site-menu .has-children .dropdown > li > a:hover {
  color: #e84545 !important;
}

/* 三级菜单样式 */
.site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown,
.site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
  position: static !important;
  left: auto !important;
  top: auto !important;
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* 三级菜单项样式 */
.site-nav .site-navigation .site-menu .has-children .dropdown > li > .dropdown li a,
.site-nav .site-navigation .site-menu .has-children .dropdown > li > ul li a {
  display: block;
  padding: 0px 0;
  font-weight: normal;
  color: #666666 !important;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  font-size: 16px;
  
  /* 文本溢出控制 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* 三级菜单悬停效果 */
.site-nav .site-navigation .site-menu .has-children .dropdown > li > .dropdown li a:hover,
.site-nav .site-navigation .site-menu .has-children .dropdown > li > ul li a:hover {
  color: #e84545 !important;
  transform: translateX(5px);
}

/* 激活状态 */
.site-nav .site-navigation .site-menu .has-children .dropdown .active,
.site-nav .site-navigation .site-menu .has-children .dropdown > li.active > a {
  color: #e84545 !important;
}

/* 隐藏二级菜单箭头 */
.site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
  display: none;
}

/* 菜单显示时 */
.site-nav .site-navigation .site-menu .has-children:hover > .dropdown,
.site-nav .site-navigation .site-menu .has-children:focus > .dropdown,
.site-nav .site-navigation .site-menu .has-children:active > .dropdown {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  transition-delay: 0s;
}

/* 边界检查：防止菜单溢出 */
.site-nav .site-navigation .site-menu .has-children .dropdown {
  right: auto !important;
  left: 50% !important;
  transform: translateX(-50%);
}

/* 顶层菜单字体加粗 */
.site-nav .site-navigation .site-menu > li > a {
  font-weight: bold;
  color: #fff;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-nav .site-navigation .site-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 响应式调整：大屏幕保持5列 */
@media (min-width: 1200px) {
  .site-nav .site-navigation .site-menu .has-children .dropdown {
    width: 1100px;
  }
}

/* 响应式调整：中等屏幕每行3列 */
@media (max-width: 1200px) {
  .site-nav .site-navigation .site-menu .has-children .dropdown {
    grid-template-columns: repeat(3, 1fr);
    width: 800px;
    padding: 20px 30px;
    gap: 20px 30px;
  }
}

/* 响应式调整：小屏幕每行2列 */
@media (max-width: 900px) {
  .site-nav .site-navigation .site-menu .has-children .dropdown {
    grid-template-columns: repeat(2, 1fr);
    width: 550px;
    min-width: auto;
    padding: 15px 20px;
    gap: 15px 20px;
  }
}

/* 响应式调整：超小屏幕单列 */
@media (max-width: 600px) {
  .site-nav .site-navigation .site-menu .has-children .dropdown {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    left: 20px !important;
    transform: none;
  }
}

/* 移动端完整样式优化 */
/* 移动端菜单面板 */
@media (max-width: 768px) {
  .site-mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: white !important;
    z-index: 9998 !important;
    padding-top: 80px !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
  }
  
  .site-mobile-menu.active {
    transform: translateX(0);
  }
  
  /* 移动端菜单头部 */
  .site-mobile-menu-header {
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
  }
  
  .site-mobile-menu-close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  /* 移动端菜单项 */
  .site-mobile-menu-body {
    padding: 20px;
  }
  
  .site-mobile-menu .site-menu {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .site-mobile-menu .site-menu > li {
    margin-bottom: 10px !important;
    border-bottom: 1px solid #f5f5f5;
    list-style: none;
  }
  
  .site-mobile-menu .site-menu > li > a {
    color: #333 !important;
    padding: 15px 10px !important;
    font-size: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-decoration: none;
  }
  
  /* 二级和三级菜单样式 */
  .site-mobile-menu .dropdown {
    position: static !important;
    transform: none !important;
    display: none !important;
    padding: 0 15px !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  
  .site-mobile-menu .has-children.active > .dropdown {
    display: block !important;
    margin-bottom: 15px !important;
  }
}






/* 11111111111111111右侧电池规格 */
.battery-specification {
  flex: 1;
  /* 占据父容器的 50% 宽度 */
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  /* 增加阴影效果 */
}

.battery-specification h3 {
  color: white;
  /* 字体颜色为白色 */
  background-color: #e80017;
  /* 背景颜色为红色 */
  font-size: 18px;
  margin-bottom: 10px;
  padding: 10px;
  /* 添加内边距使背景覆盖文字 */
  font-weight: bold;
  /* 字体加粗 */

}

.battery-specification ul {
  list-style: none;
  padding-left: 0;
}

.battery-specification li {
  font-size: 15px;
  color: #606060;
  margin-bottom: 8px;
}

/* 设置参数1样式为红色加粗（右侧电池规格） */
.battery-specification li span {
  font-weight: bold;
  color: #e80017;
  /* 红色 */
}

/* 小屏幕下调整布局为单列 */
@media (max-width: 768px) {
  .product-details {
    flex-direction: column;
    /* 垂直布局 */
    gap: 20px;
    /* 两列之间的垂直间距 */
  }

  .product-parameter,
  .battery-specification {
    flex: 1 1 100%;
    /* 每个部分占满整个行 */
  }
}



/* 设置每个参数项标题的红色和加粗 */
.product-parameter li strong,
.battery-specification li strong {
  font-weight: bold;
  color: #e80017;
  /* 红色 */
}


/* 产品应用场景 */

/* 设置整体容器 */
.product-details {
  display: flex;
  /* 使用 flex 布局 */
  gap: 30px;
  /* 列之间的间距 */
  margin-top: 20px;
  justify-content: space-between;
  /* 确保左右列之间有空间 */
}

/* 左侧列（特点） */
.left-column {
  flex: 1;
  /* 左侧列占据可用空间 */
  background-color: #fff;
  /* 背景色 */
  padding: 20px;
  /* 内边距 */
  border-radius: 10px;
  /* 圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 阴影效果 */
}


.left-column h3 {
  color: white;
  /* 字体颜色为白色 */
  background-color: #e80017;
  /* 背景颜色为红色 */
  font-size: 18px;
  margin-bottom: 10px;
  padding: 10px;
  /* 添加内边距使背景覆盖文字 */
  font-weight: bold;
  /* 字体加粗 */
  border-radius: 5px;
  /* 可选：给背景添加圆角效果 */
  margin-bottom: 30px;
  /* 添加下方间距 */
}


.left-column ul {
  list-style-type: disc;
  /* 设置无序列表样式 */
  padding-left: 20px;
  /* 给列表添加内边距 */
}

.left-column li {
  color: #606060;
  /* 文本颜色 */
  font-size: 15px;
  /* 文本大小 */
  margin-bottom: 10px;
  /* 列表项之间的间距 */
  border-bottom: 1px solid #e8e8e8;
  /* 在每个列表项下添加一条横线 */
  padding-bottom: 5px;
  /* 添加一点底部内边距，避免文本与横线紧挨 */
  font-weight: bold;
  /* 字体加粗 */
}


/* 右侧列（应用场景） */
.right-column {
  flex: 1;
  /* 右侧列占据可用空间 */
  background-color: #fff;
  /* 背景色 */
  padding: 20px;
  /* 内边距 */
  border-radius: 10px;
  /* 圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 阴影效果 */
}

.right-column h3 {
  color: white;
  /* 字体颜色为白色 */
  background-color: #e80017;
  /* 背景颜色为红色 */
  font-size: 18px;
  margin-bottom: 10px;
  padding: 10px;
  /* 添加内边距使背景覆盖文字 */
  font-weight: bold;
  /* 字体加粗 */
  border-radius: 5px;
  /* 可选：给背景添加圆角效果 */
  margin-bottom: 30px;
  /* 添加下方间距 */
}

.right-column ul {
  list-style-type: disc;
  /* 设置无序列表样式 */
  padding-left: 20px;
  /* 给列表添加内边距 */
}

.right-column li {
  color: #606060;
  /* 文本颜色 */
  font-size: 15px;
  /* 文本大小 */
  margin-bottom: 10px;
  /* 列表项之间的间距 */
  border-bottom: 1px solid #e8e8e8;
  /* 在每个列表项下添加一条横线 */
  padding-bottom: 5px;
  /* 添加一点底部内边距，避免文本与横线紧挨 */
  font-weight: bold;
  /* 字体加粗 */
}

/* 响应式布局：当屏幕宽度小于 768px 时，变为单列布局 */
@media (max-width: 768px) {
  .product-details {
    flex-direction: column;
    /* 列表垂直堆叠 */
    gap: 20px;
    /* 列之间的间距 */
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
    /* 每列占据 100% 宽度 */
  }
}

/* 主页产品展示 */
.new-containee {
  padding-top: 20px;
  /* 内部间距 */
  background-color: #f0f1f2ff;
  /* 灰色背景 */
  margin: 0 auto;
  /* 确保父容器居中 */
  padding-left: 0;
  /* 移除任何左侧的内边距 */
  padding-right: 0;
  /* 移除任何右侧的内边距 */
}


.new-containee .new-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* 水平居中 */
  gap: 25px !important;
  /* 每个卡片之间的间距 */
  padding: 15px 5px !important;
  background-color: transparent !important;
  max-width: 1500px !important;
  /* 设置最大宽度 */
  width: 100% !important;
  /* 宽度自适应 */
  margin: 0 auto !important;
  /* 水平居中对齐 */
}

.new-containee h2 {
  color: red;
  /* 设置字体颜色为红色 */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  /* 添加阴影效果，阴影偏移2px，模糊5px，颜色为半透明黑 */
  font-weight: bold;
  /* 设置字体加粗 */
  margin-bottom: 20px;
  /* 设置下面的间距为20px */
  text-align: center;
  /* 让标题文本居中 */
}



/* 针对类名为.new-product-item的元素设置样式 */
.new-product-item {
  text-align: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  /* 半透明白色背景 */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 默认阴影 */
  overflow: hidden;
  min-width: 250px;
  /* 每个卡片的最小宽度 */
  max-width: 250px;
  /* 每个卡片的最大宽度 */
  height: 230px;
  /* 固定高度 */
  transition: all 0.3s ease-in-out;
  /* 平滑过渡效果 */
  display: flex;
  flex-direction: column;
  /* 让内容纵向排列 */
}

/* 鼠标悬浮时的动态效果 */
.new-product-item {
  position: relative;
  /* 确保元素的堆叠顺序不受影响 */
}

.new-product-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 255, 200, 0.6);
  /* 增加悬浮阴影与光效 */
  transform: translateY(-10px);
  /* 卡片微微上移 */
  background: rgba(255, 255, 255, 1);
  /* 背景更亮 */
}

/* 针对类名为.new-product-item下的img元素设置样式 */
.new-product-item img {
  width: 100%;
  /* 图片宽度自适应容器 */
  height: 140px;
  /* 图片固定高度，减少上下边距 */
  object-fit: contain;
  /* 保持图片比例缩放，避免裁剪 */
  object-position: center;
  /* 图片居中显示 */
  border-radius: 5px;
  /* 图片圆角 */
  transition: transform 0.3s ease-in-out;
  /* 只对transform做过渡 */
}

/* 鼠标悬浮时，图片放大效果 */
.new-product-item:hover img {
  transform: scale(1.20);
  /* 图片轻微放大 */
  z-index: 2;
  /* 确保图片在悬浮时显示在最前面 */
}


/* 针对类名为.new-product-item下的span元素设置样式 */
.new-product-item span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  /* 防止文字溢出 */
  overflow: hidden;
  white-space: nowrap;
}

/* 针对卡片的标题和价格进行单独优化 */
.new-product-item h3 {
  font-size: 16px;
  color: #555;
  margin: 10px 0;
}

.new-product-item .price {
  color: green;
  font-weight: bold;
  margin-top: 5px;
  font-size: 16px;
}




/* 响应式布局 */
@media (max-width: 1200px) {

  /* 中等屏幕：12px字体大小，4列显示 */
  .new-product-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 每行显示4个产品 */
  }
}

@media (max-width: 992px) {

  /* 中小屏幕：更小的间距，3列显示 */
  .new-product-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 每行显示3个产品 */
    gap: 10px;
  }

  .new-product-item {
    min-width: 200px;
    max-width: 200px;
  }

  .new-product-item img {
    height: 120px;
  }
}

@media (max-width: 768px) {

  /* 小屏幕：2列显示 */
  .new-product-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 每行显示2个产品 */
    gap: 8px;
  }

  .new-product-item {
    min-width: 180px;
    max-width: 180px;
    height: 200px;
  }

  .new-product-item img {
    height: 100px;
  }

  .new-product-item span {
    font-size: 12px;
  }

  .new-product-item h3 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  /* 超小屏幕：1列显示 */
  .new-product-grid {
    grid-template-columns: 1fr;
    /* 每行显示1个产品 */
    gap: 10px;
  }

  .new-product-item {
    min-width: 100%;
    max-width: 100%;
    height: auto;
    /* 自动调整高度 */
  }

  .new-product-item img {
    height: auto;
  }

  .new-product-item span {
    font-size: 14px;
  }

  .new-product-item h3 {
    font-size: 16px;
  }
}

/* 仅对具有 page-specific 类的页面应用样式 */
.page-specific h1 {
  font-size: 24px;
}

.page-specific .custom-body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 20px;
}

.page-specific .custom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #ffffff;
}

.page-specific .custom-table th,
.page-specific .custom-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.page-specific .custom-table th {
  background-color: #f50404;
  color: #ffffff;
}

.page-specific .custom-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-specific .custom-table tr:hover {
  background-color: #f1f1f1;
}

/* -------------------------------------------------- */

/* 产品参数的整体容器 */
.product-parameter {
  font-family: Arial, sans-serif;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 标题样式 */
.product-parameter h3 {
  color: white;
  /* 字体颜色为白色 */
  background-color: #e80017;
  /* 背景颜色为指定颜色 */
  font-size: 20px;
  margin-bottom: 10px;
  padding: 10px;
  /* 添加内边距使背景覆盖文字 */
  font-weight: bold;
  /* 字体加粗 */
  border-radius: 5px;
  /* 可选：给背景添加圆角效果 */
  margin-bottom: 20px;
  /* 添加下方间距 */
  text-align: center; /* 让文字水平居中 */
}

/* 列表容器样式 */
.product-parameter ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* 列表项样式 */
.product-parameter li {
  display: grid;
  grid-template-columns: 50% 50%; /* 左侧占 40%，右侧占 60% */
  align-items: center;
  padding: 8px 0; /* 减少垂直间距 */
  border-bottom: 1px solid #eee;
}

/* 标签样式 */
.product-parameter li span:first-child {
  font-size: 20px;
  font-weight: bold;
  color: #555;
  text-align: right; /* 标签文字右对齐 */
  padding-right: 15px; /* 给标签右侧添加一些间距 */
  box-sizing: border-box;
}

/* 参数值样式 */
.product-parameter li .value {
  font-size: 20px;
  color: #333;
  text-align: left;
  word-break: break-word;
  padding-left: 15px; /* 给参数值左侧添加一些间距 */
}
@media (max-width: 768px) {
  .product-parameter li span:first-child {
    font-size: 13px;
  }
  .product-parameter li .value {
    font-size: 13px;
  }
} 


/* ===== 搜索容器 ===== */
.site-search {
  position: relative;
  margin-left: 20px;
  margin-right: 15px;
  z-index: 999; /* 基础层级 */
}

/* ===== 表单布局 ===== */
.site-search-form .search-wrapper {
  display: flex;
  align-items: center;
  height: 36px;
  position: relative; /* 创建定位上下文 */
}

/* ===== 输入框样式 ===== */
.search-input {
  width: 180px;
  height: 100%;
  padding: 0.375rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 20px 0 0 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  
  /* 层级控制 */
  position: relative;
  z-index: 1000;
  background: #fff; /* 确保背景不透明 */
}

.search-input:focus {
  width: 220px;
  outline: none;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ===== 移动端适配 ===== */
@media (max-width: 768px) {
  .site-search {
    margin: 0 10px;
    z-index: 9999; /* 移动端提升层级 */
    order: 999; /* 如果使用弹性布局，强制排序 */
  }

  .search-input {
    width: 120px !important; /* 覆盖PC端宽度 */
    font-size: 0.8rem;
  }

  .search-input:focus {
    width: 150px !important;
  }

  /* 确保移动端输入法弹起时不被遮挡 */
  @media (max-height: 600px) {
    .site-search {
      position: static;
    }
  }
}

/* ===== 防冲突保护 ===== */
/* 强制覆盖第三方库的z-index */
body .site-search {
  z-index: 999 !important;
}

/* 防止父级overflow隐藏 */
@media (max-width: 768px) {
  .site-search {
    transform: translateZ(0); /* 创建新的图层上下文 */
  }
}


/* ------------------------------------------- */

/* 保持原始样式特征 */

/* 合并后的容器（替代原始.lanmufenqu） */


/* 保持原始标题区块样式 */
.biaoti {
  padding-bottom: 20px;                /* 标题区块底部内边距为20px */
  border-bottom: 2px solid #f0f0f0;    /* 标题区块底部添加2px宽的浅灰色实线边框 */
  display: flex;                       /* 使用flex布局 */
  flex-direction: column;             /* 子元素垂直排列 */
  align-items: center;                 /* 子元素水平居中对齐 */
  background-color: #e80017;           /* 背景颜色为浅灰色 */
  width: 80%;                          /* 宽度为父元素宽度的80% */
  margin: 0 auto;                      /* 水平居中 */
  box-sizing: border-box;              /* 盒模型包含内边距和边框 */
  padding: 20px;                       /* 内边距20px */
  border-radius: 10px;                 /* 边框圆角10px */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 添加阴影效果 */
}

/* 标题区块内的h3标签样式 */
.biaoti h3 {
  width: 100%;                         /* 宽度占满父容器 */
  margin: 0 0 20px 0;                 /* 下外边距20px，其他方向无 */
  padding: 10px 0;                    /* 上下内边距10px */
  font-size: 36px;                    /* 字体大小36px */
  color: white !important;                        /* 白色文字 */
  text-align: center;                 /* 文字居中对齐 */
  text-shadow: 2px 2px 4px rgba(126,108,108,0.3); /* 文字阴影效果 */
}

/* SEO描述部分样式 */
.seo-desc {
  font-size: 15px;                    /* 正文字体大小15px */
  color: #fff;                        /* 白色文字 */
  line-height: 1.5;                   /* 1.5倍行高 */
  margin-top: 8px;                    /* 上外边距8px */
}

/* 保持原始内容容器样式 */
.multi-column-container {
  width: 80%;                         /* 宽度为父元素80% */
  margin: 0 auto;                     /* 水平居中 */
  padding: 20px;                      /* 内边距20px */
  box-sizing: border-box;             /* 盒模型包含内边距 */
  column-count: 5;                    /* 分5列显示 */
  column-gap: 20px;                   /* 列间距20px */
  column-rule: 1px solid #e5e7eb;     /* 列间分隔线 */
  background-color: #fff;             /* 白色背景 */
  border-radius: 10px;                /* 圆角10px */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 15px 30px 0 rgba(0,0,0,0.05); /* 双层阴影 */
  transition: box-shadow 0.3s ease;   /* 阴影过渡效果 */
}

.multi-column-container:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2), 0 20px 40px 0 rgba(0,0,0,0.1); /* 悬停时加强阴影 */
}

/* 内容项基础样式 */
.content-item {
  break-inside: avoid;                /* 防止内容分页断开 */
  padding: 8px 15px;                  /* 内边距8px上下，15px左右 */
  margin-bottom: 5px;                 /* 下外边距5px */
  border-radius: 4px;                 /* 小圆角4px */
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;  /* 背景色、位置和阴影过渡动画 */
}

.content-item:hover {
  transform: translateY(-5px);        /* 鼠标悬停时向上移动5px */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 鼠标悬停时添加阴影 */
}

.text-truncate {
  display: block;                     /* 块级显示 */
  color: #4a5568;                     /* 深灰色文字 */
  font-size: 14px;                    /* 14px字体 */
  white-space: nowrap;                /* 禁止换行 */
  overflow: hidden;                  /* 溢出隐藏 */
  text-overflow: ellipsis;           /* 溢出显示省略号 */
  text-decoration: none;             /* 去除下划线 */
}

.content-item:hover {
  background: #f8fafc;               /* 悬停时浅灰色背景 */
}

.content-item:hover .text-truncate {
  color: #2563eb;                    /* 悬停时文字变蓝色 */
}

/* 保持原始响应式断点 */
@media (max-width: 1200px) {
  .multi-column-container {
      column-count: 4;
  }
}

@media (max-width: 992px) {
  .shaixuanrongqi {
      width: 90%;
  }
  .multi-column-container {
      column-count: 3;
  }
}

@media (max-width: 768px) {
  .merged-container {
      margin: 10px 0;
      padding: 15px;
  }
  .biaoti h3 {
      font-size: 28px;
  }
  .multi-column-container {
      column-count: 2;
      padding: 10px;
  }
}

@media (max-width: 576px) {
  .shaixuanrongqi {
      width: 95%;
  }
  .multi-column-container {
      column-count: 1;
  }
  .biaoti h3 {
      font-size: 24px;
  }
}


/* ------------------------ */


.projcard-container {
  margin: 50px 0;
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
  box-sizing: border-box;
}
.projcard-container * {
  box-sizing: border-box;
}
.projcard {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #ddd;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.projcard:hover {
  box-shadow: 0 34px 32px -33px rgba(0, 0, 0, .18);
  transform: translate(0px, -3px);
}
.projcard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 0.07;
}
.projcard:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #424242, transparent 50%);
}
.projcard-innerbox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.projcard-img {
  position: absolute;
  height: 300px;
  width: 400px;
  top: 0;
  left: 0;
  transition: transform 0.2s ease;
}
.projcard:nth-child(2n) .projcard-img {
  left: initial;
  right: 0;
}
.projcard:hover .projcard-img {
  transform: scale(1.05) rotate(1deg);
}
.projcard:hover .projcard-bar {
  width: 70px;
}
.projcard-textbox {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 430px;
  width: calc(100% - 470px);
  font-size: 17px;
}
.projcard:nth-child(2n) .projcard-textbox {
  left: initial;
  right: 430px;
}
.projcard-textbox::before,
.projcard-textbox::after {
  content: "";
  position: absolute;
  display: block;
  background: #ff0000bb;
  background: #fff;
  top: -20%;
  left: -55px;
  height: 140%;
  width: 60px;
  transform: rotate(8deg);
}
.projcard:nth-child(2n) .projcard-textbox::before {
  display: none;
}
.projcard-textbox::after {
  display: none;
  left: initial;
  right: -55px;
}
.projcard:nth-child(2n) .projcard-textbox::after {
  display: block;
}
.projcard-textbox * {
  position: relative;
}
.projcard-title {
  font-family: 'Voces', 'Open Sans', arial, sans-serif;
  font-size: 24px;
}
.projcard-subtitle {
  font-family: 'Voces', 'Open Sans', arial, sans-serif;
  color: #888;
}
.projcard-bar {
  left: -2px;
  width: 50px;
  height: 5px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}
.projcard-red .projcard-bar {
  background-color: #D62F1F;
}
.projcard-red::before {
  background-image: linear-gradient(-70deg, #D62F1F, transparent 50%);
}
.projcard-red:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #D62F1F, transparent 50%);
}
.projcard-description {
  z-index: 10;
  font-size: 15px;
  color: #424242;
  height: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projcard-tagbox {
  position: absolute;
  bottom: 3%;
  font-size: 14px;
  cursor: default;
  user-select: none;
  pointer-events: none;
}
.projcard-tag {
  display: inline-block;
  background: #E0E0E0;
  color: #777;
  border-radius: 3px 0 0 3px;
  line-height: 26px;
  padding: 0 10px 0 23px;
  position: relative;
  margin-right: 20px;
  cursor: default;
  user-select: none;
  transition: color 0.2s;
}
.projcard-tag::before {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
  height: 6px;
  left: 10px;
  width: 6px;
  top: 10px;
}
.projcard-tag::after {
  content: '';
  position: absolute;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #E0E0E0;
  border-top: 13px solid transparent;
  right: -10px;
  top: 0;
}


/* 父项：包含下拉的 li */
.has-children {
	position: relative;
}

/* 下拉菜单 */
.yuyancss {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	min-width: 140px;
	display: none;
	z-index: 999;
	border-radius: 6px;
}

/* 每个下拉项 */
.yuyancss li {
	padding: 0;
}

.yuyancss li a {
	display: block;
	padding: 8px 16px;
	color: #333;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

/* hover 效果 */
.yuyancss li a:hover {
	background-color: #f2f2f2;
	color: #007bff;
}

/* 鼠标悬停时显示下拉 */
.has-children:hover .yuyancss {
	display: block;
}


