:root {
    --hue: #014EBD;
    --hue2: #0E2178;
    --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;
}


.gap30 {
    row-gap: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
}


.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: "Roboto-Regular", sans-serif;
    font-weight: 400;
}

html {
    scroll-padding-top: 120px;
}

input,
button,
textarea,
select,
button {
    font-family: "Roboto-Regular", sans-serif;
    font-weight: 400;
    border: none;
}

.bgf {
    background: #fff;
}

.bgf3 {
    background: #F3F5FA;
}

.bgf4 {
    background: #f4f4f4;
}

.bgf5 {
    background: #f5f5f5;
}

.bgf6 {
    background: #f6f6f6;
}

.bgf8 {
    background: #f8f8f8;
}

.bgfa {
    background: #fafafa;
}

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

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

.fml {
    font-family: "Roboto-Light";
}

.fmr {
    font-family: "Roboto-Regular";
}

.fmm {
    font-family: "Roboto-Medium";
}

.fms {
    font-family: "Roboto-SemiBold";
}

.fmb {
    font-family: "Roboto-Bold";
}

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

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

.mb_80_30 {
    margin-bottom: clamp(1.875rem, 1.094rem + 3.91vw, 5rem);
}

.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 {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    width: 100%;
    height: 105px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.logo {
    width: 210px;
    height: 104px;
    position: relative;
}

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

.menu_dl {
    gap: clamp(1.875rem, -1.125rem + 3.75vw, 2.625rem);
    margin: 0;
    padding: 0;
}

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

.menu_dl dd.dd_pro {
    position: static;
}

.menu_tt {
    display: block;
    line-height: 104px;
    color: #fff;
    font-size: 18px;
    font-family: "Roboto-Medium";
    white-space: nowrap;
    position: relative;
    text-transform: capitalize;
}

.menu_tt::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2;
    width: 100%;
    height: 3px;
    background: var(--hue);
    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: 50%;
    z-index: 3;
    width: 230px;
    background: #fff;
    overflow: hidden;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

.menu_down a {
    display: block;
    color: #666;
    line-height: 54px;
    font-size: 16px;
    white-space: nowrap;
    border-bottom: 1px dashed #EDEDED;
    text-transform: capitalize;
    text-align: center;
}

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

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


.menu_down_pro {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    background: #fff;
    transform: translate(-50%, 0);
    padding: 30px 35px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

.menu_down_pro_list_item_tt {
    display: block;
    color: #222;
    margin-bottom: 12px;
}

.menu_down_pro_list_item_con a {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 36px;
}

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


.header_r {
    width: calc(100% - 156px);
    gap: clamp(1.875rem, -28.125rem + 37.5vw, 9.375rem);
}

.header_r_r {
    gap: 12px;
}

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

.header_r_lag {
    position: relative;
}

.header_r_lag_tt {
    color: #fff;
    cursor: pointer;
}

.header_r_lag_tt .icon1 {
    font-size: 24px;
}

.header_r_lag_down {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 140px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 0;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.header_r_lag_down a {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 30px;
    text-align: center;
}

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

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

.search_box_l {
    width: calc(100% - 90px);
}

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

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

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

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

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

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


.header:hover,
.header.hover {
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .15);
}

.header:hover .menu_tt,
.header.hover .menu_tt {
    color: #222;
}

.header:hover .menu_dl dd.hover .menu_tt,
.header.hover .menu_dl dd.hover .menu_tt {
    color: #0E2178;
}

.header:hover .header_r_search,
.header:hover .header_r_lag_tt,
.header.hover .header_r_search,
.header.hover .header_r_lag_tt {
    color: #222;
}


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

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

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

.mobile_logo img {
    height: 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: #222;
    border-radius: 4px;
    margin-bottom: 6px;
}

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

.mobile_search_icon,
.mobile_lag_icon {
    width: 40px;
    height: 52px;
    color: #222;
    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: "Roboto-Medium";
}

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

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

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

.mobile_menu_down_clm {
    margin-bottom: 8px;
}

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

.mobile_menu_down_clm_tt .tt {
    width: calc(100% - 50px);
    color: #333;
    line-height: 20px;
    font-family: "Roboto-Medium";
    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;
    border: none;
    background: #fff;
}

.mobile_menu_b {
    margin-top: 40px;
}

.mobile_menu_b_clm {
    margin-bottom: 25px;
}

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

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

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


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

.mask {
    z-index: 13;
}


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

.scroll_dots .scroll_dots_bars .swiper-pagination-bullet {
    width: clamp(0.625rem, 0.531rem + 0.47vw, 1rem);
    height: clamp(0.625rem, 0.531rem + 0.47vw, 1rem);
    opacity: 1;
    margin: 0;
    position: relative;
    background: #dedede;
    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;
}


.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: 40px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.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: #222;
    border-color: #222;
}

.public_btn1.white {
    background: #fff;
}

.public_btn_out_line.white {
    color: #fff;
    border: 1px solid #fff;
    background: none;
}

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


.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(1.875rem, 1.641rem + 1.17vw, 2.813rem);
    height: clamp(1.875rem, 1.641rem + 1.17vw, 2.813rem);
    color: #222;
    font-size: clamp(1.125rem, 1.031rem + 0.47vw, 1.5rem);
    border: 1px solid #222;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.public_scroll_btn1.white {
    color: #fff;
    border: 1px solid #fff;
}

.public_scroll_btn1.hover,
.public_scroll_btn1:hover {
    color: #fff;
    background: var(--hue2);
    border-color: var(--hue2);
}

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


/* 返回顶部  */
.float_fixed {
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 3;
    width: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
}

.float_fixed .item {
    display: block;
    position: relative;
    background: var(--hue);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.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: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
    height: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
    font-size: clamp(1.125rem, 1rem + 0.63vw, 1.625rem);
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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

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


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

.back_top .item_icon {
    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: #222;
    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 #617184;
    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 {
    font-size: 22px;
}

.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: 1200px;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.open_window_con_rela {
    position: relative;
    height: 100%;
}

.open_window_close {
    position: absolute;
    right: 15px;
    top: 8px;
    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: 26px;
    height: 26px;
    color: #222;
    font-weight: bold;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

.open_window_l {
    width: 50%;
}

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

.open_window_r {
    width: 50%;
    background: #fff;
    padding: clamp(2.813rem, 2.391rem + 2.11vw, 4.5rem) clamp(0.938rem, 0.172rem + 3.83vw, 4rem) clamp(1.125rem, 0.703rem + 2.11vw, 2.813rem);
}

.open_window_con_r_list {
    row-gap: clamp(0.938rem, 0.859rem + 0.39vw, 1.25rem);
    margin: 0;
    padding: 0;
}

.open_window_con_r_list dd {
    width: 100%;
    margin: 0;
    padding: 0;
}

.open_window_con_r_list_text,
.open_window_con_r_list_area {
    display: block;
    width: 100%;
    height: clamp(2.875rem, 2.813rem + 0.31vw, 3.125rem);
    font-size: 16px;
    padding-left: 15px;
    color: #333;
    background: #fff;
    outline: none;
    border-radius: 3px;
    border: 1px solid #666;
    text-transform: capitalize;
}

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

.open_window_form_list_text::placeholder,
.open_window_form_list_area::placeholder {
    color: #666;
    text-transform: capitalize;
}

.open_window_con_r_list_text:focus,
.open_window_con_r_list_area:focus {
    background: #f5f5f5;
    border: 1px solid var(--hue);
}

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


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

.banner {
    position: relative;
}

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

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

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

.banner_bars .item {
    width: clamp(2.625rem, 1.844rem + 3.91vw, 5.75rem);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.banner_bars .item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.banner_bars .item.active {
    border: 1px solid var(--hue);
}

.banner_bars .item.active::after {
    opacity: 0;
}


/* location */
.location {
    position: relative;
    z-index: 2;
    width: 100%;
    line-height: 30px;
    padding: 18px 0;
    color: #fff;
}

.location .icon {
    font-size: 18px;
    margin-right: 4px;
    position: relative;
    top: -2px;
}

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


.ind_box1_list {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}


.ind_box1_list_item {
    position: relative;
    overflow: hidden;
}

.ind_box1_list_item_pic img {
    width: 100%;
}

.ind_box1_list_item_con1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem) 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box1_list_item_tt1 {
    margin-bottom: 12px;
}

.ind_box1_list_item_tt2 {
    margin-bottom: 10px;
}


.ind_box1_list_item_con2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem) 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box1_list_item_con2_list {
    gap: 10px;
}

.ind_box1_list_item_con2_list a {
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    padding: 0 10px;
    background: rgba(1, 78, 189, .5);
}

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

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

.ind_box1_list_item:hover .ind_box1_list_item_con1 {
    opacity: 0;
}

.ind_box1_list_item:hover .ind_box1_list_item_con2 {
    opacity: 1;
}


.ind_box2_t {
    padding: clamp(2.5rem, 1.172rem + 6.64vw, 7.813rem) 0 clamp(15.625rem, 10.781rem + 24.22vw, 35rem);
}

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


.ind_box2_b .item {
    height: clamp(6.25rem, 5.469rem + 3.91vw, 9.375rem);
    border-right: 1px solid #3E81E2;
}

.ind_box2_b .item .num {
    margin-bottom: 8px;
}


.ind_box3 {
    background: #F5F5F5 url(../images/ind_box3_bg.png) no-repeat center bottom / 100% auto;
    padding: 56px 0;
}


.ind_box3_l {
    width: 40.48%;
}


.ind_box3_r {
    width: 57.6%;
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    margin-bottom: clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}

.ind_box3_r .item {
    width: calc((100% - clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem)) / 2);
    height: 100%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .15);
}

.ind_box3_r .item .pic {
    overflow: hidden;
}

.ind_box3_r .item .pic img {
    width: 100%;
}

.ind_box3_r .item .tt {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    color: #fff;
    line-height: 22px;
    height: 44px;
    padding: 0 15px;
    text-transform: uppercase;
}

.ind_box3_r .item .text {
    padding: 10px 17px;
}

.ind_box3_r .item:nth-child(1) .tt {
    background: #217F40;
}

.ind_box3_r .item:nth-child(2) .tt {
    background: #26639D;
}

.ind_box3_r .item:nth-child(3) .tt {
    background: #AB1A14;
}

.ind_box3_r .item:nth-child(4) .tt {
    background: #E5C595;
}

.ind_box3_r .item:nth-child(2n) {
    position: relative;
    top: clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}


.ind_box4_con {
    border-top: 5px solid var(--hue);
    padding-top: clamp(0.938rem, 0.594rem + 1.72vw, 2.313rem);
}

.ind_box4_l {
    width: 48.9%;
}

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

.ind_box4_l_pic {
    overflow: hidden;
    aspect-ratio: 7 / 4.4;
}

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

.ind_box4_l_con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 78, 189, .2);
    padding: 0 clamp(0.938rem, 0.156rem + 3.91vw, 4.063rem) clamp(0.938rem, 0.656rem + 1.41vw, 2.063rem);
}

.ind_box4_l a {
    display: block;
}

.ind_box4_l_con_tt {
    margin-bottom: 6px;
}

.ind_box4_l_con_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: 160px;
    height: 40px;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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


.ind_box4_r {
    width: 48.9%;
    gap: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem);
}

.ind_box4_r_item_pic {
    overflow: hidden;
}

.ind_box4_r_item_pic img {
    width: 100%;
}

.ind_box4_r_item_tt {
    color: #222;
    margin-bottom: 4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box4_r_item_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: 160px;
    height: 40px;
    color: #666;
    border: 1px solid #666666;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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

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


.ind_box5 {
    padding: clamp(3.75rem, 1.875rem + 9.38vw, 11.25rem) 0 clamp(3.125rem, 1.516rem + 8.05vw, 9.563rem);
}

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

.ind_box6_list {
    margin: 0;
    padding: 0;
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

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

.ind_box6_list_item {
    background: #F5F5F5;
}

.ind_box6_list_item_pic {
    width: 45.39%;
}

.ind_box6_list_item_pic img {
    width: 100%;
}

.ind_box6_list_item_con {
    width: 54.61%;
    padding: 18px clamp(0.75rem, 0.656rem + 0.47vw, 1.125rem);
}

.ind_box6_list_item_con_clm {
    gap: 10px;
}

.ind_box6_list_item_con_clm .item {
    line-height: 30px;
    color: var(--hue);
    font-size: 14px;
    padding: 0 11px;
    border: 1px solid var(--hue);
}

.ind_box6_list_item_con_tt {
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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


.footer_inq {
    background: url(../images/footer_inq_bg.png) no-repeat center center / cover;
}


.footer_inq_l {
    width: 40.4%;
}

.footer_inq_r {
    width: 52.08%;
}

.footer_inq_r_list {
    margin: 0;
    padding: 0;
    gap: 10px;
}

.footer_inq_r_list dd {
    width: calc((100% - 10px) / 2);
    margin: 0;
    padding: 0;
}

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

.footer_inq_r_list_text,
.footer_inq_r_list_area {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding-left: 15px;
    color: #fff;
    text-transform: capitalize;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .6);
}

.footer_inq_r_list_text::placeholder,
.footer_inq_r_list_area::placeholder {
    color: #fff;
}

.footer_inq_r_list_area {
    height: 72px;
    padding: 11px 15px;
    resize: none;
}

.footer_inq_r_list_btn {
    display: block;
    width: 150px;
    height: 50px;
    font-size: 16px;
    color: #fff;
    background: #1B5CBA;
}


.footer {
    background: #4B5562;
}


.footer_t {
    padding: clamp(1.875rem, 1.25rem + 3.13vw, 4.375rem) 0 clamp(1.563rem, 1.219rem + 1.72vw, 2.938rem);
}

.footer_t_l {
    width: 36.8%;
}

.footer_t_l_logo {
    height: clamp(3.125rem, 2.75rem + 1.88vw, 4.625rem);
}


.footer_t_l_sm {
    gap: clamp(0.25rem, 0.078rem + 0.86vw, 0.938rem);
}

.footer_t_l_sm .icon {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    width: clamp(1.875rem, 1.719rem + 0.78vw, 2.5rem);
    height: clamp(1.875rem, 1.719rem + 0.78vw, 2.5rem);
    font-size: clamp(1rem, 0.938rem + 0.31vw, 1.25rem);
    border-radius: 50%;
    color: #fff;
    background: var(--hue);
}


.footer_t_r {
    width: 57%;
}

.footer_t_r_item1 {
    width: 44%;
}

.footer_t_r_item2 {
    width: 50%;
}

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

.footer_t_r_item_tt span {
    position: relative;
    z-index: 2;
}

.footer_t_r_item_tt::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 60%;
    width: clamp(5.625rem, 4.953rem + 3.36vw, 8.313rem);
    height: clamp(0.313rem, 0.219rem + 0.47vw, 0.688rem);
    background: var(--hue);
    border-radius: clamp(0.188rem, 0.141rem + 0.23vw, 0.375rem);
}


.footer_t_r_list1 a {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    line-height: 38px;
}

.footer_t_r_list1 a .icon {
    width: 14px;
    height: 14px;
    background: url(../images/footer_icon1.png) no-repeat center center;
}

.footer_t_r_list1 a .tt {
    width: calc(100% - 14px);
    padding-left: 8px;
    color: #fff;
}

.footer_t_r_list1 a:hover {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
}


.footer_t_r_list2 {
    gap: clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem);
}

.footer_t_r_list2 .item_t .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: 24px;
    height: 24px;
    font-size: 14px;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
}

.footer_t_r_list2 .item_t .tt {
    width: calc(100% - 24px);
    padding-left: 7px;
}

.footer_t_r_list2 .item_down a {
    color: #fff;
}

.footer_b {
    border-top: 1px solid #506069;
    padding: clamp(0.75rem, 0.625rem + 0.63vw, 1.25rem) 0;
}


.sub_banner_pro {
    padding-top: 105px;
    min-height: clamp(18.75rem, 12.5rem + 31.25vw, 43.75rem);
}

.sub_banner_scroll_dd .sub_banner_pro1_con2{
}
.sub_banner_scroll_dd .swiper-slide{
    height:auto !important;
    padding-top:171px;
}
.sub_banner_scroll_dd .swiper-slide>img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub_banner_scroll {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.sub_banner_scroll_dd,
.sub_banner_scroll_dd .swiper-slide{
    position: relative;
}

.sub_banner_project {
    min-height: clamp(12.5rem, 6.25rem + 31.25vw, 37.5rem);
    height: clamp(7.5rem, 37.5vw, 37.5rem);
}


.sub_banner_scroll img {
    width: 100%;
}


.sub_banner_pro1_con {
    position: relative;
    z-index: 2;
    padding: clamp(1.875rem, 1.406rem + 2.34vw, 3.75rem) 0 clamp(3.5rem, 0.625rem + 9.38vw, 10rem);
}

.sub_banner_pro1_con2 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    padding: 0;
    transform: translate(-50%, -40%);
}


.sub_banner_scroll_dd .sub_banner_pro1_con2{
    height:100%;
    position: relative;
    z-index: 2;
    padding: clamp(1.875rem, 1.406rem + 2.34vw, 3.75rem) 0 clamp(3.5rem, 0.625rem + 9.38vw, 10rem);
}

.sub_banner_pro1_con3 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    padding: 0;
    transform: translate(-50%, 0);
}

.sub_banner_pro1_con3 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    padding: clamp(2.5rem, 2.031rem + 2.34vw, 4.375rem) 0 0;
    transform: translate(-50%, -50%);
}

.sub_banner_pro_title {
    margin-bottom: 5px;
}

.sub_banner_pro_title2 {
    margin-bottom: clamp(1.125rem, 0.625rem + 2.5vw, 3.125rem);
}

.sub_banner_pro_clm {
    gap: 10px;
}

.sub_banner_pro_clm .item {
    line-height: 30px;
}

.sub_banner_pro_clm .item .icon {
    width: 30px;
    height: 30px;
    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;
}

.sub_banner_pro_clm .item .icon img {
    width: clamp(1.125rem, 1.063rem + 0.31vw, 1.375rem);
}

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

.sub_banner_pro_btn_box {
    gap: 10px;
}


.sub_banner_pro_btn1,
.sub_banner_pro_btn2,
.sub_banner_pro_btn3 {
    height: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    gap: 6px;
}

.sub_banner_pro_btn1 .icon,
.sub_banner_pro_btn2 .icon {
    font-size: 20px;
}

.sub_banner_pro_btn1 {
    color: #fff;
    background: #0E2178 !important;
}

.sub_banner_pro_btn2 {
    color: #0E2178;
    background: rgba(255, 255, 255, .5);
    border: 1px solid #0E2178;
}

.sub_banner_pro_btn3 {
    color: #fff;
    background: #25D366 !important;
}

.sub_banner_pro_btn2:hover {
    color: #fff;
    border-color: #0E2178;
    background: #0E2178 !important;
}


.sub_banner_scroll {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.sub_banner_scroll .swiper-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub_banner_scroll_bars {
    position: absolute;
    left: 0;
    bottom: clamp(0.938rem, 0.781rem + 0.78vw, 1.563rem);
    z-index: 2;
    width: 100%;
    gap: clamp(0.5rem, 0.313rem + 0.94vw, 1.25rem);
}

.sub_banner_scroll_bars .item {
    width: clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.sub_banner_scroll_bars .item::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    border: 1px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.sub_banner_scroll_bars .item.active {
    border: 1px solid #fff;
}

.sub_banner_scroll_bars .item.active::after {
    opacity: 0;
}


.pro1_box1_clm1 {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.pro1_box1_clm1 .item {
    overflow: hidden;
}

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


.pro1_box1_scroll1 {
    position: relative;
}

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

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

.pro1_box1_scroll1_item_con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(40, 40, 40, 0) 100%);
    padding: clamp(1.875rem, 0.938rem + 4.69vw, 5.625rem) 15px clamp(1.125rem, 0.75rem + 1.88vw, 2.625rem);
}

.pro1_box1_scroll1_item_tt {
    margin-bottom: 5px;
}

.pro1_box1_scroll1_item_text1 {
    width: 80%;
    margin: 0 auto 5px;
    max-width: 800px;
}

.pro1_box1_scroll1_item_text2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.pro1_box1_scroll1_item_btn {
    width: 210px;
    height: 50px;
    color: #fff;
    background: rgba(255, 255, 255, .4);
    border: 1px solid #fff;
}

.pro1_box1_scroll1_btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    margin-top: calc(clamp(1.875rem, 1.641rem + 1.17vw, 2.813rem) / 2 * -1);
}

.pro1_box1_scroll1_btn.prev {
    left: clamp(0.313rem, -0.609rem + 4.61vw, 4rem);
}

.pro1_box1_scroll1_btn.next {
    right: clamp(0.313rem, -0.609rem + 4.61vw, 4rem);
}

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


.sub_tilte_l {
    width: calc(100% - 120px - clamp(1.25rem, -2.344rem + 17.97vw, 15.625rem));
}

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


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

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

.pro1_box2_scroll_item_pic {
    overflow: hidden;
}

.pro1_box2_scroll_item_pic img {
    width: 100%;
}

.pro1_box2_scroll_item_con {
    padding: clamp(1.125rem, 1.063rem + 0.31vw, 1.375rem) clamp(0.625rem, 0.344rem + 1.41vw, 1.75rem) clamp(1.125rem, 0.969rem + 0.78vw, 1.75rem);
}

.pro1_box2_scroll_item_tt {
    color: #222;
    margin-bottom: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro1_box2_scroll_item_clm .item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    line-height: 30px;
}

.pro1_box2_scroll_item_clm .item .icon {
    width: 20px;
    font-size: 14px;
    line-height: 28px;
}

.pro1_box2_scroll_item_clm .item .tt {
    width: calc(100% - 20px);
    padding-left: 2px;
    color: #666;
}

.pro1_box2_scroll_item_more {
    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: 160px;
    height: 40px;
    color: #666 !important;
    border: 1px solid #666;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}


.pro8_box1_list .pro1_box2_scroll_item_more {
    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(--hue2) !important;
    gap: 6px;
    border: 1px solid var(--hue2);
}

.pro8_box1_list .pro1_box2_scroll_item_more .icon {
    font-weight: bold;
}

.pro8_box1_list .pro1_box2_scroll_item_more:hover {
    color: #fff !important;
    background: var(--hue2);
}

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

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

.pro1_box2_scroll_item:hover .pro1_box2_scroll_item_more {
    color: #fff !important;
    background: var(--hue2);
    border-color: var(--hue2) !important;
}


.pro1_box3_list {
    gap: clamp(0.938rem, 0.828rem + 0.55vw, 1.375rem);
}

.pro1_box3_list_item_pic {
    width: 50%;
    overflow: hidden;
}

.pro1_box3_list_item_pic img {
    width: 100%;
}

.pro1_box3_list_item_con {
    width: 50%;
    padding: 20px clamp(0.938rem, 0.313rem + 3.13vw, 3.438rem);
}

.pro1_box3_list_item_tt {
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro1_box3_list_item_btn {
    color: var(--hue2);
    border-color: var(--hue2);
}

.pro1_box3_list_item_btn:hover {
    background: var(--hue2);
}

.pro1_box3_list_item:nth-child(2n) {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}


.sub_btn_box {
    gap: clamp(0.313rem, 0.078rem + 1.17vw, 1.25rem);
}

.sub_btn_box .sub_btn_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;
    background: #F5F5F5;
    height: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    padding: 0 clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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


.pro1_box3_tabs_l {
    width: 50%;
}

.pro1_box3_tabs_r {
    width: 50%;
    padding: 20px clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}

.pro1_box3_tabs_r_clm {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.pro1_box3_tabs_r_clm_item_tt {
    gap: 8px;
    margin-bottom: 6px;
}

.pro1_box3_tabs_r_clm_item_tt .icon {
    width: 15px;
}

.pro1_box3_tabs_r_clm_item_tt .icon img {
    display: block;
}


.pro1_box3_clm2 {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.pro1_box3_clm2 .item {
    overflow: hidden;
    border: 1px solid #EDEDED;
}


.pro1_box3_clm2_cta {
    background: linear-gradient(to right, #1D5ED7 0, #2C2C7B 100%);
    padding: clamp(2.188rem, 1.484rem + 3.52vw, 5rem) clamp(0.938rem, 0.234rem + 3.52vw, 3.75rem);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}


.pro1_box3_clm2_cta_service {
    background: url(../images/service_bg1.png) no-repeat center center / cover;
}

.pro1_box3_clm2_cta_l {
    width: calc(100% - 270px - 100px);
}

.pro1_box3_clm2_cta_l .tt {
    text-transform: capitalize;
}

.pro1_box3_clm2_cta_r_btn {
    width: 158px;
    height: 40px;
    gap: 7px;
    color: #fff;
    background: rgba(255, 255, 255, .2);
    border: 1px solid #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

.pro1_box_img_text_l {
    width: 48.9%;
}

.pro1_box_img_text_l.videoClick a {
    display: block;
    position: relative;
    overflow: hidden;
}

.pro1_box_img_text_l.videoClick a > img {
    width: 100%;
}

.pro1_box_img_text_l.videoClick a .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(1.875rem, 1.609rem + 1.33vw, 2.938rem);
    transform: translate(-50%, -50%);
}

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

.pro1_box_img_text_l img {
    width: 100%;
}

.pro1_box_img_text_r {
    width: 47.9%;
}


.pro1_box_list1 {
    column-gap: clamp(1.25rem, 0.547rem + 3.52vw, 4.063rem);
    row-gap: clamp(1.125rem, 0.75rem + 1.88vw, 2.625rem);
}

.pro1_box_list1_item_tt {
    margin-bottom: 6px;
}

.pro1_box_list1_item_tt .icon {
    width: 15px;
}

.pro1_box_list1_item_tt .icon img {
    display: block;
}

.pro1_box_list1_item_tt .tt {
    width: calc(100% - 15px);
    padding-left: 7px;
    color: #222;
}


.pro1_box_list2 {
    gap: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
}

.pro1_box_list2 .item .pic {
    overflow: hidden;
}

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

.pro1_form_box {
    border-radius: 3px;
}

.pro1_form_l {
    width: clamp(25rem, 9rem + 25vw, 34rem);
    border-radius: 3px;
    padding: clamp(1.563rem, 0.703rem + 4.3vw, 5rem) clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}


.pro1_form_l_tip {
    line-height: 20px;
}

.pro1_form_l_tip .icon {
    width: 20px;
    font-size: 20px;
    line-height: 1;
}

.pro1_form_l_tip .con {
    width: calc(100% - 20px);
    padding-left: 5px;
}

.pro1_form_l_tip .con a {
    color: #00D9FF;
    text-decoration: underline;
}

.pro1_form_r {
    width: calc(100% - clamp(25rem, 9rem + 25vw, 34rem));
    padding: 20px clamp(0.938rem, 0.313rem + 3.13vw, 3.438rem);
}

.pro1_form_r_list {
    margin: 0;
    padding: 0;
    column-gap: 10px;
    row-gap: 18px;
}

.pro1_form_r_list dd {
    width: calc((100% - 10px) / 2);
    margin: 0;
    padding: 0;
}

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

.pro1_form_r_list_title {
    text-transform: capitalize;
    margin-bottom: 10px;
}

.pro1_form_r_list_text,
.pro1_form_r_list_area {
    display: block;
    width: 100%;
    height: clamp(2.625rem, 2.5rem + 0.63vw, 3.125rem);
    padding-left: 15px;
    font-size: 16px;
    color: #333;
    border-radius: 3px;
    background: #EBEBEB;
    border: 1px solid #BDBDBD;
}

.pro1_form_r_list_area {
    height: 94px;
    padding: 12px 15px;
    resize: none;
}

.pro1_form_r_list_btn {
    display: block;
    width: 150px;
    height: clamp(2.625rem, 2.5rem + 0.63vw, 3.125rem);
    color: #fff;
    background: var(--hue);
    cursor: pointer;
    border-radius: 3px;
    margin: 0 auto;
}


.pro1_faq_list {
    margin: 0;
    padding: 0;
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.pro1_faq_list dd {
    margin: 0;
    padding: 10px clamp(0.938rem, 0.578rem + 1.8vw, 2.375rem);
    border: 1px solid #B4B9C0;
    border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro1_faq_list_title {
    min-height: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    padding: 8px 0;
    cursor: pointer;
}

.pro1_faq_list_title_l {
    width: calc(100% - clamp(1.5rem, 1.406rem + 0.47vw, 1.875rem));
    padding-right: 8px;
}

.pro1_faq_list_title_l .icon {
    color: var(--hue);
    width: clamp(1.25rem, 1.188rem + 0.31vw, 1.5rem);
    font-size: clamp(1.25rem, 1.188rem + 0.31vw, 1.5rem);
    line-height: clamp(1.5rem, 1.406rem + 0.47vw, 1.875rem);
}

.pro1_faq_list_title_l .tt {
    width: calc(100% - clamp(1.25rem, 1.188rem + 0.31vw, 1.5rem));
    padding-left: 10px;
    line-height: clamp(1.5rem, 1.406rem + 0.47vw, 1.875rem);
}

.pro1_faq_list_title_icon {
    width: clamp(1.5rem, 1.406rem + 0.47vw, 1.875rem);
    height: clamp(1.5rem, 1.406rem + 0.47vw, 1.875rem);
    background: url(../images/pro_faq_icon.png) no-repeat center center / 100% auto;
}

.pro1_faq_list_down {
    display: none;
    padding-bottom: clamp(1.125rem, 0.828rem + 1.48vw, 2.313rem);
    padding-left: calc(clamp(1.25rem, 1.188rem + 0.31vw, 1.5rem) + 10px);
}

.pro1_faq_list dd.hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.pro1_faq_list dd.hover .pro1_faq_list_title_icon {
    background: url(../images/pro_faq_icon2.png) no-repeat center center / 100% auto;
}


.rela_pro_scroll_item {
    display: block;
}

.rela_pro_scroll_item .pic {
    overflow: hidden;
}

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

.rela_pro_scroll_item .tt {
    color: #333;
    text-transform: capitalize;
    padding-top: 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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


.pro1_box_list3 {
    margin: 0;
    padding: 0;
    column-gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
    row-gap: clamp(1.375rem, 1.063rem + 1.56vw, 2.625rem);
}

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


.sub_btn_box .pro2_box3_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;
    line-height: 1.2;
    height: clamp(3.125rem, 2.578rem + 2.73vw, 5.313rem) !important;
    background: #fff;
    border-radius: 5px;
}

.pro2_box3_btn {
    height: 50px;
    color: var(--hue2);
    border-color: var(--hue2);
    border-radius: 5px;
}

.pro2_box3_btn:hover {
    color: #fff;
    background: var(--hue2);
}


.pro2_scroll_video_item_pic {
    position: relative;
}

.pro2_scroll_video_item_pic > img {
    width: 100%;
}

.pro2_scroll_video_item_pic .icon {
    position: absolute;
    left: 0;
    top: 0;
    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;
    background: rgba(0, 0, 0, .4);
}

.pro2_scroll_video_item_pic .icon img {
    width: clamp(1.75rem, 1.578rem + 0.86vw, 2.438rem);
}

.pro2_scroll_video_item_pic .icon.icon2 img {
    width: clamp(3rem, 2.516rem + 2.42vw, 4.938rem);
}

.pro2_scroll_video_item_tt {
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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


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

.pro2_box6::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    height: 50%;
    width: 100%;
    background: #f5f5f5;
}


.pro1_box_list4 {
    margin: 0;
    padding: 0;
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

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

.pro1_box_list4_item {
    background: #f5f5f5;
}

.pro1_box_list4_item_pic {
    display: block;
    overflow: hidden;
}

.pro1_box_list4_item_pic img {
    width: 100%;
}

.pro1_box_list4_item_con {
    padding: clamp(1.125rem, 1.047rem + 0.39vw, 1.438rem) clamp(0.938rem, 0.75rem + 0.94vw, 1.688rem) clamp(1.25rem, 1.063rem + 0.94vw, 2rem);
}

.pro1_box_list4_item_tt {
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro1_box_list4_item_btn_box {
    gap: clamp(0.625rem, 0.547rem + 0.39vw, 0.938rem);
}

.pro1_box_list4_item_btn {
    height: 40px;
    gap: 5px;
    color: var(--hue2);
    border: 1px solid var(--hue2);
}

.pro1_box_list4_item_btn .icon {
    font-size: 18px;
}

.pro1_box_list4_item_btn:hover {
    color: #fff;
    background: var(--hue2);
}


.pro1_box_list4_item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

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

.pro1_box_list4_item:hover .pro1_box_list4_item_tt {
    color: var(--hue2);
}

.pro2_box7_list1{
    column-gap: clamp(1.25rem, 0.547rem + 3.52vw, 4.063rem);
}


table {
    width: 100%;
}

table tr td {
    padding: 7px clamp(0.625rem, 0.5rem + 0.63vw, 1.125rem) 10px;
    border: 1px solid #D9D9D9;
    font-family: "Roboto-Medium";
}

table tr:first-child {
    color: #fff;
    background: var(--hue);
}


.pro3_box_cta {
    position: relative;
}

.pro3_box_cta::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 50%;
    background: #f5f5f5;
}


.sub_btn_box {

}

.sub_btn_box2 .pro3_box3_bars_item {
    width: clamp(10rem, 9.375rem + 3.13vw, 12.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;
    line-height: 1.2;
    height: clamp(3.125rem, 2.578rem + 2.73vw, 5.313rem) !important;
    background: #f5f5f5;
    border-radius: 5px;
}

.pro3_box3_tabs_item .pro2_box3_btn {
    width: 210px;
    background: #fff;
}

.pro3_box3_tabs_item .pro2_box3_btn:hover {
    color: #fff;
    background: var(--hue2);
}


.pro4_box2_tabs_item_con {
    padding: clamp(1.25rem, 0.859rem + 1.95vw, 2.813rem) clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}

.pro4_box2_tabs_item_con_l1 {
    width: 34%;
}

.pro4_box2_tabs_item_con_r1 {
    width: 64%;
}

.pro4_box2_tabs_item_con_l2 {
    width: 43%;
}

.pro4_box2_tabs_item_con_r2 {
    width: 54%;
}


.pro4_box2_tabs_item_con_l2_list .item .icon {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #222;
    margin-top: 15px;
}

.pro4_box2_tabs_item_con_l2_list .item .tt {
    width: calc(100% - 5px);
    padding-left: 9px;
    color: #222;
    line-height: 36px;
}


.pro4_box2_tabs_item_con_l2_list2 {
    gap: 3px;
}

.pro4_box2_tabs_item_con_l2_list2 .item .icon {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #666;
    margin-top: 9px;
}

.pro4_box2_tabs_item_con_l2_list2 .item .tt {
    width: calc(100% - 5px);
    padding-left: 9px;
    color: #666;
    line-height: 24px;
}

.pro4_box2_tabs_item_con_l2_list2 .item .tt span {
    font-family: "Roboto-Medium";
}


.pro4_box2_tabs_item_con_r2_scroll {
    width: 100%;
}

.pro4_box2_tabs_item_con_r2_scroll_btn_box {
    position: absolute;
    z-index: 2;
    left: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    bottom: clamp(0.75rem, 0.5rem + 1.25vw, 1.75rem);
    gap: clamp(0.875rem, 0.75rem + 0.63vw, 1.375rem);
}

.pro4_box2_tabs_item_con_r2_scroll_btn {
    color: #222 !important;
    background: #fff;
}

.pro4_box2_tabs_item_con_r2_scroll_btn:hover,
.pro4_box2_tabs_item_con_r2_scroll_btn.hover {
    color: #fff !important;
    background: var(--hue2);
}


.pro4_box3_tabs_l .pro4_box2_tabs_item_con_r2_scroll_btn_box {
    left: auto;
    right: clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.pro4_box3_tabs_l .pro4_box2_tabs_item_con_r2_scroll_btn {
    border-radius: 5px;
}


.pro4_box5_l {
    width: 51.5%;
}


.pro4_box5_l_list_item {
    padding: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem) clamp(0.5rem, 0.156rem + 1.72vw, 1.875rem);
    border-bottom: 1px solid #767676;
}

.pro4_box5_l_list_item_title {
    cursor: pointer;
    min-height: clamp(1.875rem, 1.688rem + 0.94vw, 2.625rem);
}

.pro4_box5_l_list_item_title .tt {
    width: calc(100% - 30px);
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro4_box5_l_list_item_title .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: 20px;
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro4_box5_l_list_item_down {
    display: none;
    padding-top: 10px;
}

.pro4_box5_l_list_item.hover {
    border-bottom: 1px solid var(--hue);
}

.pro4_box5_l_list_item.hover .pro4_box5_l_list_item_title .tt {
    color: var(--hue);
}

.pro4_box5_l_list_item.hover .pro4_box5_l_list_item_title .icon {
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
}


.pro4_box5_r {
    width: 46.45%;
}

.pro4_box5_r .item {
    display: none;
}


.pro4_box6_l {
    width: 40.4%;
}

.pro4_box6_r {
    width: 58.85%;
}


.pro6_box5_l2 {
    width: 45.5%;
}

.pro6_box5_r2 {
    width: 52.5%;
}

.pro4_box5_r3 {
    width: 50%;
}

.pro4_box5_l3 {
    width: 44%;
}


.pro1_box3_tabs_r_clm {
    gap: 15px;
}

.pro1_box3_tabs_r_clm .item .tt {
    margin-bottom: 7px;
}


.pro8_box1_list {
    gap: 30px;
}


.pro8_box1_pic_scroll {
    width: 100%;
    position: relative;
}

.pro8_box1_pic_scroll img {
    width: 100%;
}

.pro8_box1_pic_scroll_bars {
    position: absolute;
    left: 0;
    bottom: 0 !important;
    z-index: 2;
    width: 100%;
    padding: 0 0 17px;
    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.625rem, 0.547rem + 0.39vw, 0.938rem);
}


.pro8_box1_pic_scroll_bars .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    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: 1px solid transparent;
    position: relative;
    opacity: 1;
    margin: 0 !important;
    padding: 0 !important;
    background: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro8_box1_pic_scroll_bars .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.pro8_box1_pic_scroll_bars .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--hue);
}

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


.pro8_box2_l {
    width: 317px;
}

.pro8_box2_l_bars {
    gap: 5px;
    position: sticky;
    top: 105px;
}

.pro8_box2_l_bars .item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    height: clamp(2.5rem, 2.188rem + 1.56vw, 3.75rem);
    padding: 0 clamp(0.875rem, 0.781rem + 0.47vw, 1.25rem);
    border-radius: 5px;
    color: #222;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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


.pro8_box2_r {
    width: calc(100% - 317px - clamp(1.875rem, 0.721rem + 2.4vw, 3.125rem));
}


.pro8_box2_r_tabs {
    gap: clamp(1.875rem, 1.406rem + 2.34vw, 3.75rem);
}


.pro8_box2_r_list2 {
    gap: 30px;
}

.pro8_box2_r_list2_item_pic {
    overflow: hidden;
}

.pro8_box2_r_list2_item_pic img {
    width: 100%;
}

.pro8_box2_r_list2_item_tt {
    margin-bottom: 6px;
}

.pro8_box2_r_list2_item_clm {
    gap: 10px;
}

.pro8_box2_r_list2_item_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: 30px;
    height: 26px;
    font-size: clamp(1.125rem, 1.094rem + 0.16vw, 1.25rem);
    color: var(--hue);
}

.pro8_box2_r_list2_item_clm .item .tt {
    width: calc(100% - 30px);
    line-height: 26px;
}


.pro8_box3 {

}

.pro8_box3_l {
    width: 53.4%;
}

.pro8_box3_r {
    width: 40.48%;
}


.pro8_box3_pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro8_box3_con {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 760px;
    height: 100%;
    background: linear-gradient(to left, rgba(38, 38, 38, 1) 0, rgba(9, 9, 9, 0) 100%);
    padding: 20px clamp(0.938rem, 0.141rem + 3.98vw, 4.125rem);
}

.pro8_box3_btn {
    width: 210px;
    height: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    background: rgba(255, 255, 255, .2);
}


.pro8_box4_list {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}


.pro8_box4_list_item {
    padding: clamp(1.125rem, 0.781rem + 1.72vw, 2.5rem) clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}


.pro8_box5_l {
    width: 37.6%;
}

.pro8_box5_l img {
    width: 100%;
}

.pro8_box5_r {
    width: 59.7%;
}

.pro8_box5_r_list {
    gap: 20px;
}

.pro8_box5_r_list .item {
    border: 1px solid #D3D3D3;
    padding: clamp(1.125rem, 1rem + 0.63vw, 1.625rem) clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}


/* pro_det */
.sub_banner_pro1_con_con {
    width: 100%;
    max-width: 700px;
}


.pro4_box5_r_video a {
    display: block;
    overflow: hidden;
}

.pro4_box5_r_video a > img {
    width: 100%;
}

.pro4_box5_r_video a .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, .5);
}

.pro4_box5_r_video .icon img {
    width: clamp(1.75rem, 1.438rem + 1.56vw, 3rem);
}

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


.pro_det_box3_l {
    width: 48.6%;
}

.pro_det_box3_l img {
    width: 100%;
}

.pro_det_box3_r {
    width: 48%;
}


.pro_det_box3_r_list {
    gap: 18px;
}


.video_title_more {
    color: var(--hue);
    gap: 4px;
}

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


.pro_det_box4_list {
    gap: clamp(1.563rem, 1.484rem + 0.39vw, 1.875rem);
}


.pro_det_box5_l {
    width: clamp(15rem, 10.558rem + 9.25vw, 19.813rem);
    gap: 5px;
}

.pro_det_box5_l .item {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    height: clamp(2.5rem, 1.875rem + 3.13vw, 5rem);
    color: #222;
    padding: 0 clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

.pro_det_box5_r {
    width: calc(100% - clamp(15rem, 10.558rem + 9.25vw, 19.813rem) - 30px);
}


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

.pro_det_box6_scroll_item_pic img {
    width: 100%;
}

.pro_det_box6_scroll_item_con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: clamp(1.25rem, 0.859rem + 1.95vw, 2.813rem) clamp(0.938rem, 0.234rem + 3.52vw, 3.75rem) clamp(1.125rem, 0.313rem + 4.06vw, 4.375rem);
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.pro_det_box6_scroll_item_tt {
    margin-bottom: 10px;
}

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


.pro_det_faq_l {
    width: 52.4%;
}

.pro_det_faq_r {
    width: 44.3%;
}


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

.pro_det_faq_l .pro4_box5_l_list .pro4_box5_l_list_item {
    border: 1px solid #000000;
    padding: clamp(0.188rem, 0.094rem + 0.47vw, 0.563rem) clamp(0.625rem, 0.313rem + 1.56vw, 1.875rem);
    border-radius: clamp(0.5rem, 0.469rem + 0.16vw, 0.625rem);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.pro_det_faq_l .pro4_box5_l_list .pro4_box5_l_list_item.hover {
    border-color: var(--hue);
}

.pro_det_faq_l .pro4_box5_l_list .pro4_box5_l_list_item.hover .pro4_box5_l_list_item_title .tt {
    color: #222;
}

.pro_det_faq_l .pro4_box5_l_list_item_down {
    padding-top: 7px;
    padding-bottom: 12px;
}


.indus_list {
    gap: 7px;
}

.indus_list .item {
    color: #222;
    padding: 0 10px;
    height: clamp(3.125rem, 2.656rem + 2.34vw, 5rem);
    border-radius: 5px;
    background: #F5F5F5;
}

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


.rela_project_scroll_item_pic {
    width: 48%;
    overflow: hidden;
}

.rela_project_scroll_item_pic img {
    width: 100%;
}

.rela_project_scroll_item_con {
    width: 52%;
    padding: 18px clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.rela_project_scroll_item_tt {
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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

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

.rela_project_scroll_item:hover .pro1_box2_scroll_item_more {
    color: #fff !important;
    background: var(--hue2);
    border-color: var(--hue2);
}


.indus_box2_list {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.indus_box2_list .item {
    overflow: hidden;
}

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

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


.project_det_box1 {
    position: relative;
    z-index: 2;
    margin-top: calc(clamp(3.75rem, 1.75rem + 10vw, 11.75rem) * -1);
    padding: clamp(1.563rem, 1.172rem + 1.95vw, 3.125rem) clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}


.project_det_box1_r a {
    display: block;
    overflow: hidden;
    position: relative;
}

.project_det_box1_r a > img {
    width: 100%;
}

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

.project_det_box1_r a .icon img {
    width: clamp(2.25rem, 1.828rem + 2.11vw, 3.938rem);
}

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


.project_det_box1_l {
    width: 47%;
}

.project_det_box1_r {
    width: 50%;
}


.blog_det_page_box {
    border: 1px solid #E2E2E2;
}

.blog_det_page_item {
    width: calc((100% - clamp(3.75rem, 2.813rem + 4.69vw, 7.5rem)) / 2);
    height: clamp(3.75rem, 2.813rem + 4.69vw, 7.5rem);
    padding: 10px clamp(0.625rem, 0.156rem + 2.34vw, 2.5rem);
}

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

.blog_det_page_item .text {
    width: 100%;
}

.blog_det_page_item .text a {
    width: 100%;
    display: block;
    color: #222;
}

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

.blog_det_page_item_back {
    width: clamp(3.75rem, 2.813rem + 4.69vw, 7.5rem);
    height: clamp(3.75rem, 2.813rem + 4.69vw, 7.5rem);
    border-left: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
}


.project_det_tags {
    gap: 10px;
}

.project_det_tags a {
    color: #222;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 5px;
    background: #f5f5f5;
}

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


.service_banner_icon {
    height: clamp(2.375rem, 2.063rem + 1.56vw, 3.625rem);
}


.service_list1 {
    gap: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
}

.service_list1_item_pic {
    overflow: hidden;
}

.service_list1_item_pic img {
    width: 100%;
}

.service_list1_item_tt {
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.service_list1_item .public_btn1 {
    color: var(--hue);
    border-color: var(--hue);
}


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

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

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


.sub_banner_service {
    height: clamp(7.5rem, 37.5vw, 37.5rem);
}


.about_six_t_clm {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;

}

.about_six_t_clm .item {
    width: 25%;
    position: relative;
}

.about_six_t_clm .item::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 5%;
    width: 1px;
    height: 90%;
    background: #fff;
}

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

.about_six_t_clm .item .num {
    margin-bottom: 6px;
}

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


.cus_list1_item {
    padding: 13px;
}

.cus_list1_item_pic {
    width: clamp(21.25rem, 12.019rem + 19.23vw, 31.25rem);
    overflow: hidden;
}

.cus_list1_item_pic img {
    width: 100%;
}

.cus_list1_item_con {
    width: calc(100% - clamp(21.25rem, 12.019rem + 19.23vw, 31.25rem));
    padding: 20px clamp(0rem, -1.375rem + 6.88vw, 5.5rem);
}

.cus_list1_item_con_btn_box {
    gap: 10px;
}

.cus_list1_item_con_btn {
    width: clamp(9.375rem, 8.438rem + 4.69vw, 13.125rem);
    height: clamp(2.5rem, 2.344rem + 0.78vw, 3.125rem);
    color: var(--hue2);
    border-color: var(--hue2);
}

.cus_list1_item_con_btn:hover,
.cus_list1_item_con_btn.hover {
    color: #fff;
    background: var(--hue2);
}


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


.cus_box1_clm1_l {
    width: 52.08%;
}

.cus_box1_clm1_r {
    width: 47.92%;
    padding: 20px clamp(0.938rem, 0.078rem + 4.3vw, 4.375rem);
}


.after_box1_l {
    width: 44.7%;
}

.after_box1_r {
    width: 49%;
}


.after_list1 {
    column-gap: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem);
    row-gap: clamp(1.875rem, 1.563rem + 1.56vw, 3.125rem);
}

.after_list1_item .pic {
    overflow: hidden;
}

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

.after_list1_item .tt {
    color: #222;
}


.after_list2 {
    gap: 20px;
}

.after_list2_item_l {
    width: 49%;
    overflow: hidden;
}

.after_list2_item_l img {
    width: 100%;
}

.after_list2_item_r {
    width: 51%;
    padding: 20px clamp(0.938rem, -0.156rem + 5.47vw, 5.313rem);
}

.after_list2_item:nth-child(2n) {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}


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

.after_list2_item_r_b .text a {
    line-height: 1.5;
    color: #444;
}

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


.down_ist {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

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

.down_ist_item {
    background: #f5f5f5;
    padding: 10px;
}

.down_ist_item_pic {
    width: 90px;
    overflow: hidden;
}

.down_ist_item_con {
    width: calc(100% - 90px);
    padding: 18px clamp(0.938rem, 0.719rem + 1.09vw, 1.813rem);
}

.down_ist_item_con_clm {
    gap: 20px;
}

.down_ist_item_con_clm .item {
    gap: 6px;
}

.down_ist_item_con_clm .item .icon {
    color: var(--hue);
}

.down_ist_item_con_tt {
    color: #222;
    margin-bottom: 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.down_ist_item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

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


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


.about_box1_l {
    width: 48.05%;
}

.about_box1_r {
    width: 49.02%;
}

.about_box1_r2 {
    width: 50%;
}

.about_box1_r a {
    display: block;
    position: relative;
    overflow: hidden;
}

.about_box1_r a > img {
    width: 100%;
}

.about_box1_r a .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(3.125rem, 2.016rem + 5.55vw, 7.563rem);
    transform: translate(-50%, -50%);
}

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


.about_box1_clm2 .item {
    border-right: 1px solid #D9D9D9;
}

.about_box1_clm2 .item .num {
    margin-bottom: 8px;
}


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

.about_box2_item {
    padding-top: clamp(2.5rem, 0.031rem + 12.34vw, 12.375rem);
    height: clamp(18.75rem, 14.063rem + 23.44vw, 37.5rem);
    width: 16.66%;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #FFFFFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.about_box2_item.hover {
    width: 33.33%;
    text-align: left;
    padding-left: clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
    padding-right: clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}

.about_box2_item_icon {
    width: clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem);
    height: clamp(3.75rem, 3.125rem + 3.13vw, 6.25rem);
    position: relative;
    margin: 0 auto 14px;
}

.about_box2_item_icon .icon2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.about_box2_item_text {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.about_box2_item.hover .about_box2_item_icon {
    margin-left: 0;
}

.about_box2_item.hover .about_box2_item_icon .icon1 {
    opacity: 0;
}

.about_box2_item.hover .about_box2_item_icon .icon2 {
    opacity: 1;
}

.about_box2_item.hover .about_box2_item_text {
    max-height: calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.5 * 6);
}


.about_box2_scroll_item {
    height: clamp(18.75rem, 14.489rem + 21.31vw, 28.125rem);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 5%;
    text-align: center;
}

.about_box2_scroll_item .about_box2_item_text {
    max-height: calc(clamp(0.875rem, 0.828rem + 0.2vw, 1rem) * 1.5 * 6);
}


.about_box3_list {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}


.about_box3_list_item {
    background: #F5F5F5;
}

.about_box3_list_item_pic {
    overflow: hidden;
}

.about_box3_list_item_pic img {
    width: 100%;
}

.about_box3_list_item_con {
    padding: clamp(1.25rem, 1.172rem + 0.39vw, 1.563rem) clamp(0.938rem, 0.391rem + 2.73vw, 3.125rem);
}

.about_box3_list_item_clm {
    gap: 6px;
}

.about_box3_list_item_clm .item .icon {
    width: 30px;
    height: 30px;
    background: url(../images/about_list_icon.png) no-repeat center center;
}

.about_box3_list_item_clm .item .tt {
    width: calc(100% - 30px);
    color: #222;
}

.about_box3_list_item_clm .item:hover {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
}


.about_box5_list {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.about_box5_list_item {
    background: #f5f5f5;
}

.about_box5_list_item_pic {
    width: clamp(12.5rem, 8.462rem + 8.41vw, 16.875rem);
}

.about_box5_list_item_pic img {
    width: 100%;
}

.about_box5_list_item_con {
    width: calc(100% - clamp(12.5rem, 8.462rem + 8.41vw, 16.875rem));
    padding: clamp(1.125rem, 0.625rem + 2.5vw, 3.125rem) clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
}

.about_box5_list_item_con_tt1 {
    margin-bottom: 5px;
}


.about_box2_scroll_box {
    display: none;
}


.cer_list1 {
    gap: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem);
}


.cer_bars {
    border-bottom: clamp(0.125rem, 0.094rem + 0.16vw, 0.25rem) solid #222;
}

.cer_bars a {
    color: #222;
    padding: clamp(0.938rem, 0.797rem + 0.7vw, 1.5rem) 15px;
}

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


.cer_list2 {
    margin: 0;
    padding: 0;
    gap: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem);
}

.cer_list2 dd {
    margin: 0;
    padding: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.cer_list2_item {
    display: block;
}


.cer_list2_item_pic {
    padding: clamp(0.5rem, 0.344rem + 0.78vw, 1.125rem);
    background: #F5F5F5;
}

.cer_list2_item_pic img {
    width: 100%;
}

.cer_list2_item_con {
    padding: 18px 0 0;
}

.cer_list2_item_con .tt {
    margin-bottom: 5px;
}

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


.news_bars {
    position: relative;
    z-index: 3;
    margin-top: -20px;
    background: #fff;
    padding: 0 15px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.news_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;
    padding: 0 25px;
    color: #222;
    gap: 5px;
    height: clamp(3.125rem, 2.656rem + 2.34vw, 5rem);
}

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


.news_list1 {
    margin: 0;
    padding: 0;
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

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

.news_list1_item {
    display: block;
}

.news_list1_item_pic {
    overflow: hidden;
}

.news_list1_item_pic img {
    width: 100%;
}

.news_list1_item_con {
    width: calc(100% - clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem) * 2);
    margin: calc(clamp(1.25rem, 0.625rem + 3.13vw, 3.75rem) * -1) auto 0;
    position: relative;
    border-radius: 5px;
    background: #f5f5f5;
    padding: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem) clamp(0.625rem, 0.391rem + 1.17vw, 1.563rem);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}


.ind_box6_list_item_con_time {
    color: var(--hue);
    margin-bottom: 6px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box6_list_item_con_tt {
    color: #222;
    margin-bottom: 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.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_con {
    background: var(--hue);
}

.news_list1_item:hover .ind_box6_list_item_con_time,
.news_list1_item:hover .ind_box6_list_item_con_tt {
    color: #fff;
}

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


.news_det_l {
    width: calc(100% - 333px - 36px);
}
.news_det_r_title{
    
}

.news_det_clm {
    gap: 6px;
    height:50px;
    padding-bottom: clamp(1.063rem, 0.938rem + 0.63vw, 1.563rem);
    border-bottom: 1px solid #D9D9D9;
}


.news_det_r {
    width: 333px;
}

.news_det_r_title {
    height:50px;
    padding-bottom: clamp(1.063rem, 0.938rem + 0.63vw, 1.563rem);
    border-bottom: 1px solid #D9D9D9;
}

.news_det_r_list1 {
    gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.news_det_r_list1 a .text {
    color: #222;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

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


.contact_box1_con {
    border-radius: 3px;
    padding: clamp(1.563rem, 1.094rem + 2.34vw, 3.438rem) clamp(0.938rem, 0.547rem + 1.95vw, 2.5rem);
    background: #F5F5F5;
}

.contact_box1_con_l {
    width: 38%;
}


.contact_box1_con_l_list {
    column-gap: 15px;
    row-gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.contact_box1_con_l_list_item {
    width: calc((100% - 15px) / 2);
}

.contact_box1_con_l_list_item2 {
    width: 100%;
}

.contact_box1_con_l_list_item_tt {
    margin-bottom: 10px;
}

.contact_box1_con_l_list_item_tt .icon {
    width: 24px;
    height: 24px;
    color: var(--hue);
    font-size: 14px;
    border: 1px solid var(--hue);
    border-radius: 50%;
}

.contact_box1_con_l_list_item_tt .tt {
    width: calc(100% - 24px);
    padding-left: 7px;
}

.contact_box1_con_l_list_item_text a {
    color: #222;
}

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

.contact_box1_con_l_list_item_tip .icon {
    width: 20px;
    font-size: 20px;
    color: var(--hue);
    line-height: 1;
}

.contact_box1_con_l_list_item_tip .tt {
    width: calc(100% - 20px);
    padding-left: 8px;
}

.contact_box1_con_l_list_item_tip .tt a {
    color: #666;
}

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


.contact_box1_con_r {
    width: 55%;
}


.contact_box2 > img {
    width: 100%;
}


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

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