@media screen and (max-width: 768px) {

  /* ==================== Hero Section 移动端 ==================== */
  .hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* 一屏高度减去导航栏高度 */
    overflow: hidden;
    /*background-size: auto !important;*/
  }

  .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5.333vw;
    box-sizing: border-box;
  }

  .hero-slide.active {
    opacity: 1;
    width: 100%;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(14, 6, 42, 0) 0%,
      rgba(2, 2, 13, 0.59) 49.02%,
      #02020d 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .hero-title {
    font-family: "PingFang SC", sans-serif;
    font-size: 6.4vw;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 2.133vw;
    font-size: 3.5vw;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    text-decoration: none;
    transition: gap 0.3s ease;
    padding: 3.2vw 6.4vw;
    border-radius: 6.667vw;
  }

  .hero-cta:hover {
    gap: 3.2vw;
  }

  .hero-cta img {
    width: 3vw;
    height: 3vw;
    object-fit: contain;
  }

  .hero-indicator {
    position: absolute;
    bottom: 5.333vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.133vw;
    background: rgba(230, 230, 230, 0.2);
    padding: 1.067vw 2.667vw;
    border-radius: 10.667vw;
    z-index: 10;
  }

  .indicator-dot,
  .indicator-bar {
    width: 2.133vw;
    height: 2.133vw;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
  }

  .indicator-dot.active,
  .indicator-bar.active {
    width: 6.4vw;
    height: 2.133vw;
    border-radius: 1.067vw;
    opacity: 1;
  }

  /* ==================== Tech Section 移动端 ==================== */
  .tech-section {
    position: relative;
    padding: 10.667vw 5.333vw;
    background: #000000;
    overflow: hidden;
  }

  .tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .tech-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
  }

  .tech-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
  }

  .tech-logo {
    text-align: center;
  }

  .tech-logo img {
    width: 32vw;
    height: 11.733vw;
  }

  .tech-main {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
    text-align: center;
  }

  .tech-info {
    display: flex;
    flex-direction: column;
    gap: 4vw;
    align-items: center;
  }

  .tech-info h2 {
    font-family: "PingFang SC", sans-serif;
    font-size: 5.333vw;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
    margin: 0;
  }

  .tech-info p {
    font-family: "PingFang SC", sans-serif;
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    max-width: 100%;
    margin: 0;
  }

  .tech-cta,
  .about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.667vw 5.333vw;
    border: 0.267vw solid transparent;
    border-radius: 13.333vw;
    background: linear-gradient(#000, #000) padding-box,
      linear-gradient(90deg, #d038ff 0%, #462dff 100%) border-box;
    color: #ffffff;
    font-size: 3.733vw;
    font-weight: 500;
    line-height: 1.8;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5.333vw;
    width: fit-content;
    cursor: pointer;
    outline: none;
  }

  .tech-cta:hover,
  .about-cta:hover {
    transform: translateY(-0.267vw);
    box-shadow: 0 0.667vw 2.667vw rgba(208, 56, 255, 0.3);
    background: linear-gradient(90deg, #d038ff 0%, #462dff 100%);
  }

  .tech-stats {
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
    width: 100%;
  }

  .stat-row {
    display: flex;
    flex-direction: row;
    gap: 5.333vw;
    justify-content: center;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    gap: 1.333vw;
    align-items: center;
    flex: 1;
    max-width: 40vw;
  }

  .stat-number {
    font-family: "Montserrat", "Inter", sans-serif;
    font-size: 8.533vw;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
  }

  .stat-number.gradient-text {
    background: linear-gradient(90deg, #d038ff 0%, #462dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
  }

  .plus-sign {
    position: absolute;
    bottom: 0;
    right: -3.733vw;
    font-size: 0.6em;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    vertical-align: super;
  }

  /* ==================== 进度条样式 移动端 ==================== */
  .progress-container {
    margin-top: 4vw;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .progress-bar {
    width: 60vw;
    height: 0.533vw;
    background-color: #000000;
    border-radius: 0.267vw;
    position: relative;
    overflow: hidden;
  }

  .progress-fill {
    width: 14.133vw;
    height: 0.533vw;
    background: linear-gradient(90deg, #D038FF 0.09%, #462DFF 99.93%);
    border-radius: 0.267vw;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s ease;
  }

  .stat-label {
    font-family: "PingFang SC", sans-serif;
    font-size: 2.667vw;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
  }

  .tech-visual {
    display: none; /* 移动端隐藏复杂的视觉元素 */
  }

  /* ==================== Product Section 移动端 ==================== */
  .product-section {
    padding: 13.333vw 5.333vw;
    background: #000;
  }

  .product-container {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
  }

  .product-image {
    position: relative;
    width: 100%;
    max-width: 92.8vw;
  }

  .product-image .img {
    width: 100%;
    height: 55.733vw;
    object-fit: cover;
    border-radius: 1.333vw;
    /* 确保视频不受视差效果影响 */
    transform: none !important;
  }

  .product-image .purple {
    position: absolute;
    left: 0;
    top: -7.733vw;
    width: 100%;
    max-width: 100vw;
    /* 确保purple元素不受视差效果影响 */
    transform: none !important;
  }

  .product-content {
    display: flex;
    flex-direction: column;
    gap: 6.667vw;
    align-items: center;
    text-align: center;
    z-index: 30;
  }

  .product-content h2 {
    font-family: "PingFang SC", sans-serif;
    font-size: 4vw;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0;
  }

  .product-content p {
    font-family: "PingFang SC", sans-serif;
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    max-width: 100%;
    margin: 0;
  }

  .product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.667vw 5.333vw;
    border: 0.267vw solid transparent;
    border-radius: 13.333vw;
    background: linear-gradient(#000, #000) padding-box,
      linear-gradient(90deg, #d038ff 0%, #462dff 100%) border-box;
    color: #ffffff;
    font-size: 3.733vw;
    font-weight: 500;
    line-height: 1.8;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5.333vw;
    width: fit-content;
    cursor: pointer;
    outline: none;
  }

  .product-cta:hover {
    transform: translateY(-0.267vw);
    box-shadow: 0 0.667vw 2.667vw rgba(208, 56, 255, 0.3);
    background: linear-gradient(90deg, #d038ff 0%, #462dff 100%);
  }

  /* ==================== Solutions Section 移动端 ==================== */
  .solutions-section {
    padding: 9.333vw 5.333vw;
    background: #ffffff;
  }

  .solutions-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8vw;
    justify-content: center;
  }

  .solution-card {
    display: flex;
    flex-direction: column;
    gap: 4.933vw;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 40vw;
    min-width: 35vw;
  }

  .solution-icon {
    width: 18vw;
    height: 18vw;
    padding: 2.267vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .solution-content {
    display: flex;
    flex-direction: column;
    gap: 1.867vw;
    align-items: center;
  }

  .solution-content h3 {
    font-family: "PingFang SC", sans-serif;
    font-size: 2.933vw;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    margin: 0;
  }

  .solution-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6vw;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .solution-content li {
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .solution-link {
    display: inline-flex;
    align-items: center;
    gap: 1.333vw;
    font-size: 2.4vw;
    font-weight: 500;
    color: #cd38ff;
    text-decoration: none;
    transition: gap 0.3s ease;
    cursor: pointer;
    outline: none;
  }

  .solution-link img {
    width: 2.467vw;
    height: 0.667vw;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .solution-link:hover {
    gap: 2vw;
  }

  /* ==================== About Section 移动端 ==================== */
  .about-section {
    padding: 16.133vw 5.333vw;
    background: #14151b;
    position: relative;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
    position: relative;
  }

  .about-container .purple {
    position: absolute;
    left: 0;
    top: 2.667vw;
    width: 100%;
    max-width: 100vw;
    /* 确保purple元素不受视差效果影响 */
    transform: none !important;
  }

  .about-image {
    width: 100%;
    height: 58.667vw;
    margin-bottom: 0;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 1.333vw;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
    text-align: center;
    z-index: 30;
  }

  .about-info {
    display: flex;
    flex-direction: column;
    gap: 4vw;
    align-items: center;
  }

  .about-info h2 {
    font-family: "PingFang SC", sans-serif;
    font-size: 3.2vw;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
  }

  .about-info p {
    font-family: "PingFang SC", sans-serif;
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    max-width: 100%;
    margin: 0;
  }

  .about-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4vw;
    width: 100%;
    justify-content: space-between;
  }

  .about-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 1.333vw;
    align-items: center;
    flex: 1;
    max-width: 25vw;
    min-width: 20vw;
  }

  .about-stats .stat-number {
    font-family: "Inter", sans-serif;
    font-size: 6.4vw;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    position: relative;
  }

  .about-stats .stat-label {
    font-family: "PingFang SC", sans-serif;
    font-size: 2.133vw;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
  }

  /* ==================== Partners Section 移动端 ==================== */
  .partners-section {
    padding: 2.133vw 5.333vw;
    background: #02020e;
  }

  .partners-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    padding: 3.867vw 0;
  }

  .partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25vw;
    height: 20vw;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(13.333vw);
    border-radius: 1.333vw;
    padding: 1.867vw;
    flex-shrink: 0;
  }

  .partner-item:nth-child(3) {
    box-shadow: 0vw 0.533vw 0.533vw rgba(0, 0, 0, 0.25);
  }

  .partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* ==================== News Section 移动端 ==================== */
  .news-section {
    padding: 13.067vw 0vw;
    background: #ffffff;
  }

  .news-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 11.733vw;
    position: relative;
  }

  .news-list-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7.333vw;
  }

  .news-header h2 {
    font-family: "PingFang SC", sans-serif;
    font-size: 4.8vw;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    margin: 0;
  }

  .news-nav {
    display: flex;
    gap: 2.667vw;
  }

  .nav-btn {
    width: 5.867vw;
    height: 5.867vw;
    flex-shrink: 0;
    border-radius: 8.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #cd38ff;
    outline: none;
  }

  .nav-btn:disabled {
    cursor: not-allowed;
    background: #f0c3ff;
  }

  .nav-btn img {
    width: 2.667vw;
    height: 2.667vw;
    object-fit: contain;
  }

  .nav-btn:hover:not(:disabled) {
    transform: scale(1.05);
  }

  .news-list {
    display: flex;
    gap: 5.333vw;
    transition: transform 0.5s ease;
    width: max-content;
  }

  .news-item {
    width: 73.6vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }

  .news-image {
    width: 100%;
    height: 45.067vw;
    overflow: hidden;
    border-radius: 1.333vw;
  }

  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-content {
    display: flex;
    flex-direction: column;
    gap: 1.333vw;
  }

  .news-content h3 {
    font-family: "PingFang SC", sans-serif;
    font-size: 2.933vw;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
    margin: 0;
  }

  .news-content p {
    font-family: "PingFang SC", sans-serif;
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.7;
    color: #000000;
    margin: 0;
  }

  .news-content time {
    font-family: "PingFang SC", sans-serif;
    font-size: 3.2vw;
    font-weight: 400;
    line-height: 1.5;
    color: #999999;
    margin: 0;
  }

  .chat-buttons {
    position: absolute;
    right: 3vw;
    bottom: 7.333vw;
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
  }

  .chat-btn {
    width: 8.533vw;
    height: 8.533vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cd38ff;
    border: none;
    border-radius: 4.267vw;
    cursor: pointer;
    box-shadow: 0vw 2.667vw 4vw rgba(23, 73, 77, 0.15);
    transition: all 0.3s ease;
    position: relative;
    outline: none;
  }

  .chat-btn:hover {
    transform: scale(1.05);
  }

  .chat-btn img {
    width: 4vw;
    height: auto;
    object-fit: contain;
  }

  .chat-btn .close-icon {
    position: absolute;
    bottom: -3.333vw;
    display: none;
  }

  /* ==================== Cooperation Section 移动端 ==================== */
  .cooperation-section {
    padding: 23.067vw 0;
    background: #000;
    overflow: hidden;
  }

  .cooperation-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12.8vw;
    padding: 0 5.333vw;
  }

  .cooperation-container h2 {
    font-family: "PingFang SC", sans-serif;
    font-size: 4.8vw;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    margin: 0;
  }

  /* Swiper 合作轮播图样式 移动端 */
  .cooperation-swiper {
    width: 100%;
    height: 352px;
  }

  .cooperation-swiper .swiper-wrapper {
    align-items: center;
  }

  .cooperation-swiper .swiper-slide {
    text-align: center;
    height: 352px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
  }

  .cooperation-swiper .swiper-slide-active,
  .cooperation-swiper .swiper-slide-duplicate-active {
    transform: scale(1.3);
  }

  .cooperation-swiper .swiper-slide-active .cooperation-card {
    width: 481px;
    height: 352px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
  }

  .cooperation-swiper .swiper-slide:not(.swiper-slide-active) .cooperation-card {
    transform: scale(0.9);
    opacity: 0.7;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .cooperation-swiper .swiper-slide-active .cooperation-card h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding: 20px 30px;
  }

  .cooperation-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: default;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 481px;
    height: 352px;
    opacity: 0.7;
    /* 禁用点击事件 */
    pointer-events: none;
  }

  .cooperation-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 10px;
  }

  .cooperation-card h3 {
    position: relative;
    z-index: 2;
    font-family: "PingFang SC", sans-serif;
    font-weight: 400;
    color: #ffffff;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  /* ==================== 移动端特殊样式 ==================== */
  .tech-cta {
    padding: 2.667vw 5.333vw;
    border: 0.267vw solid transparent;
    border-radius: 13.333vw;
    font-size: 3.733vw;
    margin-top: 5.333vw;
  }

  .tech-cta:hover {
    transform: translateY(-0.267vw);
    box-shadow: 0 0.667vw 2.667vw rgba(208, 56, 255, 0.3);
  }

  .tech-cta:focus {
    outline: none;
  }

  .gradient-text {
    background: linear-gradient(90deg, #d038ff 0%, #462dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

     .plus-sign {
     position: absolute;
     bottom: 0;
     right: -3.733vw;
     font-size: 0.6em;
     color: #ffffff !important;
     background: none !important;
     -webkit-text-fill-color: #ffffff !important;
     vertical-align: super;
   }

   /* 移动端合作方式导航按钮样式 */
   .cooperation-nav {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 4vw;
     margin-top: 4vw;
   }

   .cooperation-nav button {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     width: 12vw;
     height: 12vw;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     color: white;
   }

   .cooperation-nav button:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: rgba(255, 255, 255, 0.6);
     transform: scale(1.1);
   }

   .cooperation-nav button svg {
     width: 5vw;
     height: 5vw;
   }

   /* ==================== 移动端简单轮播图样式 ==================== */
   
   /* 隐藏桌面端轮播图 */
   .cooperation-swiper-desktop {
     display: none;
   }
   
   /* 显示移动端轮播图 */
   .mobile-cooperation-swiper {
     display: block;
     width: 100%;
     position: relative;
   }
   
   .mobile-swiper-container {
     width: 100%;
     height: 60vw;
     overflow: hidden;
     position: relative;
   }
   
   .mobile-swiper-wrapper {
     display: flex;
     width: 300%;
     height: 100%;
     transition: transform 0.5s ease-in-out;
     gap: 4vw;
     transform: translateX(0vw); /* 初始位置，让第一张图片居中 */
   }
   
   .mobile-swiper-slide {
     width: 33.333%;
     height: 100%;
     flex-shrink: 0;
     display: flex;
     justify-content: center;
     align-items: center;
   }
   
   .mobile-cooperation-card {
     width: 80vw;
     height: 100%;
     position: relative;
     border-radius: 3vw;
     overflow: hidden;
   }
   
   .mobile-cooperation-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }
   
   .mobile-cooperation-card h3 {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
     color: white;
     font-family: "PingFang SC", sans-serif;
     font-size: 4vw;
     font-weight: 500;
     padding: 4vw;
     margin: 0;
     text-align: center;
   }
   
   /* 移动端指示器样式 */
   .mobile-swiper-indicators {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2vw;
     margin-top: 4vw;
   }
   
   .mobile-indicator {
     width: 2vw;
     height: 2vw;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
   }
   
   .mobile-indicator.active {
     background: #ffffff;
     transform: scale(1.2);
   }
 }
 