.header-nav {
    background: transparent;
    height: 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    font-family: 'PingFang SC', sans-serif;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-img {
    width: 34px;
    height: 24px;
}

.logo-text {
    font-family: 'DysonCHS-Medium', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    line-height: 34px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: rgb(98, 114, 253);
    transform: translateY(-2px);
}

.dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.dropdown-icon {
    width: 12px;
    height: 7px;
}

.auth-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-icon {
    width: 24px;
    height: 24px;
}

.auth-link {
    font-size: 16px;
    font-weight: 500;
    color: rgb(98, 114, 253);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.auth-link:hover {
    color: rgb(66, 82, 221);
    transform: translateY(-2px);
}

.auth-divider {
    color: rgb(98, 114, 253);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .nav-links {
        gap: 20px;
        margin: 10px 0;
    }
    
    .logo-section {
        margin-bottom: 10px;
    }
}


/* Banner Styles */
.banner {
    position: relative;
    min-height: 600px;
    background-image: url("/static/images/SketchPngb7e703acfabdfc472a7e284c159ce7b5607d933523dc861f50fe8f5ae2b55ce2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/images/SketchPng6b7165b89ee8d10729a37df1acdfd5221b8f5ceb1b8950a54c61ebe599dc7cc9.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.search-container {
    margin-bottom: 3rem;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.search-icon {
    width: 18px;
    height: 21px;
    margin: 0 1rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 16px;
    color: #0E1438;
    padding: 0.5rem;
}

.search-button {
    background-color: #6272FD;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-button:hover {
    background-color: #4b5ded;
    transform: scale(1.05);
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.text-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.text-content h1 {
    font-family: DysonCHS-Medium, sans-serif;
    font-size: 48px;
    color: #0E1438;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-content p {
    font-family: DysonCHS-Book, sans-serif;
    font-size: 24px;
    color: #0E1438;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #6272FD;
    color: white;
}

.btn-primary:hover {
    background-color: #4b5ded;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: rgba(98, 114, 253, 0.2);
    color: #1E283A;
}

.btn-secondary:hover {
    background-color: rgba(98, 114, 253, 0.3);
    transform: scale(1.05);
}

.banner-image {
    max-width: 356px;
    height: auto;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        min-height: 500px;
    }

    .text-content h1 {
        font-size: 36px;
    }

    .text-content p {
        font-size: 20px;
    }

    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        text-align: center;
    }

    .button-group {
        justify-content: center;
    }

    .banner-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .search-box {
        flex-direction: column;
        padding: 1rem;
    }

    .search-button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.section-title {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: rgb(14, 20, 56);
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1340px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.feature-content {
    margin-bottom: 16px;
}

.feature-title {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgb(14, 20, 56);
    margin-bottom: 12px;
}

.feature-description {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 16px;
    color: rgb(102, 102, 102);
    line-height: 22px;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(98, 114, 253);
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: rgb(66, 82, 251);
}

.link-icon {
    width: 10px;
    height: 10px;
}

.counter-section {
    background-image: url("/static/images/547973271f73441188493408b660268e_mergeImage.png");
    height: 415px;
    width: 100%;
    max-width: 1920px;
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .counter-content {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .counter-content.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .title {
    display: block;
    font-family: PingFangSC-Semibold, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: rgb(14, 20, 56);
    line-height: 45px;
    margin-bottom: 20px;
  }
  
  .count {
    display: block;
    font-family: DysonCHS-Heavy, sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgb(14, 20, 56);
    line-height: 104px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
  }
  
  .stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 98px;
  }
  
  .stat {
    font-family: PingFangSC-Semibold, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
  }
  
  .stat:nth-child(1),
  .stat:nth-child(3) {
    color: rgb(98, 114, 253);
  }
  
  .stat:nth-child(2) {
    color: rgb(14, 20, 56);
  }


#enterprise-services {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    width: 200px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-container {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-top, .icon-bottom, .icon-overlay, .icon-label, .icon-small, .icon-label-bottom, .icon-overlay-bottom, .icon-inner {
    position: absolute;
    object-fit: contain;
}

.icon-top {
    width: 19px;
    height: 24px;
    top: 10px;
    left: 30px;
}

.icon-bottom {
    width: 19px;
    height: 24px;
    bottom: 10px;
    left: 10px;
}

.icon-overlay {
    width: 28px;
    height: 66px;
    top: -10px;
    left: -10px;
}

.icon-label {
    width: 28px;
    height: 35px;
    bottom: -10px;
    left: 0;
}

.icon-small {
    width: 6px;
    height: 6px;
    top: 10px;
    right: 10px;
}

.icon-label-bottom {
    width: 38px;
    height: 32px;
    bottom: 0;
    right: 0;
}

.icon-overlay-bottom {
    width: 17px;
    height: 17px;
    bottom: 10px;
    right: 10px;
}

.icon-inner {
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-card p {
    font-size: 18px;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .service-card {
        width: 180px;
    }

    h2 {
        font-size: 28px;
    }
}

.big-shot-comment {
    background-color: #F9F9F9;
    padding: 60px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.quote-marks {
    display: flex;
    justify-content: space-between;
    width: 800px;
    position: absolute;
    top: 40px;
}

.quote {
    font-family: Arial, sans-serif;
    font-size: 80px;
    color: #6272FD;
    font-weight: bold;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin: 0 auto;
}

.carousel {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.testimonial {
    flex: 0 0 33.33%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-content {
    background-color: #FFFFFF;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.testimonial-content p {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    font-weight: 600;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 20px;
    color: #6272FD;
    font-weight: 600;
}

.title {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 16px;
    color: #666666;
    font-weight: 600;
}

.carousel-indicators {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.indicator {
    width: 26px;
    height: 26px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.indicator.active {
    opacity: 1;
}



.testimonials {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .testimonials__decor {
    display: flex;
    justify-content: space-between;
    width: 800px;
    margin-bottom: 20px;
  }
  
  .testimonials__decor-icon {
    width: 26px;
    height: 26px;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .testimonials__decor-icon:hover {
    transform: scale(1.2);
    opacity: 1;
  }
  
  .testimonials__carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonials__container {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .testimonials__item {
    background-color: #fff;
    border-radius: 6px;
    width: 400px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .testimonials__item.active {
    opacity: 1;
    transform: scale(1);
  }
  
  .testimonials__item:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .testimonials__quote {
    position: relative;
    text-align: left;
    margin-bottom: 20px;
  }
  
  .testimonials__quote-icon {
    width: 30px;
    height: 24px;
    position: absolute;
    top: -10px;
    left: 0;
    opacity: 0.5;
  }
  
  .testimonials__text {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    line-height: 22px;
    margin: 20px 0 0 0;
    padding-left: 40px;
  }
  
  .testimonials__profile {
    display: flex;
    align-items: center;
  }
  
  .testimonials__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .testimonials__info {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .testimonials__name {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #6272fd;
    margin-bottom: 5px;
  }
  
  .testimonials__title {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
  }
  
  /* Responsive design */
  @media (max-width: 1200px) {
    .testimonials__container {
      gap: 20px;
    }
    .testimonials__item {
      width: 350px;
    }
  }
  
  @media (max-width: 768px) {
    .testimonials__decor {
      width: 90%;
    }
    .testimonials__item {
      width: 100%;
      max-width: 400px;
    }
  }
  
  .app-scenarios-section {
    padding: 100px 0;
    background-color: #fff;
}

.app-scenarios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-scenarios-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.app-scenarios-image-container {
    flex: 1;
    min-width: 300px;
}

.app-scenarios-image {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
}

.app-scenarios-text-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-scenarios-text-content h2 {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0E1438;
    line-height: 40px;
    max-width: 308px;
}

.app-scenarios-text-content p {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 20px;
    color: #666666;
    line-height: 28px;
    max-width: 564px;
}

.app-scenarios-use-case-button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 16px 32px;
    background-color: #6272FD;
    color: #FFFFFF;
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.app-scenarios-use-case-button:hover {
    background-color: #4b5bec;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(98, 114, 253, 0.3);
}

.app-scenarios-button-icon {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.app-scenarios-use-case-button:hover .app-scenarios-button-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .app-scenarios-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .app-scenarios-text-content h2,
    .app-scenarios-text-content p {
        max-width: 100%;
    }
}

/* Quick Start Module Styles */
.quick-start-module {
    padding: 60px 0;
}

.quick-start-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-start-text-group {
    text-align: center;
    margin-bottom: 40px;
}

.quick-start-title {
    font-family: 'PingFangSC-Semibold', sans-serif;
    font-size: 32px;
    color: #0e1438;
    margin-bottom: 15px;
}

.quick-start-description {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.quick-start-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.quick-start-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    width: 48%;
    max-width: 655px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon {
    width: 68px;
    height: 68px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

.icon-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-title-group {
    flex: 1;
}

.card-title {
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 20px;
    color: #1e283a;
    margin-bottom: 10px;
}

.card-description {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.card-features img {
    width: 8px;
    height: 8px;
}

.card-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: auto;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 6px;
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 140px;
}

.btn-primary {
    background-color: #6272fd;
    color: #fff;
}

.btn-primary:hover {
    background-color: #4e5ed9;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: rgba(98, 114, 253, 0.2);
    color: #1e283a;
}

.btn-secondary:hover {
    background-color: rgba(98, 114, 253, 0.3);
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid #eee;
    color: #1e283a;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .quick-start-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .quick-start-options {
        flex-direction: column;
        align-items: center;
    }

    .quick-start-card {
        width: 100%;
        max-width: 100%;
    }

    .quick-start-title {
        font-size: 24px;
    }

    .quick-start-description {
        font-size: 16px;
    }
}

  /* Bottom Navigation Styles */
.bottom-navigation {
  background-color: #f9f9f9;
  padding-top: 60px;
  font-family: 'PingFangSC-Regular', sans-serif;
}

.bottom-navigation__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.bottom-navigation__column {
  flex: 1;
  min-width: 200px;
}

.bottom-navigation__title {
  font-family: 'PingFangSC-Medium', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1e283a;
  margin-bottom: 20px;
}

.bottom-navigation__list {
  list-style: none;
  padding: 0;
}

.bottom-navigation__link {
  display: block;
  color: #1e283a;
  font-size: 16px;
  line-height: 37px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.bottom-navigation__link:hover {
  color: #007bff;
  transform: translateX(5px);
}

.bottom-navigation__qrcode {
  width: 138px;
  height: 138px;
  margin-top: 25px;
  display: block;
}

@media (max-width: 768px) {
  .bottom-navigation__container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .bottom-navigation__column {
    text-align: center;
  }

  .bottom-navigation__link:hover {
    transform: none;
  }
}

 /* Bottom Navigation Styles */
 .bottom-navigation {
    font-family: 'PingFangSC-Regular', sans-serif;
  }
  
  .bottom-navigation__main {
    background-color: #f9f9f9;
    padding: 60px 0;
  }
  
  .bottom-navigation__secondary {
    background-color: #0e1438;
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .bottom-navigation__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .bottom-navigation__column {
    flex: 1;
    min-width: 200px;
  }
  
  .bottom-navigation__title {
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1e283a;
    margin-bottom: 20px;
  }
  
  .bottom-navigation__list {
    list-style: none;
    padding: 0;
  }
  
  .bottom-navigation__link {
    display: block;
    color: #1e283a;
    font-size: 16px;
    line-height: 37px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .bottom-navigation__link:hover {
    color: #007bff;
    transform: translateX(5px);
  }
  
  .bottom-navigation__qrcode {
    width: 138px;
    height: 138px;
    margin-top: 25px;
    display: block;
  }
  
  .bottom-navigation__brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .bottom-navigation__logo {
    width: 42px;
    height: 30px;
  }
  
  .bottom-navigation__brand-name {
    font-family: 'DysonCHS-Medium', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
  }
  
  .bottom-navigation__social {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .bottom-navigation__social-link img {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .bottom-navigation__social-link:hover img {
    transform: scale(1.2);
  }
  
  .bottom-navigation__legal {
    font-family: 'DysonCHS-Medium', sans-serif;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
  }
  
  .bottom-navigation__legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .bottom-navigation__legal-link:hover {
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .bottom-navigation__container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .bottom-navigation__column {
      text-align: center;
    }
  
    .bottom-navigation__link:hover {
      transform: none;
    }
  
    .bottom-navigation__brand {
      justify-content: center;
      text-align: center;
    }
  
    .bottom-navigation__legal {
      justify-content: center;
      text-align: center;
    }
  }

  /* Scoped styles for .box_4 module */
.box_4 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 60px auto;
    gap: 50px;
    flex-wrap: wrap;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0E1438;
}

.box_4 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Left Section */
.box_4 .group_2 {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box_4 .text_9 {
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
}

.box_4 .paragraph_1 {
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
}

/* Buttons */
.box_4 .group_3 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.box_4 .text-wrapper_1,
.box_4 .text-wrapper_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 182px;
    height: 60px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.box_4 .text-wrapper_1 {
    background-color: #6272FD;
    color: #FFFFFF;
}

.box_4 .text-wrapper_2 {
    background-color: rgba(98, 114, 253, 0.2);
    color: #1E283A;
}

.box_4 .text-wrapper_1:hover {
    background-color: #4e5ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.box_4 .text-wrapper_2:hover {
    background-color: rgba(98, 114, 253, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.box_4 .text_10,
.box_4 .text_11 {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

/* Right Section (Code Block) */
.box_4 .group_4 {
    flex: 1;
    min-width: 300px;
}

.box_4 .section_1 {
    box-shadow: 0 4px 7px rgba(98, 114, 253, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.box_4 .group_5 {
    background-color: #FFFFFF;
}

.box_4 .block_1 {
    background-color: rgba(98, 114, 253, 0.16);
    height: 25px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    gap: 6px;
}

.box_4 .group_6,
.box_4 .group_7,
.box_4 .group_8 {
    width: 9px;
    height: 9px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.box_4 .text-wrapper_3 {
    padding: 17px 20px;
}

.box_4 .text_12 {
    font-family: 'DysonCHS-Book', monospace;
    font-size: 18px;
    line-height: 24px;
    color: #666666;
}

.box_4 .text_14, 
.box_4 .text_19, 
.box_4 .text_24, 
.box_4 .text_30, 
.box_4 .text_35, 
.box_4 .text_41 {
    color: #219AD5;
}

.box_4 .text_16, 
.box_4 .text_21, 
.box_4 .text_27, 
.box_4 .text_32, 
.box_4 .text_38, 
.box_4 .text_43 {
    color: #6FBD5D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .box_4 {
        margin: 30px 20px;
        gap: 30px;
    }

    .box_4 .text_9 {
        font-size: 24px;
        line-height: 34px;
    }

    .box_4 .paragraph_1 {
        font-size: 14px;
        line-height: 28px;
    }

    .box_4 .text-wrapper_1,
    .box_4 .text-wrapper_2 {
        width: 100%;
    }
}

.cross-industry-value {
    padding: 60px 0;
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.title {
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    margin: 0 0 20px 0;
    text-align: center;
}

.description {
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 16px;
    color: rgb(14, 20, 56);
    margin: 0 0 40px 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flex-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    max-width: 312px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 44px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 16px;
    position: relative;
}

.thumbnail {
    position: absolute;
    width: auto;
    height: auto;
}

.text-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text-group h3 {
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    margin: 0;
}

.text-group p {
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 14px;
    color: rgb(14, 20, 56);
    line-height: 20px;
    margin: 0;
}


#multiple-formats {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1920px;
    min-height: 275px;
    box-sizing: border-box;
    padding: 0 260px;
    margin: 0 auto;
}

.dfm-text_53 {
    font-family: PingFangSC-Medium;
    font-size: 32px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    line-height: 45px;
    margin: 60px 0 20px;
    text-align: justify;
    white-space: nowrap;
}

.dfm-box_8 {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    height: 185px;
}

.dfm-group_10, .dfm-group_11, .dfm-group_12, .dfm-group_13 {
    background-color: rgb(255, 255, 255);
    width: 335px;
    height: 185px;
    border: 1px solid rgb(238, 238, 238);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dfm-group_10:hover, .dfm-group_11:hover, .dfm-group_12:hover, .dfm-group_13:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dfm-group_11, .dfm-group_12, .dfm-group_13 {
    margin-left: 20px;
}

.dfm-text-wrapper_4, .dfm-text-wrapper_9, .dfm-text-wrapper_14, .dfm-text-wrapper_19 {
    margin-bottom: 10px;
}

.dfm-text_54, .dfm-text_63, .dfm-text_72, .dfm-text_81 {
    font-family: PingFangSC-Medium;
    font-size: 18px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    line-height: 25px;
    white-space: nowrap;
}

.dfm-text-wrapper_5, .dfm-text-wrapper_6, .dfm-text-wrapper_7, .dfm-text-wrapper_8,
.dfm-text-wrapper_10, .dfm-text-wrapper_11, .dfm-text-wrapper_12, .dfm-text-wrapper_13,
.dfm-text-wrapper_15, .dfm-text-wrapper_16, .dfm-text-wrapper_17, .dfm-text-wrapper_18,
.dfm-text-wrapper_20, .dfm-text-wrapper_21, .dfm-text-wrapper_22, .dfm-text-wrapper_23 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dfm-text_55, .dfm-text_56, .dfm-text_57, .dfm-text_58, .dfm-text_59, .dfm-text_60, .dfm-text_61, .dfm-text_62,
.dfm-text_64, .dfm-text_65, .dfm-text_66, .dfm-text_67, .dfm-text_68, .dfm-text_69, .dfm-text_70, .dfm-text_71,
.dfm-text_73, .dfm-text_74, .dfm-text_75, .dfm-text_76, .dfm-text_77, .dfm-text_78, .dfm-text_79, .dfm-text_80,
.dfm-text_82, .dfm-text_83, .dfm-text_84, .dfm-text_85, .dfm-text_86, .dfm-text_87, .dfm-text_88, .dfm-text_89 {
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: rgb(14, 20, 56);
    line-height: 20px;
    white-space: nowrap;
}

.dfm-flex-row {
    display: flex;
}

.dfm-justify-between {
    justify-content: space-between;
}

.dfm-flex-col {
    display: flex;
    flex-direction: column;
}


/* Module-specific styles with prefix */
.version-comparison__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
    font-family: 'PingFangSC-Medium', sans-serif;
  }

  .version-comparison__title {
    font-size: 32px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    line-height: 45px;
    margin: 0 auto;
    text-align: center;
  }

  .version-comparison__table {
    width: 1400px;
    margin: 20px 0 0 20px;
    border-collapse: collapse;
    background-color: rgba(98, 114, 253, 0.1);
    border-radius: 6px;
  }

  .version-comparison__table th,
  .version-comparison__table td {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 16px;
    color: rgb(14, 20, 56);
    line-height: 22px;
    text-align: left;
    padding: 15px 0 15px 20px;
    vertical-align: middle;
  }

  .version-comparison__table th {
    font-weight: 500;
    background-color: rgba(98, 114, 253, 0.1);
  }

  .version-comparison__table td {
    border-bottom: 1px solid rgb(238, 238, 238);
  }

  .version-comparison__table img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
  }

  .version-comparison__table img:hover {
    transform: scale(1.1);
  }

  .version-comparison__table--custom td:not(:first-child) {
    color: rgb(153, 153, 153);
  }

  /* Column widths */
  .version-comparison__col--feature { width: 288px; }
  .version-comparison__col--trial { width: 360px; }
  .version-comparison__col--advanced { width: 260px; }
  .version-comparison__col--professional { width: 260px; }
  .version-comparison__col--enterprise { width: 232px; }

  /* Specific row adjustments */
  .version-comparison__row--foreign-city td:nth-child(2),
  .version-comparison__row--foreign-line td:nth-child(2),
  .version-comparison__row--domestic-isp td:nth-child(2) {
    padding-left: 0;
  }

  .version-comparison__row--downloads td:nth-child(2) { width: 148px; }
  .version-comparison__row--downloads td:nth-child(3) { width: 250px; }
  .version-comparison__row--downloads td:nth-child(4) { width: 240px; }
  .version-comparison__row--downloads td:nth-child(5) { width: 240px; }


  /* Centered container for the entire section */
.ip-query-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
    min-height: 90vh;
    background-image: url("/static/images/SketchPng2d79449c419bb5933d1d95cb8f61979c2db5649d35e53db13578988cabae25be.png");
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: 1400px 563px;
    padding: 20px;
  }
  
  /* Main content area */
  .ip-query-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1400px;
    margin-top: 1px;
  }
  
  /* Logo styling */
  .ip-query-logo {
    width: 297px;
    height: 50px;
    margin-top: 228px;
    margin-bottom: 104px;
  }
  
  /* Search bar styling */
  .ip-query-search-bar {
    display: flex;
    align-items: center;
    width: 900px;
    height: 60px;
    background-color: #fff;
    border: 1px solid rgb(98, 114, 253);
    border-radius: 8px;
    padding: 0 23px;
  }
  
  /* Search icon */
  .ip-query-search-icon {
    width: 18px;
    height: 21px;
    margin-right: 23px;
  }
  
  /* Input field */
  .ip-query-input {
    flex: 1;
    border: none;
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(14, 20, 56);
    outline: none;
  }
  
  /* Search button */
  .ip-query-search-button {
    width: 102px;
    height: 40px;
    background-color: rgb(98, 114, 253);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: PingFangSC-Medium, sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .ip-query-search-button:hover {
    background-color: rgb(78, 94, 233);
  }
  
  /* Info section */
  .ip-query-info {
    display: flex;
    justify-content: space-between;
    width: 580px;
    height: 38px;
    background-color: rgba(98, 114, 253, 0.05);
    border-radius: 19px;
    padding: 0 30px;
    margin: 30px 0 52px;
  }
  
  /* Info item */
  .ip-query-info-item {
    display: flex;
    align-items: center;
  }
  
  /* Info labels and values */
  .ip-query-info-label {
    font-family: DysonCHS-Book, sans-serif;
    font-size: 14px;
    color: rgb(102, 102, 102);
    margin-right: 5px;
  }
  
  .ip-query-info-value {
    font-family: DysonCHS-Book, sans-serif;
    font-size: 14px;
    color: rgb(98, 114, 253);
  }
  
  /* Stats section */
  .ip-query-stats {
    display: flex;
    justify-content: space-between;
    width: 815px;
    margin-top: 38px;
  }
  
  /* Individual stat */
  .ip-query-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 107px;
  }
  
  /* Stat value container */
  .ip-query-stat-value {
    display: flex;
    align-items: baseline;
  }
  
  /* Stat number */
  .ip-query-stat-number {
    font-family: DysonCHS-Medium, sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: rgb(98, 114, 253);
    margin-right: 5px;
  }
  
  /* Stat unit */
  .ip-query-stat-unit {
    font-family: DysonCHS-Medium, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(98, 114, 253);
  }
  
  /* Stat label */
  .ip-query-stat-label {
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 12px;
    color: rgb(153, 153, 153);
    margin-top: 20px;
    text-align: center;
  }


  /* Reset default margins and ensure box-sizing */

  
  .header-product-menu {
    width: 980px;
    height: 382px;
    position: absolute;
    z-index: 100;
    top: 80px; /* Adjust this to change vertical position */
    right: 260px;
    bottom: 151px;
    background-color: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* Clearfix for floated children */
  }
  
  .header-product-category-list {
    width: 316px;
    height: 100%;
    background-color: #f7f7f7;
    border-bottom-left-radius: 6px;
    float: left;
  }
  
  .header-product-category {
    margin: 25px 0 0 25px;
    width: 244px; /* Matches original content width */
  }
  
  .header-product-category a {
    display: block;
    text-decoration: none;
    color: #0e1438;
    transition: transform 0.2s ease;
  }
  
  .header-product-category a:hover {
    transform: translateX(5px);
  }
  
  .header-product-category h3 {
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 10px;
  }
  
  .header-product-category p {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 20px;
  }
  
  .header-ipv4-product-divider-icon {
    width: 29px;
    height: 29px;
    margin: 48px 0 0 -20px;
    float: left;
  }

  .header-ipv6-product-divider-icon {
    width: 29px;
    height: 29px;
    margin: 127px 0 0 -20px;
    float: left;
  }

  .header-security-product-divider-icon {
    width: 29px;
    height: 29px;
    margin: 225px 0 0 -20px;
    float: left;
  }
  
  .header-product-details {
    width: 604px;
    margin: 30px 30px 0 21px;
    float: left;
  }
  
  .header-product-highlight-product {
    background: url('/static/images/SketchPngb2bbf6c4fda15cfb023fc4f8365a30881eb5e9c6f86db0de3e260c57cb04e86f.png') no-repeat center;
    background-size: cover;
    height: 86px;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .header-product-highlight-product a {
    display: block;
    text-decoration: none;
    padding: 10px;
    color: #fff;
    transition: opacity 0.2s ease;
  }
  
  .header-product-highlight-product a:hover {
    opacity: 0.9;
  }
  
  .header-product-highlight-text h4 {
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }
  
  .header-product-highlight-text p {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 12px;
    line-height: 17px;
    width: 487px;
    margin: 8px 0;
  }
  
  .header-product-view-all {
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
  }
  
  .header-product-view-all img {
    width: 7px;
    height: 12px;
    margin-left: 9px;
  }
  
  .header-product-product-grid {
    width: 100%;
    overflow: hidden; /* Clearfix for floated children */
  }
  
  .header-product-product-item {
    width: 280px; /* Matches original spacing and content width */
    margin-bottom: 20px;
    float: left;
    margin-right: 20px; /* Space between items */
  }
  
  .header-product-product-item:nth-child(even) {
    margin-right: 0; /* Last item in row has no right margin */
  }
  
  .header-product-product-item img {
    width: 24px;
    float: left;
    margin-right: 19px;
  }
  
  .header-product-product-item a {
    text-decoration: none;
    color: #0e1438;
    transition: transform 0.2s ease;
    display: block;
    overflow: hidden; /* Clearfix for floated image */
  }
  
  .header-product-product-item a:hover {
    transform: translateX(5px);
  }
  
  .header-product-product-item h5 {
    font-family: 'PingFangSC-Medium', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
  
  .header-product-product-item p {
    font-family: 'PingFangSC-Regular', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 17px;
    margin-top: 2px;
  }


  .ip-info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; /* Reduced padding to fit within 80px */
    background: url(http://127.0.0.1:8088/static/images/SketchPngd4f21e9179211433c092b98697be999fa9d5430c7b3dca29b25fb650b77b5afc.png) no-repeat center;
    background-size: cover;
    height: 120px; /* Strictly fixed height */
}

.ip-info-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 980px;
}

.ip-info-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    height: 60px;
    width: 100%;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ip-info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ip-icon {
    width: 18px;
    height: 21px;
    margin-right: 15px;
}

.ip-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ip-label {
    color: rgba(14, 20, 56, 1);
    font-size: 16px;
    font-family: PingFangSC-Medium, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
    font-weight: 500;
}

.separator-icon {
    width: 20px;
    height: 20px;
    margin-right: 18px;
}

.or-text {
    color: rgba(153, 153, 153, 1);
    font-size: 16px;
    font-family: PingFangSC-Medium, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
    font-weight: 500;
    margin-right: 20px;
}

.ip-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: PingFangSC-Medium, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
    color: rgba(14, 20, 56, 1);
    background: transparent;
}

.ip-input::placeholder {
    color: rgba(14, 20, 56, 0.5);
}

.search-button {
    background-color: rgba(98, 114, 253, 1);
    border-radius: 8px;
    height: 40px;
    padding: 0 36px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-button:hover {
    background-color: rgba(78, 94, 233, 1);
}

.search-button span {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: PingFangSC-Medium, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
    font-weight: 500;
}

.header-technical-menu {
  position: absolute;
  z-index: 50;
  width: 124px;
}

.technical-flex-col {
  display: flex; 
  flex-direction: column;
} 


.section_3 { 
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); 
  background-color: rgba(255, 255, 255, 1); 
  border-radius: 0px 0px 6px 6px; 
  /* position: relative;  */
  /* width: 124px;  */
  /* height: 190px;  */
  /* margin: 0px 0 0 1404px; */
} 

.technical-support_11 { 
width: 64px; 
height: 22px; 
overflow-wrap: break-word; 
color: rgba(14, 20, 56, 1); 
font-size: 16px; 
font-family: PingFangSC-Regular; 
font-weight: NaN; 
text-align: center; 
white-space: nowrap; 
line-height: 22px; 
margin: 20px 0 20px 30px;
} 
