.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: -webkit-transform, transform;
    box-sizing: content-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform, transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Swiper 导航按钮 */
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/44*27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none;
    letter-spacing: 0;
    font-variant: normal;
    line-height: 1;
}

.swiper-button-prev {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after {
    content: "prev";
}

.swiper-button-next {
    right: 10px;
    left: auto;
}

.swiper-button-next:after {
    content: "next";
}

/* Swiper 分页器 */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

/* 自定义 Swiper 样式 */
.swiper .swiper-pagination {
    bottom: 24px;
    height: 8px;
    display: flex;
    justify-content: center;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background-color: rgba(0, 0, 0, .2);
}

.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000;
}

.swiper .swiper-button-next, 
.swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
}

.swiper .swiper-button-next:before, 
.swiper .swiper-button-prev:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    border-radius: 50%;
    transition: opacity .5s;
}

.swiper .swiper-button-next:after, 
.swiper .swiper-button-prev:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.swiper .swiper-button-next:hover:before, 
.swiper .swiper-button-prev:hover:before {
    opacity: .1;
}

.swiper .swiper-button-prev {
    left: 24px;
}

.swiper .swiper-button-prev:after {
    margin-left: 2px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.swiper .swiper-button-next {
    right: 24px;
}

.swiper .swiper-button-next:after {
    margin-left: -2px;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
}

/* 组件通用样式 */
.ef-pic {
    position: relative;
    height: 100%;
    width: 100%;
}

.ef-pic > img {
    object-fit: cover;
    object-position: center;
}

.fullImgs {
    object-fit: cover;
    object-position: center;
}

/* 页面布局样式 */
.PageLayout_pagelayout-bd__fd12s .allContentContainer {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* 区块 A 样式 */
.A_about-us-A___rZqF .secA {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
}

.A_about-us-A___rZqF .secA .video {
    position: relative;
    width: 100%;
    height: 100%;
}

.A_about-us-A___rZqF .secA .title {
    font-family: var(--font-family-Bold);
    font-size: 80px;
    line-height: 109px;
    color: #fff;
    width: 1200px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* 区块 B 样式 */
.AboutUs_about-us__Cp7G_ {
    background-color: #fff;
    margin-bottom: 120px;
}

html[site=cn] .AboutUs_about-us__Cp7G_ .title {
    font-weight: 700;
}

.B_about-us-B__OqS7l .secB {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
}

.B_about-us-B__OqS7l .secB .img {
    position: relative;
    width: 100%;
    height: 100%;
}

.B_about-us-B__OqS7l .secB .text-box {
    position: absolute;
    top: 114px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 800px;
    text-align: center;
    color: #fff;
}

.B_about-us-B__OqS7l .secB .text-box .title {
    font-family: var(--font-family-Bold);
    font-size: 48px;
    line-height: 66px;
}

.B_about-us-B__OqS7l .secB .text-box .desc {
    margin-top: 16px;
    font-family: var(--font-family-Medium);
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line;
    letter-spacing: 0;
}

/* 区块 C 样式 */
.C_about-us-C__2yTGO {
    background-color: #0c101f;
   /* padding: 100px 0 33.5px;*/
    margin: 0 auto;
}

.C_about-us-C__2yTGO .img-svg-2 {
    position: relative;
    z-index: 1;
    display: block;
    opacity: .3;
}

.C_about-us-C__2yTGO .secC {
    color: #fff;
    font-family: var(--font-family-Medium);
    text-align: center;
    position: relative;
}

.C_about-us-C__2yTGO .secC .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.C_about-us-C__2yTGO .secC .text-box {
    position: relative;
    width: 800px;
    margin: 0 auto;
    padding-top: 200px;
}

.C_about-us-C__2yTGO .secC .text-box .title {
    font-family: var(--font-family-Bold);
    font-size: 48px;
    line-height: 66px;
}

.C_about-us-C__2yTGO .secC .text-box .desc {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line;
    letter-spacing: 0;
    word-spacing: 0;
    opacity: .7;
}

.C_about-us-C__2yTGO .secC .img {
    margin: 60px auto 0;
    position: relative;
    width: 1062px;
    height: 702px;
}

/* 圆形动画元素 */
.C_about-us-C__2yTGO .secC .img .circle {
    display: block;
    position: absolute;
    z-index: 3;
}

.C_about-us-C__2yTGO .secC .img .circle .inner,
.C_about-us-C__2yTGO .secC .img .circle .inner2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    border-radius: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.C_about-us-C__2yTGO .secC .img .circle .inner {
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, .4);
    -webkit-animation: C_circleWave__uEI7N 2.5s linear infinite;
    animation: C_circleWave__uEI7N 2.5s linear infinite;
}

.C_about-us-C__2yTGO .secC .img .circle .inner2 {
    width: 50%;
    height: 50%;
    background-color: hsla(0, 0%, 100%, .8);
    -webkit-animation: C_circleWave2__JYSfq 2.5s linear infinite;
    animation: C_circleWave2__JYSfq 2.5s linear infinite;
}

.C_about-us-C__2yTGO .secC .img .circle .inner3 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* 圆形位置与动画延迟 */
.C_about-us-C__2yTGO .secC .img .circle.c1 { width: 200px; height: 200px; top: 230px; left: 35px; }
.C_about-us-C__2yTGO .secC .img .circle.c1 .inner { animation-delay: .1503646591s; }
.C_about-us-C__2yTGO .secC .img .circle.c1 .inner2 { animation-delay: 1.4003646591s; }

.C_about-us-C__2yTGO .secC .img .circle.c2 { width: 80px; height: 80px; top: 380px; left: 160px; }
.C_about-us-C__2yTGO .secC .img .circle.c2 .inner { animation-delay: 1.5565375003s; }
.C_about-us-C__2yTGO .secC .img .circle.c2 .inner2 { animation-delay: 2.8065375003s; }

.C_about-us-C__2yTGO .secC .img .circle.c3 { width: 80px; height: 80px; top: 435px; left: 245px; }
.C_about-us-C__2yTGO .secC .img .circle.c3 .inner { animation-delay: .2112893409s; }
.C_about-us-C__2yTGO .secC .img .circle.c3 .inner2 { animation-delay: 1.4612893409s; }

.C_about-us-C__2yTGO .secC .img .circle.c4 { width: 80px; height: 80px; top: 550px; left: 250px; }
.C_about-us-C__2yTGO .secC .img .circle.c4 .inner { animation-delay: 1.4778890451s; }
.C_about-us-C__2yTGO .secC .img .circle.c4 .inner2 { animation-delay: 2.7278890451s; }

.C_about-us-C__2yTGO .secC .img .circle.c5 { width: 200px; height: 200px; top: 210px; left: 435px; }
.C_about-us-C__2yTGO .secC .img .circle.c5 .inner { animation-delay: .6379050001s; }
.C_about-us-C__2yTGO .secC .img .circle.c5 .inner2 { animation-delay: 1.8879050001s; }

.C_about-us-C__2yTGO .secC .img .circle.c6 { width: 80px; height: 80px; top: 340px; left: 440px; }
.C_about-us-C__2yTGO .secC .img .circle.c6 .inner { animation-delay: 1.0650897965s; }
.C_about-us-C__2yTGO .secC .img .circle.c6 .inner2 { animation-delay: 2.3150897965s; }

.C_about-us-C__2yTGO .secC .img .circle.c7 { width: 80px; height: 80px; top: 470px; left: 570px; }
.C_about-us-C__2yTGO .secC .img .circle.c7 .inner { animation-delay: 2.4281979232s; }
.C_about-us-C__2yTGO .secC .img .circle.c7 .inner2 { animation-delay: 3.6781979232s; }

.C_about-us-C__2yTGO .secC .img .circle.c8 { width: 80px; height: 80px; top: 372px; left: 625px; }
.C_about-us-C__2yTGO .secC .img .circle.c8 .inner { animation-delay: 1.821594067s; }
.C_about-us-C__2yTGO .secC .img .circle.c8 .inner2 { animation-delay: 3.071594067s; }

.C_about-us-C__2yTGO .secC .img .circle.c9 { width: 80px; height: 80px; top: 545px; left: 530px; }
.C_about-us-C__2yTGO .secC .img .circle.c9 .inner { animation-delay: 2.0285527148s; }
.C_about-us-C__2yTGO .secC .img .circle.c9 .inner2 { animation-delay: 3.2785527148s; }

.C_about-us-C__2yTGO .secC .img .circle.c10 { width: 80px; height: 80px; top: 405px; left: 815px; }
.C_about-us-C__2yTGO .secC .img .circle.c10 .inner { animation-delay: 1.8245321128s; }
.C_about-us-C__2yTGO .secC .img .circle.c10 .inner2 { animation-delay: 3.0745321128s; }

.C_about-us-C__2yTGO .secC .img .circle.c11 { width: 80px; height: 80px; top: 560px; left: 900px; }
.C_about-us-C__2yTGO .secC .img .circle.c11 .inner { animation-delay: .4421524697s; }
.C_about-us-C__2yTGO .secC .img .circle.c11 .inner2 { animation-delay: 1.6921524697s; }

.C_about-us-C__2yTGO .secC .img .circle.c12 { width: 80px; height: 80px; top: 330px; left: 870px; }
.C_about-us-C__2yTGO .secC .img .circle.c12 .inner { animation-delay: .822912064s; }
.C_about-us-C__2yTGO .secC .img .circle.c12 .inner2 { animation-delay: 2.072912064s; }

.C_about-us-C__2yTGO .secC .img .circle.c13 { width: 200px; height: 200px; top: 320px; left: 735px; }
.C_about-us-C__2yTGO .secC .img .circle.c13 .inner { animation-delay: .822912064s; }
.C_about-us-C__2yTGO .secC .img .circle.c13 .inner2 { animation-delay: 2.072912064s; }

/* C区块列布局 */
.C_about-us-C__2yTGO .secC .columns {
    position: relative;
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.C_about-us-C__2yTGO .secC .columns .item-box {
    width: 300px;
    padding: 2px 0;
    text-align: center;
}

.C_about-us-C__2yTGO .secC .columns .item-box .item-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.C_about-us-C__2yTGO .secC .columns .item-box .item-ani {
    margin-top: 16px;
    font-family: var(--font-family-SemiBold);
    font-size: 32px;
    line-height: 44px;
    height: 44px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    direction: ltr;
}

.C_about-us-C__2yTGO .secC .columns .item-box .item-ani .ani-box {
    pointer-events: none;
    height: -webkit-max-content;
    height: max-content;
}

.C_about-us-C__2yTGO .secC .columns .item-box .item-ani.enter .ani1 {
    transition: all 2s ease-in-out;
    -webkit-transform: translateY(-176px);
    transform: translateY(-176px);
}

.C_about-us-C__2yTGO .secC .columns .item-box .item-ani.enter .ani2 {
    transition: all 2.4s ease-in-out;
    -webkit-transform: translateY(-396px);
    transform: translateY(-396px);
}

.C_about-us-C__2yTGO .secC .columns .item-box .item-ani.enter .ani3 {
    transition: all 2.5s ease-in-out;
    -webkit-transform: translateY(-220px);
    transform: translateY(-220px);
}

.C_about-us-C__2yTGO .secC .columns .item-box .item-desc {
    margin-top: 4px;
    font-size: 16px;
    line-height: 22px;
}

/* 区块 D 样式 */
.D_about-us-D__c9kH2 .secD {
    margin: 200px auto 0;
    text-align: center;
}

.D_about-us-D__c9kH2 .secD .title {
    margin: 0 auto;
    width: 800px;
    font-family: var(--font-family-Bold);
    font-size: 48px;
    line-height: 66px;
    color: #03060b;
}

.D_about-us-D__c9kH2 .secD .swiper-box {
    margin: 80px auto 0;
    width: 1200px;
    padding: 0 180px 80px;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-button-next,
.D_about-us-D__c9kH2 .secD .swiper-box .swiper-button-prev {
    z-index: 10;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, .08);
    border-radius: 50%;
    color: #757575;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-button-next:after,
.D_about-us-D__c9kH2 .secD .swiper-box .swiper-button-prev:after {
    font-size: 20px;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-button-prev {
    left: 0;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-button-next {
    right: 0;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-item {
    width: 840px;
    background-color: #fff;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-item .item-img {
    margin: 0 auto;
    position: relative;
    width: 312px;
    height: 72px;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-item .item-desc {
    margin-top: 20px;
    font-family: var(--font-family-Medium);
    font-size: 20px;
    line-height: 27px;
    color: #000;
    letter-spacing: 0;
    white-space: pre-line;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-pagination {
    bottom: 0;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-pagination .swiper-pagination-bullet {
    background-color: #c0c1c2;
}

.D_about-us-D__c9kH2 .secD .swiper-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #919191;
}

/* 区块 E 样式 */
.E_about-us-E__fj1_j .secE {
    margin: 100px auto 0;
    text-align: center;
}

.E_about-us-E__fj1_j .secE .title {
    font-family: var(--font-family-Bold);
    font-size: 48px;
    line-height: 66px;
    color: #03060b;
    width: 800px;
    margin: 0 auto;
}

.E_about-us-E__fj1_j .secE .columns {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.E_about-us-E__fj1_j .secE .columns .img {
    position: relative;
    width: 180px;
    height: 180px;
    padding: 25px;
}

.E_about-us-E__fj1_j .secE .columns .img .ef-pic {
    position: relative;
    width: 130px;
    height: 130px;
}

/* 区块 F 样式 */
.F_about-us-F__Qeobd {
    margin: 200px auto 0;
    text-align: center;
    font-family: var(--font-family-Medium);
    color: #03060b;
}

.F_about-us-F__Qeobd .secF .title {
    font-family: var(--font-family-Bold);
    font-size: 48px;
    line-height: 66px;
    width: 800px;
    margin: 0 auto;
}

.F_about-us-F__Qeobd .secF .tabs-box {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    width: -webkit-max-content;
    width: max-content;
    border-bottom: 1px solid #ddd;
}

.F_about-us-F__Qeobd .secF .tabs-box .tab {
    display: inline-block;
    padding: 20px 0;
    font-family: var(--font-family-SemiBold);
    font-size: 14px;
    line-height: 19px;
    color: #757575;
    cursor: pointer;
}

.F_about-us-F__Qeobd .secF .tabs-box .tab.active {
    color: #03060b;
    position: relative;
}

.F_about-us-F__Qeobd .secF .tabs-box .tab.active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #03060b;
}

.F_about-us-F__Qeobd .secF .swiper-box {
    margin: 40px auto 0;
    width: 1200px;
    padding-bottom: 32px;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-button-next,
.F_about-us-F__Qeobd .secF .swiper-box .swiper-button-prev {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 50%;
    color: #fff;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-button-next:after,
.F_about-us-F__Qeobd .secF .swiper-box .swiper-button-prev:after {
    font-size: 20px;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-button-prev {
    left: 30px;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-button-next {
    right: 30px;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item {
    width: 1200px;
    background-color: #fff;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .item-img {
    margin: 0 auto;
    position: relative;
    width: 1200px;
    height: 600px;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box {
    position: absolute;
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 800px;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box .item-title {
    font-family: var(--font-family-Bold);
    font-size: 32px;
    line-height: 44px;
    color: #000;
}

html[site=cn] .F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box .item-title {
    font-weight: 700;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box .item-desc {
    margin-top: 8px;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    letter-spacing: 0;
}

html[site=cn] .F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box .item-desc {
    font-weight: 500;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box .item-link {
    margin-top: 20px;
    font-family: var(--font-family-SemiBold);
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid #03060b;
    border-radius: 22px;
    font-size: 14px;
    line-height: 19px;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box .item-link:hover {
    color: #03060b;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box.white .item-desc,
.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box.white .item-link,
.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box.white .item-title {
    color: #fff;
    border-color: #fff;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-item .text-box.white .item-link:hover {
    color: #fff;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-pagination {
    bottom: 0;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-pagination .swiper-pagination-bullet {
    background-color: #c0c1c2;
}

.F_about-us-F__Qeobd .secF .swiper-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #919191;
}

/* 区块 G 样式 */
.G_about-us-G__1rv33 {
  /*  padding-bottom: 150px;*/
    background-color: #000;
}

.G_about-us-G__1rv33 .secG {
    margin: 0px auto 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.G_about-us-G__1rv33 .secG .img {
    position: relative;
    width: 100%;
    height: 600px;
}

.G_about-us-G__1rv33 .secG .text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
    width: 800px;
    margin: 0 auto;
}

.G_about-us-G__1rv33 .secG .text-box .title {
    font-family: var(--font-family-Bold);
    font-size: 48px;
    line-height: 66px;
}

.G_about-us-G__1rv33 .secG .text-box .desc {
    margin-top: 16px;
    font-family: var(--font-family-Medium);
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line;
    letter-spacing: 0;
}

/* 动画定义 */
@-webkit-keyframes C_circleWave__uEI7N {
    0% { width: 8px; height: 8px; opacity: .4; }
    50% { width: 50%; height: 50%; opacity: .25; }
    to { width: 100%; height: 100%; opacity: 0; }
}

@keyframes C_circleWave__uEI7N {
    0% { width: 8px; height: 8px; opacity: .4; }
    50% { width: 50%; height: 50%; opacity: .25; }
    to { width: 100%; height: 100%; opacity: 0; }
}

@-webkit-keyframes C_circleWave2__JYSfq {
    0% { width: 8px; height: 8px; opacity: .8; }
    50% { width: 25%; height: 25%; opacity: .5; }
    to { width: 50%; height: 50%; opacity: 0; }
}

@keyframes C_circleWave2__JYSfq {
    0% { width: 8px; height: 8px; opacity: .8; }
    50% { width: 25%; height: 25%; opacity: .5; }
    to { width: 50%; height: 50%; opacity: 0; }
}
