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

html {
    font-size: 10px;
}

body {
    font-family: "OPPO Sans 4.0", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

textarea {
    resize: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}


.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 1400px;
    max-width: calc(100% - 80px);
    background: rgba(255, 255, 255, 1);
    border-radius: 33px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    top: 0;
    left: 0;
    transform: translateX(0);
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}
.header.scrolled1{
        top: 0;
    left: 0;
    transform: translateX(0);
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}
.header:not(.scrolled).dropdown-open {
    border-radius: 33px 33px 0 0;
}

.header:not(.scrolled).dropdown-open .nav-dropdown-inner {
    border-radius: 0 0 33px 33px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 28px;
    height: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-inner {
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.header.scrolled1 .header-inner{
     height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.header.scrolled .logo-img {
    height: 32px;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav > ul > li {
    position: relative;
}
.header-inner ul li:nth-child(3){
display:none}
.nav a {
    display: block;
    padding: 28px 12px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    opacity: 0.5;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}
.nav .active a{
    color: #003d81;
    opacity: 1;
}
.nav a:hover {
    color: #003d81;
    opacity: 1;
}

.nav a.active {
    color: #000000;
    font-weight: 600;
    opacity: 1;
}

/* .nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #ea5504;
    border-radius: 2px;
} */


.nav-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
    border-radius: 0;
    background: #fff;
    border-radius: 0 0 33px 33px;
}
.scrolled .nav-dropdown {
    border-radius: 0;
}
.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown-inner {
    position: relative;
    width: 1400px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    height: 420px;
    border-radius: 0 0 33px 33px;
}



.nav-dropdown-left {
    width: 262px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.nav-category-item {
    height: 119px;
    display: flex;
    align-items: center;
    padding: 0 31px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.nav-category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #003c81;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-category-item.active,
.nav-category-item:hover {
    background: #f8f9fa;
}

.nav-category-item.active::before {
    opacity: 1;
}

.nav-category-icon {
    width: 34px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 41px;
}

.nav-category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-category-name {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.nav-dropdown-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.nav-products-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-products-panel.active {
    opacity: 1;
    visibility: visible;
}

.nav-products-panel[data-panel="custom"] {
    flex-wrap: wrap;
    align-content: center;
    padding: 15px 20px;
}

.nav-products-panel[data-panel="custom"] .nav-product-item {
    flex: 0 0 calc(20% - 12px);
    margin-bottom: 12px;
}

.nav-products-panel[data-panel="custom"] .nav-product-img {
    height: 110px;
}

.nav-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    opacity: 1;
    flex: 0 0 calc(16% - 20px);
}

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

.nav-product-img {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-product-name {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 0 4px 0 16px;
    height: 36px;
    width: 220px;
    transition: all 0.3s ease;
}

.header-search:focus-within {
    border-color: #003d81;
}

.search-input {
    flex: 1;
    font-size: 14px;
    color: #333;
    background: transparent;
    height: 100%;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.search-btn svg {
    width: 16px;
    height: 16px;
}

.lang-switch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #003d81;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: #002a5c;
    transform: scale(1.05);
}

.lang-switch svg {
    width: 20px;
    height: 20px;
}


.banner {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: visible;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/banner-bg.jpg') center center / cover no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 25, 60, 0.6) 0%, rgba(0, 35, 75, 0.3) 45%, rgba(0, 45, 100, 0.1) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpBtn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpForm {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner-text {
    max-width: 624px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.banner-title {
    margin-bottom: 0;
}

.title-line1 {
    display: block;
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 1.5px;
}

.title-line2 {
    display: block;
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.banner-btn {
    position: absolute;
    bottom: 100px;
    left: 40px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: none;
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 42px;
    z-index: 4;
    animation: fadeInUpBtn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn-text {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px 0 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #003d81;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 12px;
    height: 12px;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover .btn-icon {
    background: #002a5c;
}

.banner-dots {
    position: absolute;
    bottom: 100px;
    right: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}

.banner-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    pointer-events: none;
}

.banner-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.banner-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

.banner-arrow svg {
    width: 18px;
    height: 18px;
}


.contact-form-section {
    position: relative;
    margin-top: -85px;
    z-index: 5;
}

.contact-form-card {
    display: flex;
    align-items: center;
    padding: 30px 45px;
    background: #f2f2f2;
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(127, 127, 127, 0.25);
    overflow: hidden;
}

.contact-form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-control {
    flex: 1;
    height: 51px;
    padding: 0 20px;
    border: none;
    border-radius: 30px;
    background: #fff;
    font-size: 13px;
    color: #000;
    outline: none;
    box-shadow: 5px 5px 8px rgba(215, 215, 215, 0.35);
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 5px 5px 12px rgba(0, 60, 129, 0.2);
}

.form-control::placeholder {
    color: #999;
}

.form-control-small {
    flex: 0 0 313px;
}

.form-submit-btn {
    width: 153px;
    height: 34px;
    border-radius: 30px;
    background: #fff;
    color: #7f7f7f;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    box-shadow: 5px 5px 8px rgba(215, 215, 215, 0.35);
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #003c81;
    color: #fff;
    box-shadow: 5px 5px 12px rgba(0, 60, 129, 0.3);
}

.contact-form-divider {
    width: 2px;
    height: 89px;
    background: #ea5504;
    margin: 0px 30px;
    flex-shrink: 0;
}

.contact-form-right {
    display: flex;
    align-items: center;
    gap: 17px;
}

.contact-form-text {
    font-size: 35px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0;
    margin-left: 20px;
}

.contact-form-icon-btn {
    width: 124px;
    height: 121px;
    border-radius: 16px;
    background: #003c81;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}
.contact-form-icon-btn img{
    width:73px;
}
.qrcode-box {
  position: absolute;
  top: 0px;
  left: -60%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.qrcode-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-icon-btn:hover .qrcode-box {
  opacity: 1;
  visibility: visible;
}
.contact-form-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 5px 8px 15px rgba(0, 60, 129, 0.4);
}

.contact-form-icon-btn svg {
    width: 48px;
    height: 48px;
}

.contact-form-icon-btn span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}


.product-section {
    padding: 150px 0 80px;
    background: #fff;
}

.category-section {
    padding: 80px 0 80px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-title {
    font-size: 50px;
    font-weight: 600;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.category-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}

.category-title-line .line-blue {
    width: 38px;
    height: 3px;
    background: #003c81;
}

.category-title-line .line-orange {
    width: 23px;
    height: 3px;
    background: #ff4c00;
}

.category-title-line .line-blue:last-child {
    width: 78px;
}

.category-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.category-side-bg {
    position: absolute;
    top: 10%;
    width: 30%;
    height: 330px;
    background: #f2f2f2;
    border-radius: 600px;
    z-index: 0;
    pointer-events: none;
}

.category-side-left {
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.category-side-right {
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transform: rotate(180deg);
}

.category-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: visible;
}

.category-carousel-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.category-slide {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.9);
}

.category-slide.active {
    opacity: 1;
    transform: scale(1);
}

.category-card {
    width: 100%;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 10px 15px 20px rgba(127, 127, 127, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-slide.active .category-card {
    box-shadow: 10px 15px 25px rgba(0, 60, 129, 0.25);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-slide.active .category-card img {
    transform: scale(1.05);
}

.category-name {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 500;
    color: #111111;
    transition: all 0.5s ease;
    opacity: 0;
}

.category-slide.active .category-name {
    color: #003c81;
    font-weight: 600;
    opacity: 1;
}

.category-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-arrow:hover {
    background: #003c81;
    border-color: #003c81;
}

.category-arrow:hover svg path {
    stroke: #fff;
}

.category-arrow svg {
    width: 24px;
    height: 24px;
}

.category-arrow-left {
    left: calc(50% - 720px - 30px);
}

.category-arrow-right {
    right: calc(50% - 720px - 30px);
}

.category-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 76, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-dot.active {
    width: 32px;
    border-radius: 6px;
    background: #ff4c00;
}


.service-section {
    padding: 80px 0;
    background: #f8fafc;
}

.service-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.service-section .section-header-left h2 {
    font-size: 50px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.service-section .section-header-left .section-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.section-header-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.section-header-btn:hover {
    background: #003d81;
    color: #fff;
    border-color: #003d81;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 580px;
}

.service-card {
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 16px rgb(234 85 4);
}

.service-card.large-card .service-card-content {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    /* background: rgba(0, 60, 129, 0.6); */
    z-index: 1;
    text-align: left;
}
.service-card.large-card h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-card.large-card p {
    font-size: 19px;
    color: #fff;
    line-height: 36px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.service-card.large-card .service-line {
    width: 200px;
    height: 1px;
    background: #fff;
}
.service-card.large-card {
    grid-column: 1;
    grid-row: 1 / 3;
    color: #fff;
    min-height: 580px;
    display: flex;
    align-items: center;
}


    
.service-card .small-card {
    color: #fff;
    min-height: 280px;
}

.service-card.small-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 129, 0.55);
    z-index: 0;
}

.service-card.small-card .service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.service-card.small-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.3;
    transition: margin-bottom 0.3s ease;
}

.service-card.small-card p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-top: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.service-card.small-card:hover h3 {
    margin-bottom: 12px;
}

.service-card.small-card:hover p {
    opacity: 1;
    max-height: 100px;
    margin-top: 8px;
}


.about-section {
    padding: 0;
    background: #fff;
}

.about-main {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    padding: 36px 0 60px;
}

.about-bg-building {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('../images/u1.png') center center / cover no-repeat;
    z-index: 0;
}

.about-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #003c81 40%, rgba(0, 60, 129, 0) 100%);
    z-index: 1;
}

.about-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.about-title-line .line-white-short {
    width: 38px;
    height: 3px;
    background: #fff;
}

.about-title-line .line-orange {
    width: 23px;
    height: 3px;
    background: #ff4c00;
}

.about-title-line .line-white-long {
    width: 78px;
    height: 3px;
    background: #fff;
}

.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 80px;
    flex-direction: column;
}

.about-text {
    max-width: 700px;
    color: #fff;
}

.about-text h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: 3px;
}

.about-text p {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.about-btn-arrow {
    width: 20px;
    height: 20px;
    background: #003c81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-btn-arrow svg {
    width: 12px;
    height: 12px;
}



    
.solution-section {
    padding: 80px 0 60px;
    background: #fff;
}

.solution-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.solution-section .section-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.solution-section .section-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.solution-section .section-title-line .line-blue {
    width: 38px;
    height: 3px;
    background: #003c81;
}

.solution-section .section-title-line .line-orange {
    width: 23px;
    height: 3px;
    background: #ff4c00;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 338px);
    gap: 16px 16px;
    justify-content: center;
}

.solution-card {
    position: relative;
    width: 338px;
    height: 467px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 10px 15px 10px rgba(127, 127, 127, 0.35);
}

.solution-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
}

.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 129, 1);
    opacity: 0.25;
    border-radius: 20px;
    border: 2px solid transparent;
    z-index: 1;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover .solution-card-overlay {
    opacity: 0.75;
    border-color: #ff4c00;
}


.solution-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 23px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s ease;
}

.solution-card:hover .solution-card-arrow {
    background: #003c81;
}

.solution-card-arrow img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(1596%) hue-rotate(184deg) brightness(94%) contrast(103%);
    transition: filter 0.3s ease;
}

.solution-card:hover .solution-card-arrow img {
    filter: none;
}

.solution-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 19px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card-content h3 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    max-width: 300px;
}

.solution-card-content p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    /* margin-bottom: 19px; */
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 45px;
    background: #fff;
    color: #000;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0px 2px 2.5px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}


.process-section {
    position: relative;
    min-height: 800px;
    padding: 80px 0;
    overflow: hidden;
    background: #003c81;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: opacity 0.5s ease, background-image 0.5s ease;
    z-index: 0;
}

.process-section .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 120px;
}

.process-section .section-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.process-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.process-title-line .line-orange {
    width: 23px;
    height: 3px;
    background: #ff4c00;
}

.process-title-line .line-white {
    width: 38px;
    height: 3px;
    background: #fff;
}

.process-title-line .line-white-long {
    width: 78px;
    height: 3px;
    background: #fff;
}

.process-steps {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 100%;
    padding: 0 5%;
    height: 500px;
}

.process-step {
    position: relative;
    text-align: center;
    color: #fff;
    flex: 1;
    /* max-width: 200px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.8s ease;
    height: 100%;
    padding-bottom: 40px;
}

.process-step:hover {
    /* justify-content: center; */
    padding-bottom: 16%;
}

.process-step::after {
    content: '';
    position: absolute;
    top: -40px;
    right: 0;
    width: 1px;
    height: 500px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 50%, rgba(255,255,255,0));
}

.process-step:last-child::after {
    display: none;
}

.process-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.process-step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.process-step:hover .process-step-icon {
    transform: scale(1.1);
}

.process-step-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.process-step h3 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

.process-step-indicator {
    width: 41px;
    height: 4px;
    background: #003c81;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-indicator {
    width: 94px;
    background: #ff4c00;
}


.news-section {
    padding: 80px 0 60px;
    background: #fff;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.news-section .section-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.news-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.news-title-line .line-blue {
    width: 38px;
    height: 3px;
    background: #003c81;
}

.news-title-line .line-orange {
    width: 23px;
    height: 3px;
    background: #ff4c00;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.news-tab {
    font-size: 20px;
    color: #333;
    font-weight: 400;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: none;
    background: none;
    padding: 8px 24px;
    border-radius: 30px;
}

.news-tab:hover {
    opacity: 1;
}

.news-tab.active {
    color: #fff;
    opacity: 1;
    background: #003c81;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-featured {
    position: relative;
    width: 100%;
    aspect-ratio: 1400 / 746;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 11px 14px 7px rgba(127, 127, 127, 0.35);
}

.news-featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    overflow: hidden;
    z-index: 0;
}

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 60, 129, 0.95), rgba(0, 60, 129, 0));
    border-radius: 0 0 30px 30px;
    z-index: 1;
}

.news-featured-info {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    z-index: 2;
    max-width: 915px;
}

.news-featured-info .news-tag {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}

.news-featured-info h3 {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.news-featured-info h4 {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.news-featured-info p {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    line-height: 26px;
    opacity: 0.8;
}

.news-featured-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 153px;
    height: 115px;
    background: #003c81;
    border-radius: 60px 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-featured:hover .news-featured-arrow {
    opacity: 1;
}

.news-featured-arrow svg {
    width: 55px;
    height: 55px;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    width: 100%;
    cursor: pointer;
    box-shadow: none;
    border-radius: 20px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(234, 85, 4, 0.2);
}

.news-card-img {
    width: 100%;
    aspect-ratio: 436 / 293;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}

.news-card h4 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 12px;
    padding: 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card p {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 25px;
    margin-bottom: 12px;
    padding: 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 限制2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 10px;
}

.news-date {
    font-size: 16px;
    font-weight: 500;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.news-read {
    font-size: 16px;
    font-weight: 500;
    color: #aaa;
    text-decoration: underline;
}


.partner-section {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    min-height: 800px;
}
.partner-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  z-index: 2;
}
.partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/u5_div.png') center top / 1920px auto no-repeat;
    background-color: #d7d7d7;
}

.partner-section .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.partner-section .section-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.partner-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.partner-title-line .line-white {
    width: 39px;
    height: 3px;
    background: #fff;
}

.partner-title-line .line-orange {
    width: 23px;
    height: 3px;
    background: #ff4c00;
}

.partner-title-line .line-white-long {
    width: 78px;
    height: 3px;
    background: #fff;
}

.partner-desc {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.partner-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.partner-row {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.partner-row:nth-child(2) {
    transform: translateX(-30px);
}

.partner-item {
    width: 268px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-item img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: brightness(1.2);
}


.contact-section {
    padding: 60px 0 0px;
    background: rgb(0 60 129 / 10%);
    overflow: hidden;
}

.contact-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 20px;
    font-weight: 400;
    color: #7F7F7F;
    margin-top: 16px;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-direction: row;
    justify-content: space-between;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
}
.contact-form p{
    font-size: 20px;
    color: #000;
}
.contact-input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #d7d7d7;
    border-radius: 60px;
    font-size: 20px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
}

.contact-input::placeholder {
    color: #999;
}

.contact-textarea {
    width: 100%;
    height: 213px;
    padding: 16px 20px;
    border: 1px solid #d7d7d7;
    border-radius: 33px;
    font-size: 20px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
    resize: none;
}

.contact-textarea::placeholder {
    color: #999;
}

.contact-buttons {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}

.contact-save {
    width: 330px;
    height: 56px;
    border-radius: 33px;
    font-size: 22px;
    font-weight: 400;
    background: #ff4c00;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
}

.contact-save:hover {
    background: #e64400;
    transform: translateY(-2px);
}

.contact-submit {
    width: 330px;
    height: 56px;
    border-radius: 33px;
    font-size: 22px;
    font-weight: 400;
    background: #003c81;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
}

.contact-submit:hover {
    background: #002a5c;
    transform: translateY(-2px);
}

.contact-image {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.contact-image-bg {
    position: absolute;
    bottom: 5%;
    right: -40px;
    width: 110%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
    pointer-events: none;
}

.contact-image-bg img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
}

.contact-image img:last-child {
    position: relative;
    z-index: 1;
    width: 97%;
    height: auto;
}


.footer {
    position: relative;
    padding: 60px 0 30px;
    overflow: hidden;
    background: #003c81;
    min-height: 650px;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 40px;
}

.footer-col {
    color: #fff;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}
.footer-lianjie{
    display: flex;
}
.footer-lianjie img{
    filter: brightness(0) invert(1);
    width: 35px;
    margin-right: 5px;
}
.footer-lianjie img:nth-child(2){
    width: 40px;
}
.footer-col ul li a {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-qr {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-qr img {
    width: 120px;
    height: 119px;
}

.footer-divider-section {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 40px;
}

.footer-divider-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 1);
}

.footer-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-center img {
    width: 307px;
    height: 40px;
}

.footer-copyright {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}



@media (max-width: 1440px) {
    .container {
        width: calc(100% - 240px);
        max-width: none;
        padding: 0;
    }

    .banner-content {
        width: calc(100% - 240px);
        max-width: none;
        padding: 0;
    }

    .contact-form-card {
        padding: 24px 30px;
    }

    .category-carousel {
        width: calc(100% - 240px);
        max-width: none;
        padding: 0;
    }

    .header {
        width: calc(100% - 240px);
        max-width: none;
    }
.nav-dropdown-inner{
    width: 100%;
    max-width: none;
}
    .header-inner {
        padding: 0 24px 0 28px;
    }

    .header.scrolled .header-inner,
    .header.scrolled1 .header-inner {
        width: calc(100% - 240px);
        margin: 0 auto;
    }


    
    .banner-arrows {
        padding: 0;
        left: 0;
        right: 0;
    }

    .banner-arrow-left {
        margin-left: 80px;
    }

    .banner-arrow-right {
        margin-right: 80px;
    }

    
    .category-arrow-left {
        left: 90px;
    }

    .category-arrow-right {
        right: 90px;
    }
}

@media (max-width: 1200px) {
    .header-inner {
        padding: 0 20px;
    }
    
    .nav a {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .header-search {
        width: 180px;
    }
    
    .banner-content {
        padding: 160px 30px 0;
    }
    
    .title-line1 {
        font-size: 4rem;
    }
    
    .title-line2 {
        font-size: 5rem;
    }
    
    .banner-btn {
        left: 30px;
    }
    
    .banner-dots {
        right: 30px;
    }
    
    .solution-grid {
        grid-template-columns: repeat(3, 338px);
    }
    
    .partner-row {
        gap: 12px;
    }
    
    .partner-item {
        width: 220px;
        height: 72px;
    }

    .contact-form-card {
        padding: 24px 30px;
    }

    .contact-form-text {
        font-size: 28px;
    }

    .contact-form-icon-btn {
        width: 100px;
        height: 100px;
    }

    .contact-form-divider {
        margin: 0 24px;
    }

    .form-control-small {
        flex: 0 0 240px;
    }
}

@media (max-width: 992px) {
    .header {
        width: calc(100% - 40px);
    }

    .header.scrolled1 .header-inner {
        width: calc(100% - 40px);
    }
    
    .nav {
        display: none;
    }
    
    .header-search {
        width: 160px;
    }
    
    .banner-content {
        padding: 140px 30px 0;
        text-align: center;
    }
    
    .banner-text {
        max-width: 100%;
    }
    
    .title-line1 {
        font-size: 3rem;
    }
    
    .title-line2 {
        font-size: 4rem;
    }
    
    .banner-btn {
        position: static;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-arrows {
        display: none;
    }
    
    .banner-dots {
        right: 30px;
        bottom: 40px;
    }
    
    .contact-form-card {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .contact-form-right {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #003c81;
        padding-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .contact-form-divider {
        display: none;
    }

    .contact-form-left {
        width: 100%;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.large-card {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 338px);
    }
    
    .news-cards {
        grid-template-columns: 1fr;
    }
    
    .partner-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .partner-row:nth-child(2) {
        transform: none;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .contact-form {
        flex: 0 0 auto;
        width: 100%;
        max-width: 678px;
    }
    
    .contact-image {
        width: 100%;
        max-width: 500px;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 40px 20px;
    }
    
    .process-step {
        flex: 0 0 30%;
    }
    
    .process-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 32px);
        padding: 0;
    }

    .header {
        width: calc(100% - 24px);
        top: 12px;
    }
    
    .header-inner {
        padding: 0 16px;
        height: 52px;
    }
    
    .header.scrolled .header-inner,
    .header.scrolled1 .header-inner {
        width: 100%;
        height: 56px;
        padding: 0 20px;
    }

    .header.scrolled1 {
        top: 0;
        width: 100%;
    }
    
    .logo-img {
        height: 22px;
    }
    
    .header-search {
        width: 140px;
        height: 32px;
    }
    
    .lang-switch {
        width: 32px;
        height: 32px;
    }
    
    .lang-switch svg {
        width: 16px;
        height: 16px;
    }
    
    .banner {
        min-height: 700px;
    }
    
    .banner-content {
        padding: 120px 24px 0;
    }
    
    .title-line1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .title-line2 {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .banner-btn {
        position: static;
        height: 40px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-text {
        font-size: 13px;
        padding: 0 8px 0 18px;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .btn-icon svg {
        width: 10px;
        height: 10px;
    }
    
    .banner-dots {
        bottom: 40px;
        right: 24px;
    }
    
    .contact-form-inner {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-input {
        width: 100%;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.large-card {
        grid-column: span 1;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .about-text h3 {
        font-size: 36px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .solution-grid {
        grid-template-columns: 338px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        flex: 1;
    }
    
    .partner-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-qr {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-divider-section {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-divider-line {
        width: 200px;
    }
}




.about-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-section-title {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4;
    margin-top: 12px;
}

.about-title-line .about-line-blue-long {
    width: 38px;
    height: 3px;
    background: #003c81;
}

.about-title-line .about-line-orange {
    width: 23px;
    height: 3px;
    background: #ff4c00;
}

.about-title-line .about-line-blue-short {
    width: 78px;
    height: 3px;
    background: #003c81;
}


.about-breadcrumb {
    position: relative;
    width: 100%;
    height: 56px;
}

.about-breadcrumb-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 435px;
    height: 56px;
    background: rgba(0, 60, 129, 1);
    border-radius: 0 28px 28px 0;
    z-index: 0;
}

.about-breadcrumb-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 435px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    z-index: 1;
}

.about-breadcrumb-active {
    color: #fff;
    font-weight: 700;
}


.about-company {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.about-company-deco {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.about-page{
    position:relative;
}
.about-company-inner {
    text-align: center;
}

.about-company-name {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 47px;
    font-weight: 700;
    font-style: oblique;
    color: #003c81;
    text-align: center;
    line-height: 40px;
    margin-bottom: 30px;
}

.about-company-desc {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.about-company-desc p {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 22px;
    font-weight: 400;
    font-style: oblique;
    color: #003c81;
    text-align: center;
    line-height: 40px;
    margin-bottom: 16px;
}


.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-direction: row;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
    width: 30%;
}

.about-stat-number {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #003c81;
    line-height: 1.5;
}

.about-stat-unit {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #003c81;
    line-height: 40px;
}

.about-stat-label {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-align: center;
    line-height: 40px;
}


.about-video {
    position: relative;
    width: 100%;
    height: 920px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 129, 1);
    z-index: 1;
}

.about-video-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-video-play {
    width: 197px;
    height: 197px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.about-video-play:hover {
    opacity: 1;
}

.about-video-text {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}


.about-timeline {
    position: relative;
    width: 100%;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url(../images/u1383.png) no-repeat left center;
    background-size: contain;
}

.about-timeline-blue-bar {
    width: 100%;
    height: 11px;
    position: absolute;
    background-color: rgba(0, 60, 129, 1);
    opacity: 0.1;
    width: 150%;
    z-index: -1;
}

.about-timeline-divider {
    width: 160%;
    height: 1px;
    background: rgba(0, 60, 129, 1);
    margin: 30px 0;
    position: absolute;
    left: -20%;
    z-index: -1;
}

.about-timeline-nav {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
    justify-content: center;
}

.about-timeline-arrow {
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    background: #003d81;
    border-radius: 50%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.about-timeline-arrow:hover {
    opacity: 1;
}

.about-timeline-arrow img {
    width: 100%;
    height: 100%;
    width: 8px;
    height: 14px;
}

.about-timeline-years {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    width: 100%;
}

.about-timeline-year {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #003c81;
    cursor: pointer;
    transition: color 0.3s ease;
}

.about-timeline-year.active {
    color: #ff4c00;
}

.about-timeline-year:hover {
    opacity: 0.7;
}

.about-timeline-year.active:hover {
    opacity: 1;
}


.about-timeline-dots {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.about-timeline-dot {
    width: 20px;
    padding: 10px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #003c81;
    z-index: 1;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.about-timeline-dot.active {
    background: rgb(255 76 0 / 50%);
    border: 1px solid #ff4c00;
    z-index: 1;
}
.about-timeline-dot::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: #003d81;
  z-index: -1; 
  opacity:0.21
}
.about-timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #003d81;
    border-radius: 50%;
}
.about-timeline-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #ff4c00;
    border-radius: 50%;
}
.about-timeline-dot.active::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: #ff4c00;
  z-index: 1; 
  opacity:0.21
}

.about-timeline-watermark {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.about-timeline-year-large {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 350px;
    font-weight: 700;
    color: #003c81;
    opacity: 0.17;
    line-height: 1;
    text-align: center;
}

.about-timeline-year-next {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 350px;
    font-weight: 700;
    color: #003c81;
    opacity: 0.06;
    line-height: 1;
    text-align: center;
    margin-top: -80px;
}

.about-timeline-gradient {
    position: absolute;
    right: 0;
    /* transform: translateX(-50%); */
    width: 875px;
    height: 410px;
    top: 120%;
    pointer-events: none;
}


.about-timeline-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: -80px;
    margin-right: 10%;
}

.about-timeline-desc-vline {
    width: 3px;
    height: 26px;
    background: #ff4c00;
    flex-shrink: 0;
}

.about-timeline-desc-text {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #333;
}


.about-culture {
    position: relative;
    width: 100%;
    padding: 80px 0 100px;
    overflow: hidden;
}

.about-culture-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e5ebf2;
    z-index: -1;
}

.about-culture-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-culture-header .about-title-line .about-line-blue-long,
.about-culture-header .about-title-line .about-line-blue-short {
    background: #fff;
}

.about-culture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-culture-card {
    position: relative;
    width: 100%;
    height: 574px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 3px 6px 3.5px rgba(127, 127, 127, 0.996);
}

.about-culture-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-culture-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 129, 1);
    opacity: 0.85;
    z-index: 1;
}

.about-culture-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.about-culture-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.about-culture-card-title {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.about-culture-card-desc {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
}


.about-social {
    padding: 80px 0 100px;
    background: #fff;
}

.about-social-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.about-social-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-social-item-reverse {
    flex-direction: row-reverse;
}

.about-social-img {
    flex: 0 0 679px;
    height: 352px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 60, 129, 1);
    box-shadow: 5px 5px 2.5px rgba(85, 85, 85, 0.3137);
}

.about-social-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-social-title {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-social-desc {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 33px;
}


.about-contact {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.about-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 250, 247, 1);
    z-index: 0;
}

.about-contact-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 844px;
    height: 710px;
    object-fit: cover;
    z-index: 0;
}

.about-contact-inner {
    position: relative;
    z-index: 2;
}

.about-contact-header {
    text-align: left;
}

.about-contact-header .about-title-line {
    justify-content: flex-start;
}

.about-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.about-contact-info-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.about-contact-qr {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}
.about-xm{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.about-contact-qr img {
    width: 60px;
    height: 119px;
    margin-right: 20px;
}
.about-contact-qr img:nth-child(3){
     width: 75px;
}

@media (max-width: 1440px) {
    .about-banner-content {
        padding: 0 40px;
    }
    .about-stats {
        gap: 30px;
    }
    .about-culture-cards {
        gap: 20px;
    }
    .about-social-img {
        flex: 0 0 50%;
        height: 300px;
    }
}

@media (max-width: 1200px) {
    .about-banner {
        height: 500px;
    }
    .about-banner-title {
        font-size: 40px;
    }
    .about-company-name {
        font-size: 36px;
    }
    .about-company-desc p {
        font-size: 18px;
        line-height: 32px;
    }
    .about-stat-number {
        font-size: 48px;
    }
    .about-stat-unit {
        font-size: 32px;
    }
    .about-stat-label {
        font-size: 22px;
    }
    .about-timeline-year-large {
        font-size: 140px;
    }
    .about-timeline-year-next {
        font-size: 140px;
    }
    .about-timeline-years {
        gap: 30px;
    }
    .about-timeline-year {
        font-size: 28px;
    }
    .about-culture-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
    .about-culture-card {
        height: 450px;
    }
    .about-social-item,
    .about-social-item-reverse {
        flex-direction: column;
    }
    .about-social-img {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 400px;
    }
    .about-banner-content {
        padding: 0 24px;
        justify-content: center;
    }
    .about-banner-title {
        font-size: 32px;
    }
    .about-banner-subtitle {
        font-size: 16px;
    }
    .about-company-name {
        font-size: 28px;
    }
    .about-company-desc p {
        font-size: 16px;
        line-height: 28px;
    }
    .about-stats {
        gap: 20px;
    }
    .about-stat-number {
        font-size: 36px;
    }
    .about-stat-unit {
        font-size: 24px;
    }
    .about-stat-label {
        font-size: 18px;
    }
    .about-video {
        height: 500px;
    }
    .about-video-play {
        width: 120px;
        height: 120px;
    }
    .about-timeline-year-large {
        font-size: 80px;
    }
    .about-timeline-year-next {
        font-size: 80px;
    }
    .about-timeline-desc-text {
        font-size: 18px;
    }
    .about-timeline-years {
        gap: 16px;
    }
    .about-timeline-year {
        font-size: 20px;
    }
    .about-timeline-nav {
        gap: 20px;
    }
    .about-culture-card {
        height: 380px;
    }
    .about-culture-card-title {
        font-size: 28px;
    }
    .about-social-title {
        font-size: 24px;
    }
    .about-social-desc {
        font-size: 16px;
        line-height: 28px;
    }
}


.prolist-page {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    background: #FFFFFF;
}


.prolist-banner {
    position: relative;
    width: 100%;
    /* max-width: 1920px; */
    height: 700px;
    margin-top: 80px;
}
.prolist-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
 background: linear-gradient(to right, rgba(0,0,0,0.2), transparent);
  z-index: 1;
}
.prolist-banner-img {
    /* position: absolute; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prolist-banner-title-line {
    position: absolute;
    left: calc(12.29% + 10px);
    top: 43%;
    width: 52px;
    height: 4px;
    background: #FF4C00;
    transform: rotate(270deg);
    z-index: 2;
}

.prolist-banner-title {
    position: absolute;
    left: calc(12.29% + 66px);
    top: 38%;
    font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", sans-serif;
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
    margin: 0;
    z-index: 2;
}

.prolist-banner-subtitle {
    position: absolute;
    left: calc(12.29% + 34px);
    top: 50%;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    margin: 0;
    z-index: 2;
}


.prolist-breadcrumb {
    position: absolute;
    left: 0;
    top: -28px;
    width: 37%;
    height: 56px;
    z-index: 10;
}

.prolist-breadcrumb-bg {
    width: 100%;
    height: 100%;
    background: #003C81;
    border-radius: 0 28px 28px 0;
}

.prolist-breadcrumb-text {
    position: absolute;
    left: 260px;
    top: 15px;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
}


.prolist-content {
    display: flex;
    gap: 30px;
    padding: 40px calc(12.29% + 10px);
    padding-top: 80px;
}


.prolist-sidebar {
    width: 385px;
    flex-shrink: 0;
}

.prolist-cat-main {
    position: relative;
    display: flex;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: flex-start;
}
.prolist-cat-sub:hover a span{
    color: #ea5504;
}
.prolist-navbox{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.prolist-navbox2{
    display: none;
}
.prolist-cat-main.active {
    margin-bottom: 10px;
}

.prolist-cat-line {
    position: absolute;
    left: 4px;
    top: 19px;
    width: 34px;
    height: 4px;
    background: #FF4C00;
    transform: rotate(270deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prolist-cat-main.active .prolist-cat-line {
    opacity: 1;
}

.prolist-cat-name {
    padding-left: 52px;
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 29px;
    color: #000000;
    white-space: nowrap;
}

.prolist-cat-main.active .prolist-cat-name {
    color: #FF4C00;
}

.prolist-cat-arrow {
    /* position: absolute; */
    right: 66px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 14px;
    height: 24px;
    transition: transform 0.3s ease;
    margin-right: 30px;
}

.prolist-cat-main.active .prolist-cat-arrow {
    transform: translateY(-50%) rotate(90deg);
    top: 9%;
}

.prolist-cat-sub {
    padding: 8px 0 8px 52px;
    cursor: pointer;
}
.prolist-cat-main.active .prolist-navbox2{
    display: block;
}
.prolist-sub-name {
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #000000;
    white-space: nowrap;
}

.prolist-cat-sub.active .prolist-sub-name {
    color: #FF4C00;
}

.prolist-divider {
    height: 1px;
    background: #003C81;
    margin: 16px 19px;
}


.prolist-consult {
    margin-top: 30px;
    padding-top: 30px;
    /* border-top: 1px solid #003C81; */
    position: relative;
}

.prolist-consult-title-line {
    position: absolute;
    left: 4px;
    top: 55px;
    width: 34px;
    height: 4px;
    background: #003C81;
    transform: rotate(270deg);
}

.prolist-consult-title {
    padding-left: 52px;
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #000000;
    margin: 0 0 20px 0;
}

.prolist-consult-input {
    width: calc(100% - 38px);
    height: 45px;
    margin-left: 19px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #003C81;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #000000;
    background: transparent;
    outline: none;
}

.prolist-consult-btn {
    width: 199px;
    height: 56px;
    margin-left: 19px;
    background: #003C81;
    color: #FFFFFF;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}


.prolist-right {
    flex: 1;
    min-width: 0;
}


.prolist-section-title {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
}

.prolist-featured-title {
    text-align: center;
    margin-bottom: 40px;
}

.prolist-section-title-text,
.prolist-featured-title-text {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #000000;
    text-align: center;
    margin: 0;
    padding-top: 10px;
}

.prolist-section-title-deco,
.prolist-featured-title-deco {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-top: 10px;
}

.prolist-deco-blue1 {
    width: 38px;
    height: 3px;
    background: #003C81;
    transform: rotate(180deg);
}

.prolist-deco-orange {
    width: 23px;
    height: 3px;
    background: #FF4C00;
    transform: rotate(180deg);
}

.prolist-deco-blue2 {
    width: 78px;
    height: 3px;
    background: #003C81;
    transform: rotate(180deg);
}


.prolist-showcase {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 60px;
    flex-direction: row;
    flex-wrap: wrap;
}

.prolist-showcase-card {
    position: relative;
    width: 325px;
    height: 484px;
}

.prolist-showcase-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
}

.prolist-showcase-img {
    position: absolute;
    object-fit: contain;
    max-width: 100%;
    max-height: 400px;
}

.prolist-showcase-card:nth-child(1) .prolist-showcase-img { left: 20px; top: 18px; width: 285px; height: 383px; }
.prolist-showcase-card:nth-child(2) .prolist-showcase-img { left: 7px; top: 0; width: 310px; height: 410px; }
.prolist-showcase-card:nth-child(3) .prolist-showcase-img { left: 0; top: 15px; width: 320px; height: 392px; }

.prolist-showcase-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #000000;
    white-space: nowrap;
}


.prolist-more {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

.prolist-more-card {
    position: relative;
    width: 325px;
    height: 484px;
}

.prolist-more-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
}

.prolist-more-img {
    position: absolute;
    object-fit: contain;
    max-width: 100%;
    max-height: 400px;
}

.prolist-more-card:nth-child(1) .prolist-more-img { left: 17px; top: 34px; width: 285px; height: 336px; }
.prolist-more-card:nth-child(2) .prolist-more-img { left: 26px; top: -28px; width: 276px; height: 404px; }
.prolist-more-card:nth-child(3) .prolist-more-img { left: 31px; top: 36px; width: 264px; height: 333px; }

.prolist-more-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #000000;
    white-space: nowrap;
}


.prolist-showcase-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.prolist-nav-btn {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prolist-nav-prev {
    background: #F2F2F2;
}

.prolist-nav-prev img {
    transform: rotate(180deg);
    width: 31px;
    height: 20px;
}

.prolist-nav-next {
    background: #003C81;
}

.prolist-nav-next img {
    width: 31px;
    height: 20px;
}

.prolist-nav-dots {
    display: flex;
    align-items: center;
    gap: 25px;
}

.prolist-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FF4C00;
    opacity: 0.24;
}

.prolist-dot.active {
    width: 39px;
    border-radius: 8px;
    opacity: 1;
}


.prolist-featured-section {
    width: 100%;
    margin-top: 80px;
}


.prolist-featured {
    position: relative;
    width: 100%;
    height: 772px;
}

.prolist-featured-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #003C81;
    opacity: 0.1;
}


.prolist-featured-title {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 45px;
}


.prolist-featured-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 56px;
    padding: 0 260px;
    margin-top: 35px;
}
.prolist-featured-inner{
    display:flex;
    transition: transform 0.4s ease;
}
.prolist-featured-card{
    
}

.prolist-featured-card {
    position: relative;
    width: 333px;
    height: 455px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prolist-featured-card-bg {
    display: none;
}

.prolist-featured-img {
    margin-top: 15px;
    width: 280px;
    height: 280px;
    object-fit: contain;
}

.prolist-featured-model {
    margin-top: 15px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #000000;
    text-align: center;
    /* white-space: nowrap; */
}

.prolist-featured-more {
    margin-top: 10px;
    width: 100px;
    height: 30px;
    background: #003C81;
    color: #FFFFFF;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
}


.prolist-fnav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003C81;
}

.prolist-fnav-prev {
    left: 110px;
}

.prolist-fnav-prev img {
    transform: rotate(180deg);
    width: 31px;
    height: 20px;
}

.prolist-fnav-next {
    right: 110px;
}

.prolist-fnav-next img {
    width: 31px;
    height: 20px;
}


.prolist-fnav-dots {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.prolist-fdot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FF4C00;
    opacity: 0.24;
}

.prolist-fdot.active {
    width: 39px;
    border-radius: 8px;
    opacity: 1;
}


.prolist-showcase-card:hover .prolist-showcase-bg,
.prolist-more-card:hover .prolist-more-bg,
.prolist-featured-card:hover .prolist-featured-card-bg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.prolist-showcase-card:hover .prolist-showcase-img,
.prolist-more-card:hover .prolist-more-img,
.prolist-featured-card:hover .prolist-featured-img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.prolist-featured-more:hover {
    background: #FF4C00;
    transition: background 0.3s ease;
}

.prolist-consult-btn:hover {
    background: #FF4C00;
    transition: background 0.3s ease;
}

.prolist-nav-btn:hover {
    opacity: 0.8;
}

.prolist-fnav-btn:hover {
    opacity: 0.8;
}


@media (max-width: 1600px) {
    .prolist-content {
        padding: 40px 5%;
        padding-top: 80px;
    }
    
    .prolist-featured-inner {
        padding: 0 5%;
        gap: 30px;
    }
    
    .prolist-showcase,
    .prolist-more {
        gap: 15px;
    }
    
    .prolist-showcase-card,
    .prolist-more-card {
        width: 280px;
        height: 420px;
    }
    
    .prolist-featured-card {
        width: 280px;
        height: 400px;
    }
    
    .prolist-featured-img {
        width: 230px;
        height: 240px;
        margin-top: 20px;
    }
    
    .prolist-featured-model {
        font-size: 22px;
        margin-top: 15px;
    }
    
    .prolist-featured-more {
        margin-top: 10px;
    }
    
    .prolist-fnav-prev {
        left: 3%;
    }
    
    .prolist-fnav-next {
        right: 3%;
    }
}

@media (max-width: 1200px) {
    .prolist-content {
        flex-direction: column;
        align-items: center;
        padding: 40px 3%;
        padding-top: 80px;
    }
    
    .prolist-sidebar {
        width: 100%;
        max-width: 400px;
        margin-bottom: 40px;
    }
    
    .prolist-right {
        width: 100%;
    }
    
    .prolist-showcase,
    .prolist-more {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .prolist-showcase-card,
    .prolist-more-card {
        width: calc(33.33% - 15px);
        min-width: 250px;
        height: auto;
    }
    
    .prolist-featured-inner {
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 5%;
    }
    
    .prolist-featured-card {
        width: calc(50% - 15px);
        min-width: 250px;
        height: 380px;
    }
    
    .prolist-featured-img {
        width: 230px;
        height: 240px;
        margin-top: 20px;
    }
    
    .prolist-featured-model {
        font-size: 22px;
        margin-top: 15px;
    }
    
    .prolist-featured-more {
        margin-top: 10px;
    }
    
    .prolist-section-title-text,
    .prolist-featured-title-text {
        font-size: 36px;
    }
    
    .prolist-banner-title {
        font-size: 36px;
    }
    
    .prolist-banner-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .prolist-banner {
        height: 400px;
    }
    
    .prolist-banner-title {
        font-size: 28px;
        left: 5%;
    }
    
    .prolist-banner-subtitle {
        font-size: 14px;
        left: 5%;
        top: 55%;
    }
    
    .prolist-banner-title-line {
        left: 2%;
    }
    
    .prolist-breadcrumb {
        width: 300px;
        top: 348px;
    }
    
    .prolist-breadcrumb-text {
        left: 30px;
        font-size: 16px;
    }
    
    .prolist-showcase-card,
    .prolist-more-card {
        width: 100%;
        min-width: auto;
        height: 350px;
    }
    
    .prolist-featured-inner {
        padding: 0 5%;
    }
    
    .prolist-featured-card {
        width: 100%;
        min-width: auto;
        height: 380px;
    }
    
    .prolist-featured-img {
        width: 200px;
        height: 220px;
        margin-top: 20px;
    }
    
    .prolist-featured-model {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .prolist-featured-more {
        margin-top: 10px;
    }
    
    .prolist-section-title-text,
    .prolist-featured-title-text {
        font-size: 28px;
    }
    
    .prolist-cat-name {
        font-size: 24px;
    }
    
    .prolist-sub-name {
        font-size: 20px;
    }
    
    .prolist-consult-title {
        font-size: 28px;
    }
    
    .prolist-consult-input {
        font-size: 16px;
    }
    
    .prolist-showcase-name,
    .prolist-more-name {
        font-size: 20px;
    }
    
    .prolist-nav-btn,
    .prolist-fnav-btn {
        width: 44px;
        height: 44px;
    }
}

.prodetail-page {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.prodetail-bg-top {
    position: absolute;
    top: 102px;
    left: 0;
    width: 100%;
    height: 763px;
    background-color: rgba(0, 60, 129, 0.1);
    z-index: 0;
}

.prodetail-container {
    /* max-width: 1920px; */
    margin: 0 auto;
    /* padding: 0 260px; */
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    margin-top: 125px;
}

.prodetail-breadcrumb {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.prodetail-breadcrumb-bg {
    width: 561px;
    height: 56px;
    background-color: #003c81;
    border-radius: 28px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.prodetail-breadcrumb-text {
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #ffffff;
    margin-left: -300px;
    z-index: 1;
}

.prodetail-main {
    display: flex;
    gap: 110px;
    margin-top: 30px;
}

.prodetail-gallery {
    display: flex;
    flex-direction: column;
    gap: 46px;
    flex: 0 0 575px;
}

.prodetail-gallery-main {
    width: 585px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.prodetail-main-img {
    width: 450px;
    height: 440px;
    object-fit: contain;
    display: block;
}

.prodetail-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.prodetail-arrow-prev {
    left: -72px;
}

.prodetail-arrow-prev img {
    width: 15px;
    height: 27px;
}

.prodetail-arrow-next {
    right: -72px;
}

.prodetail-arrow-next img {
    width: 15px;
    height: 27px;
    transform: rotate(180deg);
}

.prodetail-gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 11px;
}

.prodetail-thumb {
    width: 112px;
    height: 160px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.prodetail-thumb.active {
    border-color: #003c81;
}

.prodetail-thumb img {
    width: 112px;
    height: 160px;
    object-fit: contain;
}

.prodetail-gallery-hint {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #aaaaaa;
}

.prodetail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prodetail-title {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 65px;
    color: #000000;
    margin: 0;
    line-height: 1;
}

.prodetail-category {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #000000;
    margin: 30px 0 0 0;
    line-height: 1;
}

.prodetail-category-line {
    width: 142px;
    height: 8px;
    background-color: #ff4c00;
    margin-top: 40px;
    margin-bottom: 50px;
}

.prodetail-spec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.prodetail-spec-item {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    line-height: 40px;
}

.prodetail-contact-btn {
    width: 175px;
    height: 45px;
    background-color: #003c81;
    color: #ffffff;
    border: none;
    border-radius: 28px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.prodetail-contact-btn:hover {
    background-color: #0056b3;
}

.prodetail-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
    margin-bottom: 30px;
}

.prodetail-section-title-text {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #000000;
    margin: 0;
}

.prodetail-section-title-deco {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.prodetail-deco-blue-short {
    width: 38px;
    height: 3px;
    background-color: #003c81;
}

.prodetail-deco-orange {
    width: 23px;
    height: 3px;
    background-color: #ff4c00;
}

.prodetail-deco-blue-long {
    width: 78px;
    height: 3px;
    background-color: #003c81;
}

.prodetail-desc-section {
    margin-bottom: 60px;
}

.prodetail-specs-section {
    margin-bottom: 60px;
}

.prodetail-sub-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.prodetail-sub-line {
    width: 35px;
    height: 3px;
    background-color: #ff4c00;
    transform: rotate(270deg);
    flex-shrink: 0;
}

.prodetail-sub-text {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 35px;
    color: #000000;
}

.prodetail-desc-text {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 40px;
    color: #000000;
}

.prodetail-desc-text p {
    margin: 0 0 20px 0;
    text-indent: 2em;
}

.prodetail-desc-text p:last-child {
    margin-bottom: 0;
}

.prodetail-specs-grid {
    display: flex;
    /* grid-template-columns: 332px 332px; */
    /* gap: 329px; */
    flex-direction: row;
    justify-content: space-between;
}

.prodetail-specs-col {
    display: flex;
    flex-direction: column;
    width: 49%;
}

.prodetail-specs-header-left {
    height: 56px;
    background-color: #003c81;
    color: #ffffff;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    justify-content: space-around;
}

.prodetail-specs-header-right {
    height: 56px;
    background-color: #003c81;
    color: #ffffff;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-left: none;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.prodetail-spec-row {
    display: flex;
    height: 56px;
}

.prodetail-spec-row-bottom {
    display: flex;
    height: 56px;
}

.prodetail-spec-label {
    width: 50%;
    height: 56px;
    background-color: #d9e2ec;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    color: #333333;
    justify-content: center;
}

.prodetail-spec-value {
    width: 50%;
    height: 56px;
    background-color: #f2f5f9;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    color: #333333;
    justify-content: center;
}

.prodetail-specs-col .prodetail-spec-row:last-of-type .prodetail-spec-label,
.prodetail-spec-row-bottom .prodetail-spec-label {
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.prodetail-specs-col .prodetail-spec-row:last-of-type .prodetail-spec-value,
.prodetail-spec-row-bottom .prodetail-spec-value {
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.prodetail-scenes {
    margin-bottom: 80px;
}

.prodetail-scenes-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.prodetail-scenes-line {
    width: 35px;
    height: 3px;
    background-color: #ff4c00;
    transform: rotate(270deg);
}

.prodetail-scenes-text {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 35px;
    color: #000000;
}

.prodetail-scenes-grid {
    display: grid;
    grid-template-columns: 663px 663px;
    gap: 20px 50px;
}

.prodetail-scene-card {
    height: 174px;
    background-color: #003c81;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.prodetail-scene-img {
    width: 290px;
    height: 156px;
    margin: 9px 0 9px 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ff4c00;
    flex-shrink: 0;
}

.prodetail-scene-img img {
    width: 290px;
    height: 156px;
    object-fit: cover;
}

.prodetail-scene-info {
    flex: 1;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prodetail-scene-name {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.prodetail-scene-desc {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.prodetail-custom {
    position: relative;
    margin-bottom: 80px;
    /* padding: 60px 0; */
}

.prodetail-custom-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    height: 350px;
    background-color: rgba(0, 60, 129, 0.1);
    z-index: 0;
}

.prodetail-custom-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    align-items: center;
}

.prodetail-custom-text-block {
    flex: 1;
    min-width: 0;
    margin-top: 4%;
}

.prodetail-custom-img {
    flex: 0 0 564px;
    width: 564px;
    height: 423px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.prodetail-custom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prodetail-custom-title {
    display: flex;
    align-items: center;
    gap: 47px;
    margin-bottom: 40px;
}

.prodetail-custom-line {
    width: 35px;
    height: 3px;
    background-color: #ff4c00;
    transform: rotate(270deg);
}

.prodetail-custom-text {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 35px;
    color: #000000;
}

.prodetail-custom-desc {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 40px;
    color: #000000;
    text-indent: 2em;
}

.prodetail-custom-desc p {
    margin: 0;
}

.prodetail-custom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    flex-shrink: 0;
}

.prodetail-custom-btn-circle {
    width: 53px;
    height: 53px;
    background-color: #003c81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.prodetail-custom-btn-circle:hover {
    background-color: #0056b3;
}

.prodetail-custom-btn-circle img {
    width: 24px;
    height: 24px;
}

.prodetail-custom-btn-text {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #000000;
    text-align: center;
    line-height: 1.2;
}

.prodetail-custom-btn-line {
    width: 130px;
    height: 1px;
    background-color: #000000;
}

.prodetail-related {
    margin-bottom: 60px;
}

.prodetail-related-title {
    display: flex;
    align-items: center;
    gap: 47px;
    margin-bottom: 40px;
}

.prodetail-related-line {
    width: 35px;
    height: 3px;
    background-color: #ff4c00;
    transform: rotate(270deg);
}

.prodetail-related-text {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 35px;
    color: #000000;
}

.prodetail-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prodetail-related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    filter: drop-shadow(1px 3px 5px rgba(215, 215, 215, 0.349));
    padding: 20px;
}

.prodetail-related-img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}

.prodetail-related-name {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.prodetail-related-more {
    width: 100px;
    height: 30px;
    background-color: #003c81;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.prodetail-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.prodetail-lightbox.active {
    display: flex;
}

.prodetail-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.prodetail-lightbox-content {
    position: relative;
    z-index: 1001;
    max-width: 80%;
    max-height: 80%;
}

.prodetail-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.prodetail-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.prodetail-lightbox-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    display: block;
}

.prodetail-lightbox-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.prodetail-lightbox-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1400px) {
    .prodetail-container {
        padding: 0 60px;
    }

    .prodetail-breadcrumb-bg {
        width: 361px;
    }

    .prodetail-breadcrumb-text {
        margin-left: -200px;
    }

    .prodetail-main {
        flex-direction: column;
        gap: 40px;
    }

    .prodetail-gallery {
        flex: none;
        width: 100%;
        max-width: 585px;
        margin: 0 auto;
    }

    .prodetail-arrow-prev {
        left: 0;
    }

    .prodetail-arrow-next {
        right: 0;
    }

    .prodetail-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .prodetail-scenes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .prodetail-title {
        font-size: 45px;
    }

    .prodetail-category {
        font-size: 35px;
    }

    .prodetail-section-title-text {
        font-size: 35px;
    }

    .prodetail-tab-text {
        font-size: 28px;
    }

    .prodetail-tabs-nav {
        gap: 150px;
    }

}

@media (max-width: 768px) {
    .prodetail-container {
        padding: 0 20px;
    }

    .prodetail-breadcrumb-bg {
        width: 261px;
    }

    .prodetail-breadcrumb-text {
        margin-left: -150px;
        font-size: 16px;
    }

    .prodetail-gallery-main {
        width: 100%;
        height: auto;
    }

    .prodetail-main-img {
        width: 100%;
        height: auto;
    }

    .prodetail-thumb {
        width: 70px;
        height: 100px;
    }

    .prodetail-thumb img {
        width: 70px;
        height: 100px;
    }

    .prodetail-title {
        font-size: 32px;
    }

    .prodetail-category {
        font-size: 24px;
        margin-top: 20px;
    }

    .prodetail-category-line {
        width: 100px;
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .prodetail-spec-item {
        font-size: 16px;
    }

    .prodetail-spec-list {
        gap: 30px;
        margin-bottom: 40px;
    }

    .prodetail-contact-btn {
        width: 140px;
        height: 40px;
        font-size: 16px;
    }

    .prodetail-section-title-text {
        font-size: 28px;
    }

    .prodetail-tab-text {
        font-size: 22px;
    }

    .prodetail-tabs-nav {
        gap: 80px;
    }

    .prodetail-desc-text {
        font-size: 18px;
        line-height: 32px;
    }

    .prodetail-custom-desc {
        font-size: 18px;
        line-height: 32px;
    }

    .prodetail-scenes-text,
    .prodetail-custom-text,
    .prodetail-related-text {
        font-size: 26px;
    }

    .prodetail-scene-card {
        flex-direction: column;
        height: auto;
    }

    .prodetail-scene-img {
        width: 100%;
        margin: 0;
        border-radius: 10px 10px 0 0;
    }

    .prodetail-scene-info {
        padding: 15px;
    }

    .prodetail-scene-name {
        font-size: 20px;
    }

    .prodetail-scene-desc {
        font-size: 14px;
    }

    .prodetail-related-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prodetail-related-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .prodetail-custom-content {
        flex-direction: column;
    }

    .prodetail-custom-img {
        flex: none;
        width: 100%;
        height: auto;
    }

    .prodetail-custom-img img {
        width: 100%;
        height: auto;
    }

}

.solution-page {
    width: 100%;
    /* overflow: hidden; */
    position: relative;
}

.solution-banner {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
}

.solution-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-banner .container {
    position: relative;
    z-index: 1;
}

.solution-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
}

.solution-banner-title {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}

.solution-banner-line {
    width: 52px;
    height: 4px;
    background-color: #ff4c00;
    transform: rotate(270deg);
    flex-shrink: 0;
    margin-left: -24px;
    margin-right: -24px;
}

.solution-banner-title h1 {
    font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", sans-serif;
    font-weight: 500;
    font-size: 50px;
    color: #ffffff;
    margin: 0;
    padding-left: 0;
}

.solution-banner-subtitle {
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin: 0;
    padding-left: 28px;
    white-space: nowrap;
}

.solution-breadcrumb {
    position: relative;
    width: 100%;
    height: 56px;
    margin-top: -28px;
}

.solution-breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 435px;
    height: 56px;
    background-color: #003c81;
    border-radius: 0 28px 28px 0;
}

.solution-breadcrumb .container {
    position: relative;
    z-index: 1;
    height: 56px;
    display: flex;
    align-items: center;
}

.solution-breadcrumb-text {
    padding-left: 220px;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #ffffff;
}

.solution-section-header {
    padding: 45px 0 25px;
}

.solution-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.solution-section-title {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #000000;
    margin: 0;
    text-align: center;
}

.solution-title-lines {
    display: flex;
    align-items: center;
    gap: 3px;
}

.solution-title-line-blue-short {
    width: 38px;
    height: 3px;
    background-color: #003c81;
}

.solution-title-line-orange {
    width: 23px;
    height: 3px;
    background-color: #ff4c00;
}

.solution-title-line-blue-long {
    width: 78px;
    height: 3px;
    background-color: #003c81;
}

.solution-main-content {
    padding-bottom: 60px;
}

.solution-layout {
    display: flex;
    gap: 36px;
}

.solution-sidebar {
    width: 358px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.solution-cat-nav {
    display: flex;
    flex-direction: column;
}

.solution-cat-group {
    display: flex;
    flex-direction: column;
}

.solution-cat-group-header {
    display: flex;
    align-items: center;
    padding: 0 52px;
    height: 50px;
    position: relative;
    cursor: pointer;
}

.solution-cat-group-line {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    width: 34px;
    height: 4px;
    background-color: #ff4c00;
    opacity: 0;
    transition: all 0.3s ease;
}

.solution-cat-group.active .solution-cat-group-line {
    opacity: 1;
}

.solution-cat-group-title {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #000000;
    flex: 1;
    transition: all 0.3s ease;
}

.solution-cat-group.active .solution-cat-group-title {
    color: #ff4c00;
}

.solution-cat-group-arrow {
    width: 14px;
    height: 24px;
    transition: all 0.3s ease;
}

.solution-cat-group.expanded .solution-cat-group-arrow {
    transform: rotate(90deg);
}

.solution-cat-items {
    display: none;
    flex-direction: column;
    padding: 10px 0;
}

.solution-cat-group.expanded .solution-cat-items {
    display: flex;
}

.solution-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 52px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-cat-item-name {
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #000000;
    transition: all 0.3s ease;
}

.solution-cat-item.active .solution-cat-item-name {
    color: #ff4c00;
}

.solution-cat-divider {
    width: 329px;
    height: 1px;
    background-color: #003c81;
    margin: 15px auto;
}

.solution-consult {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.solution-consult-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 14px;
    margin-bottom: 32px;
}

.solution-consult-line {
    width: 34px;
    height: 4px;
    background-color: #003c81;
    transform: rotate(270deg);
    flex-shrink: 0;
    margin-left: -15px;
    margin-right: -15px;
}

.solution-consult-title {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #000000;
    margin: 0;
}

.solution-consult-form {
    display: flex;
    flex-direction: column;
    gap: 27px;
    padding: 0 0 0 19px;
}

.solution-consult-input {
    width: 305px;
    height: 45px;
    padding: 0;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #000000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d7d7d7;
    outline: none;
    box-sizing: border-box;
}

.solution-consult-input::placeholder {
    color: #999999;
}

.solution-consult-btn {
    width: 199px;
    height: 56px;
    background-color: #003c81;
    border: none;
    border-radius: 30px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.solution-consult-btn:hover {
    background-color: #002a5c;
}

.solution-cards-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-cards-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.solution-card {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.solution-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #003c81;
}

.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 60, 129, 0.5) 0%, rgba(0, 60, 129, 0.2) 100%);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-card-overlay {
    background: rgba(0, 60, 129, 0.6);
}

.solution-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    align-items: flex-start;
}

.solution-card-title {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #ffffff;
    margin: 0 0 30px 0;
    transition: all 0.3s ease;
}

.solution-card-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-card-details {
    opacity: 1;
    transform: translateY(0);
}
.solutionimg{
    width: 25%;
    display: flex;
    position: absolute;
    right: 10%;
    bottom: 10%;
}
.solutionimg a{
    padding: 10px;
    background: #fff;
    margin-left: 10px;
}
.solutionimg img{
    width: 100%;
}
.solution-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.solution-card-features li {
    position: relative;
    padding-left: 30px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    line-height: 2.5;
}

.solution-card-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
}

.solution-card-more {
    font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
}

.solution-related-section {
    padding: 60px 0 100px;
}

.solution-articles-grid {
    display: flex;
    gap: 46px;
    margin-top: 60px;
}

.solution-article-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-article-card:hover {
    transform: translateY(-8px);
}

.solution-article-img {
    width: 100%;
    height: 293px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    filter: drop-shadow(11px 14px 7px rgba(127, 127, 127, 0.35));
    margin-bottom: 27px;
}

.solution-article-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 5px;
}

.solution-article-title {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

.solution-article-desc {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.8;
    
  /*! autoprefixer: off */
    
  /* autoprefixer: on */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.solution-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.solution-article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.solution-article-date img {
    width: 16px;
    height: 16px;
}

.solution-article-read {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    text-decoration: underline;
    cursor: pointer;
}

.swiper-slide {
      text-align: center;
      font-size: 18px;
      /* background: #fff; */

      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      transition: 300ms;
      transform: scale(0.8);
      flex-direction: column;
    }
	.swiper-slide-active,.swiper-slide-duplicate-active{
      transform: scale(1);
	}
.swiper-slide-active .category-name{
    opacity: 1;
 }
.swiper-container-cp{
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 30px 0;
}
.swiper-container-cp a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.swiper-container-cp img{
    width:55%;
}
.clearfix:after{ content:""; display:block; clear:both; height:0; visibility:hidden;}
.clearfix{ zoom:1;}

.main{ padding:60px 0; margin: 0 auto; max-width: 1000px;}
.numCount{margin: 0 -10px;width: 70%;}
.numCount li{ float: left; width: 25%; text-align: center;}
.numCount li .item{ margin: 0 10px;}
.numCount li .numU{ line-height:1.3;}
.numCount li .numCX{font-size:54px;color:#003C81;font-weight: bold;}
.numCount li .numU .unitC{font-size:100%;line-height: 1.3;margin-left: 0.3em;font-size: 50px;font-weight: bold;color: #003c81;}
.numCount li .numU sup{/* vertical-align: top; */}
.numCount li .numU sub{vertical-align:baseline;}
.numCount li .indc{
    font-size: 20px;
    font-weight: 600;
    color: #003c81;
}
@media (max-width:800px){
	.numCount li .numCX{ font-size:36px; }
}
@media (max-width:640px){
	.numCount li .numCX{ font-size:7vw; }
}
@media (max-width:480px){
	.numCount{ font-size:0.5vw;}
}
.abouotsz{
    position: absolute;
    z-index: 2;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.abouotsza{
    width: 80%;
    z-index: 2;
    /* margin: 0; */
}
.abouotszbg{
    background: #fff;
    width: 70%;
    border-radius: 0 100px 100px 0;
    padding: 70px 0;
    position: absolute;
    filter: drop-shadow(5px 5px 2.5px rgba(11, 41, 76, 1));
}
.index-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 30px;
    filter: drop-shadow(0px 2px 2.5px rgba(0, 0, 0, 0.34901960784313724));
}
.index-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
.index-card-arrow {
    /* position: absolute; */
    right: 20px;
    bottom: 23px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s ease;
}

 .index-card-arrow:hover {
    background: #003c81;
}

.index-card-arrow img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(1596%) hue-rotate(184deg) brightness(94%) contrast(103%);
    transition: filter 0.3s ease;
}
 .index-card-arrow:hover img {
    filter: none;
}
.prolistcp{
    width: 31%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
 .prolistcp:hover{
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
     transition: transform 0.3s ease;
 }
.prolistcp a{display: flex;flex-direction: column;align-content: center;align-items: center;}
.prolistcp img{
}
.prolistcp span{
    font-size: 22px;
    padding: 5px;
    text-align: center;
} 
.aboutsyg{
    left: 0;
}
.aboutxyg{
    right: 0;
    transform: scaleX(-1);
}

.contact-page {
    /* width: 1920px; */
    margin: 0 auto;
    background: #FFFFFF;
    display: flex;
    position: relative;
    flex-direction: column;
}


.contact-banner {
    width: 1920px;
    height: 788px;
    display: grid;
    grid-template-areas: "stack";
    grid-template-rows: 1fr;
    overflow: hidden;
}

.contact-banner > * {
    grid-area: stack;
}

.contact-breadcrumb {
    width: 1920px;
    height: 56px;
    display: grid;
    grid-template-areas: "stack";
    grid-template-columns: 1fr;
    overflow: hidden;
}

.contact-breadcrumb > * {
    grid-area: stack;
}

.contact-breadcrumb::before {
    content: "";
    width: 435px;
    height: 56px;
    background: #003C81;
    border-radius: 0 28px 28px 0;
    justify-self: start;
    align-self: stretch;
}

.breadcrumb-text {
    display: flex;
    align-items: center;
    font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
    white-space: nowrap;
    padding-left: 260px;
    height: 56px;
    width: 100%;
}


.contact-main {
    width: 1920px;
    display: flex;
    align-items: flex-start;
    padding-top: 33px;
    padding-bottom: 100px;
    box-sizing: border-box;
    justify-content: space-between;
}

.contact-left {
    width: 50%;
    /* margin-left: 260px; */
    display: flex;
    flex-direction: column;
}

.contact-section-title {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #000000;
    margin: 0;
}

.contact-title-underline {
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 26px;
}

.underline-blue-short {
    width: 38px;
    height: 3px;
    background: #003C81;
}

.underline-orange {
    width: 23px;
    height: 3px;
    background: #FF4C00;
    margin-left: 3px;
}

.underline-blue-long {
    width: 78px;
    height: 3px;
    background: #003C81;
    margin-left: 3px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 23px;
    padding-bottom: 23px;
}

.contact-info-divider {
    width: 447px;
    height: 1px;
    background: rgba(121, 121, 121, 1);
}

.contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact-info-text {
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
}

.contact-right {
    width: 50%;
    /* height: 589px; */
    margin-left: 0;
    margin-top: 0;
}

.contact-right-img {
    width: 100%;
    /* height: 589px; */
    object-fit: contain;
    display: block;
}


.contact-bottom {
    /* width: 1920px; */
    display: flex;
    padding-bottom: 0;
    box-sizing: border-box;
    background: #FFFFFF;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contact-bottom-left {
    width: 50%;
    margin-left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 0;
    flex-direction: column;
}

.contact-bottom-img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.contact-bottom-right {
    width: 50%;
    margin-left: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
}

.form-title {
    font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #000000;
    margin: 0;
}

.form-underline {
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 30px;
}


.contact-page-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 26px;
}

.contact-page-input {
    flex: 1;
    width: 45%;
    height: 50px;
    padding: 0 20px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    border-radius: 8px;
    box-sizing: border-box;
}

.contact-page-input::placeholder {
    color: #999999;
}

.contact-page-textarea {
    width: 100%;
    height: 232px;
    padding: 16px 20px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    border-radius: 8px;
    box-sizing: border-box;
    resize: none;
}

.contact-page-textarea::placeholder {
    color: #999999;
}

.form-submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.contact-page-submit {
    width: 298px;
    height: 40px;
    font-family: "OPPO Sans 4.0", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    background: #003C81;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-page-submit:hover {
    background: #002a5c;
}
.case-detail-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0 60px 0;
}

.case-section {
  margin-bottom: 80px;
}
.case-section:last-child {
  margin-bottom: 0;
}

.case-title-center {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: #000000;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.case-title-left {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: #000000;
  text-align: left;
  line-height: 1.5;
  margin: 0;
}

.case-title-decoration {
  display: flex;
  gap: 4px;
  height: 3px;
  margin-top: 20px;
}
.case-title-decoration--center {
  justify-content: center;
}
.case-title-decoration--left {
  justify-content: flex-start;
}
.deco-line-blue-short {
  width: 38px;
  height: 3px;
  background: #003c81;
}
.deco-line-orange {
  width: 23px;
  height: 3px;
  background: #ff4c00;
}
.deco-line-blue-long {
  width: 78px;
  height: 3px;
  background: #003c81;
}

.case-paragraph-dark {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  line-height: 40px;
  margin: 23px 0 0 0;
}

.case-paragraph-light {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 56px;
  margin: 0;
}

.case-section1 .case-paragraph-dark {
  max-width: 1398px;
}

.case-section2-bg {
  width: 100%;
  max-width: 1400px;
  background: linear-gradient(to bottom right, #003c81 0%, rgba(0, 60, 129, 0.69) 100%, #ffffff 100%);
  padding: 73px 50px;
  margin-top: 40px;
  border-radius: 0;
}
.case-section2-bg .case-paragraph-light {
  /* max-width: 787px; */
}

.case-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
  justify-content: space-between;
}
.case-cards + .case-cards {
  margin-top: 19px;
}

.case-card {
  height: 399px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.case-card-large { width: 610px; }
.case-card-wide {width: 49%;}
.case-card-normal {width: 32%;}


.case-card-gradient-blue-white {
  background: linear-gradient(to bottom right, #003c81 0%, rgba(0, 60, 129, 0.69) 53%, #ffffff 100%);
}

.case-card-gradient-white-blue {
  background: linear-gradient(to top left, #003c81 0%, #ffffff 100%);
}

.case-card-gradient-blue-transparent {
  background: linear-gradient(to right, #003c81 0%, rgba(0, 60, 129, 0) 100%);
}

.case-card-gradient-blue-white-3stop {
  background: linear-gradient(to bottom right, #003c81 0%, rgba(0, 60, 129, 0.69) 53%, #ffffff 100%);
}

.case-card-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  /* white-space: nowrap; */
  margin: 0 0 0 0;
}
.case-card-text {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 30px;
  margin: 0;
}

.case-card-1-content {
  padding: 29px 0 0 29px;
  max-width: 552px;
}

.case-card-2-wrapper {
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.case-card-2-content {
  padding: 29px 0 0 19px;
  flex-shrink: 0;
  max-width: 552px;
}
.case-card-2-image {
  width: 339px;
  height: 337px;
  margin: 62px 16px 0 auto;
  flex-shrink: 0;
  object-fit: contain;
}

.case-card-3-image {
  width: 100%;
  height: 288px;
  object-fit: cover;
  display: block;
}
.case-card-3-content {
  padding: 31px 0 0 29px;
  max-width: 401px;
}

.case-card-4-content {
  margin-top: auto;
  padding: 0 0 29px 28px;
  max-width: 401px;
}

.case-card-5-content {
  padding: 31px 0 0 27px;
  max-width: 401px;
}
.case-card-5-image {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
  margin-top: auto;
}

.case-section4 {
  margin-top: 100px;
}

.case-section4-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  gap: 0;
}

.case-dark-block {
  width: 50%;
  /* height: 384px; */
  background: #003c81;
  padding: 24px 33px;
  flex-shrink: 0;
  /* margin-top: 166px; */
  z-index: 1;
}
.case-dark-block .case-paragraph-light {
  max-width: 868px;
}

.case-result-image {
  width: 48%;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: -64px;
}

@media screen and (max-width: 1440px) {
  .case-detail-content {
    padding: 0 40px 60px 40px;
  }
}

@media screen and (max-width: 1200px) {
  .case-title-center,
  .case-title-left {
    font-size: 42px;
  }
  .case-paragraph-dark,
  .case-paragraph-light {
    font-size: 20px;
  }
  .case-paragraph-dark { line-height: 36px; }
  .case-paragraph-light { line-height: 48px; }

  .case-card-large { width: calc(50% - 8px); }
  .case-card-wide { width: calc(50% - 8px); }
  .case-card-normal { width: calc(33.333% - 11px); }

  .case-section4-layout {
    flex-direction: column;
  }
  .case-dark-block {
    width: 100%;
    margin-top: 0;
  }
  .case-result-image {
    width: 100%;
    height: auto;
    max-width: 701px;
    margin: 20px auto 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .case-detail-content {
    padding: 0 20px 40px 20px;
  }
  .case-section {
    margin-bottom: 50px;
  }
  .case-title-center,
  .case-title-left {
    font-size: 32px;
    text-align: center;
  }
  .case-title-decoration--left {
    justify-content: center;
  }
  .case-paragraph-dark,
  .case-paragraph-light {
    font-size: 16px;
  }
  .case-paragraph-dark { line-height: 30px; }
  .case-paragraph-light { line-height: 36px; }

  .case-section2-bg {
    padding: 40px 24px;
    margin-top: 30px;
  }

  .case-card-large,
  .case-card-wide,
  .case-card-normal {
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  .case-card-2-wrapper {
    flex-direction: column;
  }
  .case-card-2-content {
    padding: 24px 0 0 24px;
  }
  .case-card-2-image {
    width: 80%;
    height: auto;
    margin: 16px auto 0 auto;
  }

  .case-card-3-image {
    height: 200px;
  }
  .case-card-3-content {
    padding: 20px 0 24px 24px;
  }

  .case-card-4-content {
    padding: 0 0 24px 24px;
  }

  .case-card-5-content {
    padding: 24px 0 0 24px;
  }
  .case-card-5-image {
    height: 200px;
  }

  .case-section4 {
    margin-top: 50px;
  }
  .case-dark-block {
    height: auto;
    padding: 24px;
  }
  .case-result-image {
    margin-top: 0;
  }
}
.case-list-content {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 0 100px 0;
}
 
.case-list-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
 
.case-list-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: #000000;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}
 
.case-list-title-decoration {
  display: flex;
  gap: 4px;
  height: 3px;
  margin-top: 20px;
  justify-content: center;
}
 
.deco-line-blue-short {
  width: 38px;
  height: 3px;
  background: #003c81;
}
 
.deco-line-orange {
  width: 23px;
  height: 3px;
  background: #ff4c00;
}
 
.deco-line-blue-long {
  width: 78px;
  height: 3px;
  background: #003c81;
}
 
.case-featured-card {
  display: flex;
  align-items: stretch;
  margin: 60px 0 80px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
 
.case-featured-card-content {
  flex: 1;
  background-color: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px 0 0 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
 
.case-featured-card-image {
  flex-shrink: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
 
.case-featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.case-featured-card-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 1.5px;
  color: #000000;
  margin: 0 0 24px 0;
  line-height: 1.4;
}
 
.case-featured-card-desc {
  font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 1.5px;
  color: #000000;
  margin: 0;
  line-height: 1.5;
  max-width: 500px;
}
 
.case-list-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
 
.case-list-card {
  width: calc((100% - 32px) / 3);
  max-width: 456px;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 5px 5px 2.5px rgba(127, 127, 127, 0.349);
  display: flex;
  flex-direction: column;
}
 
.case-list-card-image {
  width: 100%;
  aspect-ratio: 456 / 322;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #d7d7d7;
}
 
.case-list-card-info {
  background: #ffffff;
  padding: 22px 25px;
}
 
.case-list-card-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #000000;
  margin: 0 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.case-list-card-desc {
  font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #000000;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.case-list-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  flex-wrap: wrap;
}
 
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #ffffff;
  color: #666666;
  font-family: "OPPO Sans 4.0", sans-serif;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
 
.page-btn:hover:not(:disabled):not(.page-btn-active) {
  border-color: #003c81;
  color: #003c81;
}
 
.page-btn-active {
  background: #003c81;
  border-color: #003c81;
  color: #ffffff;
}
 
.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
 
.page-ellipsis {
  color: #999999;
  font-size: 14px;
  padding: 0 4px;
}
 
@media screen and (max-width: 1200px) {
  .case-list-title {
    font-size: 42px;
  }
 
  .case-featured-card {
    margin: 50px 0 60px 0;
  }
 
  .case-featured-card-image {
    width: 220px;
  }
 
  .case-featured-card-content {
    padding: 40px;
  }
 
  .case-featured-card-title {
    font-size: 18px;
  }
 
  .case-featured-card-desc {
    font-size: 22px;
  }
 
  .case-list-card {
    width: calc((100% - 32px) / 3);
  }
 
  .case-list-card-title {
    font-size: 18px;
  }
 
  .case-list-card-desc {
    font-size: 14px;
  }
}
 
@media screen and (max-width: 768px) {
  .case-list-content {
    padding: 40px 20px 60px 20px;
  }
 
  .case-list-title {
    font-size: 32px;
  }
 
  .case-list-header {
    margin-bottom: 40px;
  }
 
  .case-featured-card {
    flex-direction: column;
    margin: 40px 0 50px 0;
  }
 
  .case-featured-card-content {
    padding: 30px 24px;
    border-radius: 20px 20px 0 0;
  }
 
  .case-featured-card-image {
    width: 100%;
    height: 240px;
    border-radius: 0 0 20px 20px;
  }
 
  .case-featured-card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
 
  .case-featured-card-desc {
    font-size: 20px;
    max-width: 100%;
  }
 
  .case-list-cards {
    gap: 16px;
  }
 
  .case-list-card {
    width: 100%;
    max-width: 100%;
  }
 
  .case-list-card-title {
    font-size: 18px;
  }
 
  .case-list-card-desc {
    font-size: 14px;
  }
 
  .case-list-pagination {
    margin-top: 40px;
  }
}
.newslist-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 28px 100px;
}

@media screen and (max-width: 1440px) and (min-width: 993px) {
  .newslist-content {
    width: calc(100% - 240px);
    max-width: none;
  }
}

@media screen and (max-width: 992px) and (min-width: 769px) {
  .newslist-content {
    width: calc(100% - 40px);
  }
}

.newslist-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.newslist-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: #000000;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.newslist-title-decoration {
  display: flex;
  gap: 4px;
  height: 3px;
  margin-top: 20px;
  justify-content: center;
}

.newslist-deco-line-blue-short {
  width: 38px;
  height: 3px;
  background: #003c81;
}

.newslist-deco-line-orange {
  width: 23px;
  height: 3px;
  background: #ff4c00;
}

.newslist-deco-line-blue-long {
  width: 78px;
  height: 3px;
  background: #003c81;
}

.newslist-body {
  display: flex;
  gap: 94px;
  align-items: flex-start;
}

.newslist-sidebar {
  flex-shrink: 0;
  width: 292px;
  display: flex;
  flex-direction: column;
}

.newslist-tabs {
  display: flex;
  flex-direction: column;
}

.newslist-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #003c81;
  transition: color 0.3s ease;
}

.newslist-tab:first-child {
  /* border-top: 1px solid #003c81; */
}

.newslist-tab:hover {
  color: #ff4c00;
}

.newslist-tab--active {
  color: #ff4c00;
}

.newslist-tab-text {
  line-height: 1;
}

.newslist-tab-arrow {
  width: 13px;
  height: 24px;
  position: relative;
}

.newslist-tab-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.newslist-tab-arrow--right::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.newslist-tab-arrow--up::before {
  transform: translate(-65%, -50%) rotate(-45deg);
}

.newslist-tab--active .newslist-tab-arrow::before {
  color: #ff4c00;
}

.newslist-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.newslist-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newslist-card {
  width: calc((100% - 24px) / 3);
  max-width: 330px;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.newslist-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 20px 40px rgba(0, 60, 129, 0.15); */
}

.newslist-card-image {
  width: 100%;
  height: 204px;
  overflow: hidden;
  border-radius: 5px 0 20px 0;
  position: relative;
  line-height: 0;
}

.newslist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.newslist-card:hover .newslist-card-image img {
  transform: scale(1.05);
}

.newslist-card-date {
  position: absolute;
  top: 16px;
  left: 0;
  width: 48px;
  height: 35px;
  background: #003c81;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}

.newslist-card-date-day {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1;
  margin-left: 5px;
}

.newslist-card-date-month {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1;
  margin-top: 2px;
  margin-left: 5px;
}

.newslist-card-content {
  width: 95%;
  background: #003c81;
  border-radius: 0 35px 0 35px;
  padding: 22px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  position: relative;
  margin-top: -20px;
}

.newslist-card-title {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newslist-card-desc {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.newslist-card-link {
  align-self: flex-start;
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.newslist-card-link:hover {
  opacity: 0.8;
}

.newslist-card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 44px;
  background: linear-gradient(135deg, #ff4c00 0%, #003c81 100%);
  border-radius: 20px 0 35px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.newslist-card:hover .newslist-card-arrow {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.newslist-card-arrow svg {
  width: 22px;
  height: 22px;
}

.newslist-card:hover .newslist-card-arrow svg {
  animation: newslist-arrow-bounce 0.6s ease 0.3s;
}

@keyframes newslist-arrow-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.newslist-more {
  align-self: flex-end;
  padding: 8px 24px;
  font-family: "Arial Normal", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #003c81;
  text-decoration: none;
  border: 1px solid #003c81;
  border-radius: 20px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.newslist-more:hover {
  background: #003c81;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 60, 129, 0.2);
}

.newslist-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.newslist-page-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c5c5c5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newslist-page-dot:hover {
  background: #003c81;
  transform: scale(1.3);
}

.newslist-page-dot--active {
  background: #003c81;
  transform: scale(1.2);
}

@media screen and (max-width: 1200px) {
  .newslist-title {
    font-size: 42px;
  }

  .newslist-body {
    gap: 50px;
  }

  .newslist-sidebar {
    width: 260px;
  }

  .newslist-tab {
    font-size: 26px;
  }

  .newslist-card {
    width: calc((100% - 12px) / 2);
    max-width: 330px;
  }

  .newslist-card-title {
    font-size: 16px;
  }

  .newslist-card-desc {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .newslist-content {
    padding: 40px 20px 60px 20px;
  }

  .newslist-title {
    font-size: 32px;
  }

  .newslist-header {
    margin-bottom: 30px;
  }

  .newslist-body {
    flex-direction: column;
    gap: 40px;
  }

  .newslist-sidebar {
    width: 100%;
  }

  .newslist-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
  }

  .newslist-tab {
    flex: 1 1 45%;
    font-size: 22px;
    padding: 12px 8px;
    text-align: center;
  }

  .newslist-tab-text {
    flex: 1;
    text-align: center;
  }

  .newslist-cards {
    gap: 16px;
  }

  .newslist-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .newslist-card-image {
    height: 180px;
  }

  .newslist-card-content {
    min-height: 160px;
    padding: 20px 20px 18px 20px;
  }

  .newslist-card-title {
    font-size: 16px;
  }

  .newslist-card-desc {
    font-size: 13px;
  }

  .newslist-more {
    align-self: center;
    margin-top: 10px;
  }

  .newslist-pagination {
    margin-top: 30px;
  }

  .newslist-card-arrow {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.newsdetail-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 28px 100px;
}

@media screen and (max-width: 1440px) and (min-width: 993px) {
  .newsdetail-content {
    width: calc(100% - 240px);
    max-width: none;
  }
}

@media screen and (max-width: 992px) and (min-width: 769px) {
  .newsdetail-content {
    width: calc(100% - 40px);
  }
}

.newsdetail-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.newsdetail-article {
  flex: 1;
  min-width: 0;
  /* max-width: 998px; */
  width: 70%;
}

.newsdetail-intro {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  margin: 0 0 30px 0;
}

.newsdetail-hero-image {
  width: 100%;
  margin-bottom: 50px;
  overflow: hidden;
}

.newsdetail-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.newsdetail-section {
  margin-bottom: 50px;
}

.newsdetail-section:last-child {
  margin-bottom: 0;
}

.newsdetail-section-title {
  font-family: "OPPO Sans 4.0 Bold", "OPPO Sans 4.0", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #000000;
  margin: 0 0 12px 0;
}

.newsdetail-title-decoration {
  display: flex;
  gap: 4px;
  height: 3px;
  margin-bottom: 28px;
}

.newsdetail-deco-line-blue-short {
  width: 38px;
  height: 3px;
  background: #003c81;
}

.newsdetail-deco-line-orange {
  width: 23px;
  height: 3px;
  background: #ff4c00;
}

.newsdetail-deco-line-blue-long {
  width: 78px;
  height: 3px;
  background: #003c81;
}

.newsdetail-subsection {
  margin-bottom: 24px;
}

.newsdetail-subsection:last-child {
  margin-bottom: 0;
}

.newsdetail-subsection-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #000000;
  margin: 0 0 8px 0;
}

.newsdetail-subsection-content {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #333333;
  margin: 0;
}

.newsdetail-subsection-content--list p {
  margin: 0 0 6px 0;
}

.newsdetail-subsection-content--list p:last-child {
  margin-bottom: 0;
}

.newsdetail-section-image {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}

.newsdetail-section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.newsdetail-section-desc {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #333333;
  margin: 0 0 30px 0;
}

.newsdetail-scene-images {
  display: flex;
  gap: 7px;
}

.newsdetail-scene-images img {
  flex: 1;
  width: calc((100% - 21px) / 4);
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.newsdetail-scene-images img:hover {
  transform: scale(1.03);
}

.newsdetail-sidebar {
  flex-shrink: 0;
  width: 28%;
  background-color: rgb(0 60 129 / 10%);
  padding: 1%;
}

.newsdetail-sidebar-title {
  font-family: "OPPO Sans 4.0 Bold", "OPPO Sans 4.0", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #000000;
  margin: 0 0 12px 0;
}

.newsdetail-title-decoration--sidebar {
  margin-bottom: 40px;
}

.newsdetail-product-card {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}

.newsdetail-product-card:last-child {
  margin-bottom: 0;
}

.newsdetail-product-image {
  flex-shrink: 0;
  width: 200px;
  overflow: hidden;
}

.newsdetail-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.newsdetail-product-card:hover .newsdetail-product-image img {
  transform: scale(1.05);
}

.newsdetail-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  min-width: 0;
}

.newsdetail-product-text {
  display: flex;
  flex-direction: column;
}

.newsdetail-product-name {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
  margin: 0 0 10px 0;
  position: relative;
  /* white-space: nowrap; */
}

.newsdetail-product-name::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 52px;
  height: 2px;
  background: #003c81;
}

.newsdetail-product-spec {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}

.newsdetail-product-type {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #333333;
  margin: 6px 0 0 0;
}

.newsdetail-product-btn {
  display: inline-block;
  padding: 6px 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 2px 2.5px rgba(0, 0, 0, 0.35);
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsdetail-product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 1200px) {
  .newsdetail-content {
    max-width: 100%;
    padding: 50px 28px 80px;
  }

  .newsdetail-body {
    gap: 30px;
  }

  .newsdetail-article {
    max-width: 100%;
  }

  .newsdetail-intro {
    font-size: 18px;
    line-height: 28px;
  }

  .newsdetail-section-title {
    font-size: 28px;
  }

  .newsdetail-subsection-title {
    font-size: 20px;
  }

  .newsdetail-subsection-content {
    font-size: 16px;
    line-height: 28px;
  }

  .newsdetail-section-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .newsdetail-sidebar {
    width: 300px;
  }

  .newsdetail-sidebar-title {
    font-size: 28px;
  }

  .newsdetail-product-image {
    width: 170px;
  }

  .newsdetail-scene-images {
    flex-wrap: wrap;
    gap: 10px;
  }

  .newsdetail-scene-images img {
    width: calc((100% - 20px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .newsdetail-content {
    padding: 40px 20px 60px 20px;
  }

  .newsdetail-body {
    flex-direction: column;
    gap: 50px;
  }

  .newsdetail-article {
    max-width: 100%;
  }

  .newsdetail-intro {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .newsdetail-hero-image {
    margin-bottom: 30px;
  }

  .newsdetail-section {
    margin-bottom: 30px;
  }

  .newsdetail-section-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .newsdetail-title-decoration {
    margin-bottom: 20px;
  }

  .newsdetail-subsection {
    margin-bottom: 18px;
  }

  .newsdetail-subsection-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .newsdetail-subsection-content {
    font-size: 14px;
    line-height: 24px;
  }

  .newsdetail-section-desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .newsdetail-scene-images {
    gap: 8px;
  }

  .newsdetail-scene-images img {
    width: calc((100% - 16px) / 2);
  }

  .newsdetail-sidebar {
    width: 100%;
  }

  .newsdetail-sidebar-title {
    font-size: 24px;
  }

  .newsdetail-title-decoration--sidebar {
    margin-bottom: 30px;
  }

  .newsdetail-product-card {
    gap: 16px;
    margin-bottom: 30px;
  }

  .newsdetail-product-image {
    width: 140px;
  }

  .newsdetail-product-info {
    padding: 12px 0;
  }

  .newsdetail-product-name {
    font-size: 16px;
  }

  .newsdetail-product-spec,
  .newsdetail-product-type {
    font-size: 13px;
  }

  .newsdetail-product-btn {
    font-size: 11px;
    padding: 5px 14px;
  }
}
.rdmfg-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 0 100px 0;
}

.rdmfg-section {
  margin-bottom: 140px;
}

.rdmfg-section:last-child {
  margin-bottom: 0;
}

.rdmfg-section-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.3;
  color: #000000;
  text-align: center;
  margin: 0 0 10px 0;
}

.rdmfg-title-decoration {
  display: flex;
  gap: 4px;
  height: 3px;
  justify-content: center;
  margin-bottom: 70px;
}

.rdmfg-deco-line-blue-short {
  width: 38px;
  height: 3px;
  background: #003c81;
}

.rdmfg-deco-line-orange {
  width: 23px;
  height: 3px;
  background: #ff4c00;
}

.rdmfg-deco-line-blue-long {
  width: 78px;
  height: 3px;
  background: #003c81;
}

.rdmfg-stats {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.rdmfg-stat-row {
  position: relative;
  height: 241px;
  display: flex;
  align-items: center;
}

.rdmfg-stat-row:nth-child(odd) {
  flex-direction: row;
}

.rdmfg-stat-row:nth-child(even) {
  flex-direction: row-reverse;
}

.rdmfg-stat-card {
  flex-shrink: 0;
  width: 666px;
  height: 241px;
  border-radius: 15px;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  box-shadow: 5px 5px 2.5px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.rdmfg-stat-card:after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255, 76, 0, 0) 0%, rgb(0 60 129) 100%);
    opacity: 0.6;
}
.rdmfg-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 7px 7px 4px rgba(0, 0, 0, 0.35);
}

.rdmfg-stat-card--1 {
  background-image: url('../images/u2140_div.jpg');
  background-size: 666px 374px;
  background-position: right top;
}

.rdmfg-stat-card--2 {
  background-image: url('../images/u2141_div.jpg');
  background-size: 666px 444px;
  background-position: 0px -107.5px;
}

.rdmfg-stat-card--3 {
  background-image: url('../images/u2148_div.png');
  background-size: 666px 443px;
  background-position: 0px -107px;
}

.rdmfg-stat-card--4 {
  background-image: url('../images/u2149_div.jpg');
  background-size: 666px 443px;
  background-position: left bottom;
}

.rdmfg-stat-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 162px;
  min-width: 0;
}

.rdmfg-stat-row:nth-child(odd) .rdmfg-stat-text {
  padding-left: 0;
  padding-right: 0;
  /* align-items: flex-end; */
}

.rdmfg-stat-row:nth-child(even) .rdmfg-stat-text {
  padding-left: 162px;
  padding-right: 86px;
  align-items: flex-start;
}

.rdmfg-stat-number {
  font-family: "OPPO Sans 4.0 Bold", "OPPO Sans 4.0", sans-serif;
  font-weight: 700;
  font-size: 82px;
  line-height: 1.1;
  color: #003c81;
  margin: 0 0 13px 0;
}

.rdmfg-stat-number--small {
  font-size: 76px;
}

.rdmfg-stat-label {
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
}

.rdmfg-stat-accent {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 137px;
  background: #ff4c00;
  border-radius: 2px;
}

.rdmfg-stat-row:nth-child(odd) .rdmfg-stat-accent {
  right: 9px;
}

.rdmfg-stat-row:nth-child(even) .rdmfg-stat-accent {
  left: 0;
}

.rdmfg-custom-grid {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rdmfg-custom-card {
  position: relative;
  flex: 1;
  height: 517px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 5px 5px 2.5px rgba(127, 127, 127, 0.35);
  background-color: #003c81;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rdmfg-custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 4px rgba(127, 127, 127, 0.45);
}

.rdmfg-custom-card--offset {
  margin-top: 63px;
}

.rdmfg-custom-card--1 {
  background-image: url('../images/u2166_div.png');
  background-size: 338px 600px;
  background-position: left top;
}

.rdmfg-custom-card--2 {
  background-image: url('../images/u2167_div.png');
  background-size: 1402px 1122px;
  background-position: -533px -303.5px;
}

.rdmfg-custom-card--3 {
  background-image: url('../images/u2168_div.jpg');
  background-size: 919px 517px;
  background-position: -291.5px -1px;
}

.rdmfg-custom-card--4 {
  background-image: url('../images/u2169_div.png');
  background-size: 646px 517px;
  background-position: left top;
}

.rdmfg-custom-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 129, 0.5);
}

.rdmfg-custom-card-body {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
}

.rdmfg-custom-card-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 96px;
  transition: transform 0.4s ease;
}

.rdmfg-custom-card-icon--large {
  width: 121px;
  height: 121px;
  margin-bottom: 71px;
}

.rdmfg-custom-card-icon--xlarge {
  width: 126px;
  height: 126px;
  margin-bottom: 66px;
}

.rdmfg-custom-card:hover .rdmfg-custom-card-icon {
  transform: scale(1.08);
}

.rdmfg-custom-card-label {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.rdmfg-section--quality {
  margin-bottom: 0;
}

.rdmfg-quality-header {
  margin-bottom: 70px;
}

.rdmfg-quality-body {
  display: flex;
  width: 100%;
  height: 442px;
  border-radius: 15px;
  /* overflow: hidden; */
  box-shadow: 5px 5px 2.5px rgba(127, 127, 127, 0.35);
  position: relative;
  justify-content: center;
}

.rdmfg-quality-image {
  flex-shrink: 0;
  width: 664px;
  height: 442px;
  background-image: url('../images/u2082.svg');
  background-size: 664px 442px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f2f2f2;
  position: relative;
}

.rdmfg-quality-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 76, 0, 0) 0%, rgba(255, 76, 0, 1) 100%);
  opacity: 0.6;
}

.rdmfg-quality-text {
  flex: 1;
  background: #003c81;
  padding: 71px 48px 71px 135px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  justify-content: center;
}

.rdmfg-quality-block {
  margin-bottom: 39px;
}

.rdmfg-quality-block:last-child {
  margin-bottom: 0;
}

.rdmfg-quality-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.rdmfg-quality-desc {
  font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.rdmfg-quality-divider {
  width: 200px;
  height: 2px;
  background: #ffffff;
  margin: 0 0 39px 0;
}
.rdmfg-quality-dianciten{
    position: absolute;
    z-index: 2;
    width: 49%;
    bottom: -25%;
}
.rdmfg-quality-dianciten img{
    width: 100%;
}

@media screen and (max-width: 1200px) {
  .rdmfg-content {
    padding: 50px 30px 80px 30px;
  }

  .rdmfg-section {
    margin-bottom: 100px;
  }

  .rdmfg-section-title {
    font-size: 42px;
  }

  .rdmfg-title-decoration {
    margin-bottom: 50px;
  }

  .rdmfg-stat-row {
    height: 200px;
    gap: 50px;
  }

  .rdmfg-stat-card {
    width: 500px;
    height: 200px;
  }

  .rdmfg-stat-number {
    font-size: 60px;
    margin-bottom: 10px;
  }

  .rdmfg-stat-number--small {
    font-size: 56px;
  }

  .rdmfg-stat-label {
    font-size: 26px;
  }

  .rdmfg-stat-accent {
    height: 110px;
  }

  .rdmfg-custom-card {
    height: 440px;
  }

  .rdmfg-custom-card--1 {
    background-size: 280px 500px;
  }

  .rdmfg-custom-card--2 {
    background-size: 1170px 935px;
    background-position: -444px -253px;
  }

  .rdmfg-custom-card--3 {
    background-size: 766px 440px;
    background-position: -243px -1px;
  }

  .rdmfg-custom-card--4 {
    background-size: 538px 440px;
  }

  .rdmfg-custom-card-body {
    padding-top: 100px;
  }

  .rdmfg-custom-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 80px;
  }

  .rdmfg-custom-card-icon--large {
    width: 100px;
    height: 100px;
    margin-bottom: 60px;
  }

  .rdmfg-custom-card-icon--xlarge {
    width: 105px;
    height: 105px;
    margin-bottom: 55px;
  }

  .rdmfg-custom-card-label {
    font-size: 18px;
  }

  .rdmfg-quality-body {
    height: 380px;
  }

  .rdmfg-quality-image {
    width: 480px;
    height: 380px;
    background-size: 480px 380px;
  }

  .rdmfg-quality-text {
    padding: 50px 30px 50px 80px;
  }

  .rdmfg-quality-title {
    font-size: 30px;
  }

  .rdmfg-quality-desc {
    font-size: 16px;
  }

  .rdmfg-quality-block {
    margin-bottom: 30px;
  }

  .rdmfg-quality-divider {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .rdmfg-content {
    padding: 40px 20px 60px 20px;
  }

  .rdmfg-section {
    margin-bottom: 60px;
  }

  .rdmfg-section-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .rdmfg-title-decoration {
    margin-bottom: 40px;
  }

  .rdmfg-stats {
    gap: 40px;
  }

  .rdmfg-stat-row {
    height: auto;
    flex-direction: column;
    gap: 20px;
  }

  .rdmfg-stat-row--reverse {
    flex-direction: column;
  }

  .rdmfg-stat-card {
    width: 100%;
    height: 180px;
  }

  .rdmfg-stat-text {
    align-items: center;
  }

  .rdmfg-stat-number {
    font-size: 48px;
    margin-bottom: 6px;
  }

  .rdmfg-stat-number--small {
    font-size: 40px;
  }

  .rdmfg-stat-label {
    font-size: 20px;
  }

  .rdmfg-stat-accent {
    display: none;
  }

  .rdmfg-custom-grid {
    flex-direction: column;
    gap: 20px;
  }

  .rdmfg-custom-card {
    width: 100%;
    height: 340px;
  }

  .rdmfg-custom-card--offset {
    margin-top: 0;
  }

  .rdmfg-custom-card--1 {
    background-size: 230px 410px;
  }

  .rdmfg-custom-card--2 {
    background-size: 960px 768px;
    background-position: -365px -208px;
  }

  .rdmfg-custom-card--3 {
    background-size: 630px 340px;
    background-position: -200px -1px;
  }

  .rdmfg-custom-card--4 {
    background-size: 440px 340px;
  }

  .rdmfg-custom-card-body {
    padding-top: 80px;
  }

  .rdmfg-custom-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 60px;
  }

  .rdmfg-custom-card-icon--large {
    width: 80px;
    height: 80px;
    margin-bottom: 44px;
  }

  .rdmfg-custom-card-icon--xlarge {
    width: 84px;
    height: 84px;
    margin-bottom: 40px;
  }

  .rdmfg-custom-card-label {
    font-size: 16px;
  }

  .rdmfg-quality-header {
    margin-bottom: 40px;
  }

  .rdmfg-quality-body {
    flex-direction: column;
    height: auto;
  }

  .rdmfg-quality-image {
    width: 100%;
    height: 220px;
    background-size: cover;
  }

  .rdmfg-quality-text {
    padding: 30px 24px;
  }

  .rdmfg-quality-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .rdmfg-quality-desc {
    font-size: 14px;
  }

  .rdmfg-quality-block {
    margin-bottom: 22px;
  }

  .rdmfg-quality-divider {
    width: 120px;
    margin-bottom: 22px;
  }
}
.techsup-content {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 0 82px 0;
}

.techsup-tabs {
  display: flex;
  justify-content: center;
  gap: 205px;
  margin-bottom: 75px;
}

.techsup-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.techsup-tab-text {
  font-family: "OPPO Sans 4.0 Bold", "OPPO Sans 4.0", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #003c81;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.techsup-tab-line {
  width: 103px;
  height: 4px;
  background: #003c81;
  opacity: 0.2;
  margin-top: 9px;
  transition: opacity 0.3s ease;
}

.techsup-tab--active .techsup-tab-text {
  opacity: 1;
}

.techsup-tab--active .techsup-tab-line {
  opacity: 1;
}

.techsup-tab:hover .techsup-tab-text {
  opacity: 1;
}

.techsup-tab:hover .techsup-tab-line {
  opacity: 1;
}

.techsup-faq-list {
  display: flex;
  flex-direction: column;
}

.techsup-faq-item {
  margin-bottom: 48px;
}

.techsup-faq-item:last-child {
  margin-bottom: 0;
}

.techsup-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.techsup-faq-q-text {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #000000;
  line-height: 39px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.techsup-faq-q:hover .techsup-faq-q-text {
  color: #003c81;
}

.techsup-faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #003c81;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.techsup-faq-q:hover .techsup-faq-icon {
  transform: scale(1.1);
}

.techsup-faq-icon-h,
.techsup-faq-icon-v {
  position: absolute;
  background: #ffffff;
}

.techsup-faq-icon-h {
  width: 16px;
  height: 2px;
}

.techsup-faq-icon-v {
  width: 2px;
  height: 16px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.techsup-faq-item--open .techsup-faq-icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

.techsup-faq-line {
  margin-top: 16px;
  height: 1px;
  background: #003c81;
  width: 100%;
}

.techsup-faq-a {
  margin: 0;
  font-family: "OPPO Sans 4.0 Light", "OPPO Sans 4.0", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #aaaaaa;
  line-height: 36px;
  /* max-width: 654px; */
  /* max-height: 0; */
  width: 100%;
  overflow: hidden;
  /* opacity: 0; */
  display: none;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.techsup-faq-item--open .techsup-faq-a {
  /* max-height: 300px; */
  /* opacity: 1; */
  margin-top: 26px;
  display: block;
}

.techsup-faq-item--open .techsup-faq-line {
  margin-top: 26px;
}

.techsup-contact {
  background: rgba(0, 60, 129, 0.1);
  padding: 3% 0;
}

.techsup-contact-inner {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 4%;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}

.techsup-contact-left {
  flex-shrink: 0;
  width: 47%;
  margin-bottom: 40px;
}

.techsup-contact-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.techsup-title-decoration {
  display: flex;
  gap: 4px;
  height: 3px;
  margin-bottom: 55px;
}

.techsup-deco-line-blue-short {
  width: 38px;
  height: 3px;
  background: #003c81;
}

.techsup-deco-line-orange {
  width: 23px;
  height: 3px;
  background: #ff4c00;
}

.techsup-deco-line-blue-long {
  width: 78px;
  height: 3px;
  background: #003c81;
}

.techsup-contact-form {
  display: flex;
  flex-direction: column;
}

.techsup-textarea {
  width: 638px;
  height: 232px;
  padding: 20px;
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  color: #000000;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.techsup-textarea::placeholder {
  color: #999999;
}

.techsup-textarea:focus {
  border-color: #003c81;
}

.techsup-input {
  width: 638px;
  height: 40px;
  padding: 0 20px;
  margin-top: 13px;
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  color: #000000;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.techsup-input::placeholder {
  color: #999999;
}

.techsup-input:focus {
  border-color: #003c81;
}

.techsup-button {
  width: 298px;
  height: 40px;
  margin-top: 23px;
  font-family: "OPPO Sans 4.0", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  background: #003c81;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.techsup-button:hover {
  background: #002d63;
  transform: translateY(-2px);
}

.techsup-contact-image {
  flex-shrink: 0;
  width: 51%;
  /* height: 627px; */
  object-fit: contain;
  position: absolute;
  right: 0;
  bottom: -12%;
}

@media screen and (max-width: 1200px) {
  .techsup-content {
    padding: 50px 30px 60px 30px;
  }

  .techsup-tabs {
    gap: 100px;
    margin-bottom: 55px;
  }

  .techsup-tab-text {
    font-size: 22px;
  }

  .techsup-tab-line {
    width: 80px;
  }

  .techsup-faq-item {
    margin-bottom: 36px;
  }

  .techsup-faq-q-text {
    font-size: 24px;
    line-height: 32px;
  }

  .techsup-faq-a {
    font-size: 16px;
    line-height: 30px;
    max-width: 100%;
  }

  .techsup-contact {
    padding: 50px 0 40px 0;
  }

  .techsup-contact-inner {
    padding: 0 30px;
    gap: 40px;
  }

  .techsup-contact-left {
    width: 100%;
    max-width: 500px;
  }

  .techsup-contact-title {
    font-size: 32px;
  }

  .techsup-textarea {
    width: 100%;
    height: 180px;
  }

  .techsup-input {
    width: 100%;
  }

  .techsup-button {
    width: 100%;
    max-width: 298px;
  }

  .techsup-contact-image {
    width: 400px;
    height: 374px;
  }
}

@media screen and (max-width: 768px) {
  .techsup-content {
    padding: 40px 20px 60px 20px;
  }

  .techsup-tabs {
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .techsup-tab-text {
    font-size: 18px;
  }

  .techsup-tab-line {
    width: 60px;
    height: 3px;
  }

  .techsup-faq-item {
    margin-bottom: 28px;
  }

  .techsup-faq-q {
    align-items: flex-start;
  }

  .techsup-faq-q-text {
    font-size: 18px;
    line-height: 26px;
    white-space: normal;
  }

  .techsup-faq-icon {
    width: 28px;
    height: 28px;
    margin-left: 12px;
  }

  .techsup-faq-icon-h {
    width: 14px;
  }

  .techsup-faq-icon-v {
    width: 2px;
    height: 14px;
    margin-left: -8px;
  }

  .techsup-faq-a {
    font-size: 14px;
    line-height: 26px;
  }

  .techsup-contact {
    padding: 40px 0 40px 0;
  }

  .techsup-contact-inner {
    padding: 0 20px;
    flex-direction: column;
    gap: 30px;
  }

  .techsup-contact-left {
    width: 100%;
  }

  .techsup-contact-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .techsup-title-decoration {
    margin-bottom: 30px;
  }

  .techsup-textarea {
    height: 120px;
    font-size: 16px;
  }

  .techsup-input {
    font-size: 16px;
  }

  .techsup-button {
    width: 100%;
    height: 44px;
    font-size: 16px;
  }

  .techsup-contact-image {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
}
.sol-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 0 0 0;
}

.sol-section {
  position: relative;
  margin-bottom: 80px;
}

.sol-section:last-child {
  margin-bottom: 0;
}
.sol-sectionnews{
    background: hsl(212deg 100% 25% / 10%);
}
.sol-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.sol-section-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 600;
  color: #000000;
  font-size: clamp(35px, 2.8vw, 52px);
  text-align: center;
  line-height: 1.1;
  margin: 0;
}

.sol-section-lines {
  display: flex;
  align-items: center;
  margin-top: 18px;
  gap: 4px;
}

.sol-line {
  height: 3px;
  display: inline-block;
}

.sol-line--blue-short {
  width: 38px;
  background-color: #003C81;
}

.sol-line--orange {
  width: 23px;
  background-color: #FF4C00;
}

.sol-line--blue-long {
  width: 78px;
  background-color: #003C81;
}

.sol-pain-wrap {
  width: 100%;
  height: 702px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.sol-pain-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.sol-pain-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
}

.sol-pain-tab {
  flex: 1;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 30px;
  transition: all 0.3s ease;
}

.sol-pain-tab-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 368px;
  background: linear-gradient(180deg, rgba(0, 60, 129, 0) 0%, rgba(0, 60, 129, 0.996) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.sol-pain-tab:hover .sol-pain-tab-gradient,
.sol-pain-tab--active .sol-pain-tab-gradient {
  opacity: 1;
}

.sol-pain-tab-icon {
  position: relative;
  z-index: 2;
  width: 95px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.sol-pain-tab-icon img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.sol-pain-tab:hover .sol-pain-tab-icon,
.sol-pain-tab--active .sol-pain-tab-icon {
  opacity: 1;
  transform: translateY(0);
}

.sol-pain-tab-title {
  position: relative;
  z-index: 2;
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.sol-pain-tab:hover .sol-pain-tab-title,
.sol-pain-tab--active .sol-pain-tab-title {
  opacity: 1;
  transform: translateY(0);
}

.sol-pain-tab-desc {
  position: relative;
  z-index: 2;
  font-family: "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  max-width: 232px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.05s;
}

.sol-pain-tab:hover .sol-pain-tab-desc,
.sol-pain-tab--active .sol-pain-tab-desc {
  opacity: 1;
  transform: translateY(0);
}

.sol-pain-tab-sep {
  width: 2px;
  height: 474px;
  align-self: flex-start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.4;
  flex-shrink: 0;
}

.sol-core {
  margin-bottom: 80px;
}

.sol-core-intro {
  font-family: "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #7F7F7F;
  text-align: center;
  line-height: 1.8;
  max-width: 907px;
  /* margin: 0 auto 60px; */
}

.sol-core-grid {
  display: flex;
  gap: 72px;
  margin-bottom: 80px;
}

.sol-core-col {
  display: flex;
  flex-direction: column;
  gap: 51px;
  flex: 1;
}

.sol-core-col--right {
  margin-top: 45px;
}

.sol-core-card {
  width: 100%;
  height: 170px;
  position: relative;
}

.sol-core-card--shift {
  margin-left: 40px;
}

.sol-core-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-color: #ffffff;
  border-radius: 85px;
  filter: drop-shadow(5px 0px 2.5px rgba(127, 127, 127, 0.349));
}

.sol-core-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 170px;
  padding-left: 29px;
}

.sol-core-circle {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background-color: #003C81;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sol-core-circle img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.sol-core-text {
  margin-left: 19px;
  flex: 1;
  margin-right: 20px;
}

.sol-core-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  margin: 0 0 12px 0;
}

.sol-core-desc {
  font-family: "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}

.sol-custom-flow {
  position: relative;
  width: 100%;
  height: 400px;
}

.sol-custom-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 18px;
  background-color: #003C81;
  opacity: 0.2;
  transform: translateY(-50%);
  z-index: 0;
}

.sol-custom-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 9px;
  background-color: #003C81;
  opacity: 1;
  transform: translateY(-50%);
}

.sol-custom-steps {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.sol-custom-step {
  position: relative;
  width: 247px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sol-custom-node {
  width: 65px;
  height: 65px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}

.sol-custom-node-outer {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #003C81;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.sol-custom-node-ring {
  position: absolute;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 2px solid #003C81;
  background-color: transparent;
}

.sol-custom-node-inner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #003C81;
  transition: all 0.3s ease;
}

.sol-custom-step:hover .sol-custom-node-outer,
.sol-custom-step--active .sol-custom-node-outer {
  opacity: 0.5;
  transform: scale(1.15);
}

.sol-custom-card {
  width: 247px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(1px 3px 5px rgba(215, 215, 215, 0.349));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: #003C81;
  padding: 20px 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sol-custom-step--up .sol-custom-card {
  bottom: calc(50% + 32.5px + 25px);
}

.sol-custom-step--down .sol-custom-card {
  top: calc(50% + 32.5px + 25px);
}

.sol-custom-step:hover .sol-custom-card,
.sol-custom-step--active .sol-custom-card {
  opacity: 1;
  visibility: visible;
}

.sol-custom-card-icon {
  width: 60px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 10px;
}

.sol-custom-card-label {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 8px;
}

.sol-custom-card-desc {
  font-family: "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  opacity: 0.9;
}

.sol-custom-label {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: #003C81;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.sol-custom-step--up .sol-custom-label {
  top: calc(50% + 32.5px + 20px);
}

.sol-custom-step--down .sol-custom-label {
  bottom: calc(50% + 32.5px + 20px);
}

.sol-articles {
  position: relative;
  padding: 60px 0;
}

.sol-articles-bg {
  position: absolute;
  top: 0;
  left: -100px;
  right: -100px;
  height: 100%;
  background-color: #003C81;
  opacity: 0.1;
  z-index: 0;
}

.sol-articles .sol-section-header,
.sol-articles-grid {
  position: relative;
  z-index: 1;
}

.sol-articles-grid {
  display: flex;
  gap: 46px;
  justify-content: center;
}

.sol-article-card {
  width: 436px;
  display: flex;
  flex-direction: column;
}

.sol-article-img-wrap {
  width: 436px;
  height: 293px;
  border-radius: 18px;
  overflow: hidden;
  filter: drop-shadow(11px 14px 7px rgba(127, 127, 127, 0.349));
  margin-bottom: 27px;
}

.sol-article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sol-article-title {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
  line-height: 1.35;
  margin: 0 0 17px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sol-article-desc {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #555555;
  line-height: 25px;
  opacity: 0.8;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sol-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sol-article-date {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
}

.sol-article-date img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.sol-article-date span {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #AAAAAA;
  line-height: 25px;
}

.sol-article-link {
  font-family: "OPPO Sans 4.0 Medium", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #AAAAAA;
  text-decoration: underline;
  opacity: 0.8;
  line-height: 25px;
  transition: opacity 0.3s ease;
}

.sol-article-link:hover {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .sol-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sol-pain-wrap {
    height: 500px;
  }

  .sol-core-grid {
    flex-direction: column;
    align-items: center;
  }

  .sol-core-col {
    width: 100%;
    max-width: 664px;
  }

  .sol-core-col--right {
    margin-top: 0;
  }

  .sol-core-card--shift {
    margin-left: 0;
  }

  .sol-custom-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    height: auto;
  }

  .sol-custom-step {
    width: 200px;
    height: 200px;
  }

  .sol-custom-line {
    display: none;
  }

  .sol-articles-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .sol-section-title {
    font-size: 32px;
  }

  .sol-pain-wrap {
    height: 400px;
  }

  .sol-pain-tabs {
    flex-direction: column;
  }

  .sol-pain-tab {
    flex: 1;
  }

  .sol-pain-tab-sep {
    display: none;
  }

  .sol-core-card-body {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .sol-core-text {
    margin-left: 0;
    margin-top: 15px;
  }

  .sol-article-card {
    width: 100%;
    max-width: 436px;
  }

  .sol-article-title {
    font-size: 18px;
  }
}
.delivery-page {
  min-height: 100vh;
  padding-top: clamp(58px, 3.4vw, 66px);
  overflow: hidden;
}

.section-heading {
  text-align: center;
}

.section-heading h1 {
  font-family: "OPPO Sans 4.0 SemiBold", "OPPO Sans 4.0", "Noto Sans SC", sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: #000000;
  text-align: center;
  line-height: 1.1;
  margin: 0;
}

.heading-rule {
  width: 147px;
  height: 3px;
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.heading-rule i {
  height: 3px;
  display: block;
  background: #003c81;
}

.heading-rule i:first-child {
  width: 38px;
}

.heading-rule i:nth-child(2) {
  width: 23px;
  background: #ff4c00;
}

.heading-rule i:last-child {
  width: 78px;
}

.process {
  position: relative;
  height: 520px;
  margin-top: 117px;
}

.process-line {
  position: absolute;
  top: 190px;
  left: 0;
  right: 0;
  height: 16px;
  background: #b5c9df;
}

.process-line::after,
.line-progress {
  position: absolute;
  top: 5px;
  left: 0;
  height: 6px;
  content: "";
  background: #003c81;
}

.process-line::after {
  width: 100%;
}

.line-progress {
  z-index: 1;
  width: 20%;
  background: #2f7fc0;
  transition: width 350ms ease;
}

.process-list {
  position: relative;
  z-index: 2;
  width: min(1500px, 76%);
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-step {
  position: relative;
  min-width: 0;
}

.step-button {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.step-card {
  width: min(248px, 86%);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003c81;
  background: #e7edf4;
  border-radius: 15px;
  font-size: clamp(21px, 1.45vw, 28px);
  line-height: 1;
  font-weight: 500;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.process-step:nth-child(odd) .step-card {
  margin-top: 78px;
}

.process-step:first-child .step-card {
  margin-top: 0;
}

.process-step:nth-child(even) .step-card {
  order: 2;
  margin-top: 14px;
}

.step-dot {
  width: 65px;
  height: 65px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b5c9df;
}

.process-step:nth-child(odd) .step-dot {
  margin-top: 10px;
}

.process-step:nth-child(even) .step-dot {
  margin-top: 166px;
}

.step-dot i {
  width: 33px;
  height: 33px;
  display: block;
  border: 2px solid #003c81;
  border-radius: 50%;
  background: #003c81;
  box-shadow: inset 0 0 0 2px #b5c9df, inset 0 0 0 5px #003c81;
}

.step-card .step-icon {
  display: none;
  width: 96px;
  height: 72px;
  opacity: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: width 220ms ease, height 220ms ease, opacity 150ms ease;
}

.process-step.is-active .step-card {
  height: 155px;
  padding: 9px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #003c81;
}

.process-step.is-active .step-icon {
  display: block;
  width: 96px;
  height: 72px;
  opacity: 1;
}

.process-step.is-active .step-title {
  font-size: clamp(21px, 1.45vw, 28px);
  font-weight: 500;
}

.process-step:nth-child(odd).is-active .step-card {
  margin-top: 0;
}

.step-button:focus-visible {
  outline: 3px solid #ff4c00;
  outline-offset: 6px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .delivery-page {
    padding: 48px 22px 70px;
    overflow: visible;
  }

  .process {
    height: auto;
    margin-top: 65px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 12px;
    height: auto;
  }

  .process-line::after,
  .line-progress {
    top: 0;
    left: 4px;
    width: 4px;
    height: 100%;
  }

  .line-progress {
    height: 20%;
    transition: height 350ms ease;
  }

  .process-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .step-button {
    min-height: 108px;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    text-align: left;
  }

  .step-dot,
  .process-step:nth-child(odd) .step-dot,
  .process-step:nth-child(even) .step-dot {
    grid-column: 1;
    grid-row: 1;
    width: 62px;
    height: 62px;
    margin: 0;
    align-self: center;
  }

  .step-card,
  .process-step:nth-child(odd) .step-card,
  .process-step:nth-child(even) .step-card {
    grid-column: 2;
    grid-row: 1;
    order: initial;
    width: 100%;
    height: 84px;
    margin: 0;
    justify-self: stretch;
  }

  .process-step.is-active .step-card,
  .process-step:nth-child(odd).is-active .step-card {
    height: 145px;
    margin: 0;
    flex-direction: row;
    gap: 22px;
  }

  .process-step.is-active .step-icon {
    width: 82px;
    height: 64px;
    flex: 0 0 82px;
  }
}

@media (max-width: 480px) {
  .delivery-page {
    padding-inline: 16px;
  }

  .process {
    margin-top: 48px;
  }

  .process-line {
    left: 25px;
  }

  .step-button {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .step-dot,
  .process-step:nth-child(odd) .step-dot,
  .process-step:nth-child(even) .step-dot {
    width: 50px;
    height: 50px;
  }

  .step-dot i {
    width: 27px;
    height: 27px;
  }

  .process-step.is-active .step-card,
  .process-step:nth-child(odd).is-active .step-card {
    padding-inline: 12px;
    gap: 5px;
  }

  .process-step.is-active .step-icon {
    width: 66px;
    height: 54px;
    flex-basis: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.recommendation {
  /* min-height: 100vh; */
  padding: clamp(55px, 4.2vw, 82px) 0 60px;
  overflow: hidden;
  background: hsl(212deg 100% 25% / 10%);
}

.section-heading {
  text-align: center;
}

.section-heading h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(35px, 2.8vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.heading-rule {
  width: 147px;
  height: 3px;
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.heading-rule i {
  height: 3px;
  display: block;
  background: #003c81;
}

.heading-rule i:first-child {
  width: 38px;
}

.heading-rule i:nth-child(2) {
  width: 23px;
  background: #ff4c00;
}

.heading-rule i:last-child {
  width: 78px;
}

.carousel {
  position: relative;
  width: min(1500px, 100%);
  min-height: 525px;
  margin: 38px auto 0;
  padding: 0 82px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 550ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.product-slide {
  min-width: 100%;
  min-height: 500px;
  padding: 10px 7% 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(30px, 5vw, 100px);
}

.product-copy {
  align-self: center;
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(38px, 3vw, 55px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
}

.product-subtitle {
  margin: 4px 0 34px;
  color: #252525;
  font-size: clamp(21px, 1.75vw, 31px);
  line-height: 1.45;
}

.feature-list {
  margin: 0;
  padding: 0;
  color: #747474;
  list-style: none;
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 2.05;
}

.more-link {
  min-width: 138px;
  margin-top: 50px;
  padding: 11px 18px 11px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #111111;
  background: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 200ms ease, transform 200ms ease;
}

.more-link span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #003c81;
  border-radius: 50%;
  font-size: 13px;
}

.more-link:hover {
  color: #003c81;
  transform: translateX(3px);
}

.product-visual {
  height: 450px;
  margin: 0;
  display: grid;
  place-items: center;
}

.product-visual img {
  width: min(100%, 380px);
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.06) contrast(1.02);
  user-select: none;
  pointer-events: none;
}

.product-visual--slim img {
  transform: scaleX(.86);
}

.product-visual--large img {
  transform: scale(1.06);
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 33px;
  height: 33px;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #ffffff;
  background: #003c81;
  border: 0;
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:focus-visible,
.carousel-dots button:focus-visible {
  outline: 3px solid #ff4c00;
  outline-offset: 4px;
}

.carousel-arrow--prev {
  left: 16px;
  opacity: .35;
}

.carousel-arrow--next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 2px;
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aebdce;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 25px;
  border-radius: 5px;
  background: #003c81;
}

.carousel-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 900px) {
  .recommendation {
    padding-top: 48px;
  }

  .carousel {
    min-height: 700px;
    margin-top: 34px;
    padding: 0 54px 32px;
  }

  .product-slide {
    min-height: 655px;
    padding: 0 5%;
    grid-template-columns: 1fr;
    grid-template-rows: auto 270px;
    gap: 8px;
  }

  .product-copy {
    text-align: center;
  }

  .product-subtitle {
    margin-bottom: 20px;
  }

  .feature-list {
    line-height: 1.8;
  }

  .more-link {
    margin-top: 25px;
  }

  .product-visual {
    height: 270px;
    grid-row: 2;
  }

  .product-visual img {
    width: 230px;
  }

  .carousel-arrow--prev {
    left: 10px;
  }

  .carousel-arrow--next {
    right: 10px;
  }
}

@media (max-width: 560px) {
  .recommendation {
    padding-top: 34px;
  }

  .section-heading h1 {
    font-size: 34px;
  }

  .carousel {
    min-height: 660px;
    padding: 0 18px 40px;
  }

  .product-slide {
    min-height: 620px;
    padding: 0 8px;
    grid-template-rows: auto 225px;
  }

  .product-copy h2 {
    font-size: 29px;
    overflow-wrap: anywhere;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .feature-list {
    font-size: 16px;
    line-height: 1.75;
  }

  .more-link {
    margin-top: 20px;
  }

  .product-visual {
    height: 225px;
  }

  .product-visual img {
    width: 190px;
  }

  .carousel-arrow {
    top: 72%;
    width: 36px;
    height: 36px;
    background: rgba(0, 60, 129, .9);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
.prony-faq-section {
  /* width: min(1324px, calc(100% - 84px)); */
  margin: 0 auto;
  padding: 24px 0 60px;
}

.prony-faq-heading {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 27px;
  border-bottom: 2px solid #999999;
}

.prony-faq-heading > span {
  width: 4px;
  height: 34px;
  display: block;
  background: #ff4c00;
}

.prony-faq-heading h1 {
  margin: 0;
  color: #050505;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.prony-faq-item {
  border-bottom: 1px solid #999999;
}

.prony-faq-question-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  column-gap: 20px;
}

.prony-faq-question {
  min-width: 0;
  padding: 14px 0;
  color: #333333;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 20px;
  line-height: 1.35;
  cursor: pointer;
}

.prony-faq-question:focus-visible,
.prony-faq-toggle:focus-visible {
  outline: 2px solid #003c81;
  outline-offset: 4px;
}

.prony-faq-toggle {
  position: relative;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #003c81;
  cursor: pointer;
}

.prony-faq-toggle span,
.prony-faq-toggle span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 3px;
  content: "";
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.prony-faq-toggle span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 150ms cubic-bezier(.22, .61, .36, 1);
}

.prony-faq-item.prony-is-open .prony-faq-toggle span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.prony-faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 150ms cubic-bezier(.22, .61, .36, 1);
}

.prony-faq-item.prony-is-open .prony-faq-answer-wrap {
  grid-template-rows: 1fr;
}

.prony-faq-answer {
  min-height: 0;
  overflow: hidden;
  /* padding: 0 90px 0 57%; */
  color: #003c81;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 700;
  transition: padding 150ms cubic-bezier(.22, .61, .36, 1);
}

.prony-faq-item.prony-is-open .prony-faq-answer {
  padding-top: 10px;
  padding-bottom: 29px;
}

@media (max-width: 900px) {
  .prony-faq-section {
    width: min(100% - 36px, 680px);
    padding-top: 22px;
  }

  .prony-faq-heading {
    gap: 17px;
  }

  .prony-faq-heading h1 {
    font-size: 30px;
  }

  .prony-faq-question-row {
    grid-template-columns: minmax(0, 1fr) 31px;
    column-gap: 12px;
  }

  .prony-faq-question {
    font-size: 17px;
  }

  .prony-faq-answer {
    padding-right: 42px;
    padding-left: 0;
    font-size: 20px;
  }

  .prony-desktop-break {
    display: none;
  }
}

@media (max-width: 560px) {
  .prony-faq-section {
    width: calc(100% - 28px);
    padding-bottom: 35px;
  }

  .prony-faq-heading {
    height: 52px;
  }

  .prony-faq-heading > span {
    width: 3px;
    height: 31px;
  }

  .prony-faq-heading h1 {
    font-size: 27px;
  }

  .prony-faq-question-row {
    min-height: 62px;
  }

  .prony-faq-question {
    padding: 14px 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .prony-faq-toggle {
    width: 29px;
    height: 29px;
  }

  .prony-faq-answer {
    padding-right: 8px;
    font-size: 18px;
  }

  .prony-faq-item.prony-is-open .prony-faq-answer {
    padding-top: 4px;
    padding-bottom: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prony-faq-answer-wrap,
  .prony-faq-answer,
  .prony-faq-toggle span::after {
    transition: none;
  }
}
