/* ========== CSS 变量 ========== */
:root {
  --primary-color: #000000;
  --text-color: #ffffff;
  --accent-color: #ff0000;
  --light-gray: rgba(255,255,255,0.1);
  --transition-speed: 0.3s;
  --border-radius: 2px;
  --navbar-height: 80px;
  --container-width: 1200px;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  /* 动画相关变量 */
  --animation-duration-1: 1s;
  --animation-duration-2: 0.8s;
  --animation-delay-1: 0.2s;
  --animation-delay-2: 0.4s;
  --animation-delay-3: 0.6s;
  --animation-delay-bottom: 0.8s;
}

/* ========== 基础样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    outline: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Segoe UI, Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

html {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* ========== 导航栏 ========== */
.jp-app-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--navbar-height) + var(--safe-top));
  background: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  padding-top: var(--safe-top);
  font-size: 16px;
  z-index: 999999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 移除按钮默认焦点边框，自定义焦点样式 */
.jp-app-menu-icon, .jp-app-close-icon, .jp-app-language {
  font-size: 20px;
  cursor: pointer;
  width: 24px;
  text-align: center;
  background: none;
  border: none;
  color: white;
  outline: none;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.jp-app-menu-icon:focus-visible, .jp-app-close-icon:focus-visible, .jp-app-language:focus-visible {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
  border-radius: 2px;
}
.jp-app-menu-icon:hover, .jp-app-close-icon:hover, .jp-app-language:hover {
  opacity: 0.8;
}

.jp-app-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.jp-app-logo__text {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

.jp-app-language {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: auto;
}
.jp-app-flag-icon {
  width: 30px;
  height: 20px;
  position: relative;
}

.jp-app-flag-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ========== 菜单面板 ========== */
.jp-app-menu, .jp-app-lang-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  color: white;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000000;
  transform: translateY(-100%);
  -webkit-overflow-scrolling: touch;
  contain: layout style paint;
}
/* 主导航菜单：不占满高度，底部留白 50px */
.jp-app-menu {
  height: auto;
  max-height: calc(100vh - 50px);
  padding-bottom: 50px;
}

.jp-app-menu__container {
  padding: 35px 45px;
}
/* 语言菜单：占满全屏高度 */
.jp-app-lang-menu {
  height: 100vh;
  min-height: 100vh;
}
.jp-app-menu.active, .jp-app-lang-menu.active {
  transform: translateY(0);
}
.jp-app-menu__header, .jp-app-lang-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  height: calc(var(--navbar-height) + var(--safe-top));
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--safe-top);
  position: sticky;
  top: 0;
  z-index: 10;
  background: #000000;
}

.jp-app-menu__item {
  padding: 16px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 20px;
}.jp-app-menu__item:hover, .jp-app-menu__item:focus-visible {
  background-color: #000000;
  outline: none;
}

.jp-app-menu__item.active {
  background-color: #000000;
}
.jp-app-menu__item .jp-app-menu__arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}
.jp-app-menu__item.active .jp-app-menu__arrow {
  transform: rotate(90deg);
}
.jp-app-menu__submenu {
  background: #000000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.jp-app-menu__submenu.active {
  max-height: 3000px;
}
.jp-app-menu__subitem {
  font-size: 1rem; /* 16px */
  padding: 10px 0px;
  color: #747474;
  cursor: pointer;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.jp-app-menu__subitem--third-level {
  position: relative;
  padding: 5px 0px 5px 15px;
  font-size: 0.875rem; /* 14px */
  color: #444444;
}

.jp-app-menu__subitem--third-level::before {
  content: "- "; /* 前面自动加 - */
  position: absolute;
  left: 0;
  margin-right: 5px; /* 你要的右边距 5px */
  color: inherit; /* 继承文字颜色，保持统一 */
}
/* 语言菜单样式 */
.jp-app-lang-menu__title {
  padding: 20px 30px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.jp-app-lang-menu__section {
  padding: 15px 30px 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.jp-app-lang-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.jp-app-lang-menu__item:hover, .jp-app-lang-menu__item:focus-visible {
  background-color: rgba(255,255,255,0.05);
  outline: none;
}
.jp-app-lang-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* 上下/左右间距 */
  padding: 0 15px; /* 给整体加一点左右内边距，避免贴边 */
}
.jp-app-lang-menu__flag {
  width: 30px;
  height: 20px;
  flex-shrink: 0; /* 关键：禁止国旗被压缩，固定尺寸 */
}
.jp-app-lang-menu__icon {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 图片按比例缩放，不变形 */
  display: block;
}

.jp-app-lang-menu__name {
  font-size: 15px;
  white-space: nowrap; /* 文字不换行 */
}

/* ========== 底部 ========== */
.jp-app-footer {
  background: #282828;
  color: white;
  padding: 20px 0;
}

.jp-app-back-to-top {
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  width: 100%;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.jp-app-back-to-top:hover {
  opacity: 0.8;
}

.jp-app-back-to-top:focus-visible {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}

.jp-app-back-to-top__text {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.jp-app-back-to-top__arrow {
  font-size: 0.75rem;
}

.jp-app-footer__logo {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.jp-app-footer__menu {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  list-style: none;
}

.jp-app-footer__menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.jp-app-footer__menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.jp-app-footer__menu-title a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.jp-app-footer__menu-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}

.jp-app-footer__menu-arrow::before,
.jp-app-footer__menu-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.jp-app-footer__menu-arrow::before {
  content: '+';
  font-size: 1.25rem;
}

.jp-app-footer__menu-arrow::after {
  content: '-';
  font-size: 1.625rem;
  opacity: 0;
}

.jp-app-footer__menu-item.active .jp-app-footer__menu-arrow::before {
  opacity: 0;
}

.jp-app-footer__menu-item.active .jp-app-footer__menu-arrow::after {
  opacity: 1;
}

.jp-app-footer__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}

.jp-app-footer__submenu.active {
  max-height: 3000px;
}

.jp-app-footer__submenu-item {
  padding: 5px 0px;
  font-size: 1rem; /* 16px */
  
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.jp-app-footer__submenu-item--third-level {
  padding: 3px 0px;
  font-size: 0.75rem; /* 12px */
  
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 最后一个子菜单项与分割线之间增加20px边距 */
.jp-app-footer__submenu-item:last-child,
.jp-app-footer__submenu-item--third-level:last-child {
  margin-bottom: 20px;
}

.jp-app-footer__submenu-item a {
  color: #747474;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.jp-app-footer__submenu-item--third-level a {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.jp-app-footer__submenu-item a:hover, .jp-app-footer__submenu-item--third-level a:hover {
  color: white;
  text-decoration: underline;
}

.jp-app-footer__copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.jp-app-content {
  padding-top: calc(var(--navbar-height) + 0px); /* 顶部导航高度 + 0px 额外边距 */
  min-height: calc(100vh - var(--navbar-height));
  max-width: 100%;
  background-color: white;
  z-index: 1;
  position: relative;
}


/* 新闻海报 */
.jp-app-poster {
  width: 100%;
  overflow: hidden;
}

.jp-app-poster img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========== 图片和视频展示模块 ========== */
.jp-app-home-banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  opacity: 1; /* 直接显示，不依赖动画类 */
  transform: translateY(0) scale(1); /* 直接显示，不依赖动画类 */
  transition: opacity var(--animation-duration-1) cubic-bezier(0.2, 0.9, 0.4, 1.1), 
              transform var(--animation-duration-1) cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: opacity, transform;
}
.jp-app-home-banner.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.jp-app-home-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1; /* 直接显示，不依赖loaded类 */
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.jp-app-home-banner__image.loaded {
  opacity: 1;
}

/* 品牌理念模块样式 */
.jp-app-about-brand-philosophy {
  background: #fff;
  color: #fff;
}

.jp-app-about-brand-philosophy__content {
  max-width: 1200px;
  margin: 0 auto;
}

.jp-app-about-brand-philosophy__image-section {
  width: 100%;
  margin-bottom: 60px;
}

.jp-app-about-brand-philosophy__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.jp-app-about-brand-philosophy__text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 30px;
}

.jp-app-about-brand-philosophy__section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.jp-app-about-brand-philosophy__section-description {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #999;
  text-align: justify;
  text-align-last: left;
}

.jp-app-about-brand-philosophy__quote {
  font-size: 12px;
  margin-bottom: 5px;
  color: #666;
}

.jp-app-about-brand-philosophy__footer {
  margin-top: 60px;
  text-align: center;
}

.jp-app-about-brand-philosophy__footer-line {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-bottom: 30px;
}

.jp-app-about-brand-philosophy__carousel-tag {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.jp-app-about-brand-philosophy__carousel-tag-left {
  text-align: left;
  font-size: 10px;
  color: #999;
  font-weight: 500;
}

.jp-app-about-brand-philosophy__carousel-tag-right {
  font-size: 10px;
  color: #999;
  font-weight: 500;
}

/* 轮播图模块样式 */
.jp-app-about-carousel {
  background: #fff;
  padding: 30px 15px;
}

.jp-app-about-carousel__container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

.jp-app-about-carousel__slides {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.jp-app-about-carousel__slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.jp-app-about-carousel__slide.active {
  display: block;
}

/* 轮播图动画效果 */
.jp-app-about-carousel__slide.slide-in-left {
  animation: slideInLeft 0.5s ease forwards;
}

.jp-app-about-carousel__slide.slide-in-right {
  animation: slideInRight 0.5s ease forwards;
}

.jp-app-about-carousel__slide.slide-out-left {
  animation: slideOutLeft 0.5s ease forwards;
}

.jp-app-about-carousel__slide.slide-out-right {
  animation: slideOutRight 0.5s ease forwards;
}

.jp-app-about-carousel__content {
  text-align: center;
  position: relative;
}

.jp-app-about-carousel__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.jp-app-about-carousel__info {
  text-align: left;
  margin-top: 0px;
}

.jp-app-about-carousel__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.jp-app-about-carousel__description {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

.jp-app-about-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jp-app-about-carousel__btn.prev {
  left: 30px;
}

.jp-app-about-carousel__btn.next {
  right: 30px;
}

.jp-app-about-carousel__btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.jp-app-about-carousel__btn.hidden {
  display: none;
}

.jp-app-about-carousel__indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.jp-app-about-carousel__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jp-app-about-carousel__indicator.active {
  background: rgba(0, 0, 0, 0.8);
}

/* 原创设计模块样式 */
.jp-app-about-original-design {
  background: #f5f5f5;
  padding: 60px 30px;
}

.jp-app-about-original-design__content {
  max-width: 1200px;
  margin: 0 auto;
}

.jp-app-about-original-design__header {
  margin-bottom: 40px;
}

.jp-app-about-original-design__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.jp-app-about-original-design__header-left {
  text-align: left;
}

.jp-app-about-original-design__header-right {
  text-align: right;
}

.jp-app-about-original-design__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.jp-app-about-original-design__tag {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.jp-app-about-original-design__header-bottom {
  margin-top: 10px;
}

.jp-app-about-original-design__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
  font-weight: 500;
}

.jp-app-about-original-design__description {
  margin-bottom: 40px;
}

.jp-app-about-original-design__description p {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
  text-align: left;
}

.jp-app-about-original-design__image {
  margin-bottom: 40px;
}

.jp-app-about-original-design__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 奖项走马灯样式 */
.jp-app-about-awards-marquee {
  overflow: hidden;
  position: relative;
}

.jp-app-about-awards-marquee__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: marquee 20s linear infinite;
}

.jp-app-about-awards-marquee__item {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.jp-app-about-awards-marquee__icon {
  padding: 10px;
  border: 1px solid #333;
  margin-bottom: 15px;
}

.jp-app-about-awards-marquee__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.jp-app-about-awards-marquee__name {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  text-align: center;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.jp-app-about-awards-marquee:hover .jp-app-about-awards-marquee__list {
  animation-play-state: paused;
}

/* 公司实力模块样式 */
.jp-app-about-company-strength {
  background: #f5f5f5;
  padding: 60px 30px;
}

.jp-app-about-company-strength__content {
  max-width: 1200px;
  margin: 0 auto;
}

.jp-app-about-company-strength__header {
  margin-bottom: 40px;
}

.jp-app-about-company-strength__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.jp-app-about-company-strength__header-left {
  text-align: left;
}

.jp-app-about-company-strength__header-right {
  text-align: right;
  font-size: 12px;
}

.jp-app-about-company-strength__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.jp-app-about-company-strength__tag {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.jp-app-about-company-strength__header-bottom {
  margin-top: 10px;
}

.jp-app-about-company-strength__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
  font-weight: 500;
}

.jp-app-about-company-strength__description {
  margin-bottom: 40px;
}

.jp-app-about-company-strength__description p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: left;
}

/* 轮播图样式 */
.jp-app-about-strength-carousel {
  margin-top: 40px;
}

.jp-app-about-strength-carousel__container {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 15px;
}

.jp-app-about-strength-carousel__content {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.jp-app-about-strength-carousel__header-container {
  width: 250px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
}

.jp-app-about-strength-carousel__header-left {
  display: flex;
  flex-direction: column;
}

.jp-app-about-strength-carousel__header-right {
  display: flex;
  flex-direction: column;
}

.jp-app-about-strength-carousel__tag-left {
  font-size: 10px;
  color: #333;
  font-weight: 500;
}

.jp-app-about-strength-carousel__tag-right {
  font-size: 10px;
  color: #333;
  font-weight: 500;
}

.jp-app-about-strength-carousel__subtag-left {
  margin-top: 5px;
  font-size: 7px;
  color: #999;
}

.jp-app-about-strength-carousel__subtag-right {
  margin-top: 5px;
  font-size: 7px;
  color: #999;
}

.jp-app-about-strength-carousel__slides {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
}

.jp-app-about-strength-carousel__slides:active {
  cursor: grabbing;
}

.jp-app-about-strength-carousel__slide {
  flex: 0 0 100%;
  position: relative;
  text-align: center;
}

.jp-app-about-strength-carousel__image {
  width: calc(100%);
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.jp-app-about-strength-carousel__caption {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.jp-app-about-strength-carousel__indicators {
  display: flex;
  justify-content: center;
  margin: 15px 0px;
}

.jp-app-about-strength-carousel__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jp-app-about-strength-carousel__indicator.active {
  background: rgba(0, 0, 0, 0.8);
}

/* 自有生产模块样式 */
.jp-app-about-independent-production {
  padding: 0;
}

.jp-app-about-independent-production__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.jp-app-about-independent-production__bg {
  position: relative;
  text-align: center;
}

.jp-app-about-independent-production__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.jp-app-about-independent-production__overlay {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  box-sizing: border-box;
}

.jp-app-about-independent-production__header {
  margin-bottom: 40px;
  text-align: left;
}

.jp-app-about-independent-production__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.jp-app-about-independent-production__header-left h2 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0;
}

.jp-app-about-independent-production__header-right .jp-app-about-independent-production__tag {
  font-size: 8px;
  color: #000;
  font-weight: 400;
}

.jp-app-about-independent-production__header-bottom {
  margin-top: 10px;
}

.jp-app-about-independent-production__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.jp-app-about-independent-production__description {
  margin-bottom: 60px;
  text-align: left;
}

.jp-app-about-independent-production__description p {
  font-size: 12px;
  line-height: 1.8;
  color: #666;
}

.jp-app-about-independent-production__image-text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 自营销售模块样式 */
.jp-app-about-direct-sales {
  padding: 0;
}

.jp-app-about-direct-sales__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.jp-app-about-direct-sales__bg {
  position: relative;
  text-align: center;
}

.jp-app-about-direct-sales__video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.jp-app-about-direct-sales__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
}

.jp-app-about-direct-sales__header {
  margin-bottom: 40px;
  text-align: left;
}

.jp-app-about-direct-sales__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.jp-app-about-direct-sales__header-left h2 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.jp-app-about-direct-sales__header-right .jp-app-about-direct-sales__tag {
  font-size: 8px;
  color: #fff;
  font-weight: 400;
}

.jp-app-about-direct-sales__header-bottom {
  margin-top: 10px;
}

.jp-app-about-direct-sales__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.jp-app-about-direct-sales__description {
  margin-bottom: 40px;
  text-align: left;
}

.jp-app-about-direct-sales__description p {
  font-size: 14px;
  line-height: 1.8;
  color: #999;
  max-width: 800px;
  text-align: justify;
  text-align-last: left;
}

/* 元素级动画效果 */
/* 主标题动画 */
.jp-app-about-company__title,
.jp-app-about-development__title,
.jp-app-about-honors__title,
.jp-app-about-brand-philosophy__section-title,
.jp-app-about-original-design__title,
.jp-app-about-company-strength__title,
.jp-app-about-independent-production__title,
.jp-app-about-direct-sales__title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-company__title,
.jp-app-about-company.visible .jp-app-about-company__title,
.jp-app-about-development.visible .jp-app-about-development__title,
.jp-app-about-honors.visible .jp-app-about-honors__title,
.jp-app-about-brand-philosophy.visible .jp-app-about-brand-philosophy__section-title,
.jp-app-about-original-design.visible .jp-app-about-original-design__title,
.jp-app-about-company-strength.visible .jp-app-about-company-strength__title,
.jp-app-about-independent-production.visible .jp-app-about-independent-production__title,
.jp-app-about-direct-sales.visible .jp-app-about-direct-sales__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 副标题动画 */
.jp-app-about-company__header,
.jp-app-about-development__subtitle,
.jp-app-about-honors__subtitle,
.jp-app-about-original-design__subtitle,
.jp-app-about-company-strength__subtitle,
.jp-app-about-independent-production__subtitle,
.jp-app-about-direct-sales__subtitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-company__header,
.jp-app-about-company.visible .jp-app-about-company__header,
.jp-app-about-development.visible .jp-app-about-development__subtitle,
.jp-app-about-honors.visible .jp-app-about-honors__subtitle,
.jp-app-about-original-design.visible .jp-app-about-original-design__subtitle,
.jp-app-about-company-strength.visible .jp-app-about-company-strength__subtitle,
.jp-app-about-independent-production.visible .jp-app-about-independent-production__subtitle,
.jp-app-about-direct-sales.visible .jp-app-about-direct-sales__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 图片元素动画 */
.jp-app-about-original-design__img,
.jp-app-about-carousel__image,
.jp-app-about-strength-carousel__image,
.jp-app-about-brand-philosophy__image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-original-design.visible .jp-app-about-original-design__img,
.jp-app-about-brand-philosophy.visible .jp-app-about-carousel__image,
.jp-app-about-brand-philosophy.visible .jp-app-about-brand-philosophy__image,
.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 导航条项目动画 */
.jp-app-about-nav__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

/* 导航条项目动画 */
.jp-app-about-nav.visible .jp-app-about-nav__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* 导航条项目动画延迟 */
.jp-app-about-nav.visible .jp-app-about-nav__item:nth-child(1) { transition-delay: 0.1s; }
.jp-app-about-nav.visible .jp-app-about-nav__item:nth-child(2) { transition-delay: 0.2s; }
.jp-app-about-nav.visible .jp-app-about-nav__item:nth-child(3) { transition-delay: 0.3s; }
.jp-app-about-nav.visible .jp-app-about-nav__item:nth-child(4) { transition-delay: 0.4s; }
.jp-app-about-nav.visible .jp-app-about-nav__item:nth-child(5) { transition-delay: 0.5s; }

/* 描述文本动画 */
.jp-app-about-company__description,
.jp-app-about-development__description,
.jp-app-about-honors__description,
.jp-app-about-original-design__description,
.jp-app-about-company-strength__description,
.jp-app-about-independent-production__description,
.jp-app-about-direct-sales__description {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-company__description,
.jp-app-about-company.visible .jp-app-about-company__description,
.jp-app-about-development.visible .jp-app-about-development__description,
.jp-app-about-honors.visible .jp-app-about-honors__description,
.jp-app-about-original-design.visible .jp-app-about-original-design__description,
.jp-app-about-company-strength.visible .jp-app-about-company-strength__description,
.jp-app-about-independent-production.visible .jp-app-about-independent-production__description,
.jp-app-about-direct-sales.visible .jp-app-about-direct-sales__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 卡片动画 */
.jp-app-about-strength-carousel__slide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__slide {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 公司实力轮播图动画 */
.jp-app-about-strength-carousel__caption,
.jp-app-about-strength-carousel__indicator {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__caption,
.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__indicator {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 公司实力轮播图标签动画 */
.jp-app-about-strength-carousel__tag-left,
.jp-app-about-strength-carousel__tag-right,
.jp-app-about-strength-carousel__subtag-left,
.jp-app-about-strength-carousel__subtag-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__tag-left,
.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__tag-right,
.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__subtag-left,
.jp-app-about-company-strength.visible .jp-app-about-strength-carousel__subtag-right {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 自有生产和自营销售动画 */
.jp-app-about-independent-production__img,
.jp-app-about-direct-sales__video {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-independent-production.visible .jp-app-about-independent-production__img,
.jp-app-about-direct-sales.visible .jp-app-about-direct-sales__video {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}
.jp-app-home-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: white;
}
.jp-app-home-banner__top {
  position: absolute;
  top: max(80px, calc(80px + var(--safe-top)));
  left: 40px;
  right: 40px;
}
.jp-app-home-banner__subtitle-top {
  font-size: 0.975rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-1), 
              transform var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-1);
}
.jp-app-home-banner.animate .jp-app-home-banner__subtitle-top {
  opacity: 1;
  transform: translateY(0);
}
.jp-app-home-banner__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-2), 
              transform var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-2);
}
.jp-app-home-banner.animate .jp-app-home-banner__title {
  opacity: 1;
  transform: translateY(0);
}
.jp-app-home-banner__links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-3), 
              transform var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-3);
}
.jp-app-home-banner.animate .jp-app-home-banner__links {
  opacity: 1;
  transform: translateY(0);
}
.jp-app-home-banner__link {
  display: inline-block;
  background-color: rgba(0,0,0,0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--text-color);
  padding: 12px 28px;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-align: center;
  cursor: pointer;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.jp-app-home-banner__link:hover, .jp-app-home-banner__link:focus-visible {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255,255,255,0.8);
  outline: none;
}
.jp-app-home-banner__bottom {
  position: absolute;
  bottom: max(50px, calc(50px + var(--safe-bottom)));
  left: 40px;
  right: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-bottom), 
              transform var(--animation-duration-2) cubic-bezier(0.2, 0.9, 0.4, 1.1) var(--animation-delay-bottom);
}
.jp-app-home-banner.animate .jp-app-home-banner__bottom {
  opacity: 1;
  transform: translateY(0);
}
.jp-app-home-banner__subtitle {
  font-size: 0.98rem;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}
.jp-app-home-banner__product {
  font-size: 1.95rem;
  font-weight: bold;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.jp-app-home-banner__bottom-text {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.jp-app-home-banner__bottom-text span {
  font-size: 0.975rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: relative;
  padding-left: 20px;
}
.jp-app-home-banner__bottom-text span::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b6b;
  font-weight: bold;
}
.jp-app-home-banner__slogan {
  font-size: 0.825rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0.85;
  line-height: 1.4;
}


/* ========== 产品页面样式 ========== */
/* 技术参数样式 */
.jp-app-product-technical-specs {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-technical-specs__header {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: left;
}

.jp-app-product-technical-specs__title {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.jp-app-product-technical-specs__subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
}

.jp-app-product-technical-specs__table {
  max-width: var(--container-width);
  margin: 30px auto 0px;
  border-top: 1px solid #e0e0e0;
}

.jp-app-product-technical-specs__row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #a3a3a3;
}

.jp-app-product-technical-specs__label {
  width: 150px;
  font-size: 10px;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
}

.jp-app-product-technical-specs__value {
  flex: 1;
  font-size: 10px;
  color: #333333;
  line-height: 1.4;
}

.jp-app-product-technical-specs__divider {
  width: 1px;
  height: 20px;
  background-color: #e0e0e0;
  margin: 0 20px;
  display: none;
}

  /* 规格参数样式 */
.jp-app-product-specs {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-specs__header {
  max-width: var(--container-width);
  margin: 0 auto var(--spacing-sm);
  padding: 0;
  text-align: left;
}

.jp-app-product-specs__title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.jp-app-product-specs__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.jp-app-product-specs__tip {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 0.55;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
}

.jp-app-product-specs__tip-text {
  -webkit-text-size-adjust: none !important;
  text-size-adjust: none !important;
  font-size: 10px !important;
  color: #666666;
  background-color: #f8f8f8;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}


  /* 容器样式 */
  .jp-app-product-specs-container {
    width: 100%;
    height: auto;
  }
  
  /* 左右布局样式 */
  .jp-app-product-specs-layout {
    display: flex;
    width: 100%;
  }
  
  .jp-app-product-specs-layout__left {
    width: 140px;
    flex-shrink: 0;
    border-right: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
  }
  
  .jp-app-product-specs-layout__left .jp-app-product-specs__item {
    background-color: #f9f9f9;
  }
  
  .jp-app-product-specs__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .jp-app-product-specs-layout__right {
    flex-grow: 1;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .jp-app-product-specs__content {
    width: auto;
    display: inline-block;
    white-space: nowrap;
  }
  
  .jp-app-product-specs__item {
    white-space: nowrap !important;
    height: 30px;
    line-height: 30px;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    padding: 0 10px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .jp-app-product-specs__value {
    white-space: nowrap !important;
    display: inline-block !important;
    margin-right: 5px;
    min-width: 100px;
    flex-shrink: 0;
  }
  
  /* iOS设备字体大小控制 */
  body {
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
    -webkit-font-smoothing: antialiased;
  }
  
  .jp-app-product-specs__name,
  .jp-app-product-specs__value {
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
    font-size: 10px !important;
  }

/* 品牌信息样式 */
.jp-app-product-brand-info {
  margin: 40px 0;
  padding: 0 20px;
}

.jp-app-product-brand-info__content {
  display: flex;
  align-items: center;
}

.jp-app-product-brand-info__left {
  flex: 1;
}

.jp-app-product-brand-info__slogan {
  font-size: 10px;
  color: #a3a3a3;
  line-height: 1.1;
  margin-bottom: 4px;
}

.jp-app-product-brand-info__divider {
  width: 20px;
  height: 3px;
  background-color: #000000;
  margin-top: 10px;
}

.jp-app-product-brand-info__right {
  flex: 2;
}

.jp-app-product-brand-info__logo {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  text-align: right;
}

/* 产品优势样式 */
.jp-app-product-advantages {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-advantages__header {
  max-width: var(--container-width);
  margin: 0 auto var(--spacing-sm);
  padding: 0;
  text-align: left;
}

.jp-app-product-advantages__title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.jp-app-product-advantages__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.jp-app-product-advantages__content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
}

.jp-app-product-advantage__item {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.jp-app-product-advantage__title {
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.2;
}

.jp-app-product-advantage__description {
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  margin: 0;
}

/* 注意事项样式 */
.jp-app-product-notes {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-notes__header {
  max-width: var(--container-width);
  margin: 0 auto var(--spacing-sm);
  padding: 0;
  text-align: left;
}

.jp-app-product-notes__title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.jp-app-product-notes__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.jp-app-product-notes__content {
  max-width: var(--container-width);
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
}

.jp-app-product-note__description {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  margin: 0;
}

/* 详情描述样式 */
.jp-app-product-details-description {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-details-description__header {
  max-width: var(--container-width);
  margin: 0 auto var(--spacing-sm);
  padding: 0;
  text-align: left;
}

.jp-app-product-details-description__title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.jp-app-product-details-description__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.jp-app-product-details-description__content {
  max-width: var(--container-width);
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
}

.jp-app-product-details-description__text {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  margin: 0;
}

.jp-app-product-details-description__text img {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

/* ========== 关于我们页面样式 ==========
/* 关于我们海报图样式 */
.jp-app-about-poster {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.jp-app-about-poster__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.jp-app-about-poster__content {
  position: relative;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.jp-app-about-poster__top-text {
  position: absolute;
  font-size: 28px;
  line-height: 1.5;
  bottom: 200px;
  left: 30px;
  color: white;
  text-align: center;
  width: 50%;
  box-sizing: border-box;
}

.jp-app-about-poster__bottom-text {
  font-size: 52px;
  font-weight: 600;
  position: absolute;
  bottom: -20px;
  left: -60px;
  color: white;
  text-align: center;
  width: 90%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 公司介绍部分样式 */
.jp-app-about-company {
  background: #fff;
  padding-bottom: 50px;
}

.jp-app-about-company__header {
  font-size: 48px;
  font-weight: 600;
  text-align: right;
  margin-bottom: 40px;
  margin-right: 20px;
}

.jp-app-about-company__content {
  padding-left: 60px;
  padding-right: 40px;
}

.jp-app-about-company__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-company__title,
.jp-app-about-company.visible .jp-app-about-company__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.jp-app-about-company__description {
  font-size: 12px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
  text-align-last: left;
  color: #999;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-company__description,
.jp-app-about-company.visible .jp-app-about-company__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 公司视频展示样式 */
.jp-app-about-video {
  background: #fff;
  padding: 0px 15px 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-video.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.jp-app-about-video__container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 比例 */
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.jp-app-about-video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 元素级动画效果 */
/* 副标题动画 */
.jp-app-about-company__header {
  font-size: 48px;
  font-weight: 600;
  text-align: right;
  margin-bottom: 40px;
  margin-right: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-company__header,
.jp-app-about-company.visible .jp-app-about-company__header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 海报图文本动画 */
.jp-app-about-poster__top-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-poster__top-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.jp-app-about-poster__bottom-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-poster.visible .jp-app-about-poster__bottom-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 关于我们导航条样式 */
.jp-app-about-nav {
  background: #ffffff;
  height: 60px;
  position: relative;
  transition: all 0.3s ease, opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.jp-app-about-nav.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.jp-app-about-nav.fixed {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 安全区域适配 */
@supports (padding: max(0px)) {
  .jp-app-about-nav.fixed {
    top: calc(80px + env(safe-area-inset-top));
  }
}

.jp-app-about-nav__container {
  margin: 0;
  padding: 0 10px;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  background: #f0f0f0;
  position: relative;
  white-space: nowrap;
}

.jp-app-about-nav__container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.jp-app-about-nav__arrow {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  color: #3a3a3a;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  background-color: #f0f0f0;
  padding: 8px 12px;
}

.jp-app-about-nav__item {
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-size: 14px;
  font-family: 'HarmonyOS_Sans_SC_Medium', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin: 0 15px;
  padding: 0 5px;
  white-space: nowrap;
}

.jp-app-about-nav__item.active {
  color: #333333;
  font-weight: 700;
}

.jp-app-about-nav__item.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333333;
}

/* 发展历程模块样式 */
.jp-app-about-development {
  background: #000;
  color: #fff;
  padding: 80px 30px;
}

.jp-app-about-development__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.jp-app-about-development__header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.jp-app-about-development__header-content {
  flex: 1;
}

.jp-app-about-development__tag {
  text-align: right;
  margin-top: 10px;
}

.jp-app-about-development__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.jp-app-about-development__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #999;
  margin: 0;
  text-transform: uppercase;
}

.jp-app-about-development__tag {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  text-align: right;
}

.jp-app-about-development__description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: justify;
  text-align-last: left;
  color: #999;
}

.jp-app-about-development__year-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.jp-app-about-development__year-number {
  font-size: 140px;
  font-weight: 650;
}

.jp-app-about-development__year-content {
  max-width: 800px;
}

.jp-app-about-development__year-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.jp-app-about-development__year-description {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin: 0;
  text-align: justify;
  text-align-last: left;
}

/* 年份列表样式 */
.jp-app-about-development__year-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.jp-app-about-development__year-list .jp-app-about-development__year-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}


/* ========== 新闻页面样式 ========== */

/* 新闻内容容器 */
.jp-app-news-container {
  padding: 0 30px 40px;
}

/* 新闻详情标题 */
.jp-app-news-detail__header {
  margin: 60px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.jp-app-news-detail__title-main {
  font-size: 60px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1;
  width: 100%;
}

.jp-app-news-detail__title-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.jp-app-news-detail__title-sub {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
  flex: 1;
  width: calc(100% - 150px);
}

.jp-app-news-detail__date {
  font-size: 10px;
  color: #000000;
  font-weight: 600;
  text-align: right;
  width: 80px;
  position: relative;
  padding-top: 10px;
}

.jp-app-news-detail__date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 20px;
  height: 3px;
  background-color: #000000;
}

/* 新闻内容样式 */
.jp-app-news-detail__content {
  max-width: 1200px;
  margin: 0 auto 60px;
  font-size: 12px;
  color: #a3a3a3;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;      /* 文本两端对齐 */
  text-align-last: left;    /* 最后一行文本靠左对齐 */
}


.jp-app-news-detail__content img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 30px 0;
}

/* 列表标题样式 */
.jp-app-news-list__title {
  padding: 40px 0px;
  text-align: left;
  max-width: 1200px;
  margin: 20px auto;
}

.jp-app-news-list__title-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  width: 100%;
  padding-right: 0;
}

.jp-app-news-list__title-en {
  font-size: 42px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.2;
  flex: 1;
}

.jp-app-news-list__title-cn {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  min-width: 120px;
  text-align: right;
}

.jp-app-news-list__title-divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-top: 10px;
}

.jp-app-list-title__divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-top: 10px;
}

/* 新闻列表样式 */
.jp-app-news-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 1200px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overflow-x: hidden;
}

.jp-app-news-list__item {
  margin-bottom: 40px;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  overflow-x: hidden;
}

.jp-app-news-list__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  cursor: pointer;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
}

.jp-app-news-list__item-link:focus,
.jp-app-news-list__item-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.jp-app-news-list__item-link:hover {
  transform: translateY(-3px);
}

.jp-app-news-list__item-content {
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
  -webkit-touch-callout: none;
}

.jp-app-news-list__item-image {
  width: 100%;
  margin-bottom: 20px;
  touch-action: pan-y;
  -webkit-touch-callout: none;
}

.jp-app-news-list__item-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.jp-app-news-list__item-date {
  font-size: 12px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}

.jp-app-news-list__item-title-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.jp-app-news-list__item-title {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jp-app-news-list__item-date-right {
  font-size: 12px;
  color: #000;
  font-weight: 600;
  width: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.jp-app-news-list__item-description {
  width: 100%;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-top: 10px;
}

.jp-app-news-list__item-arrow {
  font-size: 16px;
  color: #000;
}


/* 分页样式 */
.jp-app-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
  padding: 0 30px;
  background: #ffffff;
  max-width: 1140px;
  height: 60px;
}

.jp-app-pagination__text {
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  font-weight: normal;
}

.jp-app-pagination__page {
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  margin: 0 10px;
  font-weight: normal;
}

.jp-app-pagination__btn {
  width: 30px;
  height: 24px;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.jp-app-pagination__btn--next {
  background-color: #000000;
  color: #ffffff;
}

.jp-app-pagination__btn--prev {
  background-color: #ffffff;
  color: #000000;
}

.jp-app-pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========== 联系我们页面样式 ========== */
/* 联系我们容器 */
.jp-app-contact-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
  background-color: #ffffff;
}

/* 联系我们标题 */
.jp-app-contact-us__title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
  text-align: left;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
}

.jp-app-contact-us__subtitle {
  font-size: 16px;
  color: #000000;
  margin-bottom: 40px;
  text-align: left;
  font-weight: normal;
}

/* 联系项样式 */
.jp-app-contact-us__item {
  margin-bottom: 15px;
}

.jp-app-contact-us__item-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jp-app-contact-us__item-header:hover {
  opacity: 0.8;
}

.jp-app-contact-us__item-title {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  margin-right: 12px;
  white-space: nowrap;
}

.jp-app-contact-us__item-separator {
  font-size: 14px;
  color: #000000;
  margin: 0 12px;
  flex-shrink: 0;
}

.jp-app-contact-us__item-english {
  font-size: 8px;
  color: #999999;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.jp-app-contact-us__item-icon {
  font-size: 14px;
  color: #000000;
  margin-left: 20px;
  flex-shrink: 0;
}

/* 联系项内容 */
.jp-app-contact-us__item-content {
  margin-left: 0;
  margin-bottom: 10px;
}

.jp-app-contact-us__item-phone {
  font-size: 16px;
  color: #666666;
  margin-bottom: 6px;
  font-weight: normal;
}

/* 地址部分样式 */
.jp-app-contact-us__address-section {
  margin-bottom: 12px;
}

.jp-app-contact-us__address-title {
  font-size: 10px;
  color: #666666;
  margin-bottom: 4px;
  font-weight: normal;
}

.jp-app-contact-us__address-text {
  font-size: 14px;
  color: #666666;
  margin-bottom: 4px;
  font-weight: normal;
  line-height: 1.4;
}

/* 联系项文本样式 */
.jp-app-contact-us__item-text {
  font-size: 14px;
  color: #666666;
  margin-bottom: 6px;
  font-weight: normal;
}

/* 分隔线 */
.jp-app-contact-us__divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

/* ========== 服务支持页面样式 ========== */
/* 服务支持标题区域 */
.jp-app-poster-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}

.jp-app-poster-section__background {
  position: relative;
  width: 100%;
  z-index: 1;
}

.jp-app-poster-section__background img {
  width: 100%;
  height: auto;
  display: block;
}

.jp-app-poster-section__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

.jp-app-poster-section__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 3px;
  word-wrap: break-word;
  white-space: normal;
}

.jp-app-poster-section__subtitle {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 2px;
}

/* ========== 入场动画样式 ========== */
/* 基础动画类 */
.jp-app-fade-in {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 针对居中内容的动画 */
.jp-app-poster-section__content.jp-app-fade-in {
  transform: translate(-50%, -50%) translateY(30px);
}

.jp-app-poster-section__content.jp-app-fade-in.visible {
  transform: translate(-50%, -50%) translateY(0);
}

/* 延迟动画 */
.jp-app-fade-in--delay-1 {
  transition-delay: 0.1s;
}

.jp-app-fade-in--delay-2 {
  transition-delay: 0.2s;
}

.jp-app-fade-in--delay-3 {
  transition-delay: 0.3s;
}

.jp-app-fade-in--delay-4 {
  transition-delay: 0.4s;
}

.jp-app-fade-in--delay-5 {
  transition-delay: 0.5s;
}

/* 缩放动画 */
.jp-app-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* 从左侧滑入 */
.jp-app-slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 从右侧滑入 */
.jp-app-slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========== 公司简介部分样式 ========== */
.jp-app-page-profile {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 30px;
}

.jp-app-page-profile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.jp-app-page-profile__title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin: 0;
}

.jp-app-page-profile__subtitle {
  font-size: 14px;
  color: #999999;
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
}

.jp-app-page-profile__divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}

.jp-app-page-profile__content {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}

.jp-app-page-profile__content p {
  margin-bottom: 20px;
}

.jp-app-page-profile__content p:last-child {
  margin-bottom: 0;
}

/* ========== 单页联系部分样式 ========== */
.jp-app-page-contact {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 30px;
}

.jp-app-page-contact__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.jp-app-page-contact__title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin: 0;
}

.jp-app-page-contact__subtitle {
  font-size: 14px;
  color: #999999;
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
}

.jp-app-page-contact__divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}

.jp-app-page-contact__content {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

.jp-app-page-contact__address {
  margin-bottom: 30px;
}

.jp-app-page-contact__address:last-child {
  margin-bottom: 0;
}

.jp-app-page-contact__address-title {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 10px;
}

.jp-app-page-contact__address-text {
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.6;
}

.jp-app-page-contact__address-text:last-child {
  margin-bottom: 0;
}

/* 年份列表项样式 */
.jp-app-about-development__year-list .jp-app-about-development__year-item.active {
  display: block;
}

.jp-app-about-development__year-list .jp-app-about-development__year-item:not(.active) {
  display: none;
}

.jp-app-about-development__year-list .jp-app-about-development__year-item.leave-left {
  animation-name: slideOutLeft;
}

.jp-app-about-development__year-list .jp-app-about-development__year-item.leave-right {
  animation-name: slideOutRight;
}

.jp-app-about-development__year-list .jp-app-about-development__year-item.enter-left {
  animation-name: slideInLeft;
}

.jp-app-about-development__year-list .jp-app-about-development__year-item.enter-right {
  animation-name: slideInRight;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* 年份控制按钮样式 */
.jp-app-about-development__year-controls {
  position: absolute;
  top: 380px;
  left: 0;
  right: 0;
  z-index: 10;
}

.jp-app-about-development__year-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jp-app-about-development__year-control-btn.prev {
  left: -20px;
}

.jp-app-about-development__year-control-btn.next {
  right: -20px;
}

/* 年份导航条样式 */
.jp-app-about-development__timeline-nav {
  position: relative;
  margin-top: 80px;
  padding: 0;
}

.jp-app-about-development__timeline-arrow {
  position: absolute;
  top: 15px;
  transform: translateY(0);
  background: #000;
  color: #999;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 10px;
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.jp-app-about-development__timeline-arrow.left {
  left: -30px;
}

.jp-app-about-development__timeline-arrow.right {
  right: -30px;
}

.jp-app-about-development__timeline-arrow:hover {
  color: #fff;
  background: #333;
}

.jp-app-about-development__timeline-arrow:disabled,
.jp-app-about-development__year-control-btn:disabled {
  cursor: default;
}

.jp-app-about-development__timeline-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  height: 65px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  white-space: nowrap;
}

.jp-app-about-development__timeline-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.jp-app-about-development__timeline-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1;
}

.jp-app-about-development__timeline-content {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.jp-app-about-development__timeline-line {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  z-index: 1;
}

.jp-app-about-development__timeline-years {
  height: 65px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jp-app-about-development__timeline-years li {
  display: inline-block;
  margin-right: 0;
  vertical-align: top;
}

.jp-app-about-development__timeline-year-wrapper {
  width: auto;
  height: 65px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  text-align: left;
}

.jp-app-about-development__year-top {
  height: 4px;
  width: 100%;
  position: relative;
}

.jp-app-about-development__year-top-upper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.jp-app-about-development__year-top-middle {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.jp-app-about-development__year-top-lower {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.jp-app-about-development__year-bottom {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  transition: all 0.3s ease;
  padding: 5px 15px;
  white-space: nowrap;
}

.jp-app-about-development__timeline-year-wrapper.active .jp-app-about-development__year-top-upper,
.jp-app-about-development__timeline-year-wrapper.active .jp-app-about-development__year-top-middle,
.jp-app-about-development__timeline-year-wrapper.active .jp-app-about-development__year-top-lower {
  background-color: #ffcc00;
  z-index: 2;
}

.jp-app-about-development__timeline-year-wrapper.active .jp-app-about-development__year-bottom {
  background: #ffcc00;
  color: #000;
  border-radius: 15px;
}

.jp-app-about-development__timeline-year-wrapper:hover .jp-app-about-development__year-bottom {
  color: #000;
}

/* 企业荣誉模块样式 */
.jp-app-about-honors {
  background: #fff;
  color: #000;
  padding: 80px 30px;
}

.jp-app-about-honors__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.jp-app-about-honors__header {
  margin-bottom: 40px;
}

.jp-app-about-honors__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.jp-app-about-honors__header-left {
  width: calc(100% - 100px);
  float: left;
}

.jp-app-about-honors__header-right {
  width: 90px;
  float: right;
  text-align: right;
}

.jp-app-about-honors__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.jp-app-about-honors__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #999;
  margin: 0;
  text-transform: uppercase;
}

.jp-app-about-honors__tag {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  text-align: right;
  width: 90px;
  word-wrap: break-word;
  margin: 0;
}

.jp-app-about-honors__description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: left;
  color: #666;
}

.jp-app-about-honors__year-section {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.jp-app-about-honors__year-number {
  font-size: 120px;
  font-weight: 650;
}

.jp-app-about-honors__year-section .jp-app-about-honors__year-content {
  margin-left: 10px;
}

.jp-app-about-honors__year-section .jp-app-about-honors__year-title {
  margin: 0;
  padding: 0;
}

.jp-app-about-honors__year-content {
  max-width: 800px;
}

.jp-app-about-honors__year-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px 0;
  padding-bottom: 10px;
}

.jp-app-about-honors__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jp-app-about-honors__item {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* 荣誉年份列表样式 */
.jp-app-about-honors__year-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.jp-app-about-honors__year-list .jp-app-about-honors__year-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.jp-app-about-honors__year-list .jp-app-about-honors__year-item.active {
  display: block;
}

.jp-app-about-honors__year-list .jp-app-about-honors__year-item:not(.active) {
  display: none;
}

.jp-app-about-honors__year-list .jp-app-about-honors__year-item.leave-left {
  animation-name: slideOutLeft;
}

.jp-app-about-honors__year-list .jp-app-about-honors__year-item.leave-right {
  animation-name: slideOutRight;
}

.jp-app-about-honors__year-list .jp-app-about-honors__year-item.enter-left {
  animation-name: slideInLeft;
}

.jp-app-about-honors__year-list .jp-app-about-honors__year-item.enter-right {
  animation-name: slideInRight;
}

/* 荣誉年份控制按钮样式 */
.jp-app-about-honors__controls {
  position: absolute;
  top: 380px;
  left: 0;
  right: 0;
  z-index: 10;
}

.jp-app-about-honors__control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jp-app-about-honors__control-btn.prev {
  left: -20px;
}

.jp-app-about-honors__control-btn.next {
  right: -20px;
}

/* 荣誉年份导航条样式 */
.jp-app-about-honors__timeline-nav {
  position: relative;
  margin-top: 80px;
  padding: 0;
}

.jp-app-about-honors__timeline-arrow {
  position: absolute;
  top: 15px;
  transform: translateY(0);
  background: #fff;
  color: #999;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 10px;
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.jp-app-about-honors__timeline-arrow.left {
  left: -30px;
}

.jp-app-about-honors__timeline-arrow.right {
  right: -30px;
}

.jp-app-about-honors__timeline-arrow:hover {
  color: #000;
  background: #f5f5f5;
}

.jp-app-about-honors__timeline-arrow:disabled {
  cursor: default;
}

.jp-app-about-honors__control-btn:disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

.jp-app-about-honors__timeline-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  height: 65px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  white-space: nowrap;
}

.jp-app-about-honors__timeline-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.jp-app-about-honors__timeline-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1;
}

.jp-app-about-honors__timeline-content {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.jp-app-about-honors__timeline-line {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  z-index: 1;
}

.jp-app-about-honors__timeline-years {
  height: 65px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jp-app-about-honors__timeline-years li {
  display: inline-block;
  margin-right: 0;
  vertical-align: top;
}

.jp-app-about-honors__timeline-year-wrapper {
  width: auto;
  height: 65px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  text-align: left;
}

.jp-app-about-honors__year-top {
  height: 4px;
  width: 100%;
  position: relative;
}

.jp-app-about-honors__year-top-upper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.jp-app-about-honors__year-top-middle {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.jp-app-about-honors__year-top-lower {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.jp-app-about-honors__year-bottom {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  transition: all 0.3s ease;
  padding: 5px 15px;
  white-space: nowrap;
}

.jp-app-about-honors__timeline-year-wrapper.active .jp-app-about-honors__year-top-upper,
.jp-app-about-honors__timeline-year-wrapper.active .jp-app-about-honors__year-top-middle,
.jp-app-about-honors__timeline-year-wrapper.active .jp-app-about-honors__year-top-lower {
  background-color: #ffcc00;
  z-index: 2;
}

.jp-app-about-honors__timeline-year-wrapper.active .jp-app-about-honors__year-bottom {
  background: #ffcc00;
  color: #000;
  border-radius: 15px;
}

.jp-app-about-honors__timeline-year-wrapper:hover .jp-app-about-honors__year-bottom {
  color: #000;
}

/* 企业荣誉模块的左右布局样式 */
.jp-app-about-honors__layout {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.jp-app-about-honors__layout-item {
  flex: 1;
  font-size: 10px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
}

/* 发展历程标签动画 */
.jp-app-about-development__tag {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-development.visible .jp-app-about-development__tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 年份内容动画 */
.jp-app-about-development__year-number,
.jp-app-about-honors__year-number {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-development.visible .jp-app-about-development__year-number,
.jp-app-about-honors.visible .jp-app-about-honors__year-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

/* 年份导航条动画 */
.jp-app-about-development__timeline-nav,
.jp-app-about-development__timeline-year-wrapper,
.jp-app-about-development__year-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-development.visible .jp-app-about-development__timeline-nav,
.jp-app-about-development.visible .jp-app-about-development__timeline-year-wrapper,
.jp-app-about-development.visible .jp-app-about-development__year-bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 企业荣誉年份导航条动画 */
.jp-app-about-honors__timeline-nav,
.jp-app-about-honors__timeline-year-wrapper,
.jp-app-about-honors__year-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-honors.visible .jp-app-about-honors__timeline-nav,
.jp-app-about-honors.visible .jp-app-about-honors__timeline-year-wrapper,
.jp-app-about-honors.visible .jp-app-about-honors__year-bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 按钮元素动画 */
.jp-app-about-development__year-control-btn,
.jp-app-about-honors__control-btn,
.jp-app-about-development__timeline-arrow,
.jp-app-about-honors__timeline-arrow {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-development.visible .jp-app-about-development__year-control-btn,
.jp-app-about-development.visible .jp-app-about-development__timeline-arrow,
.jp-app-about-honors.visible .jp-app-about-honors__control-btn,
.jp-app-about-honors.visible .jp-app-about-honors__timeline-arrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 布局元素动画 */
.jp-app-about-honors__layout-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.jp-app-about-honors.visible .jp-app-about-honors__layout-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}





/* ========== 辅助类 ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html {
  scroll-behavior: smooth;
}

/* 产品页面样式 */
/* 产品信息样式 */
.jp-app-product-info {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 40px 40px 0px;
  text-align: left;
  background-color: #ffffff;
}

.jp-app-product-info__model {
  font-size: 36px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.jp-app-product-info__name {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  line-height: 1.4;
}

.jp-app-product-info__tags {
  display: flex;
  gap: 10px;
  justify-content: left;
  margin-top: 24px;
}

.jp-app-product-info__tag {
  background-color: #000000;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: bold;
}

.jp-app-product-info__tag--dc {
  background-color: blue;
}
.jp-app-product-info__tag--ac {
  background-color: red;
}
.jp-app-product-info__tag--dcac {
  background: linear-gradient(to right, blue 50%, red 50%);
}
.jp-app-product-info__tag--dcdc {
  background: linear-gradient(to right, blue 50%, blue 50%);
}
.jp-app-product-info__tag--acac {
  background: linear-gradient(to right, red 50%, red 50%);
}

.jp-app-product-info__description {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: #a3a3a3;
  text-align: justify;
  text-align-last: left;
}

.jp-app-product-info__price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
}

.jp-app-product-info__price-label {
  font-size: 12px;
  color: #a3a3a3;
  margin-right: 10px;
}

.jp-app-product-info__price-value {
  font-size: 24px;
  font-weight: bold;
  color: #ff0000;
  margin-right: 5px;
}

.jp-app-product-info__price-unit {
  font-size: 12px;
  color: #a3a3a3;
}

/* 产品轮播图样式 */
.jp-app-product-carousel {
  margin: 0;
  padding: 0 30px;
}

.jp-app-product-carousel__container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.jp-app-product-carousel__wrapper {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
}

.jp-app-product-carousel__wrapper:active {
  cursor: grabbing;
}

.jp-app-product-carousel__item {
  flex: 0 0 100%;
}

.jp-app-product-carousel__image {
  width: 100%;
  height: auto;
  display: block;
}

.jp-app-product-carousel__indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.jp-app-product-carousel__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.jp-app-product-carousel__indicator--active {
  background-color: #ffffff;
}



/* 品牌信息样式 - 第二种结构 */
.jp-app-product-brand-content {
  display: flex;
  align-items: center;
}

.jp-app-product-brand-left {
  flex: 1;
}

.jp-app-product-brand-slogan {
  font-size: 10px;
  color: #a3a3a3;
  line-height: 1.1;
  margin-bottom: 4px;
}

.jp-app-product-brand-divider {
  width: 20px;
  height: 3px;
  background-color: #000000;
  margin-top: 10px;
}

.jp-app-product-brand-right {
  flex: 1;
}

.jp-app-product-brand-logo {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  text-align: right;
}


/* 动画类 */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.animate-fade-in-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.animate-fade-in-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.animate-fade-in-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.animate-zoom-in.animated {
  opacity: 1;
  transform: scale(1);
}

/* 动画延迟类 */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
}

.delay-700 {
  transition-delay: 0.7s;
}

.delay-800 {
  transition-delay: 0.8s;
}

.delay-900 {
  transition-delay: 0.9s;
}

.delay-1000 {
  transition-delay: 1s;
}

/* 动画关键帧 */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


}

/* 技术参数动画 */
.animate-tech-parameter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.animate-tech-parameter.animated {
  opacity: 1;
  transform: translateY(0);
}

/* 产品细节模块样式 */
.jp-app-product-details {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-details__header {
  max-width: calc(var(--container-width) - 60px);
  margin: 0 auto;
}

.jp-app-product-details__title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.2;
}

.jp-app-product-details__subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.jp-app-product-details__divider {
  width: 100%;
  height: 1px;
  background-color: #dddddd;
}

.jp-app-product-details__content {
  max-width: calc(var(--container-width) - 60px);
  margin: 40px auto 0;
  box-sizing: border-box;
}

.jp-app-product-details__item {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.jp-app-product-details__image {
  margin-bottom: 20px;
  width: 100%;
}

.jp-app-product-details__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.jp-app-product-details__item-content {
  margin-top: 10px;
  padding: 0 10px;
}

.jp-app-product-details__item-title {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 5px;
}

.jp-app-product-details__item-description {
  font-size: 10px;
  color: #666666;
  line-height: 1.4;
  text-align: justify;
  text-align-last: left;
  word-wrap: break-word;
  white-space: normal;
}

/* 左右布局样式 */
div.jp-app-product-details__item.jp-app-product-details__item--left-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  gap: 20px !important; 
  margin-bottom: 30px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
}

div.jp-app-product-details__item.jp-app-product-details__item--left-right div.jp-app-product-details__image {
  flex: 0 0 45% !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  max-width: 45% !important;
}

div.jp-app-product-details__item.jp-app-product-details__item--left-right div.jp-app-product-details__image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

div.jp-app-product-details__item.jp-app-product-details__item--left-right div.jp-app-product-details__item-content {
  flex: 1 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  max-width: 55% !important;
}

/* 细节小贴士样式 */
.jp-app-product-details__tip {
  max-width: calc(var(--container-width) - 60px);
  margin: 40px auto 0;
  padding: 10px 15px;
  border: 1px solid #666666;
  border-radius: 24px;
}

.jp-app-product-details__tip-text {
  font-size: 8px;
  color: #666666;
  text-align: center;
  margin: 0;
}

/* 产品slogan贴士样式 */
.jp-app-product-slogan-tip {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-slogan-content {
  max-width: calc(var(--container-width) - 60px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.jp-app-product-slogan-left {
  font-size: 10px;
  font-weight: 500;
  color: #000000;
}

.jp-app-product-slogan-right {
  font-size: 10px;
  font-weight: bold;
  color: #000000;
}

.jp-app-product-slogan-divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
}

/* 产品优势样式 */
.jp-app-product-advantages {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-advantages__header {
  max-width: var(--container-width);
  margin: 0 auto var(--spacing-sm);
  padding: 0;
  text-align: left;
}

.jp-app-product-advantages__title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.jp-app-product-advantages__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.jp-app-product-advantages__content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
}

.jp-app-product-advantage__item {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.jp-app-product-advantage__title {
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.2;
}

.jp-app-product-advantage__description {
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  margin: 0;
}

/* 注意事项样式 */
.jp-app-product-notes {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-notes__header {
  max-width: var(--container-width);
  margin: 0 auto var(--spacing-sm);
  padding: 0;
  text-align: left;
}

.jp-app-product-notes__title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.jp-app-product-notes__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.jp-app-product-notes__content {
  max-width: var(--container-width);
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
}

.jp-app-product-note__description {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  margin: 0;
}

/* 详情描述样式 */
.jp-app-product-details-description {
  margin: 40px 0;
  padding: 0 30px;
}

.jp-app-product-details-description__header {
  max-width: var(--container-width);
  margin: 0 auto var(--spacing-sm);
  padding: 0;
  text-align: left;
}

.jp-app-product-details-description__title {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.jp-app-product-details-description__subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.jp-app-product-details-description__content {
  max-width: var(--container-width);
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
}

.jp-app-product-details-description__text {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  margin: 0;
}

.jp-app-product-details-description__text img {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

/* 列表标题样式 */
.jp-app-list-title {
  padding: 40px 0px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.jp-app-list-title__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  width: 100%;
  padding-right: 20px;
}

.jp-app-list-title__english {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.2;
  flex: 1;
}

.jp-app-list-title__chinese {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  min-width: 120px;
  text-align: right;
}


/* 产品列表 */
.jp-app-product-list {
  background-color: #ffffff;
  padding: 30px 0;
  list-style: none;
}

.jp-app-product-list__item {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(60px) scale(0.9) rotateX(10deg);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
  perspective: 1000px;
}

.jp-app-product-list__item.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}

.jp-app-product-list__header {
  margin-bottom: 15px;
}

.jp-app-product-list__item .jp-app-product-list__model {
  font-size: 38px;
  margin-bottom: 8px;
  opacity: 1;
  transform: none;
}

.jp-app-product-list__item .jp-app-product-list__content {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.jp-app-product-list__item .jp-app-product-list__image {
  flex: 3;
  width: 60%;
  opacity: 0;
}

.jp-app-product-list__item.visible .jp-app-product-list__image {
  animation: slideInLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.jp-app-product-list__item .jp-app-product-list__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.jp-app-product-list__item .jp-app-product-list__info {
  flex: 2;
  width: 40%;
  padding: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jp-app-product-list__item.visible .jp-app-product-list__info {
  animation: slideInRight 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.jp-app-product-list__item .jp-app-product-list__name {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0;
}

.jp-app-product-list__item.visible .jp-app-product-list__name {
  animation: bounceIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards;
}

.jp-app-product-list__item .jp-app-product-list__features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.jp-app-product-list__item .jp-app-product-list__features li {
  font-size: 12px;
  color: #333333;
  margin-bottom: 3px;
  position: relative;
  padding-left: 10px;
  opacity: 0;
  transform: translateX(20px);
}

.jp-app-product-list__item .jp-app-product-list__features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.jp-app-product-list__item.visible .jp-app-product-list__features li:nth-child(1) {
  animation: slideInRight 0.8s ease-out 0.8s forwards;
}

.jp-app-product-list__item.visible .jp-app-product-list__features li:nth-child(2) {
  animation: slideInRight 0.8s ease-out 1s forwards;
}

.jp-app-product-list__item.visible .jp-app-product-list__features li:nth-child(3) {
  animation: slideInRight 0.8s ease-out 1.2s forwards;
}

.jp-app-product-list__item.visible .jp-app-product-list__features li:nth-child(4) {
  animation: slideInRight 0.8s ease-out 1.4s forwards;
}

.jp-app-product-list__item .jp-app-product-list__link {
  display: inline-block;
  color: #000000;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.jp-app-product-list__item.visible .jp-app-product-list__link {
  animation: fadeInScale 1s ease-out 1.6s forwards;
}

.jp-app-product-list__item .jp-app-product-list__link:hover {
  color: #666666;
}

/* 产品内容容器 */
.jp-app-product-container {
  padding: 0 30px;
}




