:root {
    --hue: #1B4CA8;
    --hue2: #F7941D;
    --max-width:1600px;
    --space: clamp(2.813rem, 1.953rem + 4.3vw, 6.25rem);
}

.grid--1 {
    display: grid !important;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--1>* {
    grid-column: 1 !important;
}

.grid--2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--3 {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--4 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--5 {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--6 {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--7 {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--8 {
    display: grid !important;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--9 {
    display: grid !important;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--10 {
    display: grid !important;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--11 {
    display: grid !important;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--12 {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    inline-size: 100%;
}

.grid--1-2 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    inline-size: 100%;
}

.grid--1-3 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    inline-size: 100%;
}

.grid--2-1 {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    inline-size: 100%;
}

.grid--2-3 {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    inline-size: 100%;
}

.grid--3-1 {
    display: grid !important;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    inline-size: 100%;
}

.grid--3-2 {
    display: grid !important;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    inline-size: 100%;
}

.grid-rows--1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows--2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows--3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows--4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows--5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows--6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
}

.grid-rows--7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
}

.grid-rows--8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
}

.grid-rows--9 {
    grid-template-rows: repeat(9, minmax(0, 1fr));
}

.grid-rows--10 {
    grid-template-rows: repeat(10, minmax(0, 1fr));
}

.grid-rows--11 {
    grid-template-rows: repeat(11, minmax(0, 1fr));
}

.grid-rows--12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
}



/* xl */
@media (max-width: 1280px) {
    .width-xl-100 {
        width: 100% !important;
    }
    .flex-xl-row {
        flex-direction: row !important;
    }
    .flex-xl-column {
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .show-xl{
        display: block !important;
    }
    .hide-xl{
        display: none !important;
    }



    .grid--xl-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid--xl-1>* {
        grid-column: 1 !important;
    }

    .grid--xl-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .grid--xl-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .grid--xl-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .grid--xl-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .grid--xl-9 {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }

    .grid--xl-10 {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }

    .grid--xl-11 {
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }

    .grid--xl-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .grid-rows--xl-1 {
        grid-template-rows: repeat(1, minmax(0, 1fr));
    }

    .grid-rows--xl-2 {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .grid-rows--xl-3 {
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .grid-rows--xl-4 {
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .grid-rows--xl-5 {
        grid-template-rows: repeat(5, minmax(0, 1fr));
    }

    .grid-rows--xl-6 {
        grid-template-rows: repeat(6, minmax(0, 1fr));
    }

    .grid-rows--xl-7 {
        grid-template-rows: repeat(7, minmax(0, 1fr));
    }

    .grid-rows--xl-8 {
        grid-template-rows: repeat(8, minmax(0, 1fr));
    }

    .grid-rows--xl-9 {
        grid-template-rows: repeat(9, minmax(0, 1fr));
    }

    .grid-rows--xl-10 {
        grid-template-rows: repeat(10, minmax(0, 1fr));
    }

    .grid-rows--xl-11 {
        grid-template-rows: repeat(11, minmax(0, 1fr));
    }

    .grid-rows--xl-12 {
        grid-template-rows: repeat(12, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .width-l-100 {
        width: 100% !important;
    }
    .flex-l-row {
        flex-direction: row !important;
    }
    .flex-l-column {
        flex-direction: column !important;
    }
    .flex-l-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-l-column-reverse {
        flex-direction: column-reverse !important;
    }

    .show-l{
        display: block !important;
    }
    .hide-l{
        display: none !important;
    }

    

    .grid--l-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid--l-1>* {
        grid-column: 1 !important;
    }

    .grid--l-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .grid--l-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .grid--l-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .grid--l-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .grid--l-9 {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }

    .grid--l-10 {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }

    .grid--l-11 {
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }

    .grid--l-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .grid-rows--l-1 {
        grid-template-rows: repeat(1, minmax(0, 1fr));
    }

    .grid-rows--l-2 {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .grid-rows--l-3 {
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .grid-rows--l-4 {
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .grid-rows--l-5 {
        grid-template-rows: repeat(5, minmax(0, 1fr));
    }

    .grid-rows--l-6 {
        grid-template-rows: repeat(6, minmax(0, 1fr));
    }

    .grid-rows--l-7 {
        grid-template-rows: repeat(7, minmax(0, 1fr));
    }

    .grid-rows--l-8 {
        grid-template-rows: repeat(8, minmax(0, 1fr));
    }

    .grid-rows--l-9 {
        grid-template-rows: repeat(9, minmax(0, 1fr));
    }

    .grid-rows--l-10 {
        grid-template-rows: repeat(10, minmax(0, 1fr));
    }

    .grid-rows--l-11 {
        grid-template-rows: repeat(11, minmax(0, 1fr));
    }

    .grid-rows--l-12 {
        grid-template-rows: repeat(12, minmax(0, 1fr));
    }
}

/* m */
@media (max-width: 768px) {
    .width-m-100 {
        width: 100% !important;
    }

    .flex-m-row {
        flex-direction: row !important;
    }
    .flex-m-column {
        flex-direction: column !important;
    }
    .flex-m-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-m-column-reverse {
        flex-direction: column-reverse !important;
    }

    .show-m{
        display: block !important;
    }
    .hide-m{
        display: none !important;
    }



    .grid--m-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid--m-1>* {
        grid-column: 1 !important;
    }

    .grid--m-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .grid--m-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .grid--m-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .grid--m-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .grid--m-9 {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }

    .grid--m-10 {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }

    .grid--m-11 {
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }

    .grid--m-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .grid-rows--m-1 {
        grid-template-rows: repeat(1, minmax(0, 1fr));
    }

    .grid-rows--m-2 {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .grid-rows--m-3 {
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .grid-rows--m-4 {
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .grid-rows--m-5 {
        grid-template-rows: repeat(5, minmax(0, 1fr));
    }

    .grid-rows--m-6 {
        grid-template-rows: repeat(6, minmax(0, 1fr));
    }

    .grid-rows--m-7 {
        grid-template-rows: repeat(7, minmax(0, 1fr));
    }

    .grid-rows--m-8 {
        grid-template-rows: repeat(8, minmax(0, 1fr));
    }

    .grid-rows--m-9 {
        grid-template-rows: repeat(9, minmax(0, 1fr));
    }

    .grid-rows--m-10 {
        grid-template-rows: repeat(10, minmax(0, 1fr));
    }

    .grid-rows--m-11 {
        grid-template-rows: repeat(11, minmax(0, 1fr));
    }

    .grid-rows--m-12 {
        grid-template-rows: repeat(12, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .width-s-100 {
        width: 100% !important;
    }

    .flex-s-row {
        flex-direction: row !important;
    }
    .flex-s-column {
        flex-direction: column !important;
    }
    .flex-s-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-s-column-reverse {
        flex-direction: column-reverse !important;
    }

    .show-s{
        display: block !important;
    }
    .hide-s{
        display: none !important;
    }


    .grid--s-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid--s-1>* {
        grid-column: 1 !important;
    }

    .grid--s-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .grid--s-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .grid--s-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .grid--s-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .grid--s-9 {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }

    .grid--s-10 {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }

    .grid--s-11 {
        grid-template-columns: repeat(11, minmax(0, 1fr));
    }

    .grid--s-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .grid-rows--s-1 {
        grid-template-rows: repeat(1, minmax(0, 1fr));
    }

    .grid-rows--s-2 {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .grid-rows--s-3 {
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .grid-rows--s-4 {
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .grid-rows--s-5 {
        grid-template-rows: repeat(5, minmax(0, 1fr));
    }

    .grid-rows--s-6 {
        grid-template-rows: repeat(6, minmax(0, 1fr));
    }

    .grid-rows--s-7 {
        grid-template-rows: repeat(7, minmax(0, 1fr));
    }

    .grid-rows--s-8 {
        grid-template-rows: repeat(8, minmax(0, 1fr));
    }

    .grid-rows--s-9 {
        grid-template-rows: repeat(9, minmax(0, 1fr));
    }

    .grid-rows--s-10 {
        grid-template-rows: repeat(10, minmax(0, 1fr));
    }

    .grid-rows--s-11 {
        grid-template-rows: repeat(11, minmax(0, 1fr));
    }

    .grid-rows--s-12 {
        grid-template-rows: repeat(12, minmax(0, 1fr));
    }
}






.fz85{
    font-size: clamp(1.875rem, 1.016rem + 4.3vw, 5.313rem);
}

.fz72 {
    font-size: clamp(1.625rem, 0.554rem + 4.51vw, 4.5rem);
}

.fz70 {
    font-size: clamp(1.625rem, 0.6rem + 4.31vw, 4.375rem);
}

.fz68 {
    font-size: clamp(1.625rem, 0.647rem + 4.12vw, 4.25rem);
}

.fz66 {
    font-size: clamp(1.625rem, 0.694rem + 3.92vw, 4.125rem);
}

.fz64 {
    font-size: clamp(1.625rem, 0.74rem + 3.73vw, 4rem);
}

.fz62 {
    font-size: clamp(1.625rem, 0.787rem + 3.53vw, 3.875rem);
}

.fz60 {
    font-size: clamp(1.625rem, 0.833rem + 3.33vw, 3.75rem);
}

.fz58 {
    font-size: clamp(1.625rem, 0.88rem + 3.14vw, 3.625rem);
}

.fz56 {
    font-size: clamp(1.625rem, 0.926rem + 2.94vw, 3.5rem);
}

.fz54 {
    font-size: clamp(1.625rem, 0.973rem + 2.75vw, 3.375rem);
}

.fz52 {
    font-size: clamp(1.625rem, 1.02rem + 2.55vw, 3.25rem);
}

.fz50 {
    font-size: clamp(1.5rem, 0.895rem + 2.55vw, 3.125rem);
}

.fz48 {
    font-size: clamp(1.5rem, 0.941rem + 2.35vw, 3rem);
}

.fz46 {
    font-size: clamp(1.5rem, 0.988rem + 2.16vw, 2.875rem);
}

.fz44 {
    font-size: clamp(1.5rem, 0.988rem + 2.16vw, 2.875rem);
}

.fz42 {
    font-size: clamp(1.5rem, 1.081rem + 1.76vw, 2.625rem);
}

.fz40 {
    font-size: clamp(1.375rem, 0.956rem + 1.76vw, 2.5rem);
}

.fz38 {
    font-size: clamp(1.375rem, 1.002rem + 1.57vw, 2.375rem);
}

.fz36 {
    font-size: clamp(1.375rem, 1.049rem + 1.37vw, 2.25rem);
}

.fz34 {
    font-size: clamp(1.25rem, 0.924rem + 1.37vw, 2.125rem);
}

.fz32 {
    font-size: clamp(1.25rem, 0.971rem + 1.18vw, 2rem);
}

.fz30 {
    font-size: clamp(1.25rem, 1.017rem + 0.98vw, 1.875rem);
}

.fz28 {
    font-size: clamp(1.25rem, 1.064rem + 0.78vw, 1.75rem);
}

.fz26 {
    font-size: clamp(1.125rem, 0.939rem + 0.78vw, 1.625rem);
}

.fz24 {
    font-size: clamp(1.125rem, 0.985rem + 0.59vw, 1.5rem);
}

.fz22 {
    font-size: clamp(1rem, 0.86rem + 0.59vw, 1.375rem);
}

.fz20 {
    font-size: clamp(1rem, 0.907rem + 0.39vw, 1.25rem);
}

.fz18 {
    font-size: clamp(1rem, 0.953rem + 0.2vw, 1.125rem);
}

.fz16 {
    font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
}

.fz14 {
    font-size: 14px;
}



/* 水平排列，右对齐，垂直居中 */
.flex-row-end-center {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

/* 水平排列，右对齐，垂直顶部对齐 */
.flex-row-end-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}

/* 水平排列，右对齐，垂直底部对齐 */
.flex-row-end-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}

/* 水平排列，左对齐，垂直居中 */
.flex-row-start-center {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

/* 水平排列，左对齐，垂直顶部对齐 */
.flex-row-start-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

/* 水平排列，左对齐，垂直底部对齐 */
.flex-row-start-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

/* 水平排列，居中对齐，垂直居中 */
.flex-row-center-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* 水平排列，居中对齐，垂直顶部对齐 */
.flex-row-center-start {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

/* 水平排列，居中对齐，垂直底部对齐 */
.flex-row-center-end {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

/* 水平排列，均匀分布，垂直居中 */
.flex-row-around-center {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

/* 水平排列，均匀分布，垂直顶部对齐 */
.flex-row-around-start {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

/* 水平排列，均匀分布，垂直底部对齐 */
.flex-row-around-end {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
}

/* 水平排列，间隔均匀，垂直居中 */
.flex-row-evenly-center {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

/* 水平排列，间隔均匀，垂直顶部对齐 */
.flex-row-evenly-start {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}

/* 水平排列，间隔均匀，垂直底部对齐 */
.flex-row-evenly-end {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
}

/* 水平排列，两端对齐，垂直居中 */
.flex-row-between-center {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* 水平排列，两端对齐，垂直顶部对齐 */
.flex-row-between-start {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

/* 水平排列，两端对齐，垂直底部对齐 */
.flex-row-between-end {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}



/* 水平排列，右对齐，垂直拉伸 */
.flex-row-end-stretch {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
}

/* 水平排列，左对齐，垂直拉伸 */
.flex-row-start-stretch {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}

/* 水平排列，居中对齐，垂直拉伸 */
.flex-row-center-stretch {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

/* 水平排列，均匀分布，垂直拉伸 */
.flex-row-around-stretch {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
}

/* 水平排列，间隔均匀，垂直拉伸 */
.flex-row-evenly-stretch {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
}

/* 水平排列，两端对齐，垂直拉伸 */
.flex-row-between-stretch {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}


/* 垂直排列，顶部对齐，水平居中 */
.flex-column-start-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* 垂直排列，顶部对齐，水平左对齐 */
.flex-column-start-start {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* 垂直排列，顶部对齐，水平右对齐 */
.flex-column-start-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

/* 垂直排列，居中对齐，水平居中 */
.flex-column-center-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 垂直排列，居中对齐，水平左对齐 */
.flex-column-center-start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* 垂直排列，居中对齐，水平右对齐 */
.flex-column-center-end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

/* 垂直排列，底部对齐，水平居中 */
.flex-column-end-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

/* 垂直排列，底部对齐，水平左对齐 */
.flex-column-end-start {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

/* 垂直排列，底部对齐，水平右对齐 */
.flex-column-end-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

/* 垂直排列，均匀分布，水平居中 */
.flex-column-around-center {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

/* 垂直排列，均匀分布，水平左对齐 */
.flex-column-around-start {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

/* 垂直排列，均匀分布，水平右对齐 */
.flex-column-around-end {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
}

/* 垂直排列，间隔均匀，水平居中 */
.flex-column-evenly-center {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

/* 垂直排列，间隔均匀，水平左对齐 */
.flex-column-evenly-start {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

/* 垂直排列，间隔均匀，水平右对齐 */
.flex-column-evenly-end {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
}

/* 垂直排列，两端对齐，水平居中 */
.flex-column-between-center {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* 垂直排列，两端对齐，水平左对齐 */
.flex-column-between-start {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

/* 垂直排列，两端对齐，水平右对齐 */
.flex-column-between-end {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    
}


/* 垂直排列，顶部对齐，水平拉伸 */
.flex-column-start-stretch {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

/* 垂直排列，底部对齐，水平拉伸 */
.flex-column-end-stretch {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
}

/* 垂直排列，居中对齐，水平拉伸 */
.flex-column-center-stretch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

/* 垂直排列，均匀分布，水平拉伸 */
.flex-column-around-stretch {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
}

/* 垂直排列，间隔均匀，水平拉伸 */
.flex-column-evenly-stretch {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
}

/* 垂直排列，两端对齐，水平拉伸 */
.flex-column-between-stretch {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}


.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}



.mt_0 {
    margin-top: 0;
}

.mb_0 {
    margin-bottom: 0;
}




.pt {
    padding-top: var(--space);
}

.pb {
    padding-bottom: var(--space);
}

.ptb {
    padding-top: var(--space);
    padding-bottom: var(--space);
}

.bgfixed {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


html,
body {
    font-family: "OpenSans-Regular", sans-serif, arial, verdana;
}
html{
    scroll-padding-top: 120px;
}

input,
button,
textarea,
select,
button {
    font-family: "OpenSans-Regular", sans-serif, arial, verdana;
    border: none;
}


.bgf{
    background: #fff;
}
.bgf3{
    background: #F3F5FA;
}
.bgf4 {
    background: #f4f4f4;
}

.bgf5 {
    background: #f5f5f5;
}

.bgf6 {
    background: #f6f6f6;
}

.bgf8 {
    background: #f8f8f8;
}

.bgfa {
    background: #fafafa;
}
.bgm{
    background: var(--hue);
}


.fmr{
    font-family: "OpenSans-Regular";
}
.fms{
    font-family: "OpenSans-SemiBold";
}
.fmm{
    font-family: "OpenSans-Medium";
}
.fmb{
    font-family: "OpenSans-Bold";
}

.fwn{
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0;
}

.mb_24_18 {
    margin-bottom: clamp(1.125rem, 1.031rem + 0.47vw, 1.5rem);
}

.mb_30_18 {
    margin-bottom: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
}

.mb_40_25 {
    margin-bottom: clamp(1.563rem, 1.328rem + 1.17vw, 2.5rem);
}

.mb_45_25 {
    margin-bottom: clamp(1.563rem, 1.25rem + 1.56vw, 2.813rem);
}

.mb_50_25 {
    margin-bottom: clamp(1.563rem, 1.172rem + 1.95vw, 3.125rem);
}

.mb_70_30{
    margin-bottom: clamp(1.875rem, 1.25rem + 3.13vw, 4.375rem);
}
.gap30 {
    row-gap: clamp(1.25rem, 1.105rem + 0.72vw, 1.875rem);
}
.gap36{
    gap: clamp(0.938rem, 0.609rem + 1.64vw, 2.25rem);
}

.wrapper {
    width: 88%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.w_1480{
    width: 88%;
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
}
.w_1400{
    width: 88%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


.header_box {
    height: 120px;
    position: relative;
    z-index: 4;
}


.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    width: 100%;
    height: 120px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.logo {
    width: 285px;
    height: 120px;
    position: relative;
}

.menu_dl {
    gap: clamp(0.938rem, -3.438rem + 5.47vw, 3.125rem);
    margin: 0;
    padding: 0;
}

.menu_dl dd {
    position: relative;
    margin: 0;
    padding: 0;
}
.menu_dl dd.dd_pro{
    position: static;
}
.menu_tt {
    display: block;
    line-height: 120px;
    color: #333;
    font-size: 22px;
    font-family: "OpenSans-Medium";
    white-space: nowrap;
    position: relative;
    text-transform: capitalize;
}

.menu_down {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 3;
    width: 376px;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}
.menu_down_list{
    position: relative;
    background: rgba(255,255,255,.94);
    padding: 30px 30px;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}
.menu_down_list::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-left-width: 30px;
    border-right-width: 30px;
    border-top-width: 0;
    border-bottom-width:25px;
    border-color: transparent transparent #fff transparent;
    transform: translate(-50%,0);
}
.menu_down_list a {
    display: block;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    padding: 4px 0;
}
.menu_down_list a:hover{
    color: var(--hue);
    transform:translateX(3px);
    -webkit-transform:translateX(3px);
}



.menu_down_ind{
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 3;
    width: 1200px;
    transform: translate(-50%,0);
}
.menu_down_ind_list{
    background: rgba(255,255,255,.94);
    margin-top: 25px;
    padding: 50px 90px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    position: relative;
}
.menu_down_ind_list::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-left-width: 30px;
    border-right-width: 30px;
    border-top-width: 0;
    border-bottom-width:25px;
    border-color: transparent transparent #fff transparent;
    transform: translate(-50%,0);
}
.menu_down_ind_list_item_title{
    display: block;
    margin-bottom: 14px;
}
.menu_down_ind_list_item_con a{
    display: block;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    padding: 4px 0;
    white-space: nowrap;
}
.menu_down_ind_list_item_con a:hover{
    color: var(--hue);
    transform:translateX(3px);
    -webkit-transform:translateX(3px);
}

.menu_down_ind2{
    width: 100%;
    max-width: 1524px;
}
.menu_down_ind2 .menu_down_ind_list{
    column-gap: 50px;
}
.menu_down_ind2 .menu_down_ind_list::after{
    left: 38%;
}
.menu_down_ind2_list_con a{
    line-height: 24px;
    padding: 5px 0;
    color: #333;
}
.menu_down_ind2_list_con a .icon{
    width: 24px;
    height: 24px;
    background: url(../images/menu_icon2.png) no-repeat center center;
}
.menu_down_ind2_list_con a .tt{
    width: calc(100% - 24px);
}
.menu_down_ind2_list_con a:hover{
    color: var(--hue);
    transform:translateX(3px);
    -webkit-transform:translateX(3px);
}
.menu_dl dd.hover .menu_tt{
    color: var(--hue);
}






.header_r{
    gap: clamp(0.938rem, -3.438rem + 5.47vw, 3.125rem);
}
.header_r_r{
    gap: clamp(0.938rem, 0.063rem + 1.09vw, 1.375rem);
}

.header_r_search{
    width: 40px;
    height: 40px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.header_r_lag{
    gap: 5px;
    height: 40px;
    cursor: pointer;
}
.search_box {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -450px;
    z-index: 15;
    width: 900px;
    height: 60px;
    padding: 10px;
    background: #f5f5f5;
}

.search_box_l{
    width: calc(100% - 90px);
}
.search_box_text {
    width: 100%;
    height: 40px;
    border: 0;
    font-size: 14px;
    padding-left: 20px;
    background: none;
}

.search_box_text::-webkit-input-placeholder {
    font-size: 14px;
    text-transform: uppercase;
}

.search_box_sub {
    width: 40px;
    height: 40px;
    font-size: 30px;
    color: var(--hue);
    border: 0;
    background: none;
}

.search_box_close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    color: #666;
    border: 0;
    background: none;
}

.search_box_close:hover {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
}

.header_box.pro_det .header{
    position: relative !important;
}



/*
 * wap head
 */
.mobile_header {
    display: none;
    clear: both;
    width: 100%;
    height: 52px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_header_top {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 14;
    width: 100%;
    height: 52px;
    background: #fff;
    box-shadow: 0 0 5px rgba(50, 50, 50, .2);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_logo {
    height: 52px;
    margin-left: 0;
    padding: 0 15px;
}

.mobile_logo img {
    height: 26px;
    width: auto;
}

.mobile_header_top_r {
    gap: 5px;
}


.mobile_menu_btn {
    width: 54px;
    height: 52px;
    cursor: pointer;
}

.mobile_menu_btn .line {
    display: block;
    height: 3px;
    width: 28px;
    background: var(--hue);
    border-radius: 4px;
    margin-bottom: 6px;
}

.mobile_menu_btn .line:last-child {
    margin-bottom: 0;
}

.mobile_search_icon,
.mobile_lag_icon {
    width: 40px;
    height: 52px;
    color: var(--hue);
    font-size: 24px;
    line-height: 52px;
    text-align: center;
    cursor: pointer;
}

.mobile_menu_box {
    position: fixed;
    right: -110%;
    top: 0;
    z-index: 15;
    width: 75%;
    height: 100%;
    background: #fff;
    padding: 20px 15px;
    overflow-y: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_menu_close{
    position: absolute;
    right: calc(clamp(1.125rem, 0.739rem + 1.93vw, 2.188rem) * -0.6);
    top: calc(clamp(1.125rem, 0.739rem + 1.93vw, 2.188rem) * -0.6);
    z-index: 15;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
}

.mobile_menu_box.show {
    right: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.mobile_menu_dl {
    margin: 0;
    padding-top: 20px;
}

.mobile_menu_dl dd {
    clear: both;
    margin: 0;
    line-height: 1.3;
    border-bottom: 1px solid #e1e1e1;
}

.mobile_menu_tt {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.mobile_menu_tt .text {
    width: calc(100% - 50px);
    color: #333;
    font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
    line-height: 24px;
    padding: clamp(0.625rem, 0.458rem + 0.83vw, 1.125rem) 0;
    font-family: "OpenSans-Medium";
}

.mobile_menu_dl dd.hover .mobile_menu_tt .text {
    color: var(--hue);
}

.mobile_menu_tt_icon {
    display: none;
    width: 44px;
    line-height: 44px;
    text-align: center;
    color: #333;
    font-size: clamp(1rem, 0.917rem + 0.42vw, 1.25rem);
    -webit-transition: all 0.5s;
    transition: all 0.5s;
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    cursor: pointer;
}

.mobile_menu_down {
    display: none;
    padding: 6px 0 10px 12px;
}

.mobile_menu_down_clm {
    margin-bottom: 8px;
}

.mobile_menu_down_clm_tt {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    color: #333;
}

.mobile_menu_down_clm_tt .tt {
    width: calc(100% - 50px);
    color: #333;
    line-height: 20px;
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    text-transform: capitalize;
    padding: clamp(0.313rem, 0.208rem + 0.52vw, 0.625rem) 0;
}

.mobile_menu_down_clm_tt .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    transform: rotateZ(90deg);
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -webit-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile_menu_down_clm.hover .mobile_menu_down_clm_tt .icon {
    -webit-transition: all 0.5s;
    transition: all 0.5s;
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
}

.mobile_menu_down_clm_list {
    display: none;
    padding: 5px 0 0 10px;
}

.mobile_menu_down_clm_list a {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
    padding: 5px 0;
    position: relative;
}

.mobile_menu_tt_icon.hover {
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    -webit-transition: all 0.5s;
    transition: all 0.5s;
}


.mobile_menu_dl dd.hover .mobile_menu_tt .text{
    color: var(--hue);
}

.mobile_search_box {
    position: fixed;
    left: 0;
    top: 52px;
    z-index: 13;
    display: none;
    width: 100%;
    padding: 20px;
    background: #fafafa;
}

.mobile_search_box form {
    width: 100%;
    padding: 2px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.mobile_search_text {
    line-height: 40px;
    padding-left: 15px;
    font-size: 14px;
    color: #333;
    width: calc(100% - 40px);
    border: 0;
}
    
.mobile_search_btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: var(--hue);
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    border: none;
    background: #fff;
}

.mobile_menu_b {
    margin-top: 40px;
}

.mobile_menu_b_clm {
    margin-bottom: 25px;
}

.mobile_menu_b_clm .tt {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.mobile_menu_b_clm .text {
    font-size: 14px;
    color: #333;
}

.mobile_menu_b_clm .text a {
    color: #333;
    word-break: break-all;
}




.mask,
.mobile_menu_mask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}

.mask {
    z-index: 13;
}






.scroll_dots .scroll_dots_bars {
    position: relative;
    padding-top: clamp(1.25rem, 0.859rem + 1.95vw, 2.813rem);
    z-index: 3;
    left: auto;
    bottom: auto !important;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    gap: clamp(0.438rem, 0.313rem + 0.63vw, 0.938rem);
}

.scroll_dots .scroll_dots_bars .swiper-pagination-bullet {
    width: clamp(0.625rem, 0.531rem + 0.47vw, 1rem);
    height: clamp(0.625rem, 0.531rem + 0.47vw, 1rem);
    opacity: 1;
    margin: 0;
    position: relative;
    background: none;
    border: 1px solid var(--hue2);
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}


.scroll_dots2 .scroll_dots_bars .swiper-pagination-bullet {
    background: #F4F4F4;
}

.scroll_dots .scroll_dots_bars .swiper-pagination-bullet-active{
    background: var(--hue2);
}


.lh15{
    line-height: 1.5;
}
.lh16{
    line-height: 1.625;
}
.lh17 {
    line-height: 1.75;
}
.lh18{
    line-height: 1.875;
}
.lh2{
    line-height: 2;
}

.lh15 img,
.lh16 img,
.lh17 img,
.lh18 img,
.lh2 img{
    height: auto !important;
}



.public_btn1{
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    gap: 8px;
    color: #fff;
    min-width: clamp(8.75rem, 8.438rem + 1.56vw, 10rem);
    height:clamp(2.875rem, 2.719rem + 0.78vw, 3.5rem);
    padding: 0 clamp(1.125rem, 0.672rem + 2.27vw, 2.938rem);
    border-radius: clamp(1.438rem, 1.359rem + 0.39vw, 1.75rem);
    background: var(--hue);
    cursor: pointer;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.public_btn_out_line{
    color: var(--hue);
    background: none;
    border: 1px solid var(--hue);
}
.public_btn1.hover{
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}
.public_btn1.dark{
    color: #fff;
    background: #222;
    border-color: #222;
}

.public_btn1.white{
    color: var(--hue);
    background: #fff;
}
.public_btn_out_line.white{
    border: 1px solid #dcdcdc;
}
.public_btn1:hover{
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}

.public_btn2{
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    gap: 8px;
}





.public_scroll_btn1{
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    width: clamp(2.5rem, 2.109rem + 1.95vw, 4.063rem);
    height: clamp(2.5rem, 2.109rem + 1.95vw, 4.063rem);
    font-size: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.public_scroll_btn1.hover{
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}
.public_scroll_btn1.prev{
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}


/* 返回顶部  */
.float_fixed {
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 3;
    width: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
}
.float_fixed_list{
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    gap: clamp(0.25rem, 0.156rem + 0.47vw, 0.625rem);
}
.float_fixed .item {
    display: block;
    position: relative;
    background: var(--hue);
    border-radius: 5px;
}

.float_fixed .item .item_icon {
    position: relative;
    z-index: 3;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    width: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
    height: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
    font-size: clamp(1.125rem, 1rem + 0.63vw, 1.625rem);
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.float_fixed .item .item_con {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    width: 210px;
    line-height: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
    color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background: var(--hue);
    opacity: 0;
    font-size: 14px;
    padding-left: 14px;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.float_fixed .item .item_con .icon {
    font-size: clamp(1.125rem, 1rem + 0.63vw, 1.625rem);
    color: #fff;
    margin-right: 5px;
}

/* .float_fixed .item .item_con::after{
    position: absolute;
    top: 50%;
    left: 100%;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-left-width: 10px;
    border-right-width: 0;
    border-top-width: 10px;
    border-bottom-width:10px;
    border-color: transparent transparent transparent var(--hue);
    transform: translate(0,-50%);
} */


.float_fixed .item:hover .item_con {
    pointer-events: auto;
    opacity: 1;
    right: calc(100% - 5px);
}

.back_top .item_icon{
    font-weight: bold;
    transform: rotateZ(-90deg);
    -webkit-transform: rotateZ(-90deg);
    -ms-transform: rotateZ(-90deg);
}


/* page */
/* page */
.page_box {
    padding: clamp(2.5rem, 2.21rem + 1.45vw, 3.75rem) 0 0;
}

.page_box .wp-pagenavi {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    gap: clamp(0.313rem, 0.156rem + 0.78vw, 0.938rem);
}

.page_box a,
.page_box span {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    color: #333;
    font-size: clamp(1.125rem, 1.094rem + 0.16vw, 1.25rem);
    font-family: "OpenSans-Medium";
    width: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    height: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    background: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 4px;
}

.page_box a:hover,
.page_box a.hover,
.page_box a.current,
.page_box span.current {
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}
.page_btn{
    font-weight: bold;
}
.page_box a.page_btn.prev {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}



/* open_inq */
.open_window {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
}

.open_window_mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.open_window_con {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 90%;
    max-height: 90vh;
    height: auto;
    max-width: 1400px;
    overflow: hidden;
    background: #fff;
    transform: translate(-50%, -50%);
}

.open_window_con_rela {
    position: relative;
    height: 100%;
    padding: clamp(2.188rem, 1.172rem + 5.08vw, 6.25rem) clamp(0.938rem, -0.391rem + 6.64vw, 6.25rem);
}

.open_window_close {
    position: absolute;
    right: clamp(0rem, -0.469rem + 2.34vw, 1.875rem);
    top: clamp(0rem, -0.469rem + 2.34vw, 1.875rem);
    z-index: 3;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    width: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    height: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    color: #fff;
    font-weight: bold;
    font-size: clamp(1.125rem, 0.969rem + 0.78vw, 1.75rem);
    border-radius: 50%;
    border: clamp(0.125rem, 0.109rem + 0.08vw, 0.188rem) solid #fff;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}




.open_window_con_r_title{
    margin-bottom: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
}
.open_window_con_r_list {
    column-gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    row-gap: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
    margin: 0;
    padding: 0;
}
.open_window_con_r_list_item{
    width: calc((100% - clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem)) / 2);
}
.open_window_con_r_list_item2{
    width: 100%;
}
.open_window_con_r_list_text_box{
    position: relative;
}
.open_window_con_r_list_icon{
    position: absolute;
    top: 50%;
    left: 5px;
    font-size: 16px;
    color: #f00;
    transform: translateY(-50%)
}

.open_window_con_r_list_text,
.open_window_con_r_list_area {
    display: block;
    width: 100%;
    height: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    font-size: 16px;
    padding-left: 15px;
    color: #333;
    background: #fff;
    outline: none;
    border-radius: 10px;
}

.open_window_con_r_list_area {
    height: clamp(6.25rem, 4.797rem + 7.27vw, 12.063rem);
    resize: none;
    line-height: 1.5;
    padding: 12px clamp(0.875rem, 0.529rem + 0.72vw, 1.25rem);
}

.open_window_form_list_text::-webkit-input-placeholder,
.open_window_form_list_area::-webkit-input-placeholder {
    color: #333;
}


.open_window_form_list_btn {
    display: block;
    width: 90%;
    max-width: 400px;
    height: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    cursor: pointer;
    color: #fff;
    background: var(--hue);
    border-radius: clamp(1.25rem, 1.172rem + 0.39vw, 1.563rem);
}



/* banner */
.banner_box{
    position: relative;
}

.banner{
    position: relative;
}
.banner_item{
    display:block;
    position: relative;
    overflow: hidden;
}
.banner .swiper-slide img{
    display: block;
    width: 100%;
}


.banner_item_con{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.banner_item_con .wrapper{
    width: 100%;
    height: 100%;
    padding-bottom:clamp(0.625rem, -4.912rem + 27.69vw, 28.313rem);
    overflow: hidden;
}
.banner_item_con_tt{
    text-align:center;
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    width: 80%;
    max-width: 995px;
    line-height: 1.4;
    position: relative;
    margin-bottom: clamp(0.5rem, 0.321rem + 0.89vw, 1.125rem);
}
.banner_item_con_tt span{
    display: inline-block;
}
.banner_item_con_text{
    line-height: 1.5;
}
.banner_item_con_tt{
    font-size: clamp(1.125rem, -7.875rem + 11.25vw, 3.375rem);
}

.banner_item_con_text{
    font-size: clamp(0.75rem, -2.75rem + 4.38vw, 1.625rem);
}


.banner_btn{
    position: absolute;
    top: 50%;
    z-index: 2;
    font-size: clamp(1.875rem, 1.375rem + 2.5vw, 4.375rem);
    line-height: 1;
    color: #fff;
    margin-top: calc(clamp(1.875rem, 1.375rem + 2.5vw, 4.375rem) / 2 * -1);
    cursor: pointer;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.banner_btn.prev{
    left: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}
.banner_btn.next{
    right: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
}

.banner_btn:hover{
    color: var(--hue);
}





/* location */
.location{
    line-height: 24px;
    color: #fff;
    gap: 3px;
}
.location .icon{
    margin-right: 4px;
}
.location a{
    color: #fff;
}

.ind_box1{
}
.ind_box1_list{
    position: relative;
    z-index: 2;
    padding: clamp(1.25rem, 1.1rem + 0.75vw, 2rem) 15px;
    transform: translate(0,-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}
.ind_box1_list .item{
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box1_list .item:hover{
    transform:translateY(-3px);
    -webkit-transform: translateY(-3px);
}



.ind_box2_t{
    padding-top: clamp(1.875rem, 0.938rem + 4.69vw, 5.625rem);
    background: url(../images/ind_box1_bg.png) no-repeat center top / clamp(10rem, 3.891rem + 30.55vw, 34.438rem) auto;
}
.ind_box2_t_title1{
    line-height: 1.1;
    width:100%;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}


.ind_title1_tt1{
    line-height: 1.33;
}
.ind_title1_text{
    padding-top: 10px;
}


.ind_box2_list{
    gap: clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}
.ind_box2_list_item{
    border: 1px solid #B4B4B4;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.ind_box2_list_item::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: clamp(0.375rem, 0.25rem + 0.63vw, 0.875rem);
    background: var(--hue);
    opacity: 0;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box2_list_item_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box2_list_item_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind_box2_list_item_con{
    padding: clamp(1.875rem, 1.672rem + 1.02vw, 2.688rem) clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}
.ind_box2_list_item_con .icon{
    width: clamp(3.125rem, 2.656rem + 2.34vw, 5rem);
    margin-bottom: 12px;
}
.ind_box2_list_item_con .tt{
    margin-bottom: clamp(0.625rem, 0.5rem + 0.63vw, 1.125rem);
}

.ind_box2_list_item:hover::after{
    opacity: 1;
}
.ind_box2_list_item:hover .ind_box2_list_item_bg{
    opacity: 1;
}


.ind_box3{
    padding-top: clamp(1.875rem, 1.25rem + 3.13vw, 4.375rem);
    padding-bottom: clamp(1.875rem, 1.25rem + 3.13vw, 4.375rem);
}

.ind_box3_list{
    column-gap: clamp(0.938rem, 0.016rem + 4.61vw, 4.625rem);
}
.ind_box3_list .item{
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box3_list .item .icon{
    height: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
}
.ind_box3_list .item .tt{
    padding: 12px 0 clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem);
}
.ind_box3_list .item:hover{
    transform:translateY(-3px);
    -webkit-transform: translateY(-3px);
}



.ind_box4_l{
    width: 49.31%;
}

.ind_box4_l_pic{
    position: relative;
    width: 92.6%;
    margin: 0 auto;
}
.ind_box4_l_pic img{
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}
.ind_box4_l_pic::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #D5E0FF;
    border-radius: 10px;
    transform: rotateZ(-7deg);
}

.ind_box4_r{
    width: 48.125%;
    gap: clamp(0.938rem, 0.578rem + 1.8vw, 2.375rem);
}
.ind_box4_r .item{
    padding: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    border: 1px solid #C8C8C8;
}
.ind_box4_r .item .num{
    width: clamp(3.125rem, 2.391rem + 3.67vw, 6.063rem);
    color: #fff;
    font-style: italic;
    -webkit-text-stroke: 1px #A7A7A7; 
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box4_r .item .con{
    width: calc(100% - clamp(3.125rem, 2.391rem + 3.67vw, 6.063rem));
}
.ind_box4_r .item .con .tt{
    color: #333;
    margin-bottom: 10px;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box4_r .item:hover .num{
    color: var(--hue);
    -webkit-text-stroke: 1px var(--hue); 
}
.ind_box4_r .item:hover .con .tt{
    color: var(--hue);
}


.ind_box4_b{
    padding: clamp(1.875rem, 1.453rem + 2.11vw, 3.563rem) clamp(0.938rem, 0.359rem + 2.89vw, 3.25rem);
}
.ind_box4_b_l{
    width: 60%;
}
.ind_box4_b_l .tt{
    margin-bottom: 10px;
}
.ind_box4_b_r{
    width: 35%;
}


.ind_box5_scroll_item_pic{
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}
.ind_box5_scroll_item_pic img{
    display: block;
    width: 100%;
}

.ind_box5_scroll_item_con{
    padding: clamp(1rem, 0.844rem + 0.78vw, 1.625rem) 0 0;
    opacity: 0;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box5_scroll_item_tt{
    margin-bottom: clamp(0.625rem, 0.516rem + 0.55vw, 1.063rem);
}
.ind_box5_scroll .swiper-slide{
    width: 36.31%;
}
.ind_box5_scroll .swiper-slide img{
    width: 100%;
}
.ind_box5_scroll_item:hover .ind_box5_scroll_item_pic img{
    transform:scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
}

.ind_box5_scroll .swiper-slide-active .ind_box5_scroll_item_con{
    opacity: 1;
}

.ind_box5_scroll_btn{
    position: absolute;
    top: 38%;
    z-index: 2;
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    width: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    height: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    font-size: clamp(1.375rem, 1.281rem + 0.47vw, 1.75rem);
    color: var(--hue2);
    backdrop-filter: 10px;
    background: rgba(255,255,255,.5);
    border: 1px solid var(--hue2);
    border-radius: 50%;
    cursor: pointer;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box5_scroll_btn.prev{
    left: 0;
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}
.ind_box5_scroll_btn.next{
    right: 0;
}
.ind_box5_scroll_btn:hover{
    color: #fff;
    background: var(--hue2);
}





.ind_box6_scroll_item_t{
    position: relative;
    border-radius: 10px;
    padding: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem) clamp(1.875rem, 1.016rem + 4.3vw, 5.313rem) clamp(1.563rem, 1.25rem + 1.56vw, 2.813rem) clamp(0.938rem, 0.625rem + 1.56vw, 2.188rem);
    background: rgba(255,255,255,.86);
    margin-bottom: clamp(1.5rem, 1.219rem + 1.41vw, 2.625rem);
}
.ind_box6_scroll_item_t .icon1{
    position: absolute;
    color: rgba(23,75,210,.1);
    line-height: 0.8;
    right: clamp(0.625rem, 0.078rem + 2.73vw, 2.813rem);
    bottom: clamp(0.5rem, 0.313rem + 0.94vw, 1.25rem);
    font-size: clamp(1.875rem, 1.5rem + 1.88vw, 3.375rem);
}
.ind_box6_scroll_item_t .icon2{
    position: absolute;
    left: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem);
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-left-width: clamp(0.75rem, 0.516rem + 1.17vw, 1.688rem);
    border-right-width: clamp(0.75rem, 0.516rem + 1.17vw, 1.688rem);
    border-top-width: clamp(0.625rem, 0.406rem + 1.09vw, 1.5rem);
    border-bottom-width:0;
    border-color:rgba(255,255,255,.86) transparent transparent transparent;
}


.ind_box6_scroll_item_b{
    padding-left: clamp(0.875rem, 0.594rem + 1.41vw, 2rem);
}
.ind_box6_scroll_item_b .pic{
    width: clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem);
    height: clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
}
.ind_box6_scroll_item_b .pic img{
    display: block;
    width: 100%;
}
.ind_box6_scroll_item_b .con{
    width: calc(100% - clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem));
    padding-left: clamp(0.5rem, 0.281rem + 1.09vw, 1.375rem);   
}
.ind_box6_scroll_item_b .con .name{
    margin-bottom: clamp(0.5rem, 0.406rem + 0.47vw, 0.875rem);
}

.ind_box7_scroll_box{
    overflow: hidden !important;
}

.ind_box7_scroll{
    width: 100%;
    margin-bottom: clamp(1rem, 0.625rem + 1.88vw, 2.5rem);
    overflow-x: hidden;
}
.ind_box7_scroll .bd ul {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0;
}
.ind_box7_scroll .bd ul li {
    margin: 0 clamp(0.5rem, 0.313rem + 0.94vw, 1.25rem);
    padding: 0;
    width: 288px;
    height: 110px;
    float: left;
    overflow: hidden;
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #DADADA;
}
.ind_box7_scroll .bd ul li img{
    display: block;
    
}



.ind_box8_list{
    margin: 0;
    padding: 0;
}
.ind_box8_list dd{
    margin: 0;
    padding: 0;
}
.ind_box8_list_item{
    display: block;
    height: 100%;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box8_list_item_pic{
    overflow: hidden;
    position: relative;
    padding-left: clamp(0.5rem, 0.313rem + 0.94vw, 1.25rem);
}
.ind_box8_list_item_pic img{
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 10px;
}
.ind_box8_list_item_pic::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #D7D7D7;
    border-radius: 10px;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box8_list_item_con{
    padding: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem) clamp(1.063rem, 0.703rem + 1.8vw, 2.5rem);
}
.ind_box8_list_item_time{
    color: #666;
    margin-bottom: 10px;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box8_list_item_tt{
    color: #333;
    margin-bottom: clamp(0.75rem, 0.656rem + 0.47vw, 1.125rem);
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.ind_box8_list_item_more{
    color: #333;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}

.ind_box8_list_item:hover{
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}
.ind_box8_list_item:hover .ind_box8_list_item_pic::before{
    background: var(--hue);
}
.ind_box8_list_item:hover .ind_box8_list_item_time,
.ind_box8_list_item:hover .ind_box8_list_item_tt,
.ind_box8_list_item:hover .ind_box8_list_item_more{
    color: var(--hue);
}


.ind_box9{
    padding-top: clamp(1.875rem, 1.422rem + 2.27vw, 3.688rem);
    padding-bottom: clamp(1.875rem, 1.422rem + 2.27vw, 3.688rem);
}
.ind_box9_l .tt{
    margin-bottom: 10px;
}

.ind_box9_l{
    width: 50%;
}



/* footer */
.footer{
    background: #022A6C;
}
.footer_t{
    padding: clamp(2.188rem, 1.531rem + 3.28vw, 4.813rem) 0 clamp(1.563rem, 1.172rem + 1.95vw, 3.125rem);
}
.footer_t_l{
    width: 21.25%;
}
.footer_t_title1{
    margin-bottom: clamp(0.875rem, 0.781rem + 0.47vw, 1.25rem);
}
.footer_t_l_list{
    gap: 10px;
    color: #fff;
}
.footer_t_l_list .item .icon{
    width:calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem)*1.75);
    line-height: calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem)*1.75);
    color: #fff;
}
.footer_t_l_list .item .tt{
    width: calc(100% - clamp(0.875rem, 0.828rem + 0.2vw, 1rem)*1.75);
}
.footer_t_l_list .item .tt a{
    color: #fff;
}

.footer_t_l_sm{
    gap: clamp(0.313rem, 0.125rem + 0.94vw, 1.063rem);
}
.footer_t_l_sm .icon{
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    width: clamp(1.875rem, 1.594rem + 1.41vw, 3rem);
    height: clamp(1.875rem, 1.594rem + 1.41vw, 3rem);
    position: relative;
}
.footer_t_l_sm .icon>img{
    width: 100%;
}
.footer_t_l_sm .icon .pic{
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 150px;
    height: 150px;
    margin-left: -75px;
    opacity: 0;
    pointer-events: none;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.footer_t_l_sm .icon:hover .pic{
    opacity: 1;
    pointer-events: auto;
}


/*.footer_t_l_sm .icon.icon-facebook1{
    color: #5084F8;
    border-color: #5084F8;
}
.footer_t_l_sm .icon.icon-linkedin2{
    color: #009DF3;
    border-color: #009DF3;
}

.footer_t_l_sm .icon.icon-tiktok{
    color: #000;
    border-color: #000;
}
.footer_t_l_sm .icon.icon-you-tube{
    color: #FF0000;
    border-color: #FF0000;
}
.footer_t_l_sm .icon.icon-instagram-fill{
    color: #E05366;
    border-color: #E05366;
}
.footer_t_l_sm .icon.icon-pinterest1{
    color: #BD081C;
    border-color: #BD081C;
}
.footer_t_l_sm .icon.icon-tuite1{
    color: #000;
    border-color: #000;
}
.footer_t_l_sm .icon:hover{
    transform:translateY(-3px);
    -webkit-transform: translateY(-3px);
}*/

.footer_t_r{
    width: 69%;
}
.footer_t_r_item1{
    width: 36%;
}
.footer_t_r_item2{
    width: 24%;
}
.footer_t_r_item3{
    width: 35%;
}

.footer_t_r_list1{
    gap: 10px;
}
.footer_t_r_list1 .item{
    color: #fff;
}
.footer_t_r_list1 .item .icon{
    width: clamp(0.375rem, 0.344rem + 0.16vw, 0.5rem);
    height: clamp(0.375rem, 0.344rem + 0.16vw, 0.5rem);
    border-radius: 50%;
    background: #fff;
    margin-top: calc(((clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.75) - clamp(0.375rem, 0.344rem + 0.16vw, 0.5rem)) / 2);
}
.footer_t_r_list1 .item .tt{
    width: calc(100% - clamp(0.375rem, 0.344rem + 0.16vw, 0.5rem));
    padding-left: 10px;
}
.footer_t_r_list1 .item:hover{
    transform:translateX(3px);
    -webkit-transform:translateX(3px);
}
.footer_t_r_item3_code{
    gap: clamp(0.625rem, 0.031rem + 2.97vw, 3rem);
    padding-top: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}
.footer_t_r_item3_code .item{
    width: calc((100% - clamp(0.625rem, 0.031rem + 2.97vw, 3rem)) / 2);
    max-width: 150px;
}
.footer_t_r_item3_code .item .pic{
    overflow: hidden;
    padding: clamp(0.438rem, 0.344rem + 0.47vw, 0.813rem);
    background: #fff;
    margin-bottom: 15px;
}

.footer_b{
    color: #f5f5f5;
    border-top: 1px dashed rgba(255,255,255,.27);
    padding: clamp(0.875rem, 0.703rem + 0.86vw, 1.563rem) 0;
}
.footer_b a{
    color: #f5f5f5;
}





/* service */
.sub_banner img{
    display: block;
    width: 100%;
}
.sub_banner_con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(3,41,112,.24);
}
.sub_banner_con .wrapper{
    height: 100%;
    padding-bottom: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}
.sub_banner_tt{
    margin-bottom: clamp(0.75rem, 0.656rem + 0.47vw, 1.125rem);
}


.service_box1_list{
    gap: 40px;
    margin: 0;
    padding: 0;
}
.service_box1_list dd{
    margin: 0;
    padding: 0;
}
.service_box1_list_item_pic{
    width: 50%;
    position: relative;
}
.service_box1_list_item_pic img{
    display: block;
    position: relative;
    z-index: 2;
    width: calc(100% - clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem));
}
.service_box1_list_item_pic::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem)*-1);
    z-index: 0;
    display: block;
    width: calc(100% - clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem));
    height: 100%;
    background: #E9E9E9;
    border-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.service_box1_list_item_con{
    width: 49%;
    padding-left: clamp(0rem, -1rem + 5vw, 4rem);
}

.service_box1_list_item_tt{
    color: #333;
    line-height: 1.3;
    margin-bottom: 14px;
}
.service_box1_list_item_line{
    width: clamp(3.125rem, 2.484rem + 3.2vw, 5.688rem);
    height: clamp(0.25rem, 0.203rem + 0.23vw, 0.438rem);
    background: var(--hue);
    border-radius: 4px;
    margin-bottom: 14px;
}
.service_box1_list_item_tt2{
    margin-bottom: 12px;
}
.service_box1_list2 .service_box1_list_item_con{
    width: 43%;
}
.service_box1_list_item:hover .service_box1_list_item_pic::before{
    background: var(--hue);
}
.service_box1_list dd:nth-child(2n) .service_box1_list_item,
.service_box1_list2 dd .service_box1_list_item{
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}
.service_box1_list dd:nth-child(2n) .service_box1_list_item_pic,
.service_box1_list2 dd .service_box1_list_item_pic{
    justify-content: start;
}
.service_box1_list dd:nth-child(2n) .service_box1_list_item_pic::before,
.service_box1_list2 dd .service_box1_list_item_pic::before{
    left: auto;
    right: 0;
}

.yyfw_box1_scroll_item .icon_box{
    width: clamp(6.25rem, 4.656rem + 7.97vw, 12.625rem);
    height: clamp(6.25rem, 4.656rem + 7.97vw, 12.625rem);
    border-radius: 50%;
    padding: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
    background: rgba(195,195,195,.43);
    margin:  0 auto;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box1_scroll_item .icon_box .icon{
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box1_scroll_item .icon_box .icon img{
    display: block;
    width: 100%;
}
.yyfw_box1_scroll_item .icon_box .icon .icon2{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
}
.yyfw_box1_scroll_item .tt{
    padding-top: clamp(1.125rem, 0.844rem + 1.41vw, 2.25rem);
}
.yyfw_box1_scroll_item:hover .icon_box{
    background: rgba(27,76,168,.43);
}
.yyfw_box1_scroll_item:hover .icon_box .icon{
    background: var(--hue);
}
.yyfw_box1_scroll_item:hover .icon_box .icon .icon1{
    opacity: 0;
}
.yyfw_box1_scroll_item:hover .icon_box .icon .icon2{
    opacity: 1;
}


.yyfw_box2_list .item{
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}

.yyfw_box2_list .item .pic{
    width: clamp(9.375rem, 1.24rem + 16.95vw, 18.188rem);
    margin:0 auto;
}
.yyfw_box2_list .item .tt{
    line-height: 1.4;
    padding-top: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    max-width: 320px;
    margin: 0 auto;
}

.yyfw_box2_list .item:hover{
    transform:translateY(-3px);
    -webkit-transform: translateY(-3px);
}


.yyfw_box3_list .item{
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box3_list .item .pic{
    width: clamp(6.25rem, 4.656rem + 7.97vw, 12.625rem);
    height: clamp(6.25rem, 4.656rem + 7.97vw, 12.625rem);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}
.yyfw_box3_list .item .pic img{
    display: block;
    width: 100%;
}
.yyfw_box3_list .item .tt{
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.yyfw_box3_list .item:hover{
    transform:translateY(-3px);
    -webkit-transform: translateY(-3px);
}


.yyfw_box3_scroll_item .pic{
    overflow: hidden;
}
.yyfw_box3_scroll_item .pic img{
    width: 100%;
}
.yyfw_box3_scroll_item .tt{
    padding-top: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}
.yyfw_box3_scroll_item:hover .pic img{
    transform:scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
}

.yyfw_box4_list{
    gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}

.yyfw_box4_list_item{
    position: relative;
    padding: clamp(1.125rem, 0.75rem + 1.88vw, 2.625rem) clamp(1.875rem, 0.313rem + 7.81vw, 8.125rem) clamp(1.125rem, 0.75rem + 1.88vw, 2.625rem) clamp(0.938rem, 0.109rem + 4.14vw, 4.25rem);
    background: #fff;
    border: 1px solid #E9E9E9;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box4_list_item .num{
    display: block;
    color: #fff;
    line-height: 1;
    font-size: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    -webkit-text-stroke: 1px var(--hue);
    margin-bottom: 12px;
}
.yyfw_box4_list_item .tt{
    color: #333;
    margin-bottom: 10px;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box4_list_item .text{
    color: #666;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box4_list_item .icon{
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(3.75rem, 2.469rem + 6.41vw, 8.875rem);
    height: clamp(3.75rem, 2.469rem + 6.41vw, 8.875rem);
}
.yyfw_box4_list_item .icon .icon_rela::after{
    content: "";
    display: block; 
    width: calc(clamp(3.75rem, 2.469rem + 6.41vw, 8.875rem)*2);
    height: calc(clamp(3.75rem, 2.469rem + 6.41vw, 8.875rem)*2);
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.21);
    border-radius: 50%;
    opacity: 0;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box4_list_item:hover{
    background: var(--hue);
    border-color: var(--hue);
}

.yyfw_box4_list_item:hover .tt,
.yyfw_box4_list_item:hover .text{
    color: #fff;
}
.yyfw_box4_list_item:hover .icon .icon_rela::after{
    opacity: 1;
}



.yyfw_box5_list{
    column-gap: clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem);
    row-gap: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem);
}
.yyfw_box5_list .item{
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box5_list .item .pic{
    border: 1px solid #E9E9E9;
    border-radius: 6px;
    padding:5px;
    background: #fff;
}
.yyfw_box5_list .item .pic img{
    height: clamp(4.375rem, 3.563rem + 4.06vw, 7.625rem);
}
.yyfw_box5_list .item .tt{
    padding-top: clamp(0.625rem, 0.531rem + 0.47vw, 1rem);
}
.yyfw_box5_list .item:hover{
    transform:translateY(-3px);
    -webkit-transform: translateY(-3px);
}

.yyfw_box6_list{
    margin: 0;
    padding: 0;
    column-gap: clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
    row-gap: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem);
}
.yyfw_box6_list dd{
    margin: 0;
    padding: 0;
}

.yyfw_box6_list_item{
    display: block;
    position: relative;
    height: 100%;
    padding: clamp(0.625rem, 0.375rem + 1.25vw, 1.625rem);
    border: 1px solid #D7D7D7;
}
.yyfw_box6_list_item_pic{
    overflow: hidden;
}
.yyfw_box6_list_item_pic img{
    display: block;
    width: 100%;
}
.yyfw_box6_list_item_con{
    padding: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem) 0 4px;
}
.yyfw_box6_list_item_time{
    margin-bottom: clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem);
}
.yyfw_box6_list_item_tt{
    color: #333;
    height: calc(clamp(1rem, 0.907rem + 0.39vw, 1.25rem)*1.75*2);
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.yyfw_box6_list_item:hover .yyfw_box6_list_item_pic img{
    transform:scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
}
.yyfw_box6_list_item:hover .yyfw_box6_list_item_tt{
    color: var(--hue);
}



/* 会议服务 */
.hy_box1_l{
    width: 43.5%;
}
.hy_box1_l_pic_rotate{
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/1;
    -ms-animation: el_rotate 40s linear infinite;
    -webkit-animation: el_rotate 40s linear infinite;
    animation: el_rotate 40s linear infinite;
    
    border-radius: 50%;
}
.hy_box1_l_pic_rotate::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 27px;
    height: 27px;
    background: var(--hue);
    border-radius: 50%;
}
@-ms-keyframes el_rotate {
    0% {
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }

    100% {
        -ms-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes el_rotate {
    0% {
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }

    100% {
        -ms-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes el_rotate {
    0% {
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }

    100% {
        -ms-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

.hy_box1_l_pic{
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    aspect-ratio: 1/1;
    border: 1px dashed var(--hue);
    border-radius: 50%;
}
.hy_box1_l_pic img{
    display: block;
    width: 88.5%;
    height: 88.5%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}


.hy_box1_r{
    width: 51.5%;
    gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}
.hy_box1_r .item{
    color: #333;
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    padding: clamp(1.125rem, 0.953rem + 0.86vw, 1.813rem) clamp(0.938rem, 0.422rem + 2.58vw, 3rem);
    cursor: pointer;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.hy_box1_r .item .tt{
    margin-bottom: 6px;
}
.hy_box1_r .item.hover{
    background: var(--hue);
    color: #fff;
}



.hy_box3_l{
    width: 49.31%;
}

.hy_box3_r{
    width: 48.125%;
}

.hy_box3_r_clm{
    gap: clamp(0.75rem, 0.656rem + 0.47vw, 1.125rem);
}
.hy_box3_r_clm .item .icon{
    width: clamp(1.5rem, 1.438rem + 0.31vw, 1.75rem);
    margin-top: clamp(0rem, -0.047rem + 0.23vw, 0.188rem);
}
.hy_box3_r_clm .item .tt{
    width: calc(100% - clamp(1.5rem, 1.438rem + 0.31vw, 1.75rem));
    padding-left: clamp(0.188rem, 0.109rem + 0.39vw, 0.5rem);
}



.hy_box4{
    padding-top: clamp(3.125rem, 1.797rem + 6.64vw, 8.438rem);
    padding-bottom: clamp(3.125rem, 1.797rem + 6.64vw, 8.438rem);
}

.hy_box4_text{
    padding-top: clamp(0.875rem, 0.781rem + 0.47vw, 1.25rem);
}



.hy_box5_con{
    background: #F2F5FA;
}
.hy_box5_l{
    width: 50%;
    padding: clamp(1.563rem, 1.094rem + 2.34vw, 3.438rem) clamp(0.938rem, 0.469rem + 2.34vw, 2.813rem);
}
.hy_box5_l_list{
    gap: clamp(0.75rem, 0.563rem + 0.94vw, 1.5rem);
}
.hy_box5_l_list .item .icon{
    width: 10px;
    height: 10px;
    margin-top: calc((clamp(1rem, 0.907rem + 0.39vw, 1.25rem)*1.5 - 10px) / 2);
    border-radius: 50%;
    background: var(--hue);
}
.hy_box5_l_list .item .tt{
    width: calc(100% - 10px);
    padding-left: clamp(0.438rem, 0.391rem + 0.23vw, 0.625rem);
}

.hy_box5_r{
    width: 50%;
}
.hy_box5_r img{
    width: 100%;
}


.hy_box6_l{
    width: 50%;
    position: relative;
}
.hy_box6_l_pic1{
    width: 90.375%;
}
.hy_box6_l_pic1 img{
    width: 100%;
}
.hy_box6_l_pic2{
    position: absolute;
    right: 0;
    padding: clamp(0.313rem, 0.234rem + 0.39vw, 0.625rem);
    background: #fff;
    width: 50.75%;
    bottom: calc(clamp(0.938rem, 0.516rem + 2.11vw, 2.625rem)*-1);
}

.hy_box6_r{
    width: 46.875%;
    gap: 10px;
}
.hy_box6_r .item{
    padding: clamp(0.875rem, 0.781rem + 0.47vw, 1.25rem) 0;
    border-bottom: 1px solid #CECECE;
}
.hy_box6_r .item .item_tt{
}
.hy_box6_r .item .item_tt .icon{
    width: 19px;
    height: clamp(0.938rem, 0.891rem + 0.23vw, 1.125rem);
    margin-top: calc((clamp(1.125rem, 0.985rem + 0.59vw, 1.5rem)*1.5 - clamp(0.938rem, 0.891rem + 0.23vw, 1.125rem) - 6px) / 2);
}
.hy_box6_r .item .item_tt .tt{
    width: calc(100% - 19px);
    padding-left: 8px;
}
.hy_box6_r .item .item_text{
    padding-left: 27px;
    padding-top: 10px;
}




/* news */
.news_bars_box{
    margin-bottom: clamp(1.875rem, 1.406rem + 2.34vw, 3.75rem);
}
.news_bars{
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    transform: translate(0,-50%);
}
.news_bars .item{
    height: clamp(3.75rem, 2.969rem + 3.91vw, 6.875rem);
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
}
.news_bars .item .icon{
    position: relative;
    width: clamp(1.625rem, 1.531rem + 0.47vw, 2rem);
    height: clamp(1.625rem, 1.531rem + 0.47vw, 2rem);
}
.news_bars .item .icon img{
    display: block;
    width: 100%;
}
.news_bars .item .icon .icon2{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.news_bars .item .tt{
    color: #333;
    padding-left: 9px;
}
.news_bars .item.hover .icon .icon1{
    opacity: 0;
}
.news_bars .item.hover .icon .icon2{
    opacity: 1;
}
.news_bars .item.hover .tt{
    color: var(--hue);
}



.news_det_l{
    width: calc(100% - clamp(20rem, 13.26rem + 10.49vw, 23.75rem) - clamp(1.563rem, -2.369rem + 6.12vw, 3.75rem));
}
.case_det_clm{
    gap: clamp(0.625rem, 0.156rem + 2.34vw, 2.5rem);
}

.news_det_r{
    width: clamp(20rem, 13.26rem + 10.49vw, 23.75rem);
}
.case_det_r_list1{
    gap: 10px;
    margin-bottom:clamp(1.563rem, 1.172rem + 1.95vw, 3.125rem);
}

.case_det_r_list1{
    gap: clamp(1.25rem, 0.938rem + 1.56vw, 2.5rem);
}
.case_det_r_list1_item{
    display: block;
    padding-bottom: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
    border-bottom: 1px solid #D7D7D7;
}
.case_det_r_list1_item_pic img{
    width: 100%;
}
.case_det_r_list1_item_time{
    position: absolute;
    right: 0;
    top: 0;
    width: 123px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    background: var(--hue);
}
.case_det_r_list1_item_tt{
    color: #333;
    margin: clamp(1.063rem, 1.016rem + 0.23vw, 1.25rem) 0 clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem);
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.case_det_r_list1_item:hover .case_det_r_list1_item_pic img{
    transform:scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
}
.case_det_r_list1_item:hover .case_det_r_list1_item_tt{
    color: var(--hue);
}


.case_det_page_box{
    padding: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    background: #f9f9f9;
    row-gap: 10px;
}
.case_det_page_item{
    width: 47.5%;
}
.case_det_page_item .tt{
    margin-bottom: clamp(0.313rem, 0.234rem + 0.39vw, 0.625rem);
}
.case_det_page_item .text a{
    display: block;
    color: #666;
}
.case_det_page_item .text a:hover{
    color: var(--hue);
}
.case_det_page_line{
    width: 1px;
    height: 74px;
    background: #B9B9B9;
}






/* contact */
.contact_box1{
    overflow: hidden;
}
.contact_box1_l{
    width: 33.75%;
}
.contact_title1{
    margin-bottom: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
}
.contact_box1_l_list {
    column-gap: 20px;
    row-gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    margin-bottom: clamp(1.25rem, 1.016rem + 1.17vw, 2.188rem);
}
.contact_box1_l_list .item{
    width: calc((100% - 20px) / 2);
}
.contact_box1_l_list .item.item_w{
    width: 100%;
}
.contact_box1_l_list .item .icon{
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    width: 44px;
    height: 44px;
    font-size: 22px;
    color: var(--hue);
    border-radius: 50%;
    border: 1px solid var(--hue);
}
.contact_box1_l_list .item .con{
    width: calc(100% - 44px);
    padding-left: 12px;
}
.contact_box1_l_list .item .con a{
    color: #333;
}
.contact_box1_l_list .item .con a:hover{
    color: var(--hue);
}

.contact_box1_l_sm{
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
}


.contact_box1_l_code{
    gap: clamp(0.938rem, 0.422rem + 2.58vw, 3rem);
}
.contact_box1_l_code .item{
    max-width: 150px;
}
.contact_box1_l_code .item .pic{
    padding: clamp(0.438rem, 0.344rem + 0.47vw, 0.813rem);
    background: #fff;
    margin-bottom: 15px;
}
.contact_box1_l_code .item .pic img{
    width: 125px;
}


.contact_box1_r{
    width: 62.5%;
    padding: 0 clamp(1.25rem, -0.481rem + 3.61vw, 3.125rem);
    position: relative;
}
.contact_box1_r::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -10%;
    width: 1px;
    height: 900%;
    background: #ccc;
}
.contact_form_list1{
    margin: 0;
    padding: 0;
    column-gap: clamp(1.25rem, 0.938rem + 1.56vw, 2.5rem);
    row-gap: 10px;
}
.contact_form_list1 dd{
    width: calc((100% - clamp(1.25rem, 0.938rem + 1.56vw, 2.5rem)) / 2);
    margin: 0;
    padding: 0;
}
.contact_form_list1 dd.ddw{
    width: 100%;
}
.contact_form_list1_title{
    color: #333;
    line-height: 1.55;
    font-size: clamp(1rem, 0.969rem + 0.16vw, 1.125rem);
    padding: 10px 0;
}
.contact_form_list1_title .icon{
    color: var(--hue2);
}
.contact_form_list1_text,
.contact_form_list1_area{
    display: block;
    width: 100%;
    height: 50px;
    padding-left: 15px;
    color: #333;
    font-size: 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.contact_form_list1_area{
    height: 92px;
    padding: 10px 15px;
    resize: none;
}
.contact_form_list1_tips{
    padding: 10px 0 20px;
}

.contact_form_list1_btn{
    display: block;
}


/*~~~~~~~~~~~~xu_talent    ~~~~~~~~~~~*/
/*~~~~~~~~~~~~xu_talent    ~~~~~~~~~~~*/
/*~~~~~~~~~~~~xu_talent    ~~~~~~~~~~~*/
.xu_talent_one {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  z-index: 2;
}
.xu_talent_one_faq {
  display: grid;
  gap: clamp(0.938rem, 0.645rem + 1.23vw, 1.875rem) 0;
  margin: 0 auto;
  max-width: 1400px;
  margin: 0;
  padding: 0;
}
.xu_talent_one_faq dd {
  margin: 0;
  padding: 0;
}
.xu_talent_one_faq dd .top {
  cursor: pointer;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: flex-start;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
}
.xu_talent_one_faq dd .bottom {
  display: none;
  padding: 15px 0;
  line-height: 1.625;
  border-bottom: 1px solid #a6a6a6;
}
.xu_talent_one_faq dd.hover .iconfont {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  color: var(--hue) !important;
}
/* xu_talent_two */
.xu_talent_two_t {
  padding-bottom: 60px;
}
.xu_talent_two_b {
  position: relative;
  width: clamp(25rem, 13.889rem + 17.36vw, 31.25rem);
  margin: 120px auto;
}
.xu_talent_two_pic {
  width: 100%;
  height: 100%;
}
.xu_talent_two_pic img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_talent_two_item {
  position: absolute;
  width: clamp(18.75rem, -3.472rem + 34.72vw, 31.25rem);
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  gap: clamp(0.625rem, 0.43rem + 0.82vw, 1.25rem);
  cursor: pointer;
}
.xu_talent_two_item .title {
  margin: 0 0 clamp(0.313rem, 0.118rem + 0.82vw, 0.938rem) 0;
}
.xu_talent_two_item .icon {
  width: clamp(3.125rem, 1.821rem + 5.49vw, 7.313rem);
  height: clamp(3.125rem, 1.821rem + 5.49vw, 7.313rem);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.xu_talent_two_item .icon img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_talent_two_item .icon .hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.xu_talent_two_item.hover .hide {
  opacity: 1;
}
.xu_talent_two_item .con {
  width: calc(100% - clamp(3.125rem, 1.821rem + 5.49vw, 7.313rem));
  line-height: 24px;
}
.xu_talent_two_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  z-index: 2;
}
.xu_talent_two_item:nth-child(1) {
  top: 0;
  right: calc(0px - clamp(4.688rem, -8.646rem + 20.83vw, 12.188rem));
  transform: translate(0%, -100%);
  -ms-transform: translate(0%, -100%);
  -webkit-transform: translate(0%, -100%);
}

.xu_talent_two_item:nth-child(2) {
  top: clamp(5.625rem, 3.403rem + 3.47vw, 6.875rem);
  right: calc(0px - clamp(19.063rem, -2.604rem + 33.85vw, 31.25rem));
}
.xu_talent_two_item:nth-child(3) {
  bottom: calc(0px - clamp(5rem, 2.778rem + 3.47vw, 6.25rem));
  right: calc(0px - clamp(13.75rem, -5.139rem + 29.51vw, 24.375rem));
}
.xu_talent_two_item:nth-child(4) {
  bottom: calc(0px - clamp(5rem, 2.778rem + 3.47vw, 6.25rem));
  left: calc(0px - clamp(13.75rem, -5.139rem + 29.51vw, 24.375rem));
  flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  text-align: right;
}
.xu_talent_two_item:nth-child(5) {
  top: clamp(5.625rem, 3.403rem + 3.47vw, 6.875rem);
  left: calc(0px - clamp(19.063rem, -2.604rem + 33.85vw, 31.25rem));
  flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  text-align: right;
}
.xu_talent_two_box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.xu_talent_two_swiper {
  z-index: -1;
}
.xu_talent_two_swiper .swiper-slide {
  height: auto;
}
/* xu_talent_three */
.xu_talent_three {
  background-color: #f5f5f5;
}
.xu_talent_three_con {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
}
.xu_talent_three_l {
  width: 50%;
  padding: clamp(2.5rem, -4.167rem + 10.42vw, 6.25rem)
    clamp(0.938rem, -4.063rem + 7.81vw, 3.75rem)
    clamp(2.5rem, -4.167rem + 10.42vw, 6.25rem)
    clamp(0.938rem, -15.174rem + 25.17vw, 10rem);
}
.xu_talent_three_r {
  width: 50%;
  border-radius: 80px 0 0 80px;
  overflow: hidden;
}
.xu_talent_three_r img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_talent_three_r:hover img {
  transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
}
.xu_talent_three_l dd .bottom{
    padding: 15px 0 5px 0;
}
.xu_talent_three_l dd.hover .text,
.xu_talent_three_l dd.hover .iconfont,
.xu_talent_three_l dd.hover .title{
    color: var(--hue) !important;
}
.xu_talent_three_l dd .bottom {
  border-bottom: none;
}
/* xu_game */
.xu_game_one_b {
  position: relative;
  z-index: 2;
}
.xu_game_one_b img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_game_list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_game_item {
  position: absolute;
  width: clamp(0.625rem, 0.43rem + 0.82vw, 1.25rem);
  height: clamp(0.625rem, 0.43rem + 0.82vw, 1.25rem);
  background-color: var(--hue);
  border-radius: 50%;
}
.xu_game_item .con {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  text-align: center;
  transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -webkit-transform: translate(-50%, -100%);
}
.xu_game_item .title {
  margin: 0;
  margin-bottom: 10px;
}
/* xu_game_two */
.xu_game_two_t {
  padding-bottom: clamp(0rem, -6.667rem + 10.42vw, 3.75rem);
}
.xu_game_two_b {
  position: relative;
  width: clamp(21.25rem, -5.972rem + 42.53vw, 36.563rem);
  aspect-ratio: 585/668;
  margin: 95px auto;
}
.xu_game_two_box {
  width: 100%;
  position: relative;
}
.xu_game_two_box_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.xu_game_two_swiper {
  z-index: -1;
}
.xu_game_two_swiper .swiper-slide {
  height: auto;
}
.xu_talent_two_pic img {
  object-fit: cover;
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_game_two_item {
  background-color: #fff;
  position: absolute;
  width: clamp(16.25rem, 4.028rem + 19.1vw, 23.125rem);
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  border: 1px solid var(--hue);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_game_two_item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 95%);
  -ms-transform: translate(-50%, 95%);
  -webkit-transform: translate(-50%, 95%);
  background-image: url(../images/xu_game_two_icon_show.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: clamp(1.563rem, -0.104rem + 2.6vw, 2.5rem);
  height: clamp(0.75rem, -0.361rem + 1.74vw, 1.375rem);
  border-radius: 3px;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}

.xu_game_two_item .title {
  text-align: center;
  white-space: nowrap;
  margin: 0;
  font-size: clamp(0.75rem, 0.083rem + 1.04vw, 1.125rem);
  padding: clamp(0.625rem, 0.048rem + 1.2vw, 1.25rem) 5px;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}

.xu_game_two_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  z-index: 2;
}
.xu_game_two_item:nth-child(1) {
  top: calc(clamp(4.125rem, 1.236rem + 4.51vw, 5.75rem)*-1);
  right:clamp(2.813rem, -4.41rem + 11.28vw, 6.875rem);
}

.xu_game_two_item:nth-child(2) {
  top: clamp(1.25rem, -5.417rem + 10.42vw, 5rem);
  right: calc(0px - clamp(15.625rem, 2.292rem + 20.83vw, 23.125rem));
}
.xu_game_two_item:nth-child(3) {
  top: clamp(12.5rem, -10.833rem + 36.46vw, 25.625rem);
  right: calc(0px - clamp(16.25rem, 4.028rem + 19.1vw, 23.125rem));
}
.xu_game_two_item:nth-child(4) {
  bottom: calc(clamp(4.125rem, 1.236rem + 4.51vw, 5.75rem)*-1);
  right: clamp(2.813rem, -4.41rem + 11.28vw, 6.875rem);
}
.xu_game_two_item:nth-child(5) {
  top: clamp(12.5rem, -10.833rem + 36.46vw, 25.625rem);
  left: calc(0px - clamp(16.25rem, 4.028rem + 19.1vw, 23.125rem));
}
.xu_game_two_item:nth-child(6) {
  top: clamp(1.25rem, -5.417rem + 10.42vw, 5rem);
  left: calc(0px - clamp(15.625rem, 2.292rem + 20.83vw, 23.125rem));
}

.xu_game_two_item:nth-child(3)::before,
.xu_game_two_item:nth-child(2)::before {
  left: 15%;
}
.xu_game_two_item:nth-child(4)::before {
  top: 0;
  transform: translate(-50%, -95%) rotate(180deg);
  -ms-transform: translate(-50%, -95%) rotate(180deg);
  -webkit-transform: translate(-50%, -95%) rotate(180deg);
}
.xu_game_two_item:nth-child(6)::before,
.xu_game_two_item:nth-child(5)::before {
  right: 5% !important;
  left: auto;
}

.xu_game_two_item.hover::before {
  background-image: url(../images/xu_game_two_icon_hide.jpg);
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_game_two_item.hover {
  background-color: var(--hue);
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_game_two_item.hover .title {
  color: #fff !important;
}
/* xu_game_three */
.xu_game_three_list {
  gap: clamp(0.938rem, 0.451rem + 2.05vw, 2.5rem);
}
.xu_game_three_item {
  border: 1px solid #e9e9e9;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  padding: clamp(1.25rem, 0.666rem + 2.46vw, 3.125rem);
}
.xu_game_three_item .icon {
  height: clamp(3.75rem, 2.971rem + 3.28vw, 6.25rem);
  margin: auto;
}
.xu_game_three_item .icon img {
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_game_three_item .title {
  margin: clamp(0.625rem, 0.528rem + 0.41vw, 0.938rem) 0 0;
}
.xu_game_three_item:hover .icon img {
  transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
}

/* xu_marketing */
.xu_marketing_one_l {
  width: 48%;
}
.xu_marketing_one_r {
  width: 48%;
  padding: clamp(0.625rem, 0.236rem + 1.64vw, 1.875rem)  ;
  padding-bottom: 0;
  background-color: #dae2f1;
  border-radius: 10px;
}
.xu_marketing_one_l dd {
  border: 1px solid #a7a7a7;
  border-radius: 10px;
  padding: clamp(0.625rem, 0.236rem + 1.64vw, 1.875rem);
}
.xu_marketing_one_l dd .bottom {
  border-bottom: none;
  padding-bottom: 0;
}
.xu_marketing_one_l dd.hover {
  background-color: var(--hue);
  border-color: var(--hue);
}
.xu_marketing_one_l dd.hover .iconfont,
.xu_marketing_one_l dd.hover div {
  color: #fff !important;
}
.xu_marketing_one_r .pic {
  width: 100%;
  position: relative;
  margin-bottom: -30px;
  border-radius: 10px;
  overflow: hidden;
}
.xu_marketing_one_r .pic img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
.xu_marketing_one_r .pic .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(0.625rem, 0.236rem + 1.64vw, 1.875rem);
  background-image: linear-gradient(
    to bottom,
    rgba(7, 49, 128, 0),
    rgba(7, 49, 128, 84%)
  );
}
.xu_marketing_one_r:hover .pic img {
  transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
}
/* xu_marketing_two */
.xu_marketing_two {
  background-color: #f5f5f5;
}
.xu_marketing_two_list {
  display: grid;
  gap: clamp(0.938rem, -0.717rem + 6.97vw, 6.25rem);
  position: relative;
}
.xu_marketing_two_list::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100%;
  height: 70%;
  border-left: 1px dashed var(--hue);
}

.xu_marketing_two_item::after {
  content: "";
  position: absolute;
  bottom: -50px;
  transform: translate(-50%, 50%);
  -ms-transform: translate(-50%,50%);
  -webkit-transform: translate(-50%,50%);
  left: 50%;
  width: 35px;
  height: 37px;
  background-image: url(../images/xu_marketing_two_icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.xu_marketing_two_item:last-child::after,
.xu_marketing_two_item:last-child::before {
  display: none;
}
.xu_marketing_two_item {
  position: relative;
  z-index: 2;
}
.xu_marketing_two_icon {
  width: clamp(6.125rem, 4.568rem + 6.56vw, 11.125rem);
  height: clamp(6.125rem, 4.568rem + 6.56vw, 11.125rem);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}
.xu_marketing_two_icon .hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.xu_marketing_two_icon img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  -ms-transition: all 0.6s;
  -webkit-transition: all 0.6s;
}

.xu_marketing_two_item .con {
  width: calc(100%);
}
.xu_marketing_two_l {
  width: 40%;
  border-left: clamp(0.5rem, 0.344rem + 0.66vw, 1rem) solid var(--hue);
  border-radius: 10px;
  position: relative;
  z-index: 2;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  background-color: #fff;
  min-height: clamp(6.125rem, 4.568rem + 6.56vw, 11.125rem);
  padding:  clamp(0.938rem, 0.645rem + 1.23vw, 1.875rem);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.xu_marketing_two_r {
  width: 40%;
}
.xu_marketing_two_l::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%) rotate(130deg);
  -ms-transform: translate(50%, -50%) rotate(130deg);
  -webkit-transform: translate(50%, -50%) rotate(130deg);
  width: 20px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #ffffff;
}
.xu_marketing_two_l .list {
  gap: clamp(0.625rem, 0.528rem + 0.41vw, 0.938rem)
    clamp(0.625rem, 0.43rem + 0.82vw, 1.25rem);
}
.xu_marketing_two_l .item {
  word-wrap: break-word;
  word-break: normal;
  font-size: clamp(1rem, 0.953rem + 0.2vw, 1.125rem);
  font-family: "OpenSans-Medium";
  color: #333;
}
.xu_marketing_two_r .btn {
  width: clamp(15rem, 11.301rem + 15.57vw, 26.875rem);
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  border: 1px solid var(--hue);
  border-radius: 100px;
  overflow: hidden;
  padding: clamp(0.625rem, 0.43rem + 0.82vw, 1.25rem);
}
.xu_marketing_two_item:nth-child(2n) .con {
  flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.xu_marketing_two_item:nth-child(2n) .xu_marketing_two_r {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.xu_marketing_two_item:nth-child(2n) .xu_marketing_two_l {
  border-right: clamp(0.5rem, 0.344rem + 0.66vw, 1rem) solid var(--hue);
  border-left: none;
}
.xu_marketing_two_item:nth-child(2n) .xu_marketing_two_l::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(130deg);
  -ms-transform: translate(-50%, -50%) rotate(130deg);
  -webkit-transform: translate(-50%, -50%) rotate(130deg);
  width: 20px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #ffffff;
}
.xu_marketing_two_item:hover .hide {
  opacity: 1;
}
.xu_marketing_two_item:hover .btn {
  background-color: var(--hue);
  color: #ffffff !important;
}
/* xu_marketing_three */
.xu_marketing_three_b{
  padding: 0 clamp(0rem, -1.947rem + 8.2vw, 6.25rem);
}
.xu_marketing_three_b dd{
  border-radius: 6px;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: clamp(0.625rem, 0.333rem + 1.23vw, 1.563rem) clamp(0.625rem, 0.236rem + 1.64vw, 1.875rem);
  padding-right: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.xu_marketing_three_b dd.hover{
  background-color: var(--hue);
}
.xu_marketing_three_b dd.hover .title{
  color: #fff !important;
}
.xu_marketing_three_b dd .iconfont{
  padding-right: clamp(0.625rem, 0.236rem + 1.64vw, 1.875rem);
}
.xu_marketing_three_b dd.hover .iconfont{
  color: #fff !important;
  padding-left: clamp(0.625rem, 0.236rem + 1.64vw, 1.875rem);
}
.xu_marketing_three_b dd .bottom{
  border-bottom: none;
  margin-top: clamp(0.625rem, 0.43rem + 0.82vw, 1.25rem);
  padding-right: clamp(0.625rem, 0.236rem + 1.64vw, 1.875rem);
  border-top: 1px solid rgba(255,255,255,.5);
}



/* ~~~~~~~dddddd,css */
/* ~~~~~~~dddddd,css */
/* ~~~~~~~dddddd,css */
.aboBoxOne img {
    width: 100%;
}

.aboBoxTwo {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.aboBoxTwo1 {
    position: relative;
    margin-top: -8%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    padding: clamp(1.563rem, 0.625rem + 4.69vw, 5.313rem) clamp(0.938rem, -0.156rem + 5.47vw, 5.313rem) 25px;
}

.aboTwo1_01 {
    padding-top: clamp(0.375rem, 0.234rem + 0.7vw, 0.938rem);
}

.aboBoxTwo2 {
    padding-top: clamp(1.875rem, 1.469rem + 2.03vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 15px;
}

.aboTwo2_item {
    position: relative;
    text-align: center;
}

.aboTwo2_item::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1px;
    height: 58px;
    background: #AEAEAE;
}

.aboTwo2_item .number {
    line-height: 1;
}

.aboTwo2_item .text {
    padding-top: clamp(0.313rem, 0.203rem + 0.55vw, 0.75rem);
}

.aboBoxTwo2>.aboTwo2_item:last-child::after {
    display: none;
}

.aboBoxThree {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.aboBoxThree1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.aboThree1_l {
    width: 52%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    padding: clamp(1.563rem, 1.172rem + 1.95vw, 3.125rem) clamp(0.938rem, 0.625rem + 1.56vw, 2.188rem);
    border: 1px solid #fff;
}

.aboThree1_r {
    width: clamp(3.75rem, 3.156rem + 2.97vw, 6.125rem);
    margin-right: 12%;
}

.aboThree1_r a {
    display: block;
}

.aboThree1_r a img {
    width: 100%;
}

.aboBoxFour1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.aboFour1_l {
    width: 50%;
}

.aboFour1_l img {
    width: 100%;
}

.aboFour1_r {
    width: 48%;
}

.aboFour1_r_02 .item {
    margin-bottom: clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.aboFour1_r_02 .item .icon {
    width: clamp(1.125rem, 1rem + 0.63vw, 1.625rem);
}

.aboFour1_r_02 .item .icon img {
    width: 100%;
}

.aboFour1_r_02 .item .text {
    width: calc(100% - clamp(1.125rem, 1rem + 0.63vw, 1.625rem));
    padding: clamp(0.125rem, 0.094rem + 0.16vw, 0.25rem) 0 0 clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
}

.aboFour1_r_02>.item:last-child {
    margin-bottom: 0;
}

.aboBoxFive1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.aboBoxFive1 .item {
    position: relative;
    isolation: isolate;
    height: 420px;
    width: calc((100% - 4px) / 2);
    padding: clamp(1.563rem, 1.484rem + 0.39vw, 1.875rem) clamp(0.938rem, -0.078rem + 5.08vw, 5rem);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.aboBoxFive1 .item::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 81, 0.3);
}

.aboBoxFive1 .item .icon {
    width: clamp(3.125rem, 2.219rem + 4.53vw, 6.75rem);
}

.aboBoxFive1 .item:hover .icon {
    display: none;
}

.aboBoxFive1 .item .icon img {
    width: 100%;
}

.aboBoxFive1 .item .title {
    padding-top: clamp(0.875rem, 0.844rem + 0.16vw, 1rem);
    text-align: center;
}

.aboBoxFive1 .item .text {
    display: none;
    padding-top: clamp(0.375rem, 0.281rem + 0.47vw, 0.75rem);
    text-align: center;
}

.aboBoxFive1 .item:hover .text {
    display: block;
}

.aboBoxSix {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.aboBoxSix1 {
    overflow-x: auto;
    /* scrollbar-width: none; */
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.aboSix1_item {
    width: 287px;
    -ms-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.aboSix1_item_top {
    height: 170px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.aboSix1_item_top .text {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.aboSix1_item_top .icon {
    width: 35px;
    margin: 0 auto;
    -ms-transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    margin-top: 10px;
}

.aboSix1_item_top .icon img {
    width: 100%;
}

.aboSix1_item_cen {
    position: relative;
    margin: 10px 0;
}

.aboSix1_item_cen img {
    width: 100%;
}

.aboSix1_item_cen .img_02 {
    display: none;
}

.aboSix1_item:hover .aboSix1_item_cen .img_01 {
    display: none;
}

.aboSix1_item:hover .aboSix1_item_cen .img_02 {
    display: block;
}

.aboSix1_item_cen .text {
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    text-align: center;
    padding: 5px 10px;
}

.aboSix1_item:hover .text {
    color: #ffffff;
}

.aboSix1_item_bot {
    height: 170px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

.aboSix1_item_bot .icon {
    width: 35px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.aboSix1_item_bot .icon img {
    width: 100%;
}

.aboSix1_item_bot .text {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.aboBoxSix1 > .aboSix1_item:nth-child(n + 2) {
    margin-left: -25px;
}

.aboBoxSeven1 {
    position: relative;
    isolation: isolate;
}

.aboSeven1_lunbo .item {
    cursor: pointer;
}

.aboSeven1_lunbo .item .dots {
    width: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
    height: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
    border-radius: 50%;
    background: #D9D9D9;
    margin: 0 auto;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.aboSeven1_lunbo .item .year {
    text-align: center;
    padding-top: clamp(0.375rem, 0.313rem + 0.31vw, 0.625rem);
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.aboBoxSeven1::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: clamp(0.375rem, 0.313rem + 0.31vw, 0.625rem);
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: 1px dashed var(--hue);
}

.public_lunbo_prev,
.public_lunbo_next {
    font-size: clamp(1.125rem, 0.844rem + 1.41vw, 2.25rem);
    color: var(--hue2);
    text-align: center;
    width: clamp(1.75rem, 1.313rem + 2.19vw, 3.5rem);
    height: clamp(1.75rem, 1.313rem + 2.19vw, 3.5rem);
    line-height: clamp(1.75rem, 1.313rem + 2.19vw, 3.5rem);
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--hue2);
    outline: none;
    cursor: pointer;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.public_lunbo_prev:hover,
.public_lunbo_next:hover {
    color: #ffffff;
    background: var(--hue2);
}

.public_lunbo_prev {
    -ms-transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.aboSeven1_prev {
    position: absolute;
    z-index: 2;
    top: calc(clamp(0.5rem, 0.344rem + 0.78vw, 1.125rem) * -1);
    left: -20px;
}

.aboSeven1_next {
    position: absolute;
    z-index: 2;
    top: calc(clamp(0.5rem, 0.344rem + 0.78vw, 1.125rem) * -1);
    right: -20px;
}

.aboBoxSeven2 {
    padding-top: clamp(1.563rem, 1.172rem + 1.95vw, 3.125rem);
}

.aboSeven2_lunbo .item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.aboSeven2_lunbo_l {
    width: 47.9%;
    border-radius: 10px;
    -ms-perspective: 900px;
    -moz-perspective: 900px;
    -webkit-perspective: 900px;
    perspective: 900px;
    overflow: hidden;
}

.aboSeven2_lunbo_l img {
    width: 100%;
}

.aboSeven2_lunbo_l:hover img {
    -ms-transform: translateZ(80px);
    -moz-transform: translateZ(80px);
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    -ms-transition: all 1.6s;
    -webkit-transition: all 1.6s;
    transition: all 1.6s;
}

.aboSeven2_lunbo_r {
    width: 46.8%;
}

.aboSeven2_lunbo_r .line {
    width: clamp(2.5rem, 1.125rem + 6.88vw, 8rem);
    height: 2px;
    background: var(--hue);
    margin-top: clamp(0.375rem, 0.281rem + 0.47vw, 0.75rem);
}

.aboSeven2_lunbo_r .text {
    padding-top: clamp(0.875rem, 0.703rem + 0.86vw, 1.563rem);
}

.aboSeven1_lunbo .swiper-slide.swiper-slide-thumb-active .item .dots {
    background: var(--hue);
}

.aboSeven1_lunbo .swiper-slide.swiper-slide-thumb-active .item .year {
    color: #222222;
}

.aboBoxEight {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.aboBoxEight1 {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.aboEight1_lunbo .item {
    transform: scale(0.86);
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.aboEight1_lunbo .swiper-slide.swiper-slide-active .item {
    transform: scale(1);
}

.aboEight1_lunbo .item .img_box img {
    width: 100%;
}

.aboEight1_lunbo .item .title {
    opacity: 0;
    padding-top: clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem);
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.aboEight1_lunbo .swiper-slide.swiper-slide-active .item .title {
    opacity: 1;
}

.aboEight1_prev,
.aboEight1_next {
    position: absolute;
    z-index: 2;
    top: 44%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.aboEight1_prev {
    left: -5%;
}

.aboEight1_next {
    right: -5%;
}

.aboEight1_prev {
    -ms-transform: translate(0, -50%) rotateZ(180deg);
    -webkit-transform: translate(0, -50%) rotateZ(180deg);
    transform: translate(0, -50%) rotateZ(180deg);
}

.aboNine1_lunbo .item .img_box {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #CECECE;
    padding: clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem);
}

.aboNine1_lunbo .item .img_box img {
    width: 100%;
}

.aboNine1_lunbo .item .title {
    padding-top: clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem);
}

.hyBoxOne1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.hyBoxOne1_l {
    width: 50%;
    border-radius: 10px;
    -ms-perspective: 900px;
    -moz-perspective: 900px;
    -webkit-perspective: 900px;
    perspective: 900px;
    overflow: hidden;
}

.hyBoxOne1_l img {
    width: 100%;
}

.hyBoxOne1_l:hover img {
    -ms-transform: translateZ(80px);
    -moz-transform: translateZ(80px);
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    -ms-transition: all 1.6s;
    -webkit-transition: all 1.6s;
    transition: all 1.6s;
}

.hyBoxOne1_r {
    width: 44.6%;
}

.hyBoxOne1_r_01 {
    width: clamp(3.125rem, 2.391rem + 3.67vw, 6.063rem);
}

.hyBoxOne1_r_01 img {
    width: 100%;
}

.hyBoxOne1_r_02 {
    padding-top: 10px;
}

.hyBoxOne1_r_03 {
    padding-top: clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem);
}


.hyBoxTwo1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(0.75rem, 0.313rem + 2.19vw, 2.5rem);
    row-gap: 15px;
}

.hyTwo1_item {
    text-align: center;
    border: 1px solid #CBCBCB;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    padding: clamp(1.125rem, 0.719rem + 2.03vw, 2.75rem) clamp(0.75rem, 0.156rem + 2.97vw, 3.125rem);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}


.hyTwo1_item .text {
    padding-top: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
}

.hyBoxThree1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.hyThree1_l {
    width: 48.8%;
    border-radius: 10px;
    -ms-perspective: 900px;
    -moz-perspective: 900px;
    -webkit-perspective: 900px;
    perspective: 900px;
    overflow: hidden;
}

.hyThree1_l img {
    width: 100%;
}

.hyThree1_l:hover img {
    -ms-transform: translateZ(80px);
    -moz-transform: translateZ(80px);
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    -ms-transition: all 1.6s;
    -webkit-transition: all 1.6s;
    transition: all 1.6s;
}

.hyThree1_r {
    width: 48.4%;
}

.hyThree1_r_item {
    border-bottom: 1px dashed #D0D0D0;
    padding: clamp(0.875rem, 0.703rem + 0.86vw, 1.563rem) 0;
}
.hyThree1_r_item .title{
    text-transform: capitalize;
}
.hyThree1_r_item .text {
    padding-top: clamp(0.438rem, 0.328rem + 0.55vw, 0.875rem);
}

.solBoxTwo2 {
    position: relative;
}

.solTwo2_01 .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.solTwo2_02 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.solTwo2_02_item {
    position: relative;
    z-index: 2;
    width: calc((100% - 31.8%) / 3);
    height: 620px;
    border-right: 1px solid #d5d5d5;
    padding: 30px clamp(0.938rem, 0.625rem + 1.56vw, 2.188rem) clamp(1.875rem, 1.719rem + 0.78vw, 2.5rem);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.solBoxTwo2::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 22, 64, 0.25);
}

.solTwo2_02_item_01 {
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.solTwo2_02_item_01 .number {
    color: transparent;
    line-height: 1;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
}

.solTwo2_02_item_01 .title {
    padding-top: clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem);
}

.solTwo2_02_item_02 {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    padding: 30px clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    background: rgba(27, 76, 168, 0.9);
    border-radius: 10px;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.solTwo2_02_item_02 .title {
    color: #FFFFFF;
}

.solTwo2_02_item_02 .text {
    color: #FFFFFF;
    padding-top: 12px;
}

.solTwo2_02_item.on {
    width: 31.8%;
}

.solTwo2_02_item.on .solTwo2_02_item_02 {
    opacity: 1;
    pointer-events: auto;
}

.solTwo2_02_item.on .solTwo2_02_item_01 {
    opacity: 0;
}

.solBoxThree {
    padding-top: clamp(3.125rem, 1.563rem + 7.81vw, 9.375rem);
}

.solBoxThree1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.solThree1_l {
    width: 30%;
    color: #333333;
    text-align: right;
}

.solThree1_r {
    width: 30%;
    color: #333333;
}

.solBoxThree2 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.solThree2_l {
    width: 30%;
}

.solThree2_l_tt {
    display: none;
    padding-bottom: clamp(0.813rem, 0.625rem + 0.94vw, 1.563rem);
}

.solThree2_l_list {
    text-align: right;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: clamp(0.375rem, -0.078rem + 2.27vw, 2.188rem);
}

.solThree2_l_list .item {
    cursor: pointer;
}

.solThree2_l_list > .item:nth-child(2) {
    padding-right: 10%;
}

.solThree2_l_list > .item:nth-child(3) {
    padding-right: 15%;
}

.solThree2_l_list > .item:nth-child(4) {
    padding-right: 20%;
}

.solThree2_l_list > .item:nth-child(5) {
    padding-right: 15%;
}

.solThree2_l_list > .item:nth-child(6) {
    padding-right: 10%;
}

.solThree2_r {
    width: 30%;
}

.solThree2_r_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: clamp(0.375rem, -0.078rem + 2.27vw, 2.188rem);
}

.solThree2_r_list .item {
    cursor: pointer;
}

.solThree2_r_list > .item:nth-child(2) {
    padding-left: 10%;
}

.solThree2_r_list > .item:nth-child(3) {
    padding-left: 15%;
}

.solThree2_r_list > .item:nth-child(4) {
    padding-left: 15%;
}

.solThree2_r_list > .item:nth-child(5) {
    padding-left: 10%;
}

.solThree2_c_box {
    position: relative;
    width: 40%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px dashed var(--hue);
    padding: clamp(0.75rem, 0.281rem + 2.34vw, 2.625rem);
}

.solThree2_c {
    width: 100%;
    height: 100%;
}

.solThree2_c .item {
    width: 100%;
    height: 100%;
}

.solThree2_c .item .img_box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.solThree2_c .item .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solThree2_c_icon1,
.solThree2_c_icon2 {
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: clamp(1.75rem, 1.594rem + 0.78vw, 2.375rem);
}

.solThree2_c_icon1 img,
.solThree2_c_icon2 img {
    width: 100%;
}

.solThree2_c_icon1 {
    left: -8%;
}

.solThree2_c_icon2 {
    right: -8%;
    -ms-transform: translate(0, -50%) rotateZ(180deg);
    -webkit-transform: translate(0, -50%) rotateZ(180deg);
    transform: translate(0, -50%) rotateZ(180deg);
}

.solThree2_item.hover {
    color: var(--hue) !important;
}

.solBoxFour {
    background: #F5F5F5;
}

/* .solFour1_lunbo .swiper-slide {
    height: auto;
} */


.solFour1_lunbo .swiper-slide:nth-child(2n){
    margin-top: clamp(0.938rem, -0.391rem + 6.64vw, 6.25rem);
}
.solFour1_lunbo .item_box {
    height: 100%;
    padding: 10px;
}

.solFour1_lunbo .item {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    padding: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem) clamp(0.75rem, 0.547rem + 1.02vw, 1.563rem);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.solFour1_lunbo .item .title {
    color: #ffffff;
    text-align: center;
}
.solFour1_lunbo .item .text {
    color: #ffffff;
    text-align: center;
    padding-top: 10px;
}

.solFour1_lunbo .item .number_content {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #FFFFFF, #CDDDFB 40%);
    padding: 20px 12px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.solFour1_lunbo .item:hover .number_content {
    opacity: 0;
}

.solFour1_lunbo .item .number_content .number {
    font-size: clamp(1.875rem, 1.094rem + 3.91vw, 5rem);
    line-height: 1;
    color: var(--hue);
}

.solFour1_lunbo .item .number_content .con {
    color: #333333;
    padding-top: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
}

.solBoxSix1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(0.75rem, -0.031rem + 3.91vw, 3.875rem);
    row-gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}

.solSix1_item {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: clamp(0.75rem, 0.469rem + 1.41vw, 1.875rem) clamp(0.938rem, -0.078rem + 5.08vw, 5rem) clamp(0.75rem, 0.469rem + 1.41vw, 1.875rem) clamp(0.938rem, 0.266rem + 3.36vw, 3.625rem);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.solSix1_item .icon {
    width: clamp(3.5rem, 2.719rem + 3.91vw, 6.625rem);
}

.solSix1_item .icon img {
    width: 100%;
}

.solSix1_item .text {
    text-align: right;
    max-width: calc(100% - clamp(3.5rem, 2.719rem + 3.91vw, 6.625rem));
    padding-left: 10px;
}

.solBoxSeven {
    background: #F5F5F5;
}

.solBoxSeven1 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: clamp(0.75rem, 0.313rem + 2.19vw, 2.5rem);
    row-gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}

.solBoxSeven1 .item {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #DBDBDB;
    -ms-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.solBoxSeven1 .item img {
    width: 100%;
}

.solBoxSeven1 .item:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* ~~~~~~~dddddd,css~~~~end */
/* ~~~~~~~dddddd,css~~~~end */
/* ~~~~~~~dddddd,css~~~~end */



.service_bdh_box1_l{
    width: 43%;
}


.service_bdh_box1_r{
    width: 51%;
}



.ti-cursor{
    display:none !important;
}


/* 字符过渡效果 [参考摘要2] */
.char {
  opacity: 0; /* 初始透明 */
  transition: all 0.3s ease; /* 过渡效果 */
}
.char.visible {
  opacity: 1; /* 显示效果 */
  transform: translateY(0); /* 可添加更多效果 */
}

.char {
  transform: translateY(-20px);
}
.char.visible {
  transform: translateY(0);
}