/* ============ 移动端样式 ============ */

/* 通用移动端样式 */
@media screen and (max-width: 800px) {
  body {
    min-width: unset;
  }

  .jp-index-main .home-pc {
    display: none;
  }

  .jp-index-main .home-m {
    display: block;
  }

  /* 公共标题样式 */
  .TITLE-SINGLE {
    font-size: 5.5vw;
    padding: 0 4vw;
    line-height: 1.3;
  }

  /* Copy Writing 移动端基础样式 */
  .copy-writing-container {
    background: #fff;
  }

  .copy-writing-content {
    padding: 16vw 0 21.333vw 0;
  }

  .copy-writing-title {
    font-size: 6.4vw;
    margin-bottom: 10vw;
    line-height: 1.4;
    padding: 0 5.333vw;
  }

  .copy-writing-stats {
    display: flex;
    flex-direction: column;
    gap: 10.667vw;
    padding: 0 5.333vw;
  }

  .stats-card {
    position: relative;
    margin-top: 6vw;
    margin-bottom: 4vw;
    z-index: 1;
  }

  .stats-card-inner {
    border: 0.267vw solid #222222;
    border-radius: 3.2vw;
    background: #fff;
    padding: 12vw 4vw 6vw;
    position: relative;
  }

  .stats-label {
    background: #222222;
    color: #fff;
    font-size: 4.267vw;
    padding: 1.067vw 5.333vw;
    min-width: 64vw;
    text-align: center;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    min-width: 80vw;
    z-index: 3;
  }

  .stats-value {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    margin-bottom: 4vw;
  }

  .stats-prefix {
    font-size: 5.6vw;
    color: #222;
    font-weight: 600;
  }

  .stats-number {
    font-size: 10.667vw;
    color: #3377FF;
    font-weight: 500;
    margin: 0 1.067vw;
  }

  .stats-suffix {
    font-size: 5.6vw;
    color: #222;
    font-weight: 600;
  }

  .stats-desc {
    font-size: 3.2vw;
    color: #A3A3A3;
    text-align: center;
    position: absolute;
    bottom: -3.2vw;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  /* Intro 移动端样式 */
  .intro-container {
    background: #F7F7F7;
  }

  .intro {
    padding: 16vw 0;
  }

  .intro-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 8vw;
    padding: 0 5.333vw;
  }

  .intro-left {
    width: 100%;
  }

  .intro-video-container {
    position: relative;
    width: 100%;
    border-radius: 2.667vw;
    overflow: hidden;
  }

  .intro-video {
    width: 100%;
    height: auto;
    display: block;
  }

  .intro-right {
    width: 100%;
  }

  .intro-title {
    font-size: 5.333vw;
    font-weight: 600;
    color: #222;
    margin-bottom: 5.333vw;
    line-height: 1.5;
  }

  .intro-desc {
    font-size: 3.733vw;
    color: #666;
    line-height: 1.8;
  }

  /* Product 移动端样式 */
  .product {
    padding: 20vw 0;
    background: #fff;
  }

  .product-list {
    margin-top: 10vw;
  }

  .product-item {
    width: 45vw;
    margin-right: 1.333vw !important;
    background: #F7F7F7;
    border-radius: 3.2vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4vw;
  }

  .product-item-img {
    width: 100%;
    height: auto;
  }

  .product-item-title {
    font-size: 3.5vw;
    margin-top: 3vw;
    padding: 0 2vw;
    text-align: center;
  }

  .product-item-desc {
    font-size: 3.2vw;
    margin-top: 1.5vw;
    padding: 0 2vw;
    text-align: center;
  }

  .product-item-icon {
    display: block;
    width: 6vw;
    height: 6vw;
    margin-top: 2vw;
    animation: moveArrow 2s linear infinite;
  }

  @keyframes moveArrow {
    0%, 50%, 100% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(5px);
    }
    75% {
      transform: translateX(-5px);
    }
  }

  /* Scenes 移动端样式 */
  .scenes-container {
    background: #F7F7F7;
  }

  .scenes {
    padding: 16vw 0;
  }

  .scenes-header {
    text-align: center;
    margin-bottom: 10vw;
    padding: 0 5.333vw;
  }

  .scenes-title {
    font-size: 7.2vw;
    font-weight: 600;
    color: #222;
    margin-bottom: 5.333vw;
    line-height: 1.3;
  }

  .scenes-desc {
    font-size: 4.267vw;
    line-height: 1.5;
  }

  .scenes-content {
    flex-direction: column-reverse;
    gap: 8vw;
    padding: 0 5.333vw;
  }

  .scenes-left {
    flex: none;
    gap: 4vw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .scene-card {
    gap: 3.2vw;
    padding: 4.8vw 4vw;
    border-radius: 4vw;
    flex-direction: row;
    text-align: left;
    min-height: auto;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .scene-card.active {
    background: #3377FF;
  }

  .scene-card.active .scene-title {
    color: #fff;
  }

  .scene-card.active .scene-icon .icon-default {
    opacity: 0;
  }

  .scene-card.active .scene-icon .icon-hover {
    opacity: 1;
  }

  .scene-card.active .scene-link-btn {
    background: #fff;
    color: #3377FF;
  }

  .scene-icon {
    width: 8vw;
    height: 8vw;
    flex-shrink: 0;
    position: relative;
  }

  .scene-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }

  .scene-icon .icon-default {
    opacity: 1;
  }

  .scene-icon .icon-hover {
    opacity: 0;
  }

  .scene-title {
    font-size: 3.733vw;
    line-height: 1.3;
    flex: 1;
    transition: color 0.3s ease;
  }

  .scene-link-btn {
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .scene-link-btn svg {
    width: 5vw;
    height: 5vw;
  }

  .scenes-right {
    width: 100%;
    order: -1;
  }

  .scenes-main-img {
    border-radius: 4vw;
    height: auto;
    max-height: none;
  }

  /* Contact 移动端样式 */
  .contact-container {
    background: #F0F0F0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .contact {
    padding: 16vw 5.333vw;
    text-align: center;
  }

  .contact-title {
    font-size: 7.2vw;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
  }

  .contact-desc {
    font-size: 4.267vw;
    color: #222;
    margin-top: 4vw;
    margin-bottom: 8vw;
    line-height: 1.5;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 4vw;
    padding: 0;
    align-items: center;
  }

  .contact-btn {
    gap: 2vw;
    padding: 2.8vw 6vw;
    font-size: 3.5vw;
    border-radius: 100px;
    justify-content: center;
    width: auto;
    min-width: 45vw;
    max-width: 60vw;
  }

  .btn-icon {
    width: 4vw;
    height: 4vw;
    flex-shrink: 0;
  }

  /* Partnership 移动端样式 */
  .partnership-container {
    background: #fff;
  }

  .partnership {
    padding: 16vw 5.333vw;
  }

  .partnership-title {
    font-size: 7.2vw;
    margin-bottom: 10vw;
  }

  .partnership-cards {
    grid-template-columns: 1fr;
    gap: 10vw;
  }

  .partnership-card {
    border-radius: 4vw;
  }

  .partnership-card-image {
    margin-bottom: 6vw;
    border-radius: 3.5vw;
  }

  .partnership-card-title {
    font-size: 6vw;
    margin-bottom: 4vw;
  }

  .partnership-card-desc {
    font-size: 3.733vw;
    margin-bottom: 6.4vw;
    min-height: auto;
  }

  .partnership-btn {
    gap: 2vw;
    padding: 2.8vw 6vw;
    font-size: 3.5vw;
    width: auto;
    min-width: 40vw;
    max-width: 55vw;
  }

  /* Provider 移动端样式 */

  /* Partners 移动端样式 */
  .provider {
    padding: 20vw 4vw;
    background: #fff;
  }

  .provider-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10vw;
    gap: 8vw 4vw;
  }

  .provider-item-img {
    width: 100%;
  }

  .provider-item-title {
    font-size: 3.5vw;
    line-height: 1.4;
    margin-top: 3vw;
  }

  /* Partners 移动端样式 */
  .partners {
    padding: 20vw 0;
    background: #fff;
  }

  .partners-box {
    padding: 0 4vw;
  }

  .partners-list {
    margin-top: 10vw;
  }

  .partners-list-item {
    flex: 0 0 50%;
    margin-bottom: 8vw;
  }

  .partners-item-img {
    width: 35vw;
    height: auto;
    max-height: 8vw;
  }

  /* Case/News 移动端样式 */
  .case {
    padding: 20vw 0;
    background: #fff;
  }

  .case-content {
    margin-top: 10vw;
  }

  .case-list-item {
    width: 80vw !important;
    margin: 0 2vw;
  }

  .case-list-item-img {
    border-radius: 2vw;
  }

  .case-list-item-title {
    font-size: 3.5vw;
    margin-top: 4vw;
    line-height: 1.4;
  }

  /* Modal 移动端样式 */
  .modal-video-container .close-btn {
    width: 8vw;
    height: 8vw;
    top: 4vw;
    right: 4vw;
  }

  .modal-video-body {
    width: 90%;
  }
}

/* 平板横屏 (768px - 800px) */
@media screen and (min-width: 768px) and (max-width: 800px) {
  body {
    min-width: unset;
    overflow-x: hidden;
  }

  /* Banner 移动端样式 - 平板 */
  .home-banner-m {
    height: 100%;
    min-height: 100vh;
    background-color: #E8ECF7;
  }

  .home-banner-mask-m {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: url('https://www.orionstar.com/res/orics/down/ow001_20251229_79607f3beb29ee485dd645a61ef8a82f.webp') no-repeat center bottom;
    background-size: contain;
  }

  .home-banner-content-m {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 10.667vw;
    background: #ADCAFB;
  }

  .home-banner-video-container-m {
    width: 100%;
    display: block;
    margin: 18px 0;
    position: relative;
  }

  .home-banner-video-m {
    display: block;
    width: 100%;
    height: auto;
  }

  .home-banner-left-m {
    width: 100%;
    text-align: center;
    padding: 0 20px;
    margin-right: 0;
  }

  .home-banner-left-title-m {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.5;
  }

  .home-banner-left-desc-m {
    font-size: 32px;
    font-weight: 600;
    padding: 0 20px;
    line-height: 1.3;
  }

  .home-banner-left-introduction-m {
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.6;
  }

  .home-banner-left-btn-m {
    display: inline-block;
    padding: 10px 24px;
    background-color: #000;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .home-banner-left-btn-m:active {
    transform: scale(0.95);
  }

  .home-banner-left-btn-m a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }

  .home-banner-left-btn-m span {
    color: #000;
  }

  .home-banner-left-btn-m span:nth-child(2) {
    color: #3377FF;
  }

  /* Swiper 分页器 - 平板 */
  .home-banner-m .swiper-pagination {
    bottom: 20px;
    z-index: 10;
  }

  .home-banner-m .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
  }

  .home-banner-m .swiper-pagination-bullet-active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
  }

  .home-banner-right-m {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .jp-index-main {
    font-size: 14px;
  }

  /* Copy Writing 平板样式 */
  .copy-writing-content {
    padding: 60px 20px 80px;
  }

  .copy-writing-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .copy-writing-stats {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
  }

  .stats-card {
    position: relative;
    margin-top: 20px;
    margin-bottom: 15px;
    z-index: 1;
  }

  .stats-card-inner {
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 45px 15px 20px;
    position: relative;
  }

  .stats-label {
    background: #222222;
    font-size: 18px;
    padding: 4px 20px;
    min-width: 480px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    min-width: 300px;
    z-index: 3;
  }

  .stats-value {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }

  .stats-prefix {
    font-size: 24px;
  }

  .stats-number {
    font-size: 48px;
    font-weight: 500;
    margin: 0 4px;
  }

  .stats-suffix {
    font-size: 24px;
  }

  .stats-desc {
    font-size: 14px;
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  /* Intro 平板样式 */
  .intro {
    padding: 80px 0;
  }

  .intro-content {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0 20px;
  }

  .intro-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .intro-desc {
    font-size: 16px;
  }

  .intro-video-container {
    border-radius: 12px;
  }



  /* Product 平板样式 */
  .product {
    background: #fff;
  }

  .product-item {
    background: #F7F7F7;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }

  .product-item-img {
    width: 100%;
    height: auto;
  }

  .product-item-title {
    padding: 0 20px;
    margin-top: 20px;
    text-align: center;
  }

  .product-item-desc {
    padding: 0 20px;
    margin-top: 10px;
    text-align: center;
  }

  .product-item-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 15px;
    animation: moveArrow 2s linear infinite;
  }

  /* Scenes 平板样式 */
  .scenes {
    padding: 80px 0;
  }

  .scenes-header {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .scenes-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .scenes-desc {
    font-size: 20px;
  }

  .scenes-content {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 0 20px;
  }

  .scenes-left {
    flex: none;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .scene-card {
    gap: 12px;
    padding: 24px 20px;
    border-radius: 16px;
    flex-direction: row;
    text-align: left;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .scene-card.active {
    background: #3377FF;
  }

  .scene-card.active .scene-title {
    color: #fff;
  }

  .scene-card.active .scene-icon .icon-default {
    opacity: 0;
  }

  .scene-card.active .scene-icon .icon-hover {
    opacity: 1;
  }

  .scene-card.active .scene-link-btn {
    background: #fff;
    color: #3377FF;
  }

  .scene-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    position: relative;
  }

  .scene-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }

  .scene-icon .icon-default {
    opacity: 1;
  }

  .scene-icon .icon-hover {
    opacity: 0;
  }

  .scene-title {
    font-size: 16px;
    line-height: 1.3;
    flex: 1;
    transition: color 0.3s ease;
  }

  .scene-link-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .scene-link-btn svg {
    width: 24px;
    height: 24px;
  }

  .scenes-right {
    order: -1;
  }

  .scenes-main-img {
    border-radius: 16px;
    height: auto;
    max-height: none;
  }

  /* Contact 平板样式 */
  .contact {
    padding: 80px 20px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-desc {
    font-size: 20px;
    color: #222;
    margin-top: 12px;
    margin-bottom: 30px;
  }

  .contact-buttons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }

  .contact-btn {
    gap: 6px;
    padding: 10px 22px;
    font-size: 13px;
    width: auto;
    min-width: 140px;
    max-width: 220px;
  }

  .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* Partnership 平板样式 */
  .partnership {
    padding: 80px 20px;
  }

  .partnership-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .partnership-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .partnership-card {
    border-radius: 16px;
  }

  .partnership-card-image {
    margin-bottom: 24px;
    border-radius: 12px;
  }

  .partnership-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .partnership-card-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .partnership-btn {
    gap: 6px;
    padding: 10px 22px;
    font-size: 13px;
    width: auto;
    min-width: 130px;
    max-width: 200px;
  }

  /* Provider 平板样式 */
}

/* 平板竖屏及大屏手机 (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  body {
    min-width: unset;
    overflow-x: hidden;
  }

  /* Banner 移动端样式 */
  .home-banner-m {
    height: 100%;
    min-height: 100vh;
    background-color: #E8ECF7;
  }

  .home-banner-mask-m {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: url('https://www.orionstar.com/res/orics/down/ow001_20251229_79607f3beb29ee485dd645a61ef8a82f.webp') no-repeat center bottom;
    background-size: contain;
  }

  .home-banner-content-m {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 10.667vw;
    background: #ADCAFB;
  }

  .home-banner-video-container-m {
    width: 100%;
    display: block;
    margin: 4vw 0;
    position: relative;
  }

  .home-banner-video-m {
    display: block;
    width: 100%;
    height: auto;
  }

  .home-banner-left-m {
    width: 100%;
    text-align: center;
    padding: 0 5vw;
    margin-right: 0;
  }

  .home-banner-left-title-m {
    margin-bottom: 3.2vw;
    font-size: 3.5vw;
    line-height: 1.5;
  }

  .home-banner-left-desc-m {
    font-size: 5.8vw;
    font-weight: 600;
    padding: 0 3.2vw;
    line-height: 1.3;
  }

  .home-banner-left-introduction-m {
    font-size: 3vw;
    margin-top: 3.2vw;
    line-height: 1.6;
  }

  .home-banner-left-btn-m {
    display: inline-block;
    padding: 2vw 5vw;
    background-color: #000;
    border-radius: 5vw;
    font-size: 3.8vw;
    font-weight: 600;
    margin-top: 4vw;
    cursor: pointer;
  }

  .home-banner-left-btn-m:active {
    transform: scale(0.95);
  }

  .home-banner-left-btn-m a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }

  .home-banner-left-btn-m span {
    color: #000;
  }

  .home-banner-left-btn-m span:nth-child(2) {
    color: #3377FF;
  }

  /* Swiper 分页器移动端样式 */
  .home-banner-m .swiper-pagination {
    bottom: 3vw;
    z-index: 10;
  }

  .home-banner-m .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 1vw;
    transition: all 0.3s ease;
  }

  .home-banner-m .swiper-pagination-bullet-active {
    background: #fff;
    width: 6vw;
    border-radius: 1vw;
  }

  .home-banner-right-m {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .jp-index-main {
    font-size: 14px;
  }

  /* Copy Writing 平板竖屏样式 */
  .copy-writing-content {
    padding: 50px 15px 60px;
  }

  .copy-writing-title {
    font-size: 6.5vw;
    margin-bottom: 8vw;
    padding: 0 4vw;
  }

  .copy-writing-stats {
    display: flex;
    flex-direction: column;
    gap: 11vw;
    padding: 0 4vw;
  }

  .stats-card {
    position: relative;
    margin-top: 5vw;
    margin-bottom: 3.5vw;
    z-index: 1;
  }

  .stats-card-inner {
    border: 0.3vw solid #222222;
    border-radius: 3vw;
    padding: 11vw 3vw 5vw;
    position: relative;
  }

  .stats-label {
    background: #222222;
    font-size: 4vw;
    padding: 1vw 5vw;
    min-width: 64vw;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    min-width: 75vw;
    z-index: 3;
  }

  .stats-value {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.5vw;
  }

  .stats-prefix {
    font-size: 5.5vw;
  }

  .stats-number {
    font-size: 10vw;
    font-weight: 500;
    margin: 0 1vw;
  }

  .stats-suffix {
    font-size: 5.5vw;
  }

  .stats-desc {
    font-size: 3vw;
    position: absolute;
    bottom: -3vw;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  /* Intro 平板竖屏样式 */
  .intro {
    padding: 12vw 0;
  }

  .intro-content {
    flex-direction: column-reverse;
    gap: 6vw;
    padding: 0 4vw;
  }

  .intro-title {
    font-size: 5.5vw;
    margin-bottom: 4vw;
  }

  .intro-desc {
    font-size: 3.8vw;
  }

  .intro-video-container {
    border-radius: 2.5vw;
  }



  /* Product 平板竖屏样式 */
  .product {
    background: #fff;
  }

  .product-item {
    background: #F7F7F7;
    border-radius: 3.2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3.5vw;
  }

  .product-item-img {
    width: 100%;
    height: auto;
  }

  .product-item-title {
    padding: 0 3vw;
    margin-top: 3vw;
    text-align: center;
  }

  .product-item-desc {
    padding: 0 3vw;
    margin-top: 1.5vw;
    text-align: center;
  }

  .product-item-icon {
    display: block;
    width: 5vw;
    height: 5vw;
    margin-top: 2vw;
    animation: moveArrow 2s linear infinite;
  }

  /* Scenes 平板竖屏样式 */
  .scenes {
    padding: 12vw 0;
  }

  .scenes-header {
    margin-bottom: 8vw;
    padding: 0 4vw;
  }

  .scenes-title {
    font-size: 7vw;
    margin-bottom: 4vw;
  }

  .scenes-desc {
    font-size: 4.5vw;
  }

  .scenes-content {
    gap: 6vw;
    padding: 0 4vw;
  }

  .scenes-left {
    flex: none;
    gap: 3.5vw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .scene-card {
    gap: 3vw;
    padding: 4.5vw 3.5vw;
    border-radius: 4vw;
    flex-direction: row;
    text-align: left;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .scene-card.active {
    background: #3377FF;
  }

  .scene-card.active .scene-title {
    color: #fff;
  }

  .scene-card.active .scene-icon .icon-default {
    opacity: 0;
  }

  .scene-card.active .scene-icon .icon-hover {
    opacity: 1;
  }

  .scene-card.active .scene-link-btn {
    background: #fff;
    color: #3377FF;
  }

  .scene-icon {
    width: 8vw;
    height: 8vw;
    flex-shrink: 0;
    position: relative;
  }

  .scene-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }

  .scene-icon .icon-default {
    opacity: 1;
  }

  .scene-icon .icon-hover {
    opacity: 0;
  }

  .scene-title {
    font-size: 3.8vw;
    line-height: 1.3;
    flex: 1;
    transition: color 0.3s ease;
  }

  .scene-link-btn {
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .scene-link-btn svg {
    width: 5vw;
    height: 5vw;
  }

  .scenes-right {
    order: -1;
  }

  .scenes-main-img {
    border-radius: 3.5vw;
    height: auto;
    max-height: none;
  }

  /* Contact 平板竖屏样式 */
  .contact {
    padding: 12vw 4vw;
  }

  .contact-title {
    font-size: 7vw;
  }

  .contact-desc {
    font-size: 4.5vw;
    color: #222;
    margin-top: 3vw;
    margin-bottom: 7vw;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 4vw;
    align-items: center;
  }

  .contact-btn {
    gap: 2vw;
    padding: 2.8vw 6vw;
    font-size: 3.5vw;
    width: auto;
    min-width: 45vw;
    max-width: 60vw;
  }

  .btn-icon {
    width: 4vw;
    height: 4vw;
    flex-shrink: 0;
  }

  /* Partnership 平板竖屏样式 */
  .partnership {
    padding: 12vw 4vw;
  }

  .partnership-title {
    font-size: 7vw;
    margin-bottom: 8vw;
  }

  .partnership-cards {
    grid-template-columns: 1fr;
    gap: 8vw;
  }

  .partnership-card {
    border-radius: 3.5vw;
  }

  .partnership-card-image {
    margin-bottom: 5vw;
    border-radius: 3vw;
  }

  .partnership-card-title {
    font-size: 5.5vw;
    margin-bottom: 3vw;
  }

  .partnership-card-desc {
    font-size: 3.6vw;
    margin-bottom: 5.5vw;
  }

  .partnership-btn {
    gap: 2vw;
    padding: 2.8vw 6vw;
    font-size: 3.5vw;
    width: auto;
    min-width: 40vw;
    max-width: 55vw;
  }

  /* Provider 平板竖屏样式 */
}

/* 标准手机 (376px - 480px) */
@media screen and (min-width: 376px) and (max-width: 480px) {
  body {
    min-width: unset;
    overflow-x: hidden;
  }

  /* Banner 移动端样式 */
  .home-banner-m {
    height: 100%;
    min-height: 100vh;
    background-color: #E8ECF7;
  }

  .home-banner-mask-m {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: url('https://www.orionstar.com/res/orics/down/ow001_20251229_79607f3beb29ee485dd645a61ef8a82f.webp') no-repeat center bottom;
    background-size: contain;
  }

  .home-banner-content-m {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 10.667vw;
    background: #ADCAFB;
  }

  .home-banner-video-container-m {
    width: 100%;
    display: block;
    margin: 5vw 0;
    position: relative;
  }

  .home-banner-video-m {
    display: block;
    width: 100%;
    height: auto;
  }

  .home-banner-left-m {
    width: 100%;
    text-align: center;
    padding: 0 4vw;
    margin-right: 0;
  }

  .home-banner-left-title-m {
    margin-bottom: 3.2vw;
    font-size: 3.8vw;
    line-height: 1.5;
  }

  .home-banner-left-desc-m {
    font-size: 5.8vw;
    font-weight: 600;
    padding: 0 3.2vw;
    line-height: 1.3;
  }

  .home-banner-left-introduction-m {
    font-size: 3.2vw;
    margin-top: 3.2vw;
    line-height: 1.6;
  }

  .home-banner-left-btn-m {
    display: inline-block;
    padding: 2.2vw 5.5vw;
    background-color: #000;
    border-radius: 5.5vw;
    font-size: 4vw;
    font-weight: 600;
    margin-top: 4.5vw;
    cursor: pointer;
  }

  .home-banner-left-btn-m:active {
    transform: scale(0.95);
  }

  .home-banner-left-btn-m a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }

  .home-banner-left-btn-m span {
    color: #000;
  }

  .home-banner-left-btn-m span:nth-child(2) {
    color: #3377FF;
  }

  /* Swiper 分页器移动端样式 */
  .home-banner-m .swiper-pagination {
    bottom: 4vw;
    z-index: 10;
  }

  .home-banner-m .swiper-pagination-bullet {
    width: 2.2vw;
    height: 2.2vw;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 1.2vw;
    transition: all 0.3s ease;
  }

  .home-banner-m .swiper-pagination-bullet-active {
    background: #fff;
    width: 6.5vw;
    border-radius: 1.1vw;
  }

  .home-banner-right-m {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .jp-index-main {
    font-size: 14px;
  }

  /* Copy Writing 标准手机样式 */
  .copy-writing-content {
    padding: 14vw 0 18vw;
  }

  .copy-writing-title {
    font-size: 6.8vw;
    padding: 0 5.333vw;
  }

  .copy-writing-stats {
    gap: 10.667vw;
    padding: 0 5.333vw;
  }

  .stats-card {
    margin-top: 6vw;
    margin-bottom: 4vw;
    z-index: 1;
  }

  .stats-card-inner {
    border: 0.267vw solid #222222;
    border-radius: 3.2vw;
    padding: 12vw 4vw 6vw;
    position: relative;
  }

  .stats-label {
    background: #222222;
    font-size: 4.267vw;
    padding: 1.067vw 5.333vw;
    border-radius: 100px;
    min-width: 64vw;
    z-index: 3;
  }

  .stats-value {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4vw;
  }

  .stats-prefix {
    font-size: 5.6vw;
  }

  .stats-number {
    font-size: 10.667vw;
    font-weight: 500;
    margin: 0 1.067vw;
  }

  .stats-suffix {
    font-size: 5.6vw;
  }

  .stats-desc {
    font-size: 3.2vw;
    bottom: -3.2vw;
  }

  /* Intro 标准手机样式 */
  .intro {
    padding: 14vw 0;
  }

  .intro-content {
    flex-direction: column-reverse;
    gap: 7vw;
    padding: 0 5.333vw;
  }

  .intro-title {
    font-size: 5.5vw;
    margin-bottom: 5vw;
  }

  .intro-desc {
    font-size: 3.8vw;
  }

  .intro-video-container {
    border-radius: 2.8vw;
  }



  /* Product 标准手机样式 */
  .product {
    background: #fff;
  }

  .product-item {
    background: #F7F7F7;
    border-radius: 3.2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3.5vw;
  }

  .product-item-img {
    width: 100%;
    height: auto;
  }

  .product-item-title {
    padding: 0 3vw;
    margin-top: 3vw;
    text-align: center;
  }

  .product-item-desc {
    padding: 0 3vw;
    margin-top: 1.5vw;
    text-align: center;
  }

  .product-item-icon {
    display: block;
    width: 5vw;
    height: 5vw;
    margin-top: 2vw;
    animation: moveArrow 2s linear infinite;
  }

  /* Scenes 标准手机样式 */
  .scenes {
    padding: 14vw 0;
  }

  .scenes-header {
    margin-bottom: 9vw;
    padding: 0 5.333vw;
  }

  .scenes-title {
    font-size: 7.2vw;
    margin-bottom: 5vw;
  }

  .scenes-desc {
    font-size: 4.5vw;
  }

  .scenes-content {
    gap: 7vw;
    padding: 0 5.333vw;
  }

  .scenes-left {
    flex: none;
    gap: 4vw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .scene-card {
    gap: 3.5vw;
    padding: 5vw 4.2vw;
    border-radius: 4vw;
    flex-direction: row;
    text-align: left;
    min-height: auto;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .scene-card.active {
    background: #3377FF;
  }

  .scene-card.active .scene-title {
    color: #fff;
  }

  .scene-card.active .scene-icon .icon-default {
    opacity: 0;
  }

  .scene-card.active .scene-icon .icon-hover {
    opacity: 1;
  }

  .scene-card.active .scene-link-btn {
    background: #fff;
    color: #3377FF;
  }

  .scene-icon {
    width: 8vw;
    height: 8vw;
    flex-shrink: 0;
    position: relative;
  }

  .scene-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }

  .scene-icon .icon-default {
    opacity: 1;
  }

  .scene-icon .icon-hover {
    opacity: 0;
  }

  .scene-title {
    font-size: 3.8vw;
    line-height: 1.3;
    flex: 1;
    transition: color 0.3s ease;
  }

  .scene-link-btn {
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .scene-link-btn svg {
    width: 5vw;
    height: 5vw;
  }

  .scenes-right {
    order: -1;
  }

  .scenes-main-img {
    border-radius: 4vw;
    height: auto;
    max-height: none;
  }

  /* Contact 标准手机样式 */
  .contact {
    padding: 14vw 5.333vw;
  }

  .contact-title {
    font-size: 7.2vw;
  }

  .contact-desc {
    font-size: 4.5vw;
    color: #222;
    margin-top: 3.5vw;
    margin-bottom: 7.5vw;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 4vw;
    align-items: center;
  }

  .contact-btn {
    gap: 2vw;
    padding: 2.8vw 6vw;
    font-size: 3.5vw;
    width: auto;
    min-width: 45vw;
    max-width: 60vw;
  }

  .btn-icon {
    width: 4vw;
    height: 4vw;
    flex-shrink: 0;
  }

  /* Partnership 标准手机样式 */
  .partnership {
    padding: 14vw 5.333vw;
  }

  .partnership-title {
    font-size: 7.2vw;
    margin-bottom: 9vw;
  }

  .partnership-cards {
    grid-template-columns: 1fr;
    gap: 9vw;
  }

  .partnership-card {
    border-radius: 4vw;
  }

  .partnership-card-image {
    margin-bottom: 5.5vw;
    border-radius: 3.5vw;
  }

  .partnership-card-title {
    font-size: 5.8vw;
    margin-bottom: 3.5vw;
  }

  .partnership-card-desc {
    font-size: 3.8vw;
    margin-bottom: 6vw;
  }

  .partnership-btn {
    gap: 2vw;
    padding: 2.8vw 6vw;
    font-size: 3.5vw;
    width: auto;
    min-width: 40vw;
    max-width: 55vw;
  }

  /* Provider 标准手机样式 */
}

/* 小屏手机 (<=375px) */
@media screen and (max-width: 375px) {
  body {
    min-width: unset;
    overflow-x: hidden;
  }

  /* Banner 移动端样式 */
  .home-banner-m {
    height: 100%;
    min-height: 100vh;
    background-color: #E8ECF7;
  }

  .home-banner-mask-m {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: url('https://www.orionstar.com/res/orics/down/ow001_20251229_79607f3beb29ee485dd645a61ef8a82f.webp') no-repeat center bottom;
    background-size: contain;
  }

  .home-banner-content-m {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 10.667vw;
    background: #ADCAFB;
  }

  .home-banner-video-container-m {
    width: 100%;
    display: block;
    margin: 6vw 0;
    position: relative;
  }

  .home-banner-video-m {
    display: block;
    width: 100%;
    height: auto;
  }

  .home-banner-left-m {
    width: 100%;
    text-align: center;
    padding: 0 5vw;
    margin-right: 0;
  }

  .home-banner-left-title-m {
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 1.5;
  }

  .home-banner-left-desc-m {
    font-size: 5.8vw;
    font-weight: 600;
    padding: 0 4vw;
    line-height: 1.3;
  }

  .home-banner-left-introduction-m {
    font-size: 3.5vw;
    margin-top: 4vw;
    line-height: 1.6;
  }

  .home-banner-left-btn-m {
    display: inline-block;
    padding: 2.5vw 6vw;
    background-color: #000;
    border-radius: 6vw;
    font-size: 4.2vw;
    font-weight: 600;
    margin-top: 5vw;
    cursor: pointer;
  }

  .home-banner-left-btn-m:active {
    transform: scale(0.95);
  }

  .home-banner-left-btn-m a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
  }

  .home-banner-left-btn-m span {
    color: #000;
  }

  .home-banner-left-btn-m span:nth-child(2) {
    color: #3377FF;
  }

  /* Swiper 分页器移动端样式 */
  .home-banner-m .swiper-pagination {
    bottom: 5vw;
    z-index: 10;
  }

  .home-banner-m .swiper-pagination-bullet {
    width: 2.5vw;
    height: 2.5vw;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 1.5vw;
    transition: all 0.3s ease;
  }

  .home-banner-m .swiper-pagination-bullet-active {
    background: #fff;
    width: 7vw;
    border-radius: 1.25vw;
  }

  .home-banner-right-m {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .jp-index-main {
    font-size: 13px;
  }

  /* Intro 小屏手机样式 */
  .intro {
    padding: 16vw 0;
  }

  .intro-content {
    flex-direction: column-reverse;
    gap: 8vw;
    padding: 0 6vw;
  }

  .intro-title {
    font-size: 6vw;
    margin-bottom: 5.5vw;
  }

  .intro-desc {
    font-size: 4vw;
  }

  .intro-video-container {
    border-radius: 3vw;
  }



  /* Copy Writing 小屏手机样式 */
  .copy-writing-content {
    padding: 16vw 0 20vw;
  }

  .copy-writing-title {
    font-size: 7vw;
    margin-bottom: 12vw;
    padding: 0 6vw;
  }

  .copy-writing-stats {
    gap: 12vw;
    padding: 0 6vw;
  }

  .stats-card {
    margin-top: 6.5vw;
    margin-bottom: 4.5vw;
    z-index: 1;
  }

  .stats-card-inner {
    border: 0.3vw solid #222222;
    border-radius: 3.6vw;
    padding: 13vw 4.5vw 6.5vw;
    position: relative;
  }

  .stats-label {
    background: #222222;
    font-size: 4.5vw;
    padding: 1.2vw 6vw;
    border-radius: 100px;
    min-width: 64vw;
    z-index: 3;
  }

  .stats-value {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4.5vw;
  }

  .stats-prefix {
    font-size: 6vw;
  }

  .stats-number {
    font-size: 11.5vw;
    font-weight: 500;
    margin: 0 1.2vw;
  }

  .stats-suffix {
    font-size: 6vw;
  }

  .stats-desc {
    font-size: 3.5vw;
    bottom: -3.5vw;
  }

  /* Product 小屏手机样式 */
  .product {
    background: #fff;
  }

  .product-item {
    background: #F7F7F7;
    border-radius: 3.2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3.5vw;
  }

  .product-item-img {
    width: 100%;
    height: auto;
  }

  .product-item-title {
    padding: 0 3vw;
    margin-top: 3vw;
    text-align: center;
  }

  .product-item-desc {
    padding: 0 3vw;
    margin-top: 1.5vw;
    text-align: center;
  }

  .product-item-icon {
    display: block;
    width: 5vw;
    height: 5vw;
    margin-top: 2vw;
    animation: moveArrow 2s linear infinite;
  }

  /* Scenes 小屏手机样式 */
  .scenes {
    padding: 16vw 0;
  }

  .scenes-header {
    margin-bottom: 10vw;
    padding: 0 6vw;
  }

  .scenes-title {
    font-size: 7.5vw;
    margin-bottom: 5.5vw;
  }

  .scenes-desc {
    font-size: 4.8vw;
  }

  .scenes-content {
    gap: 8vw;
    padding: 0 6vw;
  }

  .scenes-left {
    flex: none;
    gap: 4.5vw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .scene-card {
    gap: 3.8vw;
    padding: 5.5vw 4.8vw;
    border-radius: 4vw;
    flex-direction: row;
    text-align: left;
    min-height: auto;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .scene-card.active {
    background: #3377FF;
  }

  .scene-card.active .scene-title {
    color: #fff;
  }

  .scene-card.active .scene-icon .icon-default {
    opacity: 0;
  }

  .scene-card.active .scene-icon .icon-hover {
    opacity: 1;
  }

  .scene-card.active .scene-link-btn {
    background: #fff;
    color: #3377FF;
  }

  .scene-icon {
    width: 8vw;
    height: 8vw;
    flex-shrink: 0;
    position: relative;
  }

  .scene-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }

  .scene-icon .icon-default {
    opacity: 1;
  }

  .scene-icon .icon-hover {
    opacity: 0;
  }

  .scene-title {
    font-size: 4vw;
    line-height: 1.3;
    flex: 1;
    transition: color 0.3s ease;
  }

  .scene-link-btn {
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .scene-link-btn svg {
    width: 5vw;
    height: 5vw;
  }

  .scenes-right {
    order: -1;
  }

  .scenes-main-img {
    border-radius: 4.5vw;
    height: auto;
    max-height: none;
  }

  /* Contact 小屏手机样式 */
  .contact {
    padding: 16vw 6vw;
  }

  .contact-title {
    font-size: 7.5vw;
  }

  .contact-desc {
    font-size: 4.8vw;
    color: #222;
    margin-top: 4vw;
    margin-bottom: 8vw;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 4.5vw;
    align-items: center;
  }

  .contact-btn {
    gap: 2vw;
    padding: 3vw 6.5vw;
    font-size: 3.8vw;
    width: auto;
    min-width: 45vw;
    max-width: 60vw;
  }

  .btn-icon {
    width: 4.2vw;
    height: 4.2vw;
    flex-shrink: 0;
  }

  /* Partnership 小屏手机样式 */
  .partnership {
    padding: 16vw 6vw;
  }

  .partnership-title {
    font-size: 7.5vw;
    margin-bottom: 10vw;
  }

  .partnership-cards {
    grid-template-columns: 1fr;
    gap: 10vw;
  }

  .partnership-card {
    border-radius: 4.5vw;
  }

  .partnership-card-image {
    margin-bottom: 6vw;
    border-radius: 4vw;
  }

  .partnership-card-title {
    font-size: 6.2vw;
    margin-bottom: 4vw;
  }

  .partnership-card-desc {
    font-size: 4vw;
    margin-bottom: 6.5vw;
  }

  .partnership-btn {
    gap: 2vw;
    padding: 3vw 6.5vw;
    font-size: 3.8vw;
    width: auto;
    min-width: 42vw;
    max-width: 58vw;
  }

  /* Provider 小屏手机样式 */
}
