/* about-us: инлайн-<style> секции (about/milestones/timeline) из оригинала Sunell —
   при canvas-переносе <head>-инлайн-стили вырезались. Возвращаем как файл, ГРУЗИТСЯ ТОЛЬКО на /about-us/ и /en/about-us/
   (условный enqueue в functions.php), поэтому генерик-селекторы (.pagination и т.п.) другие страницы не задевают. */

        /* 基础样式 */
        .about {
            background-color: #fff;
        }

        /* 基础样式 */
        .about-section {
            background-color: #fff;
            padding: 60px 0;
        }

        .about-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 图片浮动在左侧 */
        .about-image {
            float: left;
            max-width: 600px;
            margin: 0 40px 20px 0;
            position: relative;
            overflow: hidden;
        }

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

        /* 年份徽章 */
        .year-badge {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            padding: 15px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .year-number {
            font-size: 40px;
            font-weight: 600;
            color: #333;
            display: block;
            line-height: 1;
        }

        .year-text {
            font-size: 18px;
            color: #29aae3;
            font-weight: 600;
        }

        /* 文本内容 */
        .about-content {
            overflow: hidden;
            /* 创建新的BFC防止环绕问题 */
        }

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

        .about-subtitle {
            font-size: 18px;
            color: #777;
            font-style: italic;
            margin-bottom: 10px;
        }

        .about-title {
            font-size: 36px;
            color: #333;
            font-weight: 600;
            margin: 0 0 15px 0;
            position: relative;
            padding-bottom: 15px;
        }

        .about-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background-color: #29aae3;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .about-body {
            font-size: 16px;
            line-height: 1.6;
            color: #000;
        }

        .about-body p {
            margin-bottom: 15px;
        }

        /* 清除浮动 */
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }

        /* 基础样式 */
        .milestones {
            background-color: #f9f9f9;
        }

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

        .milestones-title h2 {
            font-size: 40px;
            color: var(--main-text-color);
            font-family: 'OpenSans-Semibold';
            margin-bottom: 10px;
        }

        .milestones-title p {
            font-size: 18px;
            color: var(--main-text-color-light);
        }

        /* Swiper 容器 */
        .milestones .swiper-container {
            width: 100%;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
        }

        /* 单个里程碑样式 */
        .milestone {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 20px;
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            height: 360px;
            /* 固定高度 */
        }

        .milestone-content {
            flex: 1;
        }

        .milestone-content span {
            font-size: 16px;
            color: var(--main-text-color-light);
            font-style: italic;
        }

        .milestone-content h2 {
            font-size: 36px;
            color: var(--main-text-color);
            font-family: 'OpenSans-Semibold';
            margin: 10px 0;
        }

        .milestone-content p {
            font-size: 16px;
            color: #555;
        }

        .milestone-content .subtitle {
            font-size: 18px;
            color: var(--main-color);
            margin-bottom: 20px;
        }

        .milestone-image {
            width: 40%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .milestone-image img {
            width: 100%;
            object-fit: cover;
            /* 图片填充 */
            border-radius: 10px;
        }

        /* 自定义分页器样式（纵向时间轴样式） */
        .pagination-box {
            width: 150px;
            height: 360px;
            overflow: auto;
            border-right: 1px solid #ccc;
            /* 隐藏滚动条 */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .pagination {
            display: flex;
            flex-direction: column;
            margin: 0;
        }

        .pagination-box .swiper-pagination-bullet {
            width: 100%;
            height: 50px;
            position: relative;
            opacity: 1;
            cursor: pointer;
            background: unset;
            margin: 0;
            transition: all 0.3s ease;
        }

        .milestones .swiper-pagination-bullet {
            margin: 0 !important;
            width: 100%;
            padding-right: 30px;
            box-sizing: border-box;
            text-align: right;
        }

        .milestones .swiper-pagination-bullet::before {
            content: '';
            position: absolute;
            top: 15px;
            right: 0;
            width: 2px;
            height: 80px;
            opacity: 0;
            background: #ccc;
            transform: translateY(-50%);
        }

        .milestones .swiper-button-prev {
            left: 40px;
            bottom: 20px;
            margin-top: unset;
            top: unset;
        }

        .milestones .swiper-button-next {
            left: 100px;
            bottom: 20px;
            margin-top: unset;
            top: unset;
        }

        .milestones .swiper-pagination-bullet-active {
            font-size: 20px;
            color: var(--main-color);
        }

        .milestones .swiper-pagination-bullet-active::before {
            background: var(--main-color);
            opacity: 1;
        }

        /* 左右切换按钮样式 */
        .milestones .swiper-button-prev,
        .milestones .swiper-button-next {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            transition: all 0.3s ease;
        }

        .milestones .swiper-button-prev::after,
        .milestones .swiper-button-next::after {
            font-size: 20px;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: var(--main-color);
            color: #fff;
        }

        /* 隐藏第一页的“上一页”按钮和最后一页的“下一页”按钮 */
        .swiper-button-prev.swiper-button-disabled,
        .swiper-button-next.swiper-button-disabled {
            display: none;
        }

        /* 基础样式 */
        .about-us-content {
            background-color: #fff;
        }

        /* 顶部图片和内容 */
        .about-us-content-top h2 {
            font-size: 40px;
            color: var(--main-text-color);
            font-family: 'OpenSans-Semibold';
            text-align: center;
            margin-bottom: 40px;
        }

        .about-us-content-main {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-us-image {
            flex: 1;
        }

        .about-us-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .about-us-text {
            flex: 1;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        /* 底部列表 */
        .about-us-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .about-us-list-item {
            width: 20%;
            display: flex;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        .about-us-list-item span {
            font-size: 36px;
            color: var(--main-text-color);
            font-family: 'OpenSans-Semibold';
            display: block;
            margin-right: 10px;
        }

        .about-us-list-item p {
            font-size: 16px;
            color: var(--main-text-color-light);
            width: 130px;
        }

        /* 基础样式 */
        .about-us-awards {
            background-color: #f9f9f9;
        }

        /* 标题和轮播容器 */
        .about-us-awards-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .about-us-awards-title h2 {
            font-size: 40px;
            color: var(--main-text-color);
            font-family: 'OpenSans-Semibold';
            margin-bottom: 20px;
        }

        /* 左右切换按钮 */
        .about-us-awards .swiper-button-prev,
        .about-us-awards .swiper-button-next {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            transition: all 0.3s ease;
        }

        .about-us-awards .swiper-button-prev::after,
        .about-us-awards .swiper-button-next::after {
            font-size: 1.2rem;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: #29aae3;
            color: #fff;
        }

        /* 轮播内容 */
        .about-us-awards-content {
            width: 100%;
            overflow: hidden;
        }

        .mySwiper {
            width: 100%;
            padding: 20px 0;
            position: relative;
        }

        .mySwiper .swiper-wrapper {
            display: flex;
        }

        .mySwiper .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-us-awards-item-image img {
            width: 100%;
            display: block;
        }

        /* 基础样式 */
        .about-us-partner {
            background-color: #fff;
        }

        /* 标题部分 */
        .about-us-partner-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .about-us-partner-title h2 {
            font-size: 40px;
            color: var(--main-text-color);
            font-family: 'OpenSans-Semibold';
        }

        /* 合作伙伴 Logo 列表 */
        .about-us-partner-item {
            margin-bottom: 20px;
        }

        .about-us-partner-item-image {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5), 
                        box-shadow 0.4s ease;
            transform-style: preserve-3d; /* 启用3D变换 */
        }

        @keyframes pop {
            0% { transform: scale(1) translateZ(0); }
            50% { transform: scale(1.1) translateZ(30px); }
            100% { transform: scale(1.05) translateZ(20px); }
        }

        .about-us-partner-item-image:hover {
            animation: pop 1s cubic-bezier(0.25, 0.1, 0.25, 1.5) forwards;
        }
        .about-us-partner-item-image img {
            max-width: 100%;
             /* height: 150px; */
            display: block;
        }

        .about-us-awards-content-bottom {
            position: relative;
            width: 100%;
        }

        .about-us-awards-content-bottom-text {
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            text-align: center;
            color: #fff;
        }

        .aboutUs-item {
            display: flex;
            gap: 30px;
            align-items: center;
            justify-content: space-between;
        }

        .aboutUs-item-text {
            flex: 1;
        }

        .aboutUs-item-image {
            flex: 1;
        }

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

        .aboutUs-awards {
            padding: 60px 0;
            background-color: #f5f5f5;
        }

        .aboutUs-awards.odd .aboutUs-item {
            flex-direction: row-reverse;
        }

        .aboutUs-awards.even .aboutUs-item {
            flex-direction: row;
        }

        .aboutUs-awards.top .aboutUs-item {
            flex-direction: column-reverse;
        }

        .aboutUs-awards.bottom .aboutUs-item {
            flex-direction: column;
        }

        .aboutUs-awards.top .aboutUs-item-text,
        .aboutUs-awards.bottom .aboutUs-item-text {
            text-align: center;
        }

        .aboutUs-awards.zIndex {
            position: relative;
            padding: 0;
        }

        .aboutUs-awards.zIndex .aboutUs-item-text {
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            width: 100%;
            text-align: center;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .aboutUs-awards.zIndex .aboutUs-item-text h2 {
            /*color: #fff;*/
        }

        .aboutUs-awards.zIndex .aboutUs-item-text p {
            /*color: #fff;*/
        }

        .aboutUs-awards.zIndex .container {
            max-width: 100% !important;
            padding: 0;
            z-index: 1;
        }

        .container.zIndex .aboutUs-item-image {
            width: 100%;
        }

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

        /* 响应式设计 */
        @media (max-width: 768px) {
            .aboutUs-awards{
                padding: 30px 0;
            }
            .aboutUs-awards.odd .aboutUs-item,
            .aboutUs-awards.even .aboutUs-item,
            .aboutUs-awards.top .aboutUs-item,
            .aboutUs-awards.bottom .aboutUs-item{
                flex-direction: column;
            }
            .aboutUs-awards.zIndex .aboutUs-item-text{
                top: 30px;
            }
            .about-section {
                padding: 30px 0;
            }

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

            .about-body {
                font-size: 14px;
            }

            .year-highlight h1 {
                font-size: 24px;
            }

            .year-highlight .years {
                font-size: 14px;
            }

            .about-title .subtitle {
                font-size: 18px;
            }

            .about-title h2,
            .milestones-title h2,
            .milestone-content h2,
            .about-us-awards-title h2,
            .about-us-partner-title h2,
            .about-us-content-top h2 {
                font-size: 24px;
            }

            .milestones-title p {
                font-size: 14px;
            }

            .about-content-left-img {
                border-radius: 8px;
            }

            .about-us-content-main {
                flex-direction: column;
                /* 移动端图片和内容堆叠 */
            }

            .about-us-list-item {
                width: 50%;
                /* 移动端每行显示 1 项 */
            }

            .about-us-text {
                font-size: 16px;
            }

            .milestone-content .subtitle {
                font-size: 16px;
            }

            .milestone-content span {
                font-size: 14px;
            }

            .milestone {
                display: flex;
                flex-direction: column;
                align-items: center;
                height: auto;
                gap: 20px;
                border-radius: 8px;
            }

            .milestone-image {
                width: 100%;
            }

            .about-us-awards-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .about-us-content-top h2 {
                margin-bottom: 30px;
            }

            .about-us-image img {
                border-radius: 8px;
            }

            .about-us-list-item span {
                font-size: 24px;
            }

            .about-us-list-item p {
                font-size: 12px;
            }

            .about-us-awards-header {
                margin-bottom: 0px;
            }

            .mySwiper {
                padding: 0;
            }

            .about-us-awards-content-bottom-text {
                top: 30px;
            }
        }
      /* 分页器选择器样式 */
        .picker-container {
            position: relative;
            width: 120px;
            height: 360px;
            display: inline-block;
            vertical-align: top;
            overflow: hidden;
        }

        .picker-mask {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(to top,
                    rgba(255, 255, 255, 0.9) 0%,
                    rgba(255, 255, 255, 0.5) 30%,
                    rgba(255, 255, 255, 0) 50%,
                    rgba(255, 255, 255, 0.5) 70%,
                    rgba(255, 255, 255, 0.9) 100%);
            pointer-events: none;
            z-index: 10;
        }

        .picker-highlight {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 40px;
            transform: translateY(-50%);
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
            pointer-events: none;
            z-index: 5;
        }

        .picker-swiper {
            width: 100%;
            height: 100%;
        }

        .picker-swiper .swiper-slide {
            width: 100%;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            color: #8e8e93;
            transition: all 0.3s;
            cursor: pointer;
            opacity: 0.4;
        }

        .picker-swiper .swiper-slide-active {
            color: #000;
            font-weight: 500;
            transform: scale(1.1);
            opacity: 1;
        }

        .picker-swiper .swiper-slide-prev,
        .picker-swiper .swiper-slide-next {
            opacity: 0.6;
        }

        /* 声音反馈 */
        .sound-feedback {
            margin-top: 30px;
            display: flex;
            align-items: center;
        }

        .sound-feedback label {
            margin-right: 10px;
        }
    