:root {
    --hue: #123577;
    --max-width: 1440px;
    --space: clamp(2.5rem, 1.875rem + 3.13vw, 5rem);
}

.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: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-weight: 400;
    max-width:1920px;
    margin:0 auto;
}

html {
    scroll-padding-top: 120px;
    max-width:1920px;
    margin:0 auto;
}

input,
button,
textarea,
select,
button {
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-weight: 400;
    border: none;
}

.bgf {
    background: #fff;
}

.bgf3 {
    background: #F3F5FA;
}

.bgf4 {
    background: #f4f4f4;
}

.bgf5 {
    background: #F5F5F7;
}

.bgf6 {
    background: #f6f6f6;
}

.bgf8 {
    background: #f8f8f8;
}

.bgfa {
    background: #fafafa;
}

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

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

.fml {
    
}

.fmr {
    
}

.fms {
    font-weight: bold;
}

.fmb {
    font-weight: bold;
}

.fme {
    font-weight: bold;
}


.mb_15_10 {
    margin-bottom: clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem);
}

.mb_18_12 {
    margin-bottom: clamp(0.75rem, 0.656rem + 0.47vw, 1.125rem);
}

.mb_20_14 {
    margin-bottom: clamp(0.875rem, 0.781rem + 0.47vw, 1.25rem);
}

.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_35_20 {
    margin-bottom: clamp(1.25rem, 1.016rem + 1.17vw, 2.188rem);
}

.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_60_30 {
    margin-bottom: clamp(1.875rem, 1.406rem + 2.34vw, 3.75rem);
}

.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: 0;
    position: relative;
    z-index: 4;
}

.header {
    z-index: 4;
    width: 100%;
    max-width:1920px;
    height: 110px;
    margin: 0 auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.header_t {
    height: 50px;
    border-bottom: 1px solid rgba(217, 217, 217, .15);
    position: relative;
}

.header_t {
    line-height: 49px;
}

.header_t_r {
    gap: 18px;
}

.header_t_r_item {
    line-height:110px;
    gap: 8px;
    color: #fff;
    cursor: pointer;
}
.header_t_r_item:hover .tt{
    text-decoration: underline;
}

.header_t_r_lag{
    z-index: 10;
}
.header_t_r_lag_tt {
    gap: 5px;
    color: #fff;
    cursor: pointer;
}

.header_t_r_lag_tt .icon2 {
    display: none;
    font-size: 14px;
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
}

.header_t_r_lag_down {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 3;
    width: 150px;
    background: #fff;
    padding: 10px 0;
    transform: translate(-50%, 0);
    border-radius: 5px;
}

.header_t_r_lag_down a {
    display: block;
    text-align: center;
    color: #333;
    font-size: 14px;
    line-height: 36px;
}

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




.header_t_website_down {
    display: block;
    position: fixed;
    left:50%;
    z-index: 4;
    top: 110px;
    width: 100%;
    background: rgba(245,245,245,.6) url(../images/website_down_bg.png) no-repeat center center / cover;
    padding: clamp(2.188rem, -2.813rem + 6.25vw, 4.688rem) 20px;
    transform: translate(-50%,0);
    opacity: 0;
    pointer-events: none;
    /*opacity: 0;*/
   transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
/*
.header_t_website_down.hover {
    right: 0;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}*/


.header_t_r_website:hover .header_t_website_down{
    opacity: 1;
    pointer-events: auto;
}

.header_t_website_close {
    position: absolute;
    right: -15px;
    top: -40px;
    width: 60px;
    height: 60px;
    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: var(--hue);
    font-size: 24px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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


.header_t_website_down_t_r {
    gap: 22px;
}

.header_t_website_down_t_r .item {
    gap: 5px;
}

.header_t_website_down_t_r .item .tt {
    color: #333;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.header_t_website_down_t_r .item:hover .tt {
    color: var(--hue);
    text-decoration: underline;
}

.header_t_website_down_b{
    gap: 10px;
}
.header_t_website_down_b .item {
    height: 80px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    padding-left: 14px;
    line-height: 1.375;
    color: #333;
    background: #fff;
    position: relative;
}

.header_t_website_down_b .item .tt {
    width: 86%;
}

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

.header_b {
    width: 100%;
    max-width:1920px;
    position: relative;
    left:50%;
    z-index: 3;
    padding:0 clamp(0.938rem, -7.188rem + 10.16vw, 5rem);
    transform: translate(-50%,0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.logo {
    width: 332px;
    height: 110px;
    position: relative;
}

.logo .logo2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}


.menu_dl {
    gap: clamp(1.125rem, -6.375rem + 9.38vw, 3rem);
    margin: 0;
    padding: 0;
}

.menu_dl dd {
    position: relative;
    margin: 0;
    padding: 0;
}

.menu_dl dd.dd_pro {
    position: static;
}

.menu_tt {
    display: block;
    height: 110px;
    line-height: 110px;
    color: #fff;
    font-size: 18px;
    font-family: "PlusJakartaSans-Bold";
    white-space: nowrap;
    position: relative;
    text-transform: uppercase;
}

.menu_tt::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 29px;
    width: 100%;
    height: 3px;
    background: #219EF2;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.menu_dl dd.hover .menu_tt::after {
    opacity: 1;
}

.menu_down {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    width: 260px;
    background: #fff;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, .25);
    -ms-transform: translate(-50%, 0);
}

.menu_down a {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    color: #333;
    line-height: 30px;
    white-space: nowrap;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    text-transform: capitalize;
}

.menu_down a .icon {
    width: 18px;
    font-size: 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.menu_down a .tt {
    width: calc(100% - 18px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.menu_down a:last-child {
    border-bottom: none;
}

.menu_down a:hover {
    color: #fff;
    background: var(--hue);
}

.header_r {
    gap: clamp(0.625rem, -0.625rem + 1.56vw, 1.25rem);
}

.header_r_search {
    width: 26px;
    height: 26px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}


.header_b.hover {
    position: fixed;
    
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 4px rgba(0, 0, 0, .25);
    
}

.header_b.hover .logo .logo1 ,
.header_box.pro_det .logo .logo1{
    opacity: 0;
}

.header_b.hover .logo .logo2 ,
.header_box.pro_det .logo .logo2{
    opacity: 1;
}

.header_b.hover .menu_tt,
.header_b.hover .header_r_search ,
.header_box.pro_det .menu_tt,
.header_box.pro_det .header_r_search,
.header_b.hover .header_t_r_lag_tt,
.header_box.pro_det .header_t_r_lag_tt,
.header_b.hover .header_t_r_item,
.header_box.pro_det .header_t_r_item{
    color: #333;
}
.header_box.pro_det  .header_t{
    background: var(--hue);
}
.header_box.pro_det{
    height: 110px;
}
.header_box.pro_det .header {
    position: relative !important;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 4px rgba(0, 0, 0, .25);
}



.search_box {
    display: none;
    position: absolute;
    right: -100px;
    top: 68px;
    margin:0 0 0 0;
    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);
}


/*
 * 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: var(--hue);
    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: 34px;
    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: #fff;
    border-radius: 4px;
    margin-bottom: 6px;
}

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

.mobile_search_icon,
.mobile_lag_icon ,
.mobile_website_btn{
    width: 40px;
    height: 52px;
    color: #fff;
    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;
    text-transform: uppercase;
    font-family: "PlusJakartaSans-Bold";
}

.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;
}

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

.mobile_lag_con a{
    padding: 0 15px;
    line-height: 48px;
    font-size: 16px;
    color: #fff;
    background: var(--hue);
}


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



.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(1rem, 0.781rem + 1.09vw, 1.875rem);
    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.563rem + 0.31vw, 0.875rem);
    height: clamp(0.625rem, 0.563rem + 0.31vw, 0.875rem);
    opacity: 1;
    margin: 0;
    position: relative;
    background: #DCDCDC;
    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(--hue);
}


.public_scroll_bars {
    position: relative;
    width: 100%;
    height: 1px !important;
    background: #D9D9D9;
    margin-top: clamp(1.563rem, 1.219rem + 1.72vw, 2.938rem);
    margin-bottom: 2px;
}

.public_scroll_bars .swiper-pagination-progressbar-fill {
    top: -2px;
    height: 5px !important;
    background: var(--hue) !important;
    border-radius: 3px !important;
}


.lh12 {
    line-height: 1.2;
}

.lh13 {
    line-height: 1.3;
}

.lh14 {
    line-height: 1.4;
}

.lh15 {
    line-height: 1.5;
}

.lh16 {
    line-height: 1.625;
}

.lh17 {
    line-height: 1.75;
}

.lh18 {
    line-height: 1.875;
}


.lh15 img,
.lh16 img,
.lh17 img,
.lh18 img {
    height: auto !important;
}
.mb_8_4 {
    margin-bottom: clamp(0.313rem, 0.266rem + 0.23vw, 0.5rem);
}

.mb_10_6 {
    margin-bottom: clamp(0.375rem, 0.313rem + 0.31vw, 0.625rem);
}

.mb_12_7 {
    margin-bottom: clamp(0.438rem, 0.359rem + 0.39vw, 0.75rem);
    
}
.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: 5px;
    color: #333;
    min-width: clamp(8.75rem, 8.438rem + 1.56vw, 10rem);
    height: 42px;
    border-radius: 21px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.public_btn1 .tt {
    line-height: 38px;
}

.public_btn_out_line {
    background: none;
    border: 1px solid #DCDCDC;
}

.public_btn1.hover {
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}

.public_btn1.dark {
    color: #fff;
    background: #333;
    border-color: #333;
}

.public_btn1.white {
    background: #fff;
}

.public_btn_out_line.white {
    border: 1px solid #dcdcdc;
}

.public_btn_out_line.dark {
    border: 1px solid #333;
}

.public_btn1:hover {
    color: #fff;
    background: #0683cb;
    border-color: #0683cb;
}

.public_scroll_bars {
    position: relative;
    width: 100%;
    height: 1px !important;
    background: #DFDFDF;
    margin-top: clamp(1.563rem, 1.219rem + 1.72vw, 2.938rem);
    margin-bottom: 2px;
}

.public_scroll_bars .swiper-pagination-progressbar-fill {
    top: -2px;
    height: 5px !important;
    background: var(--hue) !important;
    border-radius: 3px !important;
}


.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.25rem, 1.719rem + 2.66vw, 4.375rem);
    height: clamp(2.25rem, 1.719rem + 2.66vw, 4.375rem);
    font-size: clamp(1.125rem, 0.875rem + 1.25vw, 2.125rem);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 3px 4px rgba(0, 0, 0, .25);
    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: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
}

.public_scroll_btn1:hover {
    color: #fff;
    background: var(--hue);
}


/* 返回顶部  */
.float_fixed {
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 3;
    width: 70px;
}

.float_fixed .item {
    display: block;
    position: relative;
    height: 60px;
    background: var(--hue);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.float_fixed .item .con{
    height: 100%;
    display:flex;
    display:-ms-flexbox;
    display:-webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    justify-content:center;
    -ms-justify-content:center;
    -webkit-justify-content:center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items:center;
    gap: 4px;
}
.float_fixed .item:last-child {
    border-bottom: none;
}

.float_fixed .item:first-child {
    border-top-left-radius: 6px;
}

.float_fixed .item:last-child {
    border-bottom-left-radius: 6px;
}


.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: 100%;
    /* height: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem); */
    font-size: 22px;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.float_fixed .item .item_tt{
    color: #fff;
    font-size: 12px !important;
    text-align: center;
}

.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: 240px;
    line-height: 60px;
    color: #333;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, .06);
    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 .tt {
    color: #333;
    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: 100%;
}


.float_fixed .item .item_code{
    position: absolute;
    right: 70px;
    width: 200px;
    height: 200px;
    opacity: 0;
    pointer-events: none;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.float_fixed .item:hover .item_code{ 
    opacity: 1;
    pointer-events: auto;
}


.back_top .item_icon {
    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);
}

.wp-pagenavi > a,
.wp-pagenavi > 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(0.875rem, 0.844rem + 0.16vw, 1rem);
    width: clamp(2.25rem, 2.2rem + 0.25vw, 2.5rem);
    height: clamp(2.25rem, 2.2rem + 0.25vw, 2.5rem);
    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);
}

.wp-pagenavi > a:hover {
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}

.page_btn {
}

.wp-pagenavi 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: 1020px;
    overflow: hidden;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 6px;
}

.open_window_con_rela {
    position: relative;
    height: 100%;
    padding: clamp(1.25rem, 0.75rem + 2.5vw, 3.25rem) clamp(0.938rem, 0.234rem + 3.52vw, 3.75rem);
}

.open_window_close {
    position: absolute;
    right: clamp(0.5rem, 0.156rem + 1.72vw, 1.875rem);
    top: clamp(0.5rem, 0.156rem + 1.72vw, 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(1.5rem, 1.25rem + 1.25vw, 2.5rem);
    height: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
    color: #333;
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
    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.344rem + 0.78vw, 3.125rem);
    font-size: 14px;
    padding-left: 18px;
    color: #333;
    background: #fff;
    outline: none;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
}

.open_window_con_r_list_area {
    height: clamp(6.25rem, 5.344rem + 4.53vw, 9.875rem);
    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: #999;
    text-transform: capitalize;
}


.open_window_form_list_btn {
    display: block;
    width: 100%;
    height: clamp(2.5rem, 2.406rem + 0.47vw, 2.875rem);
    cursor: pointer;
    color: #fff;
    background: var(--hue);
    border-radius: clamp(1.25rem, 1.203rem + 0.23vw, 1.438rem);
}


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

.banner {
    position: relative;
}

.banner .swiper-slide {
    height: auto;
    position: relative;
}

.banner .swiper-slide img {
    display: block;
    width: 100%;
}

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


.banner_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*padding-top: 150px;*/
    z-index: 2;
    /* background: rgba(0, 0, 0, .25); */
    background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%);
}


.banner_con .wrapper {
    height: 100%;
}

.banner_con_con {
    max-width: 900px;
}

.banner_con_tt1 {
    margin-bottom: clamp(0.438rem, 0.359rem + 0.39vw, 0.75rem);
}

.banner_con_tt2 {
    line-height: 1.4;
    margin-bottom: clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem);
}


.banner_con_btn {
    width: 200px;
}


.banner_bars {
    position: absolute;
    left: 0;
    bottom: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem) !important;
    z-index: 2;
    width: 100%;
    gap: clamp(0.5rem, 0.313rem + 0.94vw, 1.25rem);
}

.banner_bars .swiper-pagination-bullet {
    width: clamp(0.75rem, 0.656rem + 0.47vw, 1.125rem);
    height: clamp(0.75rem, 0.656rem + 0.47vw, 1.125rem);
    border-radius: 50%;
    background: #fff;
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.banner_bars .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--hue);
}


/* location */
.location {
    line-height: 50px;
    color: #333;
    background: #F5F5F5;
    border-bottom: 1px solid #eee;
}

.location .icon {
    font-size: 20px;
    margin-right: 4px;
}

.location a {
    color: #333;
    margin: 0 2px;
}

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


.ind_title1_text {
    padding-top: clamp(0.313rem, 0.266rem + 0.23vw, 0.5rem);
    text-transform: revert;
}


.ind_box1_bars {
    gap: clamp(0.625rem, 0.203rem + 2.11vw, 2.313rem);
}

.ind_box1_bars .item {
    gap: 8px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box1_bars .item .icon {
    position: relative;
    width: clamp(1.75rem, 1.531rem + 1.09vw, 2.625rem);
    height: clamp(1.75rem, 1.531rem + 1.09vw, 2.625rem);
}

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

.ind_box1_bars .item .icon .icon2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.ind_box1_bars .item .tt {
    color: #666;
}

.ind_box1_bars .item.hover .icon .icon1,
.ind_box1_bars .item:hover .icon .icon1 {
    opacity: 0;
}

.ind_box1_bars .item.hover .icon .icon2 ,
.ind_box1_bars .item:hover .icon .icon2 {
    opacity: 1;
}

.ind_box1_bars .item.hover .tt,
.ind_box1_bars .item:hover .tt {
    color: var(--hue);
    text-decoration: underline;
}



.ind_box1_scroll_box{
    position: relative;
}
.ind_box1_scroll_box::after,
.ind_box1_scroll_box::before{ 
    content: "";
    display: block;
    position: absolute;
    top: 0;
    z-index: 2;
    width: 17.5%;
    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,1),rgba(255,255,255,0) 100%);
}
.ind_box1_scroll_box::before{
    right: 0;
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}



.ind_box1_scroll_item {
    position: relative;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box1_scroll_item_pic {
    display: block;
    overflow: hidden;
    position: relative;
}

.ind_box1_scroll_item_pic::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, .9) 100%);
    /* opacity: 0; */
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box1_scroll_item_pic img {
    display: block;
    width: 100%;
}

.ind_box1_scroll_item_con {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 0 clamp(0.938rem, 0.234rem + 3.52vw, 3.75rem) clamp(0.938rem, 0.125rem + 4.06vw, 4.188rem);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box1_scroll_item_logo img{
    display: block;
    height: clamp(6.25rem, 5.469rem + 3.91vw, 9.375rem);
}

.ind_box1_scroll_item_clm {
    width: 100%;
    gap: clamp(0.375rem, 0.156rem + 1.09vw, 1.25rem);
}

.ind_box1_scroll_item_clm a {
    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;
    min-height: 44px;
    color: #fff;
    padding: 0 clamp(0.875rem, 0.719rem + 0.78vw, 1.5rem);
    border-radius: 4px;
    border: 2px solid #fff;
}

.ind_box1_scroll_item_clm a:hover {
    color: #333;
    background: #fff;
}

.ind_box1_scroll_item:hover .ind_box1_scroll_item_pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.ind_box1_scroll .swiper-slide.swiper-slide-active .ind_box1_scroll_item_pic::after {
    opacity: 1;
}

.ind_box1_scroll .swiper-slide.swiper-slide-active .ind_box1_scroll_item {
    opacity: 1;
}

.ind_box1_scroll .swiper-slide.swiper-slide-active .ind_box1_scroll_item_con {
    opacity: 1;
}


.ind_box1_scroll_btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    margin-top: calc(clamp(2.25rem, 1.719rem + 2.66vw, 4.375rem) / -2);
}

.ind_box1_scroll_btn.prev {
    left: clamp(0rem, -2.488rem + 12.44vw, 12.438rem);
}

.ind_box1_scroll_btn.next {
    right: clamp(0rem, -2.488rem + 12.44vw, 12.438rem);
}


.ind_box2_btn_box {
    gap: clamp(0.625rem, 0.425rem + 1vw, 1.625rem);
}


.ind_box2_con {
    gap: clamp(0.938rem, 0.766rem + 0.86vw, 1.625rem);
}

.ind_box2_con_clm1 {
    gap: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
}

.ind_box2_con_item {
    position: relative;
}

.ind_box2_con_item img {
    width: 100%;
}

.ind_box2_con_item_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, .6) 100%);
    padding: 0 clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem) clamp(0.875rem, 0.516rem + 1.8vw, 2.313rem);
}

.ind_box2_con_item_tt1 {
    height: 36px;
    line-height: 34px;
    color: #fff;
    background: rgba(0, 0, 0, .5);
    border: 1px solid #fff;
    padding: 0 15px;
    border-radius: 4px;
}

.ind_box2_con_item_tt2 {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    gap: 6px;
}

.ind_box2_con_item_tt2 .tt {
    line-height: 1.2;
}

.ind_box2_con_item_tt2 .icon {
    line-height: 1.8;
}

.ind_box2_con_item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.ind_box3 {
    background: url(../images/ind_adv_bg.png) no-repeat center bottom / 100% auto;
}

.ind_box3_l {
    width: calc(100% - 315px - 60px);
}

.ind_box3_l_scroll_item_l {
    width: 52.3%;
}

.ind_box3_l_scroll_item_l_num {
    margin-bottom: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
}

.ind_box3_l_scroll_item_r {
    width: 44%;
    overflow: hidden;
    background: #fff;
    border-radius: 50%;
}

.ind_box3_l_scroll_item_r img {
    display: block;
    width: 100%;
    border-radius: 50%;
    border: clamp(0.188rem, 0.078rem + 0.55vw, 0.625rem) solid var(--hue);
    box-shadow: 0 4px clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem) rgba(0, 0, 0, .14);
}


.ind_box3_r {
    width: 315px;
    gap: clamp(0.625rem, 3.13vw, 3.125rem);

    position: relative;
    z-index: 3;
    overflow: visible;
}

.ind_box3_con::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/ind_adv_bg2.png) no-repeat right 190px center / auto 100%;
}

.ind_box3_r .item {
    cursor: pointer;
}

.ind_box3_r .item .icon {
    width: clamp(3.125rem, 2.719rem + 2.03vw, 4.75rem);
    height: clamp(3.125rem, 2.719rem + 2.03vw, 4.75rem);
    border-radius: 50%;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box3_r .item .icon .icon2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.ind_box3_r .item .tt {
    width: calc(100% - clamp(3.125rem, 2.719rem + 2.03vw, 4.75rem));
    padding-left: clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem);
}

.ind_box3_r .item:nth-child(1),
.ind_box3_r .item:nth-child(5) {
    transform: translateX(calc(clamp(0.938rem, -0.391rem + 6.64vw, 6.25rem) * -1));
}

.ind_box3_r .item:nth-child(3) {
    transform: translateX(clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem));
}

.ind_box3_r .item.hover .icon {
    background: var(--hue);
}

.ind_box3_r .item.hover .icon .icon2 {
    opacity: 1;
}

.ind_box3_r .item.hover .icon .icon1 {
    opacity: 0;
}


.ind_box4 {
    position: relative;
}

.ind_box4_pic {
    width: 100%;
    position: relative;
    z-index: 1;
}

.ind_box4_pic img {
    width: 100%;
}


.ind_box4_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    padding-top:clamp(1.875rem, 1.094rem + 3.91vw, 5rem);
}

.ind_box4_list .item {
    position: absolute;
        z-index: 2;
    padding: clamp(0.313rem, 0.203rem + 0.55vw, 0.75rem) clamp(0.438rem, 0.328rem + 0.55vw, 0.875rem);
    border-radius: clamp(1.125rem, 0.953rem + 0.86vw, 1.813rem);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box4_list .item .item_con {
    padding: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box4_list .item .item_icon {
    width: clamp(1.625rem, 1.5rem + 0.63vw, 2.125rem);
    height: clamp(1.625rem, 1.5rem + 0.63vw, 2.125rem);
    border-radius: 50%;
    background: url(../images/ind_energy_solu_icon1.png) no-repeat center center / 100% auto;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box4_list .item .item_con_down {
    opacity: 0;
    width: 0;
    height:42px;
    max-width:calc(100% - clamp(1.625rem, 1.5rem + 0.63vw, 2.125rem));
    pointer-events: none;
    transform: translateX(-5%);
    -webkit-transform: translateX(-5%);
    width: 0;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box4_list .item .item_con_down .icon {
    width: clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem);
    height: clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem);
    margin: 0 7px 0 9px;
}

.ind_box4_list .item .item_con_down .tt {
    width:calc(100% - clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem) - 8px)
}

.ind_box4_list .item:hover {
    background: var(--hue);
  z-index:3;
}

.ind_box4_list .item:hover .item_icon {
    background: url(../images/ind_energy_solu_icon2.png) no-repeat center center / 100% auto;
}

.ind_box4_list .item:hover .item_con_down {
    opacity: 1;
    width: auto;
    pointer-events: auto;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}


.ind_box5_l {
    width: clamp(20rem, -2.5rem + 28.13vw, 25.625rem);
}

.ind_box5_l_list {
    gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
}

.ind_box5_l_list .item {
    padding: clamp(1rem, 0.813rem + 0.94vw, 1.75rem) 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box5_l_list .item .icon {
    width: 50px;
    position: relative;
    margin: 0 auto;
}

.ind_box5_l_list .item .icon .icon2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.ind_box5_l_list .item .num {
    padding: 8px 0;
    color: #333;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box5_l_list .item .tt {
    color: #333;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box5_l_list .item:hover {
    background: var(--hue);
}

.ind_box5_l_list .item:hover .icon1 {
    opacity: 0;
}

.ind_box5_l_list .item:hover .icon2 {
    opacity: 1;
}

.ind_box5_l_list .item:hover .num,
.ind_box5_l_list .item:hover .tt {
    color: #fff;
}


.ind_box5_r {
    width: calc(100% - clamp(20rem, -2.5rem + 28.13vw, 25.625rem) - 10px);
}

.ind_box5_r_pic {
    width: 100%;
}

.ind_box5_r_list .item {
    position: absolute;
    width: clamp(0.375rem, 0.281rem + 0.47vw, 0.75rem);
    height: clamp(0.375rem, 0.281rem + 0.47vw, 0.75rem);
}

.ind_box5_r_list .item .item_icon {
    width: clamp(0.375rem, 0.281rem + 0.47vw, 0.75rem);
    height: clamp(0.375rem, 0.281rem + 0.47vw, 0.75rem);
    position: relative;
    border-radius: 50%;
}
.ind_box5_r_list .item .item_icon img{
    width: 100%;
    position: relative;
    z-index:1;
}
.ind_box5_r_list .item .item_icon:before,
.ind_box5_r_list .item .item_icon:after{ animation: ripple 3s infinite; z-index: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; height: 100%; border-radius: 50%; background: rgba(18, 53, 119, 1); }
.ind_box5_r_list .item .item_icon:before{ content: ""; animation-delay: .6s; }
.ind_box5_r_list .item .item_icon:after{ content: ""; animation-delay: .3s; }
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 10px rgba(18, 53, 119, 0.2)
  }
  100% {
    box-shadow: 0 0 0 0 rgba(18, 53, 119, 0.4)
  }
}
.ind_box5_r_list .item .item_down {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 310px;
    padding: 0 15px clamp(0.938rem, 0.734rem + 1.02vw, 1.75rem);
    background: var(--hue);
    transform: translate(-50%, 0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box5_r_list .item .item_down .tt {
    padding: 15px 0;
}

.ind_box5_r_list .item .item_down .line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    margin-bottom: 10px;
}

.ind_box5_r_list .item .item_down .pic {
    border-radius: 6px;
    margin-bottom: 8px;
}

.ind_box5_r_list .item .item_down .con a {
    color: #fff;
}
.ind_box5_r_list .item:hover{
    z-index: 9;
}
.ind_box5_r_list .item:hover .item_down {
    opacity: 1;
    pointer-events: auto;
}


.ind_box6 {
    background: #F5F5F5;
}

.ind_box6_scroll_middle {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 3;
    transform: translate(-50%, 0);
}

.ind_box6_scroll_middle_item {
    display: none;
    width: 22.5833vw;
}

.ind_box6_scroll_middle_item.hover {
    display: block;
}

.ind_box6_scroll_middle_item_pic_box {
    aspect-ratio: 1/1;
    background: var(--hue);
    border-radius: 50%;
    padding: clamp(0.625rem, 0.188rem + 2.19vw, 2.375rem);
}

.ind_box6_scroll_middle_item_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;
    background: #fff;
    aspect-ratio: 1/1;
    padding: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: clamp(0.188rem, 0.078rem + 0.55vw, 0.625rem) solid #0183C7;
}

.ind_box6_scroll_item_tt {
    padding: clamp(0.938rem, 0.453rem + 2.42vw, 2.875rem) 0 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box6_scroll_item {
    /* width: 15.5208vw; */
    /* padding: 3.5vw 0; */
    /* margin: 0 auto; */
}

.ind_box6_scroll_item_pic {
    border-radius: 50%;
    background: #fff;
    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;
    padding: 20px;
    overflow: hidden;
}
.ind_box6_scroll .swiper-slide{
    /* transform:scale(0.9,0.9);
    -webkit-transform:scale(0.9,0.9); */
}
/* .ind_box6_scroll .swiper-slide.swiper-slide-active{
    transform:scale(1,1);
    -webkit-transform:scale(1,1);
} */
.ind_box6_scroll .swiper-slide.swiper-slide-active .ind_box6_scroll_item_tt {
    opacity: 1;
}

.ind_box6_scroll_btn_box {
    position: relative;
}

.ind_box6_scroll_btn {
    position: absolute;
    top: -30px;
    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.688rem + 0.94vw, 2.625rem);
    height: clamp(1.875rem, 1.688rem + 0.94vw, 2.625rem);
    font-size: clamp(1rem, 0.938rem + 0.31vw, 1.25rem);
    border-radius: 50%;
    color: #666;
    border: 2px solid #666;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box6_scroll_btn.prev {
    left: 32%;
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.ind_box6_scroll_btn.next {
    right: 32%;
}

.ind_box6_scroll_btn:hover {
    color: #fff;
    color: var(--hue);
    border-color: var(--hue);
}


.ind_box7_l {
    width: 49.02%;
}

.ind_box7_l_pic {
    overflow: hidden;
}

.ind_box7_l_pic img {
    display: block;
    width: 100%;
}

.ind_box7_l_con {
    padding: clamp(1.063rem, 0.938rem + 0.63vw, 1.563rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    background: #F5F5F5;
}

.ind_box7_l_con_tt {
    color: #000;
    margin-bottom: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box7_l_con_text {
    margin-bottom: 14px;
}

.ind_box7_l_con_clm {
    gap: 12px;
}

.ind_box7_l_con_clm .item {
    gap: 5px;
    color: #666;
    line-height: 24px;
}

.ind_box7_l_con_clm .item .icon {
    font-size: 18px;
}

.ind_box7_l a:hover .ind_box7_l_pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.ind_box7_l a:hover .ind_box7_l_con_tt {
    color: var(--hue);
}

.ind_box7_r {
    width: 45.2%;
}

.ind_box7_r_item {
    display: block;
    padding: clamp(0.938rem, 0.734rem + 1.02vw, 1.75rem) 0;
    border-bottom: 1px solid #D9D9D9;
}

.ind_box7_r_item:first-child {
    border-top: 1px solid #D9D9D9;
}

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



.ind_box8_scroll{
    position: relative;
    overflow: hidden;
}
.ind_box8_scroll::after,
.ind_box8_scroll::before{ 
    content: "";
    display: block;
    position: absolute;
    top: 0;
    z-index: 2;
    width: 6.5%;
    height: 100%;
    background: linear-gradient(to right,rgba(245,245,247,1),rgba(245,245,247,0) 100%);
}
.ind_box8_scroll::before{
    right: -1px;
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}
.ind_box8_scroll {
    width: 100%;
    margin-bottom: 10px;
}

.ind_box8_scroll .bd ul {
    margin: 0;
    padding: 0;
}

.ind_box8_scroll .bd ul li {
    float: left;
    padding: 0;
    margin: 0;
    overflow: hidden;
    margin-right: 10px;
}

.ind_box8_scroll .bd ul li img {
    display: block;
    width: clamp(9.375rem, 8.125rem + 6.25vw, 14.375rem);
}

.ind_box8_scroll .bd ul li:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.ind_box8_scroll_item {
    background: #fff;
    border: 1px solid #eee;
}


.footer_inq {
    background: #fff;
    padding: clamp(1.563rem, 1.25rem + 1.56vw, 2.813rem) 0;
    border-top: 1px solid #eee;
}

.footer_inq_l {
    width: 33%;
    gap: 10px;
}

.footer_inq_l_item1 .name {
    margin-bottom: 10px;
}

.footer_inq_l_item1 .price_box {
    gap: 3px;
}

.footer_inq_l_item1 .price_change {
    color: #f00;
}


.footer_inq_r {
    width: 60%;
}

.footer_inq_r_list {
    gap: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
}

.footer_inq_r_list_item {
    width: calc((100% - 180px - clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem) * 2) / 2);
}

.footer_inq_r_list_text {
    display: block;
    width: 100%;
    height: 44px;
    color: #333;
    padding-left: 10px;
    border: 1px solid #DCDCDC;
    border-radius: 3px;
}

.footer_inq_r_list_text::-webkit-input-placeholder {
    color: #666;
}

.footer_inq_r_list_item2 {
    width: 180px;
}

.footer_inq_r_list_btn {
    display: block;
    width: 100%;
    color: #fff;
    height: 44px;
    background: var(--hue);
    border-radius: 3px;
    cursor: pointer;
}
.footer_inq_r_list_btn:hover{
    background: #0683cb;
}

.footer {
    background: #333333;
    border-top: clamp(0.25rem, 0.188rem + 0.31vw, 0.5rem) solid var(--hue);
}

.footer_t {
    padding: 25px 0 clamp(1.875rem, 1.25rem + 3.13vw, 4.375rem);
}

.footer_t_list {
    padding-bottom: clamp(1.125rem, 0.875rem + 1.25vw, 2.125rem);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    column-gap: 30px;
    row-gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
}

.footer_t_list .item {
    color: #fff;
    position: relative;
}

.footer_t_list .item::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 24px;
    background: #5C5C5C;
}

.footer_t_list .item .icon {
    width: 20px;
    height: 24px;
    font-size: 12px;
    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;
}

.footer_t_list .item .tt {
    width: calc(100% - 20px);
    padding-left: 4px;
    line-height: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer_t_list .item:hover .tt{
    text-decoration: underline;
}

.footer_m_item1 {
    width: 23%;
}

.footer_m_item1_list {
    gap: 10px;
}

.footer_m_item1_list .item {
    color: #fff;
}

.footer_m_item1_list .item .icon {
    width: 24px;
    height: 24px;
    font-size: 18px;
    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;
}

.footer_m_item1_list .item .tt {
    width: calc(100% - 24px);
    padding-left: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.footer_m_item1_list .item .tt a {
    color: #fff;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.footer_m_item1_list .item .tt a:hover{
    text-decoration: underline;
}

.footer_m_item1_sm {
    gap: clamp(0.188rem, 0.078rem + 0.55vw, 0.625rem);
}

.footer_m_item1_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.781rem + 0.47vw, 2.25rem);
    height: clamp(1.875rem, 1.781rem + 0.47vw, 2.25rem);
    color: #fff;
    background: #666;
    font-size: clamp(1rem, 0.938rem + 0.31vw, 1.25rem);
    border-radius: 50%;
}

/*.footer_m_item1_sm .icon.icon-facebook1 {
    background: #3B5998;
}

.footer_m_item1_sm .icon.icon-linkedin2 {
    background: #0077B5;
}

.footer_m_item1_sm .icon.icon-tiktok {
    background: #000;
}

.footer_m_item1_sm .icon.icon-you-tube {
    background: #FF0000;
}

.footer_m_item1_sm .icon.icon-instagram-fill {
    background: #E1306C;
}

.footer_m_item1_sm .icon.icon-pinterest1 {
    background: #BD081C;
}

.footer_m_item1_sm .icon.icon-tuite1 {
    background: #219EF2;
}*/

.footer_m_item1_sm .icon:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}


.footer_m_r {
    width: 75%;
}

.footer_m_r_list {
    gap: 8px;
}

.footer_m_r_list .item {
    line-height: 24px;
    color: #fff;
}

.footer_m_r_list .item .icon {
    width: 20px;
    height: 24px;
    font-size: 12px;
}

.footer_m_r_list .item .tt {
    width: calc(100% - 20px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.footer_m_r_list .item:hover .tt{
    text-decoration: underline;
}

.footer_b {
    padding: clamp(0.938rem, 0.813rem + 0.63vw, 1.438rem) 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}


/* about */
.sub_banner img {
    width: 100%;
}

.sub_banner_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 50px;
}

.sub_banner_text {
    padding-top: 7px;
    font-family: "PlusJakartaSans-Bold";
}


.sub_bars a {
    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;
    gap: 5px;
    border: 1px solid #EEE;
    height: clamp(2.875rem, 2.344rem + 2.66vw, 5rem);
    margin-left: -1px;
    margin-top: -1px;
}

.sub_bars a .icon {
    position: relative;
    width: clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem);
    height: clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem);
}

.sub_bars a .icon img {
    width: 100%;
}

.sub_bars a .icon .icon2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.sub_bars a .tt {
    max-width: calc(100% - clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem));
}

.sub_bars a.hover,
.sub_bars a:hover {
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}

.sub_bars a.hover .icon .icon1,
.sub_bars a:hover .icon .icon1 {
    opacity: 0;
}

.sub_bars a.hover .icon .icon2,
.sub_bars a:hover .icon .icon2 {
    opacity: 1;
}

.about_box1_video {
    position: relative;
}

.about_box1_video a {
    display: block;
    position: relative;
}

.about_box1_video a > img {
    display: block;
    width: 100%;
}

.about_box1_video_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, .6) 100%);
}

.about_box1_video_con .icon {
    width: clamp(3.75rem, 3rem + 3.75vw, 6.75rem);
    height: clamp(3.75rem, 3rem + 3.75vw, 6.75rem);
    position: relative;
}

.about_box1_video:hover > img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.about_box1_clm1_l {
    width: 37.5%;
}

.about_box1_clm1_r {
    width: 57%;
}


.about_box2_scroll_item img {
    width: 100%;
}

.about_box2_scroll_item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.about_box2_scroll_btn ,
.qhse_box7_scroll_btn{
    position: absolute;
    top: 36%;
    z-index: 2;
}
.public_scroll_btn2,
.honor_box2_scroll_btn{
    position: absolute;
    top: 43%;
    z-index: 2;
}

.about_box2_scroll_btn.prev ,
.public_scroll_btn2.prev,
.qhse_box7_scroll_btn.prev,
.honor_box2_scroll_btn.prev{
    left: calc(clamp(0rem, -1.406rem + 7.03vw, 5.625rem) * -1);
}


.about_box2_scroll_btn.next,
.public_scroll_btn2.next,
.qhse_box7_scroll_btn.next,
.honor_box2_scroll_btn.next{
    right: calc(clamp(0rem, -1.406rem + 7.03vw, 5.625rem) * -1);
}
.public_scroll_btn2{
    margin-top: calc(clamp(2.25rem, 1.719rem + 2.66vw, 4.375rem) / 2 * -1);
}


.about_box3_list {
    gap: 5px;
}

.about_box3_list_item {
    width: 15.88%;
    position: relative;
    transition: all 1s;
    -webkit-transition: all 1s;
}

.about_box3_list_item.hover {
    width: 35.41%;
}

.about_box3_list_item_pic {
    height: clamp(25rem, 20.625rem + 21.88vw, 42.5rem);
    overflow: hidden;
}

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

.about_box3_list_item_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, .6);
    padding: 0 15px;
    transition: all 1s;
    -webkit-transition: all 1s;
}

.about_box3_list_item_con .icon {
    width: clamp(3.125rem, 2.875rem + 1.25vw, 4.125rem);
}

.about_box3_list_item_con .tt {
    text-transform: uppercase;
    font-size: clamp(1.125rem, 1.063rem + 0.31vw, 1.375rem);
    padding: clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem) 0 clamp(0.5rem, 0.406rem + 0.47vw, 0.875rem);
}

.about_box3_list_item_con .text {
    display: none;
}


.about_box3_list_item.hover .about_box3_list_item_con {
    text-align: left;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    padding: 0 clamp(0.938rem, 0.234rem + 3.52vw, 3.75rem);
    background: rgba(18, 53, 119, .88);
}

.about_box3_list_item.hover .about_box3_list_item_con .tt {
    font-size: clamp(1.375rem, 1.219rem + 0.78vw, 2rem);
}

.about_box3_list_item.hover .about_box3_list_item_con .text {
    display: block;
}


.about_box3_scroll_box {
    display: none;
}

.about_box3_scroll {
    width: 100%;
}

.about_box3_scroll_item .about_box3_list_item_con .text {
    display: block;
}

.about_box4_clm1 {
    column-gap: clamp(0.625rem, -0.125rem + 3.75vw, 3.625rem);
    row-gap: 15px;
}
.about_box4_clm1 .item{
    gap: 5px;
}

.about_box4_clm {
    padding: clamp(1.25rem, 0.938rem + 1.56vw, 2.5rem) clamp(0.938rem, -0.078rem + 5.08vw, 5rem);
    column-gap: clamp(0.625rem, -0.125rem + 3.75vw, 3.625rem);
    row-gap: 15px;
    background: #fff;
}

.about_box4_clm .item {
    gap: 8px;
}


.about_box5_bars {
    position: relative;
}

.about_box5_bars::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #D9D9D9;
}

.about_box5_bars .swiper-slide {
    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;
    height: clamp(3.125rem, 2.656rem + 2.34vw, 5rem);
    position: relative;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.about_box5_bars .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--hue);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.about_box5_bars .swiper-slide.swiper-slide-thumb-active,
.about_box5_bars .swiper-slide:hover {
    color: var(--hue) !important;
}

.about_box5_bars .swiper-slide.swiper-slide-thumb-active::after,
.about_box5_bars .swiper-slide:hover::after {
    opacity: 1;
}

.about_box5_scroll_item {
    position: relative;
}

.about_box5_scroll_item img {
    display: block;
    width: 100%;
}

.about_box5_scroll_item .tt_box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%);
    padding: 0 10px clamp(1.125rem, 0.859rem + 1.33vw, 2.188rem);
}

.about_box5_scroll_btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem);
    height: clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem);
    font-size: clamp(1.125rem, 1rem + 0.63vw, 1.625rem);
    color: #fff;
    margin-top: calc((clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem) / 2) * -1);
    cursor: pointer;
}

.about_box5_scroll_btn.prev {
    left: clamp(0rem, -0.297rem + 1.48vw, 1.188rem);
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.about_box5_scroll_btn.next {
    right: clamp(0rem, -0.297rem + 1.48vw, 1.188rem);
}

.about_box5_scroll_item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.his_box {
    position: relative;
    padding: 0 0 50px;
    /*overflow: hidden;*/
}
.dev_box1{
    background: fixed url(../images/his_bg.png) no-repeat center bottom / 100% auto;
}

/*.history-part{ padding: 0.78rem 0 1.14rem;}*/
.yearbox_box{position: sticky; left:0;top:110px; width:100%; z-index: 100;}
.yearbox{ position: relative;  width: 110px; height: 58px; line-height: 58px; color: #fff; border-radius: 5px; background: var(--hue);}
.yearbox dl{
    margin: 0; padding: 0;
}
.yearbox dt{cursor: pointer;width: 100%;height: 58px; line-height: 58px; 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;
    margin: 0;
    padding: 0 clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}
.yearbox dt i{display: none; font-size: 18px; margin-left: 8px; transform:rotate(90deg);transition:all 0.5s;
    -webkit-transition:all 0.5s;}
.yearbox dd{display: none;line-height: 40px; position:absolute; left:0; top:calc(100% + 1px); z-index:11; width:100%;max-height:clamp(7.5rem, 6.531rem + 4.84vw, 11.375rem); overflow:auto; border-radius:5px;background:#F2F7F6;margin: 0; padding: 0;}
.yearbox dd p{cursor: pointer; line-height: 40px; font-size: 16px; text-align: center; color: #333;/*font-family: 'Aleo';*/margin: 0; transition:all 0.5s;
-webkit-transition:all 0.5s;}
.yearbox dd p.active,
.yearbox dd p:hover{ color: #fff; background: var(--hue);}
/* .yearbox.open dt i{ transform:rotate(270deg);} */




.his_box::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--hue);
}

.his_list {
    max-width: 1090px;
    clear: both;
    display: flex;
    justify-content:space-between;
    -ms-justify-content:space-between;
    -webkit-justify-content:space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items:flex-start;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    padding-top: 80px;
    margin: 0 auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.his_list_item {
    width: 50%;
    padding-left: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem);
    position: relative;
    margin-top: calc(clamp(3.125rem, 2.656rem + 2.34vw, 5rem)*-1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.his_list_item::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    z-index: 2;
    width: 1px;
    height: 100%;
    background: var(--hue);
}


.his_list_item_year {
    line-height: 30px;
    margin-bottom: 5px;
}

.his_list_item_tt {
    margin-bottom: 10px;
}

.his_list_item_tt1 {
    padding: 14px 0;
}

.his_list_item_icon {
    position: absolute;
    left: -10px;
    top: 5px;
    z-index: 2;
    width: 20px;
    height: 20px;
    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;
    border-radius: 50%;
    background: var(--hue);
    background: rgba(18, 53, 119, .38);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.his_list_item_icon::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hue);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.his_list_item_pic {
}

.his_list_item_pic img {
    width: 100%;
}

.his_list_item_pic:hover img{
    transform:scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
}

.his_list_item:nth-child(2n) {
    text-align: right;
    padding-left: 0;
    padding-right: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem);
    margin-top: clamp(3.125rem, 1.563rem + 7.81vw, 9.375rem);
}

.his_list_item:nth-child(2n)::before {
    left: auto;
    right: -1px;
    /*background: #0183C7;*/
}

.his_list_item:nth-child(2n) .his_list_item_icon {
    left: auto;
    right: -10px;
}


.his_list_item:hover::before,
.his_list_item.hover::before {
    background: #0183C7;
}

.his_list_item:hover .his_list_item_icon,
.his_list_item.hover .his_list_item_icon {
    background: rgba(1, 131, 199, .5);
}

.his_list_item:hover .his_list_item_icon::after,
.his_list_item.hover .his_list_item_icon::after {
    background: #0183C7;
}


.cul_box2_list {
    gap: 20px;
}

.cul_box2_list_item {
    width: calc((100% - 60px) / 4);
    height: 350px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.cul_box2_list_item_con1 {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.cul_box2_list_item_con1 .icon {
    width: clamp(3.75rem, 3.438rem + 1.56vw, 5rem);
    margin-bottom: clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem);
}

.cul_box2_list_item_con2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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

.cul_box2_list_item_con2_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 53, 119, .83);
    padding: 15px clamp(0.938rem, 0.234rem + 3.52vw, 3.75rem);
}

.cul_box2_list_item_con2_con .icon {
    width: clamp(3.75rem, 3.438rem + 1.56vw, 5rem);
}

.cul_box2_list_item_con2_con .tt {
    margin: 8px 0 5px;
}

.cul_box2_list_item.hover {
    width: 42.63%;
}
.cul_box2_list_item.nohover{
    width: calc((57.37% - 60px) / 3);
}

.cul_box2_list_item.hover .cul_box2_list_item_con1 {
    opacity: 0;
}

.cul_box2_list_item.hover .cul_box2_list_item_con2 {
    opacity: 1;
}

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

.cul_box3_list {
    row-gap: 20px;
}

.cul_box3_list .item {
    padding: 0 15px;
    position: relative;
}

.cul_box3_list .item .icon_box {
    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(5rem, 4.219rem + 3.91vw, 8.125rem);
    height: clamp(5rem, 4.219rem + 3.91vw, 8.125rem);
    border-radius: 50%;
    border: 1px solid #fff;
    position: relative;
    margin: 0 auto;
}

.cul_box3_list .item::after {
    content: "";
    display: block;
    position: absolute;
    left: 75%;
    top: calc(clamp(5rem, 4.219rem + 3.91vw, 8.125rem) / 2);
    width: clamp(3.125rem, 1.25rem + 9.38vw, 10.625rem);
    height: 1px;
    background: rgba(255, 255, 255, .5);
}

.cul_box3_list .item:last-child::after {
    display: none;
}

.cul_box3_list .item .icon {
    width: clamp(4rem, 3.281rem + 3.59vw, 6.875rem);
    height: clamp(4rem, 3.281rem + 3.59vw, 6.875rem);
    position: relative;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

.cul_box3_list .item .icon .icon2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.cul_box3_list .item .tt {
    padding: clamp(0.875rem, 0.719rem + 0.78vw, 1.5rem) 0 clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem);
}

.cul_box3_list .item:hover .icon {
    background: var(--hue);
}

.cul_box3_list .item:hover .icon .icon1 {
    opacity: 0;
}

.cul_box3_list .item:hover .icon .icon2 {
    opacity: 1;
}


.cul_box4_list {
    gap: clamp(0.938rem, 0.75rem + 0.94vw, 1.688rem);
}

.cul_box4_list_item {
    display: block;
    position: relative;
}

.cul_box4_list_item_pic {
    overflow: hidden;
}

.cul_box4_list_item_pic img {
    width: 100%;
}

.cul_box4_list_item_con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 80%);
    padding: 0 clamp(0.938rem, 0.75rem + 0.94vw, 1.688rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.cul_box4_list_item_tt {
    margin-bottom: clamp(0.5rem, 0.359rem + 0.7vw, 1.063rem);
}

.cul_box4_list_item_text {
    margin-bottom: clamp(0.625rem, 0.438rem + 0.94vw, 1.375rem);
}

.cul_box4_list_item_con .public_btn1 {
    color: #fff;
    border: 1px solid #fff;
    background: none;
}

.cul_box4_list_item_con .public_btn1:hover {
    background: var(--hue);
    border-color: var(--hue);
}

.cul_box4_list_item:hover .cul_box4_list_item_pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.brand_box2_list_item:nth-child(2n) {
    background: #f5f5f5;
}

.brand_box2_list_item_title {
    margin-bottom: 10px;
}

.brand_box2_list_item_title .num {
    /*width: clamp(4.375rem, 2.813rem + 7.81vw, 10.625rem);*/
    font-size: clamp(3.125rem, 1.875rem + 6.25vw, 8.125rem);
    line-height: 1;
    padding-right: clamp(0.625rem, 0.344rem + 1.41vw, 1.75rem);
}

.brand_box2_list_item_title .con {
    /*width: calc(100% - clamp(4.375rem, 2.813rem + 7.81vw, 10.625rem));*/
}

.brand_box2_list_item_title .con .tt1 {
    line-height: 1.1;
    margin-bottom: clamp(0.375rem, 0.25rem + 0.63vw, 0.875rem);
}

.brand_box2_list_item_text1 {
    color: #666;
}

.brand_box2_list_item_clm1 {
    gap: clamp(0.5rem, 0.375rem + 0.63vw, 1rem);
}

.brand_box2_list_item_clm1 .item {
    position: relative;
}

.brand_box2_list_item_clm1 .item .icon {
    width: 19px;
    height: 19px;
    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;
    border-radius: 50%;
    padding: 3px;
    background: rgba(18, 53, 119, .52);
    margin-top: calc((clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.75 - 19px) / 2);
    position: relative;
}

.brand_box2_list_item_clm1 .item .icon::after {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--hue);
}

.brand_box2_list_item_clm1 .item::before {
    content: "";
    display: block;
    position: absolute;
    left: 9px;
    top: 15px;
    width: 0;
    height: 100%;
    height: 110%;
    border-right: 1px dashed var(--hue);
}

.brand_box2_list_item_clm1 .item .tt {
    width: calc(100% - 14px);
    padding-left: 10px;
}

.brand_box2_list_item_clm1 .item:last-child::before {
    display: none;
}


.brand_box2_list_item_con_l {
    width: 47.22%;
}

.brand_box2_list_item_con_r {
    width: 51.3%;
}


.honor_box1_scroll_item {
    display: block;
    background: #fff;
    padding: clamp(0.938rem, 0.75rem + 0.94vw, 1.688rem);
    border: 1px solid #eee;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, .25); */
}

.honor_box1_scroll_item_icon {
    width: clamp(3.125rem, 2.344rem + 3.91vw, 6.25rem);
}

.honor_box1_scroll_item_con_pic {
    width: clamp(6.25rem, 5.813rem + 2.19vw, 8rem);
    position: relative;
    overflow: hidden;
    border: clamp(0.313rem, 0.266rem + 0.23vw, 0.5rem) solid #F5F5F5;
}

.honor_box1_scroll_item_con_pic > img {
    display: block;
    width: 100%;
}

.honor_box1_scroll_item_con_pic .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .46);
}

.honor_box1_scroll_item_con_pic .icon img {
    width: clamp(1.625rem, 1.469rem + 0.78vw, 2.25rem);
}

.honor_box1_scroll_item_con_con {
    width: calc(100% - clamp(6.25rem, 5.813rem + 2.19vw, 8rem));
    padding-left: clamp(0.5rem, 0.359rem + 0.7vw, 1.063rem);
}

.honor_box1_scroll_item:hover .honor_box1_scroll_item_con_pic>img{
    transform:scale(1.1,1.1);
    -webkit-transform:scale(1.1,1.1);
}

.honor_box1_scroll_btn {
    position: absolute;
    top: 40%;
    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.688rem + 0.94vw, 2.625rem);
    height: clamp(1.875rem, 1.688rem + 0.94vw, 2.625rem);
    font-size: clamp(1rem, 0.938rem + 0.31vw, 1.25rem);
    border-radius: 50%;
    color: #666;
    border: 2px solid #666;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.honor_box1_scroll_btn.prev {
    left: calc(clamp(0.938rem, -0.078rem + 5.08vw, 5rem) * -1);
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.honor_box1_scroll_btn.next {
    right: calc(clamp(0.938rem, -0.078rem + 5.08vw, 5rem) * -1);
}

.honor_box1_scroll_btn:hover {
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}

.honor_box2_scroll_item {
    gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
}

.honor_box2_scroll_item .item {
    aspect-ratio: 295/428;
    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;
    background: url(../images/honor_bg.png) no-repeat center center / 100% auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.honor_box2_scroll_item .item .pic_box{
    padding: 6.07% 8.81%;
    width: 100%;
    height: 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;
}
.honor_box2_scroll_item .item .pic{
    overflow: hidden;
    aspect-ratio: 243/377;
}
.honor_box2_scroll_item .item img {
    width: 100%;
    
    height: 100%;
    object-fit: cover;
}

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

.honor_box2_scroll_item .item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.honor_box3 .wrapper {
    overflow: hidden;
}

.honor_box3_scroll_box{
    position: relative;
    overflow: hidden;
}
.honor_box3_scroll_box::after,
.honor_box3_scroll_box::before{ 
    content: "";
    display: block;
    position: absolute;
    top: 0;
    z-index: 2;
    width: 6.5%;
    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,1),rgba(255,255,255,0) 100%);
}
.honor_box3_scroll_box::before{
    right: 0;
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.honor_box3_scroll {
    width: 100%;
    margin-bottom: 10px;
}

.honor_box3_scroll .bd ul {
    margin: 0;
    padding: 0;
}

.honor_box3_scroll .bd ul li {
    float: left;
    padding: 0;
    margin: 0;
    overflow: hidden;
    margin-right: clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem);
}

.honor_box3_scroll_item {
    width: clamp(18.75rem, 16.25rem + 12.5vw, 28.75rem);
    height: 180px;
    background: #F5F5F5;
    padding: clamp(1.125rem, 0.953rem + 0.86vw, 1.813rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    border: 2px solid var(--hue);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.honor_box3_scroll_item .years {
    margin-bottom: clamp(0.5rem, 0.375rem + 0.63vw, 1rem);
}

.honor_box3_scroll_item .years,
.honor_box3_scroll_item .text {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.honor_box3_scroll_item:hover {
    background: var(--hue);
}

.honor_box3_scroll_item:hover .years,
.honor_box3_scroll_item:hover .text {
    color: #fff !important;
}


.busi_box1_list .busi_box1_list_item:first-child {
    padding-top: 0;
}

.busi_box1_list_item_box {
    background: #f5f5f5;
}

.busi_box1_list_item_pic {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.busi_box1_list_item_pic::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, .9) 100%);
}

.busi_box1_list_item_pic > img {
    width: 100%;
}

.busi_box1_list_item_pic .icon {
    position: absolute;
    z-index: 2;
    right: clamp(1.25rem, 0.516rem + 3.67vw, 4.188rem);
    bottom: clamp(0.938rem, 0.75rem + 0.94vw, 1.688rem);
    width: clamp(2.5rem, 2.25rem + 1.25vw, 3.5rem);
}

.busi_box1_list_item_con {
    width: 50%;
    text-align: center;
    padding: clamp(1.25rem, 1.031rem + 1.09vw, 2.125rem) clamp(0.938rem, -0.266rem + 6.02vw, 5.75rem);
}

.busi_box1_list_item_con_icon {
    height: clamp(1.875rem, 1.484rem + 1.95vw, 3.438rem);
}

.busi_box1_list_item_box:hover .busi_box1_list_item_pic > img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.busi_box1_list_item:nth-child(2n) {
    background: #f5f5f5;
}

.busi_box1_list_item:nth-child(2n) .busi_box1_list_item_box {
    background: #fff;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}


.buss_det_box1_scroll_item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.buss_det_box2_scroll_btn {
    position: absolute;
    top: 40%;
    z-index: 3;
    cursor: pointer;
    margin-top: calc(clamp(2.25rem, 1.719rem + 2.66vw, 4.375rem) / -2);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.buss_det_box2_scroll_btn.prev {
    left: calc(clamp(0.938rem, -0.078rem + 5.08vw, 5rem) * -1);
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
}

.buss_det_box2_scroll_btn.next {
    right: calc(clamp(0.938rem, -0.078rem + 5.08vw, 5rem) * -1);
}


.buss_det_box2_scroll_item .pic {
    width: clamp(12.5rem, 11.531rem + 4.84vw, 16.375rem);
    height: clamp(12.5rem, 11.531rem + 4.84vw, 16.375rem);
    border-radius: 50%;
    overflow: hidden;
    border: clamp(0.25rem, 0.156rem + 0.47vw, 0.625rem) solid #eee;
    margin: 0 auto 18px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.buss_det_box2_scroll_item .pic img {
    width: 100%;
}

.buss_det_box2_scroll_item .tt {
    padding-bottom: 15px;
}

.buss_det_box2_scroll_item:hover .pic {
    border-color: var(--hue);
}

.buss_det_box2_scroll_item:hover .pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.buss_det_box3_l {
    width: 49.51%;
}

.buss_det_box3_r {
    width: 45.55%;
}

.buss_det_box4 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.buss_det_box4_scroll {
    margin-bottom: clamp(1.875rem, 0.906rem + 4.84vw, 5.75rem);
}

.buss_det_box4_scroll_item {
    display: block;
    width: 100%;
}

.buss_det_box4_scroll_item_tt {
    margin-bottom: clamp(0.5rem, 0.438rem + 0.31vw, 0.75rem);
}


.buss_det_box4_scroll_bars {
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(14px);
}

.buss_det_box4_scroll_bars .item {
    padding: 0 15px;
    color: #fff;
    height: clamp(3.125rem, 1.938rem + 5.94vw, 7.875rem);
    gap: clamp(0.438rem, 0.328rem + 0.55vw, 0.875rem);
    border-right: 1px solid rgba(255, 255, 255, .26);
    border-bottom: 1px solid rgba(255, 255, 255, .26);
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}


.buss_det_box4_scroll_bars .item .icon {
    width: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
}

.buss_det_box4_scroll_bars .item .tt {
    width: auto;
    max-width: calc(100% - clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem));
}

.buss_det_box4_scroll_bars .item.active ,
.buss_det_box4_scroll_bars .item:active{
    background: var(--hue);
}


.buss_det_box5_l {
    width: 47.22%;
}

.buss_det_box5_r {
    width: 49.09%;
}

.buss_det_box5_r_list {
    gap: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
}

.buss_det_box5_r .item .icon {
    width: clamp(3.75rem, 3.281rem + 2.34vw, 5.625rem);
    background: #fff;
}

.buss_det_box5_r .item .con {
    width: calc(100% - clamp(3.75rem, 3.281rem + 2.34vw, 5.625rem));
    padding-left: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
}


.buss_det_box6 {
    position: relative;
    height: clamp(21.875rem, 18.031rem + 19.22vw, 37.25rem);
}

.buss_det_box6_con {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0,0,0,.64); */
}

.buss_det_box6_video .icon {
    width: clamp(3.75rem, 3rem + 3.75vw, 6.75rem);
    height: clamp(3.75rem, 3rem + 3.75vw, 6.75rem);
    position: relative;
}


.buss_det_box7_scroll_item {
    display: block;
}

.buss_det_box7_scroll .buss_det_box7_scroll_item {
    opacity: 0.23;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.buss_det_box7_scroll_item img {
    width: 100%;
}

.buss_det_box7_scroll_item_con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    row-gap: 10px;
    padding: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem) clamp(0.625rem, -0.031rem + 3.28vw, 3.25rem);
    background: rgba(0, 0, 0, .7);
    border-bottom-left-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
    border-bottom-right-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
}

.buss_det_box7_scroll_item_con_tt {
    width: 65%;
}

.buss_det_box7_scroll_item_con_r .public_btn1 {
    color: #fff;
    background: none;
}

.buss_det_box7_scroll_item_con_r .public_btn1:hover {
    color: var(--hue);
    background: #fff;
}

.buss_det_box7_scroll_item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.buss_det_box7_scroll .swiper-slide-active .buss_det_box7_scroll_item {
    opacity: 1;
}


.buss_det_box7_scroll_box_btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    margin-top: calc(clamp(2.25rem, 1.719rem + 2.66vw, 4.375rem) / 2 * -1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.buss_det_box7_scroll_box_btn.prev {
    left: 19%;
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.buss_det_box7_scroll_box_btn.next {
    right: 19%;
}


.buss_det_box8 {
    padding: clamp(5.625rem, 4.266rem + 6.8vw, 11.063rem) 0;
}


.inv_box1_scroll_item {
    display: block;
}

.inv_box1_scroll_item_pic {
    overflow: hidden;
}

.inv_box1_scroll_item_pic img {
    display: block;
    width: 100%;
}

.inv_box1_scroll_item_con {
    background: #F5F5F5;
    height: clamp(3.125rem, 2.891rem + 1.17vw, 4.063rem);
    padding: 0 clamp(0.625rem, 0.391rem + 1.17vw, 1.563rem);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.inv_box1_scroll_item_con .tt {
    color: #333;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.inv_box1_scroll_item_con .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.5rem, 1.375rem + 0.63vw, 2rem);
    font-size: clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem);
    color: var(--hue);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.inv_box1_scroll_item:hover .inv_box1_scroll_item_pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.inv_box1_scroll_item:hover .inv_box1_scroll_item_con {
    background: #219EF2;
}

.inv_box1_scroll_item:hover .inv_box1_scroll_item_con .tt {
    color: #fff;
}

.inv_box1_scroll_item:hover .inv_box1_scroll_item_con .icon {
    color: #fff;
}

.news_style_switch {
    background: #F5F5F5;
    border-radius: 6px;
}

.news_style_switch .item {
    width: clamp(2.5rem, 2.266rem + 1.17vw, 3.438rem);
    height: clamp(1.875rem, 1.719rem + 0.78vw, 2.5rem);
    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;
    font-size: clamp(1.25rem, 1.156rem + 0.47vw, 1.625rem);
    color: #333;
    cursor: pointer;
    position: relative;
}

.news_style_switch .item::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: clamp(1.125rem, 1.031rem + 0.47vw, 1.5rem);
    background: #D9D9D9;
    margin-top: calc(clamp(1.125rem, 1.031rem + 0.47vw, 1.5rem) / 2 * -1);
}

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

.news_style_switch .item:last-child::after {
    display: none;
}


.news_list1 {
    margin: 0;
    padding: 0;
    column-gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    row-gap: clamp(1.125rem, 0.625rem + 2.5vw, 3.125rem);
}

.news_list1 dd {
    margin: 0;
    padding: 0;
}

.news_list1_item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    gap: clamp(0.75rem, 0.625rem + 0.63vw, 1.25rem);
}

.news_list1_item_pic{
    aspect-ratio: 455/305;
}
.news_list1_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_list1_item_con {

}

.news_list1_item_tt {
    color: #333;
    height: calc(clamp(1rem, 0.907rem + 0.39vw, 1.25rem)*1.4*2);
    margin-bottom: clamp(0.563rem, 0.484rem + 0.39vw, 0.875rem);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.news_list1_item_text{
    height: calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem)*1.75*3);
}

.news_list1_item_r {
    width: 200px;
}


.news_list1_item:hover .news_list1_item_pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

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

.news_list1_item:hover .public_btn1 {
    color: #fff;
    background: var(--hue);
    border-color: var(--hue);
}


.news_list1.hover {
    display: flex !important;
    flex-direction: column !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    row-gap: 0;
}

.news_list1.hover dd {
    padding: 19px 0;
    border-bottom: 1px solid #DCDCDC;
}

.news_list1.hover dd:last-child {
    border-bottom: none;
}

.news_list1.hover .news_list1_item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.news_list1.hover .news_list1_item .news_list1_item_pic {
    width: 200px;
}

.news_list1.hover .news_list1_item_con {
    width: calc(100% - 400px - clamp(1.875rem, 0.781rem + 5.47vw, 6.25rem));
}
.news_list1.hover .news_list1_item_tt,
.news_list1.hover .news_list1_item_text{
    height:auto;
}
.news_list1.hover .news_list1_item_text{
    max-height:calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem)*1.75*3)
}


/* blog_det */
.blog_det_box1 {
    padding: clamp(1.875rem, 1.023rem + 4.26vw, 3.75rem) 0 clamp(2.813rem, 1.25rem + 7.81vw, 6.25rem);
}

.blog_det_l {
    width: calc(100% - clamp(21.25rem, 15.806rem + 8.51vw, 24.313rem) - clamp(1.875rem, -3.681rem + 8.68vw, 5rem));
}

.blog_det_l_line {
    width: 1px;
    background: #eee;
}

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

.blog_det_l_clm {
    gap: clamp(0.5rem, -0.156rem + 3.28vw, 3.125rem);
    margin-bottom: clamp(1rem, 0.625rem + 1.88vw, 2.5rem);
}

.blog_det_l_clm .item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}


.blog_det_l_text {
    border-top: 1px solid #EEEEEE;
    padding: clamp(0.938rem, 0.734rem + 1.02vw, 1.75rem) 0;
}


.news_det_page {
    border-radius: 10px;
    padding: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.news_det_page_item {
    width: 46%;
}

.news_det_page_item_tt {
    margin-bottom: 4px;
}

.news_det_page_item_con a {
    gap: 8px;
    white-space: nowrap;
    color: #666;
}

.news_det_page_item_con a:hover {
    color: var(--hue);
    text-decoration: underline;
}

.news_det_page_line {
    width: 1px;
    background: #DCDCDC;
}


.blog_det_r {
    width: clamp(21.25rem, 15.806rem + 8.51vw, 24.313rem);
}

.blog_det_r_table_content {
    border: 1px solid #DCDCDC;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

.blog_det_r_table_content_tt {
    line-height: clamp(3.125rem, 2.875rem + 1.25vw, 4.125rem);
    padding: 0 20px;
    border-bottom: 1px solid #DCDCDC;
}

.blog_det_r_table_list {
    padding: clamp(1.125rem, 1.094rem + 0.16vw, 1.25rem) clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
}

.blog_det_r_table_list ul,
.blog_det_r_table_list ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.blog_det_r_table_list ul li a {
    display: block;
    color: #666;
    margin: 0 0 clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem) 0;
}

.blog_det_r_table_list ul li a:hover {
    color: var(--hue);
}


.blog_det_r_item {
    padding: clamp(1.125rem, 0.969rem + 0.78vw, 1.75rem) clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
}


.blog_det_r_item .open_window_con_r_list_text,
.blog_det_r_item .open_window_con_r_list_area {
    color: #333;
    background: #fff;
}

.blog_det_r_item .open_window_con_r_list_text::-webkit-input-placeholder,
.blog_det_r_item .open_window_con_r_list_area::-webkit-input-placeholder {
    color: #333;
}

.blog_det_r_item .open_window_form_list_btn {
    width: auto;
    padding: 0 29px;
    color: #333;
    background: #fff;
}

.blog_det_r_inq_list .open_window_con_r_list_item {
    width: 100%;
}


.rela_news_scroll .swiper-slide {
    height: auto !important;
}

.rela_news_scroll_item {
    display: block;
    height: 100%;
    background: #fff;
}

.rela_news_scroll_item_con {
    border: 1px solid #DDDEDF;
    position: relative;
    padding: clamp(2.875rem, 2.719rem + 0.78vw, 3.5rem) clamp(0.625rem, 0.344rem + 1.41vw, 1.75rem) clamp(1.125rem, 0.75rem + 1.88vw, 2.625rem);
    border-top: none;
    border-bottom-left-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
    border-bottom-right-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
}

.rela_news_scroll_item_time {
    position: absolute;
    color: #333;
    width: clamp(4.375rem, 4.188rem + 0.94vw, 5.125rem);
    height: clamp(3.5rem, 3.266rem + 1.17vw, 4.438rem);
    left: clamp(0.625rem, 0.344rem + 1.41vw, 1.75rem);
    top: calc(clamp(3.5rem, 3.266rem + 1.17vw, 4.438rem) / 2 * -1);
    background: #fff;
    line-height: 1.1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.rela_news_scroll_item_pic {
    overflow: hidden;
}

.rela_news_scroll_item_pic img {
    width: 100%;
}

.rela_news_scroll_item_tt {
    color: #333;
    height: calc(1.625 * clamp(1rem, 0.907rem + 0.39vw, 1.25rem) * 2);
    margin-bottom: clamp(0.5rem, 0.422rem + 0.39vw, 0.813rem);
}

.rela_news_scroll_item_more {
    line-height: 24px;
    gap: 6px;
}

.rela_news_scroll_item:hover .rela_news_scroll_item_pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.rela_news_scroll_item:hover .rela_news_scroll_item_time {
    color: #fff;
    background: var(--hue);
}

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

.qhse_box2_video {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.qhse_box2_con {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(18, 53, 119, .5) 0%, rgba(18, 53, 119, 0) 100%);
}

.qhse_box2_con .ind_title1 {
    margin-bottom:clamp(9.375rem, 4.688rem + 23.44vw, 28.125rem);
}


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

.qhse_box2_list .item {
    color: #333;
    padding: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem) clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.qhse_box2_list .item:hover {
    color: #fff;
    background: rgba(18, 53, 119, .8);
}

.qhse_box4_con_l {
    width: 48.6%;
}

.qhse_box4_con_l img {
    width: 100%;
}

.qhse_box4_con_r {
    width: 48.6%;
}

.qhse_box5_b {
    padding: clamp(1.125rem, 1.047rem + 0.39vw, 1.438rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.qhse_box5_b .icon {
    width: 40px;
}

.qhse_box5_b .icon img {
    width: 40px;
}

.qhse_box5_b .tt {
    max-width: calc(100% - 40px);
    padding-left: 8px;
}

table {
    width: 100%;
    border: 1px solid #DCDCDC;
}

table td {
    color: #333;
    padding: 12px;
    border: 1px solid #DCDCDC;
}

table tr:first-child td {
    color: var(--hue);
    background: #F5F5F5;
    font-family: "PlusJakartaSans-Bold";
}


.qhse_box6_list {
    gap: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
}

.qhse_box6_list_item {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.qhse_box6_list_item_pic {
    overflow: hidden;
}

.qhse_box6_list_item_pic img {
    display: block;
    width: 100%;
}

.qhse_box6_list_item_con {
    position: relative;
    padding: clamp(2.5rem, 2.266rem + 1.17vw, 3.438rem) clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem) clamp(1.25rem, 0.891rem + 1.8vw, 2.688rem);
    border: 1px solid #DCDCDC;
    border-top: none;
    border-bottom-left-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
    border-bottom-right-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
}

.qhse_box6_list_item_icon {
    position: absolute;
    left: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
    top: calc(clamp(3.125rem, 2.813rem + 1.56vw, 4.375rem) / 2 * -1);
    width: clamp(3.125rem, 2.813rem + 1.56vw, 4.375rem);
    height: clamp(3.125rem, 2.813rem + 1.56vw, 4.375rem);
    background: var(--hue);
}

.qhse_box6_list_item_tt {
}

.qhse_box6_list_item_text {
    height: calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.75 * 3);
    overflow-y: auto;
}

.qhse_box6_list_item_text::-webkit-scrollbar {
    width: 1px;
    background: #dcdcdc;
}

.qhse_box6_list_item_text::-webkit-scrollbar-button {
    height: 0;
}

.qhse_box6_list_item_text::-webkit-scrollbar-track {
}

.qhse_box6_list_item_text::-webkit-scrollbar-track-piece {
}

.qhse_box6_list_item_text::-webkit-scrollbar-thumb {
    width: 1px;
    background: var(--hue);
}

.qhse_box6_list_item_text::-webkit-scrollbar-corner {
    background: none;
}

.qhse_box6_list_item_text::-webkit-resizer {
}

.qhse_box6_list_item_text::-webkit-scrollbar:horizontal {
    height: 0;
}

.qhse_box6_list_item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}


.qhse_box7_scroll_item_pic {
    padding: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
    overflow: hidden;
    background: #fff;
    border: 1px solid #DCDCDC;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.qhse_box7_scroll_item_pic img {
    width: 100%;
}

.qhse_box7_scroll_item_tt {
    padding: 20px 0 0 0;
}

.qhse_box7_scroll_item:hover .qhse_box7_scroll_item_pic {
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}


.qhse_box8_con_l {
    width: 47.6%;
}

.qhse_box8_con_r {
    width: 48.2%;
}

.qhse_box8_con_r_clm {
    gap: 12px;
}

.qhse_box8_con_r_clm .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: calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.75);
    height: calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.75);
}

.qhse_box8_con_r_clm .item .icon img {
    display: block;
    width: clamp(1rem, 0.938rem + 0.31vw, 1.25rem);
}

.qhse_box8_con_r_clm .item .tt {
    width: calc(100% - clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.75);
    padding-left: 4px;
}


.qhse_box9_l {
    width: 48.7%;
}


.qhse_box9_r {
    width: 48.7%;
}


.qhse_box10_con {
    border: 1px solid #DCDCDC;
}

.qhse_box10_bars {
    border-bottom: 1px solid #DCDCDC;
}

.qhse_box10_bars .item {
    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: 20%;
    height: 77px;
    padding: 0;
    cursor: pointer;
}

.qhse_box10_bars .item:first-child,
.qhse_box10_bars .item:last-child {
    width: 40%;
}

.qhse_box10_bars .item:nth-child(2n) {
    position: relative;
}

.qhse_box10_bars .item:nth-child(2n)::after,
.qhse_box10_bars .item:nth-child(2n)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 1px;
    height: 44px;
    background: #dcdcdc;
    margin-top: -22px;
}

.qhse_box10_bars .item:nth-child(2n)::before {
    left: 0;
}

.qhse_box10_bars .item:nth-child(2n)::after {
    right: 0;
}

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


.qhse_box10_list .item {
    padding: clamp(1.125rem, 0.844rem + 1.41vw, 2.25rem) clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem) 20px;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    margin-right: -1px;
    margin-bottom: -1px;
}

.qhse_box10_list .item .icon {
    width: clamp(3.75rem, 3.438rem + 1.56vw, 5rem);
    margin: 0 auto 12px;
}


.qhse_box11_scroll_item {
    padding: clamp(1.25rem, 0.688rem + 2.81vw, 3.5rem) clamp(0.625rem, 0.391rem + 1.17vw, 1.563rem) clamp(1.125rem, 0.625rem + 2.5vw, 3.125rem);
    background: #F5F5F5;
}


.qhse_box12_list {
    gap: clamp(0.938rem, 0.641rem + 1.48vw, 2.125rem);
}

.qhse_box12_list_item {
    height: 100%;
    background: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.qhse_box12_list_item_tt {
    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;
    background: var(--hue);
    height: clamp(3.125rem, 2.625rem + 2.5vw, 5.125rem);
}

.qhse_box12_list_item_clm {
    gap: clamp(0.5rem, 0.438rem + 0.31vw, 0.75rem);
    padding: clamp(0.938rem, 0.828rem + 0.55vw, 1.375rem) clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem) clamp(1.25rem, 0.938rem + 1.56vw, 2.5rem);
}

.qhse_box12_list_item_clm .item .icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hue);
    margin-top: 8px;
}

.qhse_box12_list_item_clm .item .tt {
    width: calc(100% - 8px);
    padding-left: clamp(0.375rem, 0.313rem + 0.31vw, 0.625rem);
    line-height: 24px;
}

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


.qhse_box13_list {
    gap: 10px;
}

.qhse_box13_list .item {
    overflow: hidden;
    position: relative;
}

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

.qhse_box13_list .item .con {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(18, 53, 119, 0) 0%, rgba(18, 53, 119, .8) 80%);
    width: 100%;
    height: 100%;
    padding: 0 10px clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}

.qhse_box13_list .item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.sh_box1_scroll .swiper-slide{
    height: auto !important;
}

.sh_box1_scroll_item {
    height: 100%;
    background: #FDFDFD;
    border: 1px solid #dcdcdc;
}

.sh_box1_scroll_item .pic {
    overflow: hidden;
}

.sh_box1_scroll_item .pic img {
    width: 100%;
}

.sh_box1_scroll_item .tt {
    padding: clamp(1.125rem, 1.016rem + 0.55vw, 1.563rem) clamp(0.625rem, 0.391rem + 1.17vw, 1.563rem);
}

.sh_box1_scroll_item:hover .pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.sh_box2_scroll .swiper-slide {
    width: 64%;
    margin-left: 8.4%;
}

.sh_box2_scroll .swiper-slide:last-child {
    margin-right: 8.4%;
}

.sh_box2_scroll_item {
    background: #fff;
    position: relative;
}

.sh_box2_scroll_item_pic {
    width: 60.97%;
}

.sh_box2_scroll_item_pic img {
    width: 100%;
    opacity: 0.6;
}

.sh_box2_scroll_item_con {
    width: 39.03%;
    padding: clamp(1.875rem, 1.406rem + 2.34vw, 3.75rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.sh_box2_scroll_item_num {
    position: absolute;
    right: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    bottom: clamp(0.625rem, 0.156rem + 2.34vw, 2.5rem);
    gap: 5px;
    line-height: 0.8;
}


.sh_box2_scroll_btn {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 30%;
    height: 100%;
    z-index: 2;
}

.sh_box2_scroll_btn.prev {
    left: 0;
}

.sh_box2_scroll_btn.next {
    right: 0;
}


.sh_box2_scroll .swiper-slide.swiper-slide-active .sh_box2_scroll_item_pic img {
    opacity: 1;
}


.sh_box3 {
    padding: clamp(3.125rem, 1.172rem + 9.77vw, 10.938rem) 0 clamp(3.125rem, 0.594rem + 12.66vw, 13.25rem);
}


.sh_box4_scroll .swiper-slide {
    width: 21% !important;
    border-radius: 20px;
    padding: 10px;
    margin: 30px 10px !important;
}

.sh_box4_scroll .swiper-slide img {
    border-radius: 20px;
    box-shadow: 0 0 25px rgb(0 0 0 / 10%);
    overflow: hidden;
}

.sh_box4_scroll .swiper-slide.swiper-slide-active {
    border-radius: 0;
}

.sh_box4_scroll .swiper-slide img {
    display: block;
    width: 100%;
}

.sh_box4_scroll .swiper-button-next, .sh_box4_scroll .swiper-button-prev {
    background-image: none;
    color: #e0470f;
    outline: none;
    width: 0.5rem;
    height: 0.5rem;
    border: 1px solid #e0470f;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    position: absolute;
    bottom: -1rem;
    top: auto;
}

.sh_box4_scroll .swiper-button-next .iconfont, .sh_box4_scroll .swiper-button-prev .iconfont {
    font-size: 1.4em;
    line-height: 0.52rem;
    margin: 0;
}

.sh_box4_scroll .swiper-button-prev {
    left: 46.5%;
}

.sh_box4_scroll .swiper-button-next {
    right: 46.5%;
}

.sh_box4_scroll .swiper-slide .tit {
    position: absolute;
    left: 0;
    bottom: clamp(0.75rem, 0.547rem + 1.02vw, 1.563rem);
    width: 100%;
    padding: 0.3rem 10px;
    box-sizing: border-box;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.sh_box4_scroll .swiper-slide.swiper-slide-active .tit {
    opacity: 1;
    visibility: visible;
}

.sh_box4_scroll .swiper-slide::after {
    content: '';
    width: 95%;
    height: 95%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .0) 54%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    left: 50%;
    bottom: 10px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    border-bottom-right-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.sh_box4_scroll .swiper-slide.swiper-slide-active::after {
    opacity: 1;
    visibility: visible;
}

.sh_box4_scroll_btn_box {
    padding-top: clamp(1.563rem, 1.25rem + 1.56vw, 2.813rem);
    gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    padding-bottom: 10px;
}


/* contact */
.contact_box1_l {
    width: 62.7%;
}

.contact_box1_form {
    margin: 0;
    padding: 0;
    column-gap: clamp(1.25rem, 0.891rem + 1.8vw, 2.688rem);
    row-gap: clamp(0.938rem, 0.813rem + 0.63vw, 1.438rem);
}

.contact_box1_form dd {
    margin: 0;
    padding: 0;
    width: calc((100% - clamp(1.25rem, 0.891rem + 1.8vw, 2.688rem)) / 2);
}

.contact_box1_form dd.ddw {
    width: 100%;
}

.contact_box1_form_title {
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: clamp(0.5rem, 0.391rem + 0.55vw, 0.938rem);
}

.contact_box1_form_text,
.contact_box1_form_area {
    display: block;
    width: 100%;
    height: 50px;
    padding-left: 12px;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
}

.contact_box1_form_area {
    display: block;
    width: 100%;
    padding: 12px;
    height: clamp(6.25rem, 5.344rem + 4.53vw, 9.875rem);
    resize: none;
}

.contact_box1_form_btn {
    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: 100%;
    height: 46px;
    color: #fff;
    border-radius: 23px;
    background: var(--hue);
    cursor: pointer;
}
.contact_box1_form_btn:hover{
    background: #0683cb;
}
.contact_box1_r {
    width: 33.95%;
    background: url(../images/contact_bg1.png) no-repeat center center / cover;
    padding: clamp(1.563rem, 0.859rem + 3.52vw, 4.375rem) clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}

.contact_box1_r_clm {
    gap: clamp(0.938rem, 0.672rem + 1.33vw, 2rem);

}

.contact_box1_r_clm .item {
    color: #fff;
}

.contact_box1_r_clm .item .tt_box {
    margin-bottom: clamp(0.5rem, 0.406rem + 0.47vw, 0.875rem);
}

.contact_box1_r_clm .item .tt_box .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: 30px;
    height: 30px;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.contact_box1_r_clm .item .tt_box .tt {
    width: calc(100% - 30px);
    padding-left: 7px;
}

.contact_box1_r_clm .item .text {
    color: #fff;
    padding-left: 37px;
}

.contact_box1_r_clm .item .text a {
    color: #fff;
}


.contact_box1_r_sm {
    gap: clamp(0.313rem, 0.234rem + 0.39vw, 0.625rem);
}

.contact_box1_r_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.625rem + 1.25vw, 2.875rem);
    height: clamp(1.875rem, 1.625rem + 1.25vw, 2.875rem);
    font-size: clamp(1rem, 0.938rem + 0.31vw, 1.25rem);
    color: var(--hue);
    border-radius: 50%;
    background: #fff;
    border: 1px solid #fff;
}

.contact_box1_r_sm .icon:hover {
    background: var(--hue);
    color: #fff;
}

.contact_box1_r_sm .icon:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

.contact_box3_list {
    column-gap: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    row-gap: clamp(1.25rem, 6.25vw, 6.25rem);
}

.contact_box3_list_item {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.contact_box3_list_item_pic {
    position: relative;
}

.contact_box3_list_item_pic img {
    width: 100%;
}

.contact_box3_list_item_pic::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, .8) 100%);
}


.contact_box3_list_item_con {
    width: 86.85%;
    padding: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem) 15px;
    background: #fff;
    position: relative;
    z-index: 2;
    border: 1px solid #DDDEDF;
    margin: calc(clamp(1.25rem, -0.281rem + 7.66vw, 7.375rem) * -1) auto 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.contact_box3_list_item_con_logo {
    height: clamp(1.875rem, 1.484rem + 1.95vw, 3.438rem);
}

.contact_box3_list_item_con_clm {
    gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
    max-width: 400px;
    margin: 0 auto;
}

.contact_box3_list_item_con_clm .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: 36px;
    height: 36px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    background: var(--hue);
}

.contact_box3_list_item_con_clm .item .tt {
    width: calc(100% - 30px);
    padding-left: 9px;
}

.contact_box3_list_item_con_clm .item .tt a {
    color: #333;
}

.contact_box3_list_item_con_clm .item .tt a:hover {
    color: var(--hue);
}

.contact_box3_list_item:hover .contact_box3_list_item_con {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
}

.contact_box3_list_item:hover .contact_box3_list_item_pic img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


.contact_box2 img{
    width: 100%;
}


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

.join_box1_list .item {
    background: #F5F5F5;
    padding: clamp(1.125rem, 0.828rem + 1.48vw, 2.313rem) clamp(0.938rem, 0.734rem + 1.02vw, 1.75rem);
}

.join_box1_list .item.item1 {
    width: calc((100% - clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem) * 2) / 3);
}

.join_box1_list .item.item2 {
    width: calc((100% - clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem)) / 2);
}

.join_box1_list .item .tt {
    padding: 13px 0 5px;
}

.join_box1_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: clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem);
    height: clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem);
    font-size: clamp(1.875rem, 1.469rem + 2.03vw, 3.5rem);
    color: #333;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.join_box1_list .item:hover .icon {
    color: #fff;
    background: var(--hue);
}


.join_box2_bars {
    border: 1px solid #EEEEEE;
}

.join_box2_bars .item {
    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;
    height: clamp(3.125rem, 2.656rem + 2.34vw, 5rem);
    background: #fff;
    padding: 0 clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem);
    border-right: 1px solid #eee;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.join_box2_bars .item:last-child {
    border-right: none;
}

.join_box2_bars .item.hover {
    color: #fff;
    background: var(--hue);
}


.join_box2_list {
    margin: 0;
    padding: 0;
    gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
}

.join_box2_list dd {
    margin: 0;
    padding: 0 clamp(0.625rem, 0.156rem + 2.34vw, 2.5rem);
    background: #fff;
    border: 1px solid #DCDCDC;
}

.join_box2_list_title {
    cursor: pointer;
    padding: clamp(0.875rem, 0.703rem + 0.86vw, 1.563rem) 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.join_box2_list_title_l {
    width: calc(100% - clamp(1.5rem, 1.438rem + 0.31vw, 1.75rem) - 10px);
}

.join_box2_list_title_l .icon {
    width: clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem);
    height: clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem);
    font-size: clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem);
    line-height: 1;
    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;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.join_box2_list_title_l .tt {
    width: calc(100% - clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem));
    line-height: 1.3;
    padding-top: calc((clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem) - clamp(1rem, 0.953rem + 0.2vw, 1.125rem) * 1.3) / 2);
    padding-left: 10px;
}

.join_box2_list_down {
    display: none;
    padding: clamp(1.125rem, 1rem + 0.63vw, 1.625rem) 0 clamp(1.125rem, 0.828rem + 1.48vw, 2.313rem);
}

.join_box2_list_btn {
    width: clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem);
    height: clamp(1.375rem, 1.25rem + 0.63vw, 1.875rem);
    font-size: clamp(1rem, 0.969rem + 0.16vw, 1.125rem);
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.join_box2_list dd.hover .join_box2_list_title {
    border-bottom: 1px solid #DCDCDC;
}

.join_box2_list dd.hover .join_box2_list_btn {
    color: var(--hue);
    transform: rotateZ(-90deg);
    -webkit-transform: rotateZ(-90deg);
    -ms-transform: rotateZ(-90deg);
}

.join_box3_con {
    padding: 0 clamp(0.938rem, -0.328rem + 6.33vw, 6rem);
    background: url(../images/join_bg1.png) no-repeat left center / cover;
}

.join_box3_con_l {
    width: 65%;
    max-width: 710px;
    padding: clamp(2.188rem, 1.344rem + 4.22vw, 5.563rem) 0 clamp(1.563rem, 0.781rem + 3.91vw, 4.688rem);
}

.join_box3_con_l_list {
    border-top: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
}

.join_box3_con_l_list .item {
    height: clamp(5rem, 4.219rem + 3.91vw, 8.125rem);
    border-right: 1px solid #dcdcdc;
}

.join_box3_con_l_list .item:last-child {
    border-right: none;
}

.join_box3_con_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: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    height: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    color: #333;
    border-radius: 50%;
}

.join_box3_con_l_list .item .con {
    max-width: calc(100% - clamp(1.5rem, 0.895rem + 2.55vw, 3.125rem));
    padding-left: 8px;
}

.join_box3_con_l_list .item .con .tt {
    margin-bottom: 4px;
    text-transform: capitalize;
}

.join_box3_con_l_list .item .con .text {
    color: #333;
}

.join_box3_con_l_list .item .con .text a {
    color: #333;
}

.join_box3_con_l_list .item .con .text a:hover {
    color: var(--hue);
}


.gt_switcher-popup {
    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;
}

.gt_switcher-popup > img {
    width: 24px;
}

.gt_switcher-popup span {
    margin-left: 6px;
    color: #333;
}

.gt_languages a.glink span {
    color: #333 !important;
}

.gt_languages a.glink.gt-current-lang span {
    color: #0977d6 !important;
}


.attachment-full,
.banner_no_eager {
    width: 100%; /* 让图片宽度填满其容器 */
    height: auto; /* 让高度自动按比例缩放 */
    object-fit: cover; /* 关键属性：保证图片覆盖整个容器，并保持比例，可能会裁剪边缘 */
    /* 或者使用 `contain` 如果你想完整显示图片而不裁剪 */
    /* object-fit: contain; */
}

.colorm_span span {
    color: var(--hue) !important;
}

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

.attachment-full,
.banner_zy {
    width: auto;
    height: auto;
}

.bg_zy {
    background: no-repeat center center /cover;
}

.wpcf7-response-output {
    display: none !important;
}

.wpcf7-spinner{
    display: none !important;
}




/* 404 */
.sub_page_error{
  padding: clamp(4.375rem, 2.969rem + 7.03vw, 10rem) 0;
}
.erroe_page_icon{
  width: clamp(12.5rem, 3.125rem + 46.88vw, 50rem);
}
.erroe_page_btn{
  width: 100%;
  color: #fff;
  background: var(--hue);
  max-width: 300px;
}
.erroe_page_form{
  width: 100%;
  max-width: 530px;
  border: 1px solid #CFCFCF;
  background: #fff;
  margin: 0 auto;
}
.erroe_page_form_text{
  width: calc(100% - 50px);
  height: 48px;
  padding-left: 15px;
  font-size: 16px;
  color: #444;
  background: none;
  border: none;
}
.erroe_page_form_text::-webkit-input-placeholder{
  color: #9C9C9C;
}
.erroe_page_form_btn{
  width: 48px;
  height: 48px;
  font-size: 24px;
  border: none;
  color: #333;
  background: none;
}


.ind_box8_scroll_box::after,
.ind_box8_scroll_box::before{ 
    background: linear-gradient(to right,rgba(245,245,245,1),rgba(245,245,245,0) 100%);
}