* {
    box-sizing: border-box;
}

body {

    margin: 0;
    padding: 0;
}

.goTop>img {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.goTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.main-nav.main-nav2{
    position: relative;
}
.main-nav.main-nav2.main-nav4{
    position: absolute;
}
.main-nav.main-nav3{
    position: relative;
}
.nav-container {
    max-width: 1580px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 20px;
}
.main-nav.main-nav2 a{
   color: #21001A;
}
.nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    position: relative;
}

.nav-item.active a {
    color: #D564D9;
}

.nav-item.active .yiji::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: url('../images/dhico.png') no-repeat center center;
    background-size: contain;
}

.nav-item:hover a {
    color: #D564D9;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    min-width: 150px;
    border-radius: 5px;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    padding: 0 20px;
}

.submenu li a {
    padding: 10px 0;
    font-size: 14px;
    color: #0a0c18!important;
}

.nav-right {
    display: flex;
    align-items: center;
}

.search-icon,
.lang-icon {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
}

.search-icon img,
.lang-icon img {
    width: 24px;
    height: 24px;
}
.main-nav.main-nav2 
.lang-box{
    background-color: #fff;
}
.search-box,
.lang-box {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;

    background: rgba(10, 12, 24, 0.95);
    padding: 10px;
    border-radius: 5px;
    z-index: 100;
}

.search-box input {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #3E206E;
    border-radius: 3px;
    background: transparent;
    color: #fff;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lang-box a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    white-space: nowrap;
}

.lang-box a:hover {
    color: #D564D9;
}

.search-icon:hover .search-box,
.lang-icon:hover .lang-box {
    display: block;
}

.fullpage-swiper {
    width: 100%;
    
    overflow: hidden;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0a0c18;
    height: 960px;
    overflow: hidden;
}

.bg-decoration {
    position: absolute;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-left {
    left: 0;
    width: 50%;
    background-image: url('../images/banbg1.png');
}

.bg-right {
    right: 0;
    width: 60%;
    background-image: url('../images/banbg2.png');
}

.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    opacity: 0;
    margin-top: 50px;
}

.main-content.animate-in {
    opacity: 1;
    margin-top: 0;
}

.main-logo {
    width: 90px;
    margin-bottom: 5px;
    opacity: 0;
    margin-top: 30px;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #fff 0%,  #D564D9 50%, #3E206E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    opacity: 0;
    margin-top: 30px;
}

.main-subtitle {
    font-size: 24px;
    color: #fff;
    font-weight: normal;
    margin: 0;
    opacity: 0;
    margin-top: 30px;
}

.scroll-indicator {
    position: absolute;
    right: 50px;
    bottom: 50px;
    cursor: pointer;
    z-index: 10;
}
.scroll-indicator .shuangj{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.page-pagination {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px !important;
    text-align: left;
    padding: 40px 0;
}

.page-pagination::before,
.page-pagination::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 25px;
    background: #ccc;
}

.page-pagination::before {
    top: 0;
}

.page-pagination::after {
    bottom: 0;
}

.page-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 25px 0 !important;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.page-pagination-bullet.active {
    background: transparent;
}

.page-pagination-bullet.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: url('../images/dhico.png') no-repeat center center;
    background-size: contain;
}

.page-pagination-bullet.active::after {
    content: attr(data-title);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #D564D9;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 10px 15px;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-item a {
        font-size: 14px;
    }

    .submenu {
        position: static;
        background: rgba(10, 12, 24, 0.8);
    }

    .nav-right {
        margin-left: auto;
    }

    .search-icon,
    .lang-icon {
        margin-left: 15px;
    }

    .search-icon img,
    .lang-icon img {
        width: 20px;
        height: 20px;
    }

    .search-box input {
        width: 150px;
    }

    .main-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .main-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }

    .main-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .scroll-indicator {
        right: 20px;
        bottom: 30px;
    }

  

    .page-pagination {
        left: 15px;
    }

    .page-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 10px 0 !important;
    }

    .page-pagination-bullet.active::after {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 8px 10px;
    }

    .nav-logo img {
        height: 35px;
    }

    .main-title {
        font-size: 22px;
    }

    .main-subtitle {
        font-size: 12px;
    }

    .main-logo {
        width: 60px;
        height: 60px;
    }

    .scroll-indicator img {
        width: 35px;
        height: 35px;
    }

    .page-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

.slide-content-2 {
    position: relative;
    width: 100%;
    height: 960px;
    background: #0a0c18;
    overflow: hidden;
}

.bg-decoration-sy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url('../images/sybg2.png') no-repeat center top;
    background-size: cover;
    pointer-events: none;
}

.content-container {
    position: relative;
    z-index: 10;
    max-width: 1580px;
    margin: 0 auto;
    padding: 120px 30px 50px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.left-section {
   
    padding-right: 60px;
}

.english-title {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.english-title span {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    background: linear-gradient(to right, #fff 0%, #fff 30%, #D564D9 60%, #3E206E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateX(-100%);
}

.english-title span.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.right-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.text-content {
    margin-bottom: 38%;
    opacity: 0;
    transform: translateX(100%);
}

.text-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 20px 0;
}

.section-desc {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    line-height: 2;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

.section-link {
    display: block;
    text-align: right;
}

.section-link img {
    width: 100%;
    max-width: 500px;
    height: auto;
    width: auto;
}

@media (max-width: 1200px) {
    .english-title span {
        font-size: 42px;
    }

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

    .section-desc {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 40px;
    }

    .left-section {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .english-title span {
        font-size: 36px;
    }

    .right-section {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 80px 15px 30px;
    }

    .english-title span {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .section-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .text-content {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .english-title span {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-desc {
        font-size: 12px;
    }
}

.slide-content-3 {
    position: relative;
    width: 100%;
    height: 960px;
    background: #0a0c18;
    overflow: hidden;
}

.bg-decoration-sy3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../images/sybg2.png') no-repeat center top;
    background-size: cover;
    pointer-events: none;
}

.content-container-3 {
    position: relative;
    z-index: 10;
    max-width: 1580px;
    margin: 0 auto;
    padding: 80px 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.left-section-3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 40px;
}

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

.header-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-100%);
}

.header-text.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.chinese-title {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(to right, #fff 0%, #D564D9 50%, #3E206E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
}

.english-title-3 {
    font-size: 28px;
    color: #fff;
    margin: 0;
    opacity: 0.8;
}

.more-link {
    display: block;
  
}

.more-link img {
    width: 100%;
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-100%);
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.stat-icon {
    width: 28px;
  
    margin-bottom: 15px;
}

.stat-number {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.counter {
    font-size: 56px;
    font-weight: bold;
    color: #D564D9;
}

.unit {
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
    margin-left: 5px;
}

.stat-title {
    font-size: 16px;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
    font-weight: normal;
}

.right-section-3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
  
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .chinese-title {
        font-size: 36px;
    }

    .english-title-3 {
        font-size: 18px;
    }

    .counter {
        font-size: 40px;
    }

    .stats-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .content-container-3 {
        flex-direction: column;
        padding: 60px 20px;
    }

    .left-section-3 {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .right-section-3 {
        order: -1;
        margin-bottom: 40px;
    }

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

@media (max-width: 768px) {
    .chinese-title {
        font-size: 28px;
    }

    .english-title-3 {
        font-size: 16px;
    }

    .counter {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-icon {
        width: 30px;
        height: 30px;
    }

    .stat-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .chinese-title {
        font-size: 22px;
    }

    .english-title-3 {
        font-size: 14px;
    }

    .counter {
        font-size: 26px;
    }

    .unit {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-title {
        font-size: 12px;
    }
}

.slide-content-4 {
    position: relative;
    width: 100%;
    height: 960px;
    background: #0a0c18;
    overflow: hidden;
}

.bg-decoration-sy4 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../images/sybg2.png') no-repeat center top;
    background-size: cover;
    pointer-events: none;
}

.content-container-4 {
    position: relative;
    z-index: 10;
    max-width: 1580px;
    margin: 0 auto;
    padding: 60px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-row {
    display: flex;
    gap: 20px;
}

.products-row-top {
    flex: 1;
}

.products-row-bottom {
    flex: 1;
    margin-top: 25px;
    display: flex;
}

.products-row-bottom .product-card {
    transition: flex 0.4s ease;
    flex: 1;
}

.products-row-bottom .product-card.active1 {
    flex: 2 !important;
    z-index: 10;
}

.products-row-bottom .product-card.active2 {
    flex: 1 !important;
}

.product-card {
    position: relative;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    text-align: center;
}

.product-card-left {
    flex: 0 0 20%;
  
    border: 1px solid;
    border-image: linear-gradient(to right, #D564D9, #3E206E) 1;
}

.product-card-center {
    flex: 0 0 60%;
    position: relative;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.product-card-right {
    flex: 0 0 20%;
  
    border: 1px solid;
    border-image: linear-gradient(to right, #D564D9, #3E206E) 1;
}

.product-card-bottom {
    flex: 0 0 calc(33.333%);
  
    border: 1px solid;
    border-image: linear-gradient(to right, #D564D9, #3E206E) 1;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    text-align: center;
   
    padding: 30px;
    padding-top: 24%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 10px 0;
}

.product-desc {
    font-size: 14px;
    color: #fff;
    min-height: 45px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    background: transparent;
    border: 1px solid;
    border-image: linear-gradient(to right, #D564D9, #3E206E) 1;
  
    text-decoration: none;
    color: #D564D9;
 
    transition: all 0.3s ease;
}

.product-btn span {
    margin-right: 8px;
}

.arrow-icon {
    height: 14px;
    filter: brightness(0) saturate(100%) invert(68%) sepia(54%) saturate(564%) hue-rotate(266deg) brightness(95%) contrast(90%);
    transition: filter 0.3s ease;
}

.product-btn:hover {
    background: linear-gradient(to right, #D564D9, #3E206E);
    color: #fff;
}

.product-btn:hover .arrow-icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.product-btn-highlight {
    background: linear-gradient(to right, #D564D9, #3E206E);
    color: #fff;
    border: none;
}

.product-btn-highlight .arrow-icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

@media (max-width: 1200px) {
    .products-row {
        flex-direction: column;
    }

    .product-card-left,
    .product-card-center,
    .product-card-right {
        flex: none;
        width: 100%;
    }

    .product-card-bottom {
        flex: none;
        width: calc(50% - 10px);
    }

    .product-title {
        font-size: 20px;
    }

    .product-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .content-container-4 {
        padding: 40px 20px;
    }

    .products-row {
        gap: 15px;
    }

    .product-card-bottom {
        width: 100%;
    }

    .product-title {
        font-size: 18px;
    }

    .product-desc {
        font-size: 12px;
    }

    .product-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 16px;
    }

    .product-desc {
        font-size: 11px;
    }

    .product-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .card-content {
        padding: 15px;
    }
}

.slide-content-5 {
    position: relative;
    width: 100%;


    overflow: hidden;
}

.bg-decoration-sy5 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../images/sybg2.png') no-repeat center top;
    background-size: cover;
    pointer-events: none;
    opacity: 0.5;
}

.content-container-5 {
    position: relative;
    z-index: 10;
    max-width: 1580px;
    margin: 0 auto;
    padding: 60px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-header-5 {
    display: flex;
    align-items:center;
    margin-bottom: 50px;
}



.news-title {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(to right, #D564D9, #3E206E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
}

.news-subtitle {
    font-size: 28px;
    color: #D564D9;
    margin: 0;
}

.news-more-link {
    display: block;
   
}

.news-more-link img {
    width: 100%;
    height: 100%;
}

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

.news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid;
   
    border: 1px solid #D564D9;
    border-radius: 12px;
    overflow: hidden;
   
    transition: background-color 0.3s ease;
}

.news-card:hover {
    background-color: rgba(213, 100, 217, 0.1);
}

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

.news-info {
    padding: 20px;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin: 15px 0;
    display: block;
}

.news-heading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .news-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .content-container-5 {
        padding: 40px 20px;
    }

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

    .news-title {
        font-size: 28px;
    }

    .news-subtitle {
        font-size: 16px;
    }

    .news-image {
        height: 220px;
    }

    .news-heading {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .news-title {
        font-size: 22px;
    }

    .news-subtitle {
        font-size: 14px;
    }

    .news-image {
        height: 180px;
    }

    .news-heading {
        font-size: 14px;
    }

    .news-date {
        font-size: 12px;
    }

    .news-info {
        padding: 15px;
    }
}

.partner-section {
    width: 100%;
    background: #fff;
    padding: 60px 0;
}

.partner-wrapper {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 30px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .partner-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 40px 0;
    }

    .partner-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .partner-logo {
        max-height: 50px;
    }

    .partner-item {
        padding: 10px;
    }

    @media (max-width: 480px) {
        .partner-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .partner-logo {
            max-height: 40px;
        }
    }
}

.footer-section {
    background: linear-gradient(to bottom, #fff 50%, #af76ff);
    padding: 60px 0 30px;
    position: relative;
}

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

.arrow-icon-wrapper {
    width: 128px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.footer-arrow {
    width: 100%;
    height: 100%;

    animation: arrowSpin 2s linear infinite;
}
.arrow-icon-wrapper .shuangj {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footer-arrow-img {
    width: 100%;
    height: 100%;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.line {
    flex: 1;
    height: 1px;
    max-width: 40%;
}

.line-left {
    background: linear-gradient(to left, #D564D9, transparent);
}

.line-right {
    background: linear-gradient(to right, #D564D9, transparent);
}

.footer-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
  
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link img {
    width: 100%;
    height: 100%;
}


.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-nav-item {
    position: relative;
}

.footer-nav-link {
    font-size: 18px;
    font-weight: bold;
    color: #21001A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover,
.footer-nav-link.active {
    color: #D564D9;
}

.footer-submenu {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.footer-sub-link {
    display: block;
    font-size: 16px;
    color: #1f0519;
    text-decoration: none;
    padding-top: 22px ;
    transition: color 0.3s ease;
}

.footer-sub-link:hover,
.footer-sub-link.active {
    color: #D564D9;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-nav {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-left {
        margin-bottom: 40px;
    }

    .footer-nav {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-nav-link {
        font-size: 14px;
    }

    .footer-sub-link {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav-item {
        margin-bottom: 10px;
    }

    .footer-submenu {
        margin-top: 5px;
    }

    .footer-copyright p {
        font-size: 10px;
    }
}

.page-title-wrapper {
    width: 100%;
    padding: 60px 0;

}

.page-title-content {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;

}

.page-title-en {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9, #3E206E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
    line-height: 1.2;
    display: inline-block;
}

.page-title-zh {
    font-size: 28px;
    color: #3E206E;
    margin: 0;
    font-weight: normal;
}

@media (max-width: 1200px) {
    .page-title-en {
        font-size: 48px;
    }
    
    .page-title-zh {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .page-title-en {
        font-size: 40px;
    }
    
    .page-title-zh {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-title-wrapper {
        padding: 40px 0;
    }
    
    .page-title-en {
        font-size: 32px;
    }
    
    .page-title-zh {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page-title-en {
        font-size: 24px;
    }
    
    .page-title-zh {
        font-size: 16px;
    }
}

.prod-detail-section {
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    
}

.prod-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('static/images/sybg2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    pointer-events: none;
}

.prod-detail-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.prod-detail-header {
    margin-bottom: 50px;
    text-align: center;
}

.prod-detail-title {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9, #3E206E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    display: inline-block;
}

.prod-detail-content {
    display: flex;
    gap: 40px;
}

.prod-category-sidebar {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.category-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.category-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #666;
}

.category-item:hover {
    color: #D564D9;
}

.category-item.active {
    color: #D564D9;
    font-weight: bold;
}

.category-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D564D9;
    margin-right: 12px;
    flex-shrink: 0;
}

.category-item:not(.active) .category-icon {
    background: transparent;
    border: 2px solid #ddd;
}

.category-text {
    font-size: 15px;
    flex: 1;
}

.category-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.category-item:hover .category-arrow {
    border-top-color: #D564D9;
}

.category-item.active .category-arrow {
    border-top-color: #D564D9;
    transform: rotate(180deg);
}

.category-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-submenu.open {
    max-height: 300px;
}

.category-sub-item {
    display: block;
    padding: 10px 0 10px 38px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-sub-item:hover {
    color: #D564D9;
    background: rgba(213, 100, 217, 0.05);
}

.category-sub-item.active {
    color: #D564D9;
    font-weight: bold;
}

.prod-grid-wrapper {
    flex: 1;
}

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

.prod-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.prod-item-highlight {
    border: 2px solid #D564D9;
}

.prod-item-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.prod-item-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 20px 20px 10px;
}

.prod-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-item-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #D564D9, #3E206E);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.prod-item-btn:hover {
    background: linear-gradient(135deg, #c44fc4, #2d1856);
}

.prod-item-btn-secondary {
    background: transparent;
    color: #D564D9;
    border: 1px solid #D564D9;
}

.prod-item-btn-secondary:hover {
    background: linear-gradient(135deg, #D564D9, #3E206E);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 1200px) {
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prod-detail-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .prod-detail-content {
        flex-direction: column;
    }
    
    .prod-category-sidebar {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .prod-detail-section {
        padding: 40px 0;
    }
    
    .prod-detail-title {
        font-size: 36px;
    }
    
    .prod-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prod-category-sidebar {
        padding: 20px;
    }
    
    .category-item {
        padding: 10px 0;
    }
    
    .category-text {
        font-size: 14px;
    }
    
    .category-arrow {
        border-left-width: 4px;
        border-right-width: 4px;
        border-top-width: 4px;
        margin-left: 6px;
    }
    
    .category-sub-item {
        padding: 8px 0 8px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .prod-detail-title {
        font-size: 28px;
    }
    
    .prod-detail-container {
        padding: 0 15px;
    }
    
    .prod-item-image {
        height: 180px;
    }
}

.single-prod-section {
    width: 100%;
}

.single-prod-bg {

    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.single-prod-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/probg.png') no-repeat center center;
    
    background-position: center;
  
}

.single-prod-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.single-prod-title {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(to right, #fff 40%, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: inline-block;
}

.single-prod-image-wrapper {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.single-prod-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.back-btn {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
    z-index: 2;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.back-icon {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
}

.single-prod-detail {
    padding: 60px 0;
    padding-top: 0;

    position: relative;
    z-index: 2;
}

.single-prod-detail-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.single-prod-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-prod-detail-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.single-prod-detail-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 5px 0;
}

.single-prod-detail-subtitle-en {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.single-prod-detail-content {
    display: flex;
    justify-content: center;
}

.detail-image {
    width: 100%;

    height: auto;
    border-radius: 8px;
}

@media (max-width: 1200px) {
    .single-prod-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .single-prod-title {
        font-size: 40px;
    }
    
    .back-btn {
        width: 50px;
        height: 50px;
        left: 20px;
    }
    
    .single-prod-detail-container {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .single-prod-bg {
        padding: 40px 0 60px;
    }
    
    .single-prod-title {
        font-size: 32px;
    }
    
    .single-prod-image {
        max-width: 350px;
    }
    
    .single-prod-detail {
        padding: 40px 0;
        margin-top: -30px;
    }
    
    .single-prod-detail-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .single-prod-title {
        font-size: 24px;
    }

    .back-btn {
        width: 40px;
        height: 40px;
        left: 15px;
    }

    .back-icon {
        font-size: 24px;
    }

    .single-prod-detail-container {
        padding: 20px 15px;
    }

    .single-prod-detail-title {
        font-size: 20px;
    }
}

.about-banner-section {
    width: 100%;
    position: relative;
}

.about-banner-wrapper {
    position: relative;
    width: 100%;
    height: 780px;
    overflow: hidden;
}

.about-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-content {
    text-align: center;
    padding: 0 20px;
}

.about-banner-title-en {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(to right, #fff, #D564D9, #3E206E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.about-banner-title-zh {
    font-size: 28px;
    color: #fff;
    margin: 0;
    font-weight: normal;
}

@media (max-width: 1200px) {
    .about-banner-title-en {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .about-banner-wrapper {
        height: 350px;
    }

    .about-banner-title-en {
        font-size: 40px;
    }

    .about-banner-title-zh {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-banner-wrapper {
        height: 300px;
    }

    .about-banner-title-en {
        font-size: 32px;
    }

    .about-banner-title-zh {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .about-banner-wrapper {
        height: 250px;
    }

    .about-banner-title-en {
        font-size: 24px;
    }

    .about-banner-title-zh {
        font-size: 16px;
    }
}

.culture-section {
    width: 100%;
    position: relative;
    min-height: 500px;
  
}

.culture-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.culture-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 500px;
}

.culture-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    text-align: center;
}

.culture-item-left {
    flex: 0 0 35%;
   
}

.culture-item-center {
    flex: 0 0 30%;
    background: #704598;
}

.culture-item-right {
    flex: 0 0 35%;
    
}

.culture-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.culture-item-left .culture-title,
.culture-item-right .culture-title {
    color: #704598;
}

.culture-item-center .culture-title {
    color: #fff;
}

.culture-line {
    width: 40px;
    height: 2px;
    margin-bottom: 20px;
    background: #fff;
}

.culture-item-left .culture-line,
.culture-item-right .culture-line {
    background: #704598;
}

.culture-desc {
    font-size: 20px;
    margin: 0 0 30px 0;
    font-weight: bold;
}

.culture-item-left .culture-desc,
.culture-item-right .culture-desc {
    color: #704598;
}

.culture-item-center .culture-desc {
    color: #fff;
}

.culture-desc-detail {
    font-size: 15px;
    color: #fff;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.culture-number {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.culture-num-text {
    font-size: 12px;
    letter-spacing: 2px;
}

.culture-num-num {
    font-size: 36px;
    font-weight: bold;
}

.culture-item-left .culture-num-text,
.culture-item-left .culture-num-num,
.culture-item-right .culture-num-text,
.culture-item-right .culture-num-num {
    color: #704598;
}

.culture-item-center .culture-num-text,
.culture-item-center .culture-num-num {
    color: #fff;
}

@media (max-width: 1200px) {
    .culture-title {
        font-size: 36px;
    }

    .culture-desc {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .culture-content {
        flex-direction: column;
    }

    .culture-item-left,
    .culture-item-center,
    .culture-item-right {
        flex: 1;
        width: 100%;
        min-height: 250px;
    }

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

@media (max-width: 768px) {
    .culture-item {
        padding: 40px 20px;
    }

    .culture-title {
        font-size: 28px;
    }

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

    .culture-num-num {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .culture-title {
        font-size: 22px;
    }

    .culture-desc {
        font-size: 14px;
    }

    .culture-desc-detail {
        font-size: 13px;
    }

    .culture-num-num {
        font-size: 24px;
    }
}

.honors-section {
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.honors-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.honors-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.honors-header {
    margin-bottom: 50px;
}

.honors-title-en {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #21001A, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    display: inline-block;
}

.honors-title-zh {
    font-size: 22px;
    color: #21001A;
    margin: 0;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.honors-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.honors-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

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

.honors-item-title {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin: 0;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .honors-grid {
        gap: 30px;
    }

    .honors-title-en {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .honors-image {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .honors-section {
        padding: 60px 0;
    }

    .honors-title-en {
        font-size: 32px;
    }

    .honors-title-zh {
        font-size: 18px;
    }

    .honors-image {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .honors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .honors-title-en {
        font-size: 26px;
    }

    .honors-title-zh {
        font-size: 16px;
    }

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

    .honors-item-title {
        font-size: 14px;
    }
}

.social-section {
    width: 100%;
    position: relative;
    min-height: 780px;
}

.social-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.social-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 80px 30px;
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-header {
    margin-bottom: 40px;
}

.social-title-en {
    font-size: 52px;
    font-weight: bold;
    background: linear-gradient(to right, #fff, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
    line-height: 1.2;
    display: inline;
  
}

.social-title-zh {
    font-size: 24px;
    color: #fff;
     margin-top: 8px;
}

.social-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-desc {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin: 0;
   
}

@media (max-width: 1200px) {
    .social-title-en {
        font-size: 44px;
    }

    .social-content {
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .social-title-en {
        font-size: 38px;
    }

    .social-title-zh {
        font-size: 20px;
    }

    .social-desc {
        font-size: 15px;
    }
}

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

    .social-title-en {
        font-size: 32px;
    }

    .social-title-zh {
        font-size: 18px;
    }

    .social-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-title-en {
        font-size: 26px;
    }

    .social-title-zh {
        font-size: 16px;
    }

    .social-desc {
        font-size: 13px;
        text-align: left;
    }
}

.company-intro-section {
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.company-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.company-intro-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.company-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.company-intro-left {
    flex: 1;
}

.company-name {
    font-size: 32px;
    font-weight: bold;
    color: #704598;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.company-date {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.date-left {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 18px;
    font-weight: bold;
    color: #704598;
}

.date-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.date-right {
    display: flex;
    align-items: baseline;
}

.date-year {
    font-size: 60px;
    font-weight: bold;
    background: linear-gradient(to right, #704598, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.date-unit {
    font-size: 20px;
    color: #666;
    margin-left: 5px;
}

.company-desc {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.company-intro-right {
    flex: 0 0 500px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #704598;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
}

.video-overlay.hidden {
    display: none;
}

.play-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.play-icon img {
    width: 40px;
    height: 40px;
}

.company-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-num {
    font-size: 48px;
    font-weight: bold;
    color: #704598;
}

.stat-unit {
    font-size: 20px;
    font-weight: bold;
    color: #704598;
    margin-left: 5px;
}

.stat-title {
    font-size: 13px;
    color: #666;
    margin: 0;
}

@media (max-width: 1200px) {
    .company-intro-content {
        gap: 30px;
    }

    .company-intro-right {
        flex: 0 0 450px;
    }

    .date-year {
        font-size: 50px;
    }

    .stat-num {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .company-intro-content {
        flex-direction: column;
    }

    .company-intro-right {
        flex: 1;
        width: 100%;
    }

    .video-container {
        height: 320px;
    }

    .company-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .company-intro-section {
        padding: 60px 0;
    }

    .company-name {
        font-size: 26px;
    }

    .date-year {
        font-size: 40px;
    }

    .company-desc {
        font-size: 14px;
    }

    .video-container {
        height: 280px;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }

    .play-icon img {
        width: 30px;
        height: 30px;
    }

    .stat-num {
        font-size: 32px;
    }

    .stat-unit {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 22px;
    }

    .date-year {
        font-size: 32px;
    }

    .date-unit {
        font-size: 16px;
    }

    .company-desc {
        font-size: 13px;
    }

    .video-container {
        height: 220px;
    }

    .play-icon {
        width: 50px;
        height: 50px;
    }

    .play-icon img {
        width: 25px;
        height: 25px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-num {
        font-size: 28px;
    }
}

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

.timeline-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.timeline-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.timeline-header {
    margin-bottom: 60px;
}

.timeline-title-en {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
}

.timeline-title-zh {
    font-size: 22px;
    color: #333;
    margin: 0;
}

.timeline-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.timeline-slides {
    position: relative;
    min-height: 300px;
}

.timeline-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    animation: fadeIn 0.5s ease;
}

.timeline-slide.active {
    display: flex;
}

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

.timeline-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.timeline-year {
    font-size: 80px;
    font-weight: bold;
    color: #704598;
    margin: 0 0 20px 0;
    line-height: 1;
}

.timeline-desc {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    max-width: 500px;
}

.timeline-right {
    flex: 0 0 400px;
}

.timeline-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.timeline-nav {
    position: relative;
    padding-top: 30px;
}

.timeline-dotted-line {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, #D564D9 0, #D564D9 5px, transparent 5px, transparent 15px);
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timeline-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.dot-year {
    font-size: 14px;
    color: #D564D9;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.timeline-dot.active .dot-year {

    margin-bottom: 8px;
 
    color: #704598;
}

.dot-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D564D9;
    transition: background 0.3s ease;
}

.timeline-dot.active .dot-indicator {
    background: #704598;
}

.dot-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #704598;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-dot.active .dot-arrow {
    opacity: 1;
}

@media (max-width: 1200px) {
    .timeline-title-en {
        font-size: 40px;
    }

    .timeline-year {
        font-size: 65px;
    }

    .timeline-right {
        flex: 0 0 350px;
    }
}

@media (max-width: 992px) {
    .timeline-slide.active {
        flex-direction: column;
    }

    .timeline-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .timeline-right {
        flex: 1;
        width: 100%;
    }

    .timeline-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
    }

    .timeline-title-en {
        font-size: 32px;
    }

    .timeline-title-zh {
        font-size: 18px;
    }

    .timeline-year {
        font-size: 50px;
    }

    .timeline-desc {
        font-size: 14px;
    }

    .dot-year {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .timeline-title-en {
        font-size: 26px;
    }

    .timeline-year {
        font-size: 40px;
    }

    .timeline-image {
        height: 200px;
    }

    .timeline-dots {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .timeline-dot {
        flex: 0 0 calc(33.33% - 10px);
        align-items: flex-start;
    }

    .timeline-dotted-line {
        display: none;
    }
}

.team-section {
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.team-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('static/images/bg2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.team-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.team-content {
    display: flex;
    gap: 60px;
}

.team-left {
    flex: 1;
}

.team-header {
    margin-bottom: 30px;
}

.team-title-en {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
      display: inline-block;
}

.team-title-zh {
    font-size: 22px;
    color: #333;
  
}

.team-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 40px 0;
    text-align: justify;
}

.team-quote {
    position: relative;
    padding: 30px;
    text-align: center;
}

.quote-icon-left {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 48px;
    color: #D564D9;
    font-weight: bold;
}

.quote-icon-right {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 48px;
    color: #D564D9;
    font-weight: bold;
}

.quote-text {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(to right, #D564D9, #704598);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
       display: inline-block;
}

.quote-text:last-child {
    margin-bottom: 0;
}

.team-right {
    flex: 0 0 500px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.team-member {
    position: relative;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(112, 69, 152, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-name {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.member-desc {
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    padding: 0 10px;
}

@media (max-width: 1200px) {
    .team-right {
        flex: 0 0 450px;
    }

    .team-title-en {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .team-content {
        flex-direction: column;
    }

    .team-right {
        flex: 1;
        width: 100%;
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-title-en {
        font-size: 32px;
    }

    .team-title-zh {
        font-size: 18px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quote-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .team-title-en {
        font-size: 26px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .quote-text {
        font-size: 14px;
    }

    .member-name {
        font-size: 14px;
    }

    .member-desc {
        font-size: 11px;
    }
}

.gallery-section {
    width: 100%;
    padding: 80px 0;
    background: #f8f8f8;
}

.gallery-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.gallery-header {
    margin-bottom: 50px;
}

.gallery-title-en {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
}

.gallery-title-zh {
    font-size: 22px;
    color: #333;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-corner-tl,
.gallery-corner-tr,
.gallery-corner-bl,
.gallery-corner-br {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #D564D9;
    opacity: 0.6;
}

.gallery-corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.gallery-corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.gallery-corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.gallery-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

@media (max-width: 1200px) {
    .gallery-title-en {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title-en {
        font-size: 32px;
    }

    .gallery-title-zh {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-title-en {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image {
        height: 200px;
    }

    .gallery-corner-tl,
    .gallery-corner-tr,
    .gallery-corner-bl,
    .gallery-corner-br {
        width: 20px;
        height: 20px;
    }
}

.cases-section {
    width: 100%;
    padding: 80px 0;
}

.cases-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.case-item {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.case-item-odd {
    flex-direction: row;
}

.case-item-even {
    flex-direction: row-reverse;
}


.case-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.case-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-title {
    font-size: 28px;
    font-weight: bold;
    color: #704598;
    margin: 0 0 25px 0;
}

.case-info {
    margin-bottom: 25px;
}

.case-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.case-info p:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: bold;
    color: #333;
}

.case-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1200px) {
    .case-image {
        flex: 0 0 450px;
    }

    .case-content {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .case-item,
    .case-item-odd,
    .case-item-even {
        flex-direction: column;
    }

    .case-image {
        flex: 1;
    }

    .case-image img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .cases-section {
        padding: 60px 0;
    }

    .case-title {
        font-size: 24px;
    }

    .case-content {
        padding: 25px;
    }

    .case-image img {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .case-title {
        font-size: 20px;
    }

    .case-content {
        padding: 20px;
    }

    .case-image img {
        min-height: 200px;
    }

    .case-info p {
        font-size: 14px;
    }

    .case-desc {
        font-size: 13px;
    }
}

.detect-section {
    width: 100%;
    padding: 80px 0;
}

.detect-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.detect-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.detect-left {
    flex: 1;
}

.detect-title {
    font-size: 32px;
    font-weight: bold;
    color: #704598;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.detect-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.detect-right {
    flex: 0 0 550px;
}

.detect-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
}

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

.detect-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(112, 69, 152, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.detect-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(112, 69, 152, 1);
}

.play-icon-inner {
    color: #fff;
    font-size: 24px;
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .detect-right {
        flex: 0 0 450px;
    }

    .detect-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .detect-content {
        flex-direction: column;
        text-align: center;
    }

    .detect-right {
        flex: 1;
        width: 100%;
    }

    .detect-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .detect-section {
        padding: 60px 0;
    }

    .detect-title {
        font-size: 24px;
    }

    .detect-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .detect-title {
        font-size: 20px;
    }

    .detect-desc {
        font-size: 14px;
    }

    .detect-image-wrapper {
        height: 250px;
    }

    .detect-play-btn {
        width: 60px;
        height: 60px;
    }

    .play-icon-inner {
        font-size: 18px;
    }
}

.services-section {
    width: 100%;
    padding: 80px 0;
}

.services-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.services-header {
    margin-bottom: 50px;
}

.services-title-en {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    display: inline-block;
}

.services-title-zh {
    font-size: 22px;
    color: #333;
    margin: 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: transparent;
}

.service-item-odd {
    flex-direction: row;
}

.service-item-even {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 450px;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.service-title {
    font-size: 24px;
    font-weight: bold;
    color: #704598;
    margin: 0 0 20px 0;
}

.service-desc {
    font-size: 15px;
    color: #21001A;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

@media (max-width: 1200px) {
    .services-title-en {
        font-size: 40px;
    }

    .service-image {
        flex: 0 0 400px;
    }
}

@media (max-width: 992px) {
    .service-item,
    .service-item-odd,
    .service-item-even {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

    .service-content {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title-en {
        font-size: 32px;
    }

    .services-title-zh {
        font-size: 18px;
    }

    .service-image img {
        height: 240px;
    }

    .service-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .services-title-en {
        font-size: 26px;
    }

    .service-image img {
        height: 200px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-desc {
        font-size: 14px;
    }
}

.partners-section {
    width: 100%;
    padding: 80px 0;
    background: transparent;
}

.partners-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.partners-header {
    margin-bottom: 40px;
}

.partners-title-en {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    display: inline-block;
}

.partners-title-zh {
    font-size: 22px;
    color: #333;
    margin: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.partner-item {
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 1200px) {
    .partners-title-en {
        font-size: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-title-en {
        font-size: 32px;
    }

    .partners-title-zh {
        font-size: 18px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .partner-item {
        padding: 15px;
    }

    .partner-item img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .partners-title-en {
        font-size: 26px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-item {
        padding: 12px;
    }

    .partner-item img {
        max-height: 40px;
    }
}

.appointment-section {
    width: 100%;
    min-height: 600px;
    position: relative;
}

.appointment-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.appointment-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 60px 30px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.appointment-form-wrapper {
    width: 50%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
}

.appointment-header {
    margin-bottom: 30px;
}

.appointment-title-en {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    display: inline-block;
}

.appointment-title-zh {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #D564D9;
}

.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: #D564D9;
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    min-height: 120px;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: #D564D9;
}

.appointment-btn {
    background: linear-gradient(135deg, #704598, #D564D9);
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 69, 152, 0.4);
}

@media (max-width: 1200px) {
    .appointment-form-wrapper {
        width: 70%;
    }
}

@media (max-width: 992px) {
    .appointment-form-wrapper {
        width: 100%;
    }

    .appointment-title-en {
        font-size: 36px;
    }
}

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

    .appointment-form-wrapper {
        padding: 30px;
    }

    .appointment-title-en {
        font-size: 30px;
    }

    .appointment-title-zh {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .appointment-title-en {
        font-size: 24px;
    }

    .appointment-form-wrapper {
        padding: 20px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 15px;
        font-size: 13px;
    }

    .appointment-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

.job-list-section {
    width: 100%;
    padding: 60px 0;

}

.job-list-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #21001A;
    margin: 0;
}

.job-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.job-toggle.active {
    transform: rotate(90deg);
}

.toggle-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.job-content {
    display: none;
    padding: 25px;
    border-top: 1px dashed #ddd;
}

.job-content.active {
    display: flex;
}

.job-content-left {
    flex: 0 0 60%;
    padding-right: 30px;
}

.job-content-right {
    flex: 0 0 40%;
}

.job-section {
    margin-bottom: 30px;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section-title {
    font-size: 16px;
    font-weight: bold;
    color: #D564D9;
    margin: 0 0 15px 0;
}

.job-description {
    margin: 0;
    padding-left: 20px;
}

.job-description li {
    font-size: 14px;
    color: #666;
    line-height: 2;
    margin-bottom: 8px;
}

.job-description li:last-child {
    margin-bottom: 0;
}

.benefits {
    margin: 0;
}

.benefits p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.benefits p:last-child {
    margin-bottom: 0;
}

.job-textarea {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    resize: vertical;
    box-sizing: border-box;
    font-family: inherit;
}

.job-textarea:focus {
    outline: none;
    border-color: #D564D9;
}

@media (max-width: 992px) {
    .job-content.active {
        flex-direction: column;
    }

    .job-content-left {
        flex: 1;
        padding-right: 0;
        padding-bottom: 25px;
        border-bottom: 1px dashed #ddd;
    }

    .job-content-right {
        flex: 1;
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .job-list-section {
        padding: 40px 0;
    }

    .job-list-container {
        padding: 0 20px;
    }

    .job-header {
        padding: 15px 20px;
    }

    .job-title {
        font-size: 16px;
    }

    .job-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .job-title {
        font-size: 15px;
    }

    .toggle-icon {
        width: 18px;
        height: 18px;
    }

    .job-section-title {
        font-size: 15px;
    }

    .job-description li,
    .benefits p {
        font-size: 13px;
    }

    .job-textarea {
        font-size: 13px;
        padding: 12px;
    }
}

.contact-info-section {
    width: 100%;
    padding: 60px 0;

}

.contact-info-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-info-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
 
    align-items: center;
 
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-title {
    font-size: 18px;
    font-weight: bold;
    color: #21001A;
    margin: 0 0 12px 0;
}

.contact-content {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-item {
        padding: 25px 20px;
    }

    .contact-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

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

    .contact-content {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-icon {
        width: 55px;
        height: 55px;
    }

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

    .contact-content {
        font-size: 12px;
    }
}

.contact-section {
    width: 100%;
    min-height: 600px;
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 60px 30px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.contact-content-wrapper {
    width: 50%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-company-name {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(to right, #000, #D564D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: inline-block;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}



.info-icon {
    width: 43px;
   
    margin-right: 15px;
    flex-shrink: 0;
}

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

.info-label {
    font-size: 18px;
    font-weight: bold;
    color: #21001A;
    margin-bottom: 5px;
}

.info-text {
    font-size: 14px;
    color: #666;
}

.contact-qrcode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.qrcode-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qrcode-icon {
  
    height: 24px;
    margin-bottom: 10px;
}

.qrcode-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.qrcode-image {
 
    height: 120px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .contact-content-wrapper {
        width: 70%;
    }
}

@media (max-width: 992px) {
    .contact-content-wrapper {
        width: 100%;
    }

    .contact-company-name {
        font-size: 28px;
    }
}

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

    .contact-content-wrapper {
        padding: 30px;
    }

    .contact-company-name {
        font-size: 24px;
    }

    .contact-qrcode-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qrcode-image {
     
        height: 100px;
    }
}

@media (max-width: 480px) {
    .contact-company-name {
        font-size: 20px;
    }

    .contact-content-wrapper {
        padding: 20px;
    }

    .contact-qrcode-grid {
        grid-template-columns: 1fr;
    }

    .qrcode-icon {
       
        height: 20px;
    }

    .qrcode-title {
        font-size: 11px;
    }

    .qrcode-image {
     
        height: 90px;
    }

    .info-label,
    .info-text {
        font-size: 13px;
    }
}

.news-detail-section {
    width: 100%;
    padding: 60px 0;
}

.news-detail-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 30px;
}

.news-detail-title {
    font-size: 32px;
    font-weight: bold;
    color: #21001A;
    text-align: center;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.news-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: #666;
}

.news-detail-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #ddd 0px, #ddd 10px, transparent 10px, transparent 20px);
    margin-bottom: 40px;
}

.news-detail-content {
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.news-detail-content p {
    margin: 0 0 20px 0;
    text-align: justify;
}

.news-detail-content h2 {
    font-size: 22px;
    font-weight: bold;
    color: #704598;
    margin: 30px 0 20px 0;
}

@media (max-width: 992px) {
    .news-detail-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .news-detail-section {
        padding: 40px 0;
    }

    .news-detail-container {
        padding: 0 20px;
    }

    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-meta {
        gap: 20px;
    }

    .meta-item {
        font-size: 13px;
    }

    .news-detail-content {
        font-size: 15px;
    }

    .news-detail-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .news-detail-title {
        font-size: 20px;
    }

    .news-detail-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .news-detail-content {
        font-size: 14px;
    }

    .news-detail-content h2 {
        font-size: 18px;
    }
}
