/* 基础设置 */



:root {
  --swiper-navigation-size: 30px !important;
  --swiper-theme-color: #fff !important;
}


/* 滚动动画样式 */
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* 为不同元素设置不同的动画延迟 */
.company-intro.animate-in {
  transition-delay: 0.1s;
}

.product-series.animate-in {
  transition-delay: 0.2s;
}

.banner-poster.animate-in {
  transition-delay: 0.3s;
}

.more-scent.animate-in {
  transition-delay: 0.4s;
}

.consult.animate-in {
  transition-delay: 0.5s;
}

.cooperation-case.animate-in {
  transition-delay: 0.6s;
}

/* 为香型咨询内容项添加交错动画 */
.scent-consult-content-item.animate-in {
  transition-delay: calc(var(--item-index, 0) * 0.1s);
}



/* 轮播图响应式 */
.swiper {
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  border-radius: 4px !important;
  padding: 30px !important;
  background-color: none !important;
}

/* 轮播图指示器样式 */
.swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.502) !important;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
  width: 20px;
  border-radius: 5px;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

/* 添加这个样式来处理背景图片 */
.swiper-slide {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* 公司介绍 */
.company-intro {
  width: 100%;
  height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  padding: 7rem 7rem;
}

.company-intro-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.company-intro-top-title {
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-title);
}

.company-intro-top-sub-title {
  font-size: 1rem;
  color: var(--color-sub-title);
}

.company-intro-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  width: 100%;
  gap: 5rem;
}

.company-intro-bottom-left {
  flex: 1;
  height: 100%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.company-intro-bottom-right {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.company-intro-bottom-right-title span {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-title);
}

.company-intro-bottom-right-title-quote {
  color: var(--color-primary) !important;

}

.company-intro-bottom-right-title-quote:first-child {
  margin-right: 0.5rem;
}

.company-intro-bottom-right-title-quote:last-child {
  margin-left: 0.5rem;
}

.company-intro-bottom-right-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}



/* 公司背景 */
.company-background {
  width: 100%;
  padding: 5rem 7rem;
  background-color: #f8f8f8;
}

.company-background-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.company-background-title-text {
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-title);
  margin-bottom: 0.5rem;
}

.company-background-title-sub {
  font-size: 1rem;
  color: var(--color-sub-title);
}

.company-background-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.company-background-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.company-background-item:hover {
  transform: translateY(-10px);
}

.company-background-item-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-title);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.5rem 2rem;
  background-color: #e8f5e9;
  border-radius: 20px;
}

.company-background-item-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}

.company-background-item-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.company-background-item-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.company-background-item-text p {
  margin-bottom: 1rem;
}

.company-background-item-text .item-detail {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.company-background-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-item {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-item:last-child {
  margin-bottom: 0;
}

.footer-item-title {
  color: var(--color-primary);
  font-weight: 500;
  margin-right: 0.5rem;
}

.footer-item-content {
  color: var(--color-text);
}


/* 产品系列响应式 */
.product-series {
  width: 100%;
  min-height: 400px;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-series-main {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-series-main-item {
  aspect-ratio: 1;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* 添加悬停效果 */
.product-series-main-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-series-main-item:hover::before {
  opacity: 1;
}

.product-series-main-item-title {
  font-size: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.product-series-main-item-more {
  font-size: 0.7rem;
  border: 1px solid #ffffff;
  padding: 0.3rem 1rem;
  font-weight: lighter;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease 0.1s;
}

/* banner海报 */
.banner-poster {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-poster-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 添加图片加载动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.banner-poster-img {
  animation: fadeIn 1s ease;
}

.more-scent {
  max-width: 1000px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.more-scent-title {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.more-scent-title span {
  text-align: center;
  font-size: 1rem;
  border: 1px solid #ffffff;
  border-radius: 30px;
  padding: 0.6rem 2.3rem;
}

.more-scent-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.more-scent-card-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.more-scent-card-item-title {
  font-size: 1.4rem;
  text-align: center;
}

.more-scent-card-item-sub-title {
  font-size: 1rem;
  line-height: 2;
  color: #999999;
  text-align: center;
}

.more-scent-card-item-image {
  height: 11rem;
}

.more-scent-card-item-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 咨询标题 */
.consult {
  width: 80%;
  margin: 0 auto;
}

.consult-title-item {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}

.consult-title-line {
  width: 20px;
  height: 3px;
  background-color: #ffffff;
  margin: 2rem 0 0.5rem 0;
}

/* 香型咨询内容基础样式 */
.scent-consult-content {
  width: 99%;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 50rem;
}

.scent-consult-content-item {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  padding: 10rem 2rem 10rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.scent-consult-content-item-box {
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}


.scent-consult-content-item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.scent-consult-content-item-title-line {
  width: 2.5rem;
  background-color: white;
  height: 1px;
  margin: 1rem 0;
}

.scent-consult-content-item-text {
  font-size: 0.9rem;
  line-height: 2;
  text-align: center;
}

/* 合作案例内容 */
.cooperation-case {
  width: 80%;
  min-height: 26rem;
  margin: 0 auto;
  margin-top: 11rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 0.8rem;
}

.cooperation-case-left {
  flex: 1;
  min-height: 26rem;
  max-height: 26rem;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.cooperation-case-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.cooperation-case-right-item {
  min-height: 12.5rem;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.cooperation-case-right-item-text,
.cooperation-case-left-item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 底部 */
.footer-main {
  display: flex;
  height: 20rem;
  flex-direction: column;
  background-color: #2b2b2b;
  color: #999999;
}

.footer-top {
  flex: 1;
  border-bottom: 1px solid #454545;
  display: flex;
}

.footer-top-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: column;
  margin-top: 4rem;
}



.footer-top-center {
  flex: 1;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 6rem;
  font-size: 0.9rem;
  color: #666666;
}

.footer-top-center span {
  cursor: pointer;
}


.footer-top-right {
  flex: 1;
  margin-top: 4rem;
  color: #666666;
  font-size: 0.9rem;
}

.footer-bottom {
  height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #999999;

}

/* 响应式断点 */
@media screen and (max-width: 1200px) {
  .company-main {
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .company-main {
    flex-direction: column;
  }

  .company-intro {
    height: auto;
    padding: 2rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .company-intro {
    padding: 2rem 1rem;
  }

  .company-main {
    width: 95%;
  }
}

/* 全局过渡动画 */
.header-item .item,
.company-main-left-more,
.product-series-main-item,
.swiper-button-prev,
.swiper-button-next,
.company-background {
  transition: all 0.3s ease;
}

/* 优化轮播图按钮 */
.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem;
}

/* 添加页面滚动平滑效果 */
html {
  scroll-behavior: smooth;
}

/* 优化加载体验 */
.company-intro,
.product-series,
.banner-poster,
.more-scent,
.consult,
.scent-consult-content,
.cooperation-case,
.company-background {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 错开动画时间 */
.company-intro {
  animation-delay: 0.2s;
}

.product-series {
  animation-delay: 0.4s;
}

.banner-poster {
  animation-delay: 0.6s;
}

/* 添加动画效果 */
.scent-consult-content-item {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: calc(var(--item-index, 0) * 0.2s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* 响应式样式 */
@media screen and (max-width: 1024px) {
  .company-background {
    padding: 3rem 2rem;
  }

  .company-background-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .company-background-content {
    grid-template-columns: 1fr;
  }

  .company-background-item {
    padding: 1.5rem;
  }

  .company-background-item-image {
    height: 180px;
  }

  .company-background-footer {
    padding: 1.5rem;
  }

  .footer-item {
    margin-bottom: 1rem;
  }
}

/* 专家介绍 */
.expert-introduction {
  width: 100%;
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
}

.expert-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 4rem;
}

.expert-title-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}


.expert-title-content {
  display: flex;
  flex-direction: column;
}

.expert-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.expert-title-text {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 0.5rem;

}

.expert-title-sub {
  font-size: 1rem;
  color: var(--color-sub-title);
  text-align: center; /* 确保文本居中对齐 */
  margin-bottom: 0.5rem; /* 根据需要调整边距 */
  

}

.expert-title-desc {
  font-size: 1.2rem;
  color: var(--color-text-light);
}

.expert-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expert-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.expert-row:last-child {
  margin-bottom: 0;
}

.expert-row-reverse {
  flex-direction: row-reverse;
}

.expert-card {
  flex: 0 1 calc(50% - 1rem);
  max-width: 600px;
}

.expert-card-inner {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.expert-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expert-image {
  width: 180px;
  min-width: 180px;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.expert-card-inner:hover .expert-image img {
  transform: scale(1.05);
}

.expert-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-name-title {
  margin-bottom: 1rem;
}

.expert-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 0.5rem;
}

.expert-role {
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: #e8f5e9;
  color: var(--color-primary);
  border-radius: 15px;
  font-size: 0.9rem;
}

.expert-details p {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.expert-details p:last-child {
  margin-bottom: 0;
}

/* 响应式样式 */
@media screen and (max-width: 1200px) {
  .expert-introduction {
    padding: 4rem 0;
  }

  .expert-card {
    flex: 0 1 calc(50% - 1rem);
  }
}

@media screen and (max-width: 992px) {
  .expert-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .expert-row-reverse {
    flex-direction: column;
  }

  .expert-card {
    flex: 1;
    max-width: 100%;
  }

  .expert-card-inner {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .expert-title-number {
    font-size: 3.5rem;
  }

  .expert-title-text {
    font-size: 2rem;
  }

  .expert-card-inner {
    flex-direction: column;
  }

  .expert-image {
    width: 100%;
    height: 250px;
  }

  .expert-info {
    text-align: center;
  }
}

/* 国家专利 */
.national-patent {
  width: 100%;
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
}

.national-patent-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.national-patent-title-text {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 0.5rem;
}

.national-patent-title-sub {
  font-size: 1rem;
  color: var(--color-sub-title);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
}

.national-patent-content {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.national-patent-desc {
  font-size: 1.18rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.national-patent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.national-patent-item {
  background: #fff;
  padding: 0.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.national-patent-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.national-patent-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.national-patent-item:hover img {
  transform: scale(1.05);
}

.national-patent-item.placeholder {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.national-patent-item.placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.placeholder-content span {
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
}

.placeholder-content span:last-child {
  font-size: 0.9rem;
  color: #999;
}

/* 响应式样式 */
@media screen and (max-width: 1024px) {
  .national-patent-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .national-patent-content,
  .national-patent-title,
  .national-patent-desc {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .national-patent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .national-patent-item {
    padding: 0.6rem;
  }
  .national-patent-content,
  .national-patent-title,
  .national-patent-desc {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .national-patent-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .national-patent-item {
    padding: 0.5rem;
  }
}
/* 技术要点 */
.technical-points {
  width: 100%;
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
}

.technical-points-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.technical-points-title-text {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 0.5rem;
}

.technical-points-title-sub {
  font-size: 1rem;
  color: var(--color-sub-title);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
}

.technical-points-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.technical-points-item {
  display: flex;
  gap: 3rem;
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.technical-points-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.technical-points-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}

.technical-points-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.technical-points-image-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.technical-points-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.technical-points-image-item:hover img {
  transform: scale(1.05);
}

/* 响应式样式 */
@media screen and (max-width: 1024px) {
  .technical-points-item {
    padding: 2rem;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .technical-points-item {
    flex-direction: column;
    padding: 1.5rem;
  }

  .technical-points-text {
    margin-bottom: 2rem;
  }

  .technical-points-images {
    gap: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .technical-points {
    padding: 3rem 0;
  }

  .technical-points-title-text {
    font-size: 2rem;
  }

  .technical-points-item {
    padding: 1rem;
  }

  .technical-points-text p {
    font-size: 0.9rem;
  }
}

.patent-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 1.1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

.patent-page-btn {
  background: linear-gradient(90deg, #4f8cff 0%, #6ed6ff 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(79,140,255,0.18);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,2.08,.55,.44);
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.patent-page-btn:disabled {
  background: #e0e7ef;
  color: #b0b8c9;
  cursor: not-allowed;
  box-shadow: none;
}
.patent-page-btn:not(:disabled):hover {
  background: linear-gradient(90deg, #6ed6ff 0%, #4f8cff 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(79,140,255,0.22);
}
.patent-page-info {
  color: #4f8cff;
  font-weight: 500;
  background: rgba(110,214,255,0.08);
  border-radius: 1.2rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(110,214,255,0.08);
}
.patent-page-current {
  color: #ff7e5f;
  font-size: 1.3em;
  font-weight: bold;
}
.patent-page-total {
  color: #6ed6ff;
  font-size: 1.1em;
}
.icon-left, .icon-right {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
}
.icon-left {
  border: solid #fff;
  border-width: 0 0.18em 0.18em 0;
  display: inline-block;
  padding: 0.18em;
  transform: rotate(135deg);
  margin-right: 0.2em;
}
.icon-right {
  border: solid #fff;
  border-width: 0 0.18em 0.18em 0;
  display: inline-block;
  padding: 0.18em;
  transform: rotate(-45deg);
  margin-left: 0.2em;
}

@media screen and (max-width: 1024px) {
  .patent-pagination {
    padding-left: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .patent-pagination {
    justify-content: center;
    padding-left: 0;
  }
}

/* 轮播图响应式增强 */
@media screen and (max-width: 1024px) {
  .swiper {
    height: 50vh;
    min-height: 200px;
    max-height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .swiper {
    height: 35vh;
    min-height: 140px;
    max-height: 220px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    padding: 10px !important;
    width: 28px;
    height: 28px;
  }
  .swiper-pagination {
    bottom: 8px !important;
  }
}
@media screen and (max-width: 480px) {
  .swiper {
    height: 28vh;
    min-height: 90px;
    max-height: 140px;
  }
}

/* 公司简介响应式增强 */
@media screen and (max-width: 1024px) {
  .company-intro {
    padding: 3rem 1.2rem;
    gap: 2rem;
  }
  .company-intro-bottom {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .company-intro {
    padding: 1.2rem 0.5rem;
    gap: 1.2rem;
  }
  .company-intro-bottom {
    flex-direction: column;
    gap: 1.2rem;
  }
  .company-intro-bottom-left,
  .company-intro-bottom-right {
    width: 100%;
    min-height: 120px;
  }
  .company-intro-bottom-left {
    height: 120px;
  }
  .company-intro-bottom-right-title span {
    font-size: 1.1rem;
  }
  .company-intro-bottom-right-text {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 480px) {
  .company-intro {
    padding: 0.5rem 0.2rem;
  }
  .company-intro-top-title {
    font-size: 1.2rem;
  }
  .company-intro-bottom-right-title span {
    font-size: 0.95rem;
  }
  .company-intro-bottom-right-text {
    font-size: 0.78rem;
  }
}

.company-motto {
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 3rem;
}
.company-motto .quote {
  font-size: 2.5rem;
  color: #10a33b;
  font-weight: bold;
}
.company-slogan {
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: 2.1rem;
  line-height: 2.7rem;
  margin-top: 0.2em;
}
.company-slogan .quote {
  font-size: 2.1rem;
  color: #10a33b;
  font-weight: bold;
}

