@charset "utf-8";
/* 初始化*/
* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scrollbar-width: thin;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
}

body {
    min-height: 100%;
    font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
    font-size: 16px;
    color: #000;
    background: #fff;
}

html,
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

img {
    max-width: 100%;
    max-height: 100%;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 120%;
}

input,
textarea {
    resize: none;
}

    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    button {
        -webkit-appearance: none;
        appearance: none;
    }

ul.swiper-wrapper {
    margin: 0;
    padding: 0;
}

.logo {
    display: block;
    margin: auto;
}
/* Flex 布局 */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.f_column {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.f_column_right {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.f_row {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

.f_row_right {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.j_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.j_end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.j_start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.j_justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.j_around {
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.a_start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.a_end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.a_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.a_baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.a_stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.a_s_stretch {
    -webkit-box-self: stretch;
    -ms-align-self: stretch;
    -webkit-align-self: stretch;
    align-self: stretch;
}

.a_s_center {
    -webkit-box-self: center;
    -ms-align-self: center;
    -webkit-align-self: center;
    align-self: center;
}

.a_s_end {
    -webkit-box-self: end;
    -ms-align-self: end;
    -webkit-align-self: end;
    align-self: end;
}

.flex_wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.center_box {
    position: relative;
    z-index: 5;
}

.dh {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
    display: block;
}

.wap,
.mobile {
    display: none;
}

@media (max-width:990px) {
    .pc {
        display: none;
    }

    .wap,
    .mobile {
        display: block;
    }
}

.img_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mar_b {
    margin-bottom: 0 !important;
}

.mar_t {
    margin-top: 0 !important;
}

.pad_b {
    padding-bottom: 0 !important;
}

.pad_t {
    padding-top: 0 !important;
}

.h100 {
    height: 100%;
}

:root {
    /* COLOR */
    --active_color: #ff6a12;
    --color_fff: #ffffff;
    --color_text: #282828;
    --color_f6f: #f6f6f6;
    --color_f4f: #f4f4f4;
    --color_eee: #eeeeee;
    --color_ddd: #dddddd;
    --color_bbb: #bbbbbb;
    --color_999: #999999;
    --color_666: #666666;
    --color_444: #444444;
    --color_333: #333333;
    --font12: 12px;
    --font14: 14px;
    --font16: 16px;
    --font18: 18px;
    --font20: 20px;
    --font22: 22px;
    --font24: 24px;
    --font26: 26px;
    --font28: 28px;
    --font30: 30px;
    --font32: 32px;
    --font34: 34px;
    --font36: 36px;
    --font38: 38px;
    --font40: 40px;
    --font42: 42px;
    --font44: 44px;
    --font46: 46px;
    --font48: 48px;
    --font50: 50px;
    --font52: 52px;
    --font54: 54px;
    --font56: 56px;
    --font58: 58px;
    --font60: 60px;
    --font66: 66px;
    --font70: 70px;
    --font72: 72px;
    --font80: 80px;
    --font64: 64px;
    --font100: 100px;
    --font120: 120px;
    --font160: 160px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font26 {
    font-size: 26px;
}

.font28 {
    font-size: 28px;
}

.font30 {
    font-size: 30px;
}

.font32 {
    font-size: 32px;
}

.font34 {
    font-size: 34px;
}

.font36 {
    font-size: 36px;
}

.font38 {
    font-size: 38px;
}

.font40 {
    font-size: 40px;
}

.font42 {
    font-size: 42px;
}

.font44 {
    font-size: 44px;
}

.font46 {
    font-size: 46px;
}

.font48 {
    font-size: 48px;
}

.font50 {
    font-size: 50px;
}

.font52 {
    font-size: 52px;
}

.font54 {
    font-size: 54px;
}

.font56 {
    font-size: 56px;
}

.font58 {
    font-size: 58px;
}

.font60 {
    font-size: 60px;
}

.font66 {
    font-size: 66px;
}

.font70 {
    font-size: 70px;
}

.font72 {
    font-size: 72px;
}

.font80 {
    font-size: 80px;
}

.font64 {
    font-size: 64px;
}

.font100 {
    font-size: 100px;
}

.font120 {
    font-size: 120px;
}

.font160 {
    font-size: 160px;
}

.pb740 {
    padding-bottom: 740px;
}

.mt20 {
    margin-top: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pb40 {
    padding-bottom: 40px !important;
}

.mt10 {
    margin-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.mt30 {
    margin-top: 30px;
}

.p20 {
    padding: 20px;
}

.bg1 {
    background: #fff6ea;
}

.bo1 {
    border: 1px solid #f7d690;
}

.borr4 {
    border-radius: 4px;
}

.juL {
    justify-content: left !important;
}

.tec {
    text-align: center;
}

.teR {
    text-align: right;
}

.ts {
    text-shadow: #FFF7ED 2px 0 0, #FFF7ED 0 2px 0, #FFF7ED -2px 0 0, #FFF7ED 0 -2px 0;
}

.ts1 {
    text-shadow: #cd6a0a 2px 0 0, #cd6a0a 0 2px 0, #cd6a0a -2px 0 0, #cd6a0a 0 -2px 0;
}

.ts2 {
    text-shadow: #ca0100 2px 0 0, #ca0100 0 2px 0, #ca0100 -2px 0 0, #ca0100 0 -2px 0;
}

.dg2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.coffddb7 {
    color: #ffddb7;
}

.grid2 {
    grid-column: span 2;
}

.faj {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
}

.w826 {
    width: 826px;
}

.w360 {
    width: 360px;
}

.coAc {
    color: var(--active_color);
}

.co99 {
    color: #999999;
}

.co33 {
    color: #333333;
}

.co66 {
    color: #666666;
}

.tc {
    text-align: center;
}

.co38 {
    color: #388bfa;
}

.co4a {
    color: #4aa644;
}

.cob5 {
    color: #b54a15;
}

.codc {
    color: #dc4f4f;
}

.co5e {
    color: #5ea82c;
}

.fw600 {
    font-weight: 600;
}

.lh18 {
    line-height: 1.8;
}

.w100 {
    width: 100% !important;
}

.bg_lo {
    background: url(/content/v2/v3/img/login-1.png);
    background-size: cover;
}

.bg_h3 {
    background: url(/content/v2/v3/img/header-t-3.png);
    background-size: cover;
}

.bg_b1 {
    background: url(/content/v2/v3/img/bg-1.png);
    background-size: cover;
}

.bg_b {
    background: #ff6a12;
    position: relative;
    z-index: 1;
}

    .bg_b::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 50%;
        background: #ffbc8b;
        opacity: 0.2;
        z-index: -1;
    }

.bot1 {
    border-bottom: 1px solid #CCCCCC;
}

.gap30 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
}

.h40 {
    height: 40px !important;
}

.cTer {
    align-items: center;
}

.w140 {
    min-width: 140px;
}

.ins_title {
    width: 100%;
    height: auto;
}

    .ins_title .title {
        position: relative;
        font-family: Microsoft YaHei;
        font-weight: bold;
        font-size: 20px;
        color: #FF6A12;
        line-height: 40px;
        text-align: center;
        background: linear-gradient(0deg, #FFF7ED 0%, #FFDEAF 48%, #FFF7ED 99%);
        text-shadow: #fff 2px 0 0, #fff 0 2px 0, #fff -2px 0 0, #fff 0 -2px 0;
    }

        .ins_title .title span {
            position: relative;
            z-index: 3;
        }

        .ins_title .title::before {
            position: absolute;
            content: "";
            left: 0;
            width: 100%;
            height: 50%;
            bottom: 0;
            background: linear-gradient(to top, #FFE9CB 0%, #FFD18A 98%);
        }

.ins_title2 {
    width: 100%;
    height: 50px;
    background: linear-gradient(0deg, #FFF7ED 0%, #FFDEAF 48%, #FFF7ED 99%);
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

    .ins_title2 .title {
        position: relative;
        font-family: Microsoft YaHei;
        font-weight: bold;
        font-size: 20px;
        color: #FF6A12;
        line-height: 40px;
        width: fit-content;
        text-align: center;
        text-shadow: #fff 2px 0 0, #fff 0 2px 0, #fff -2px 0 0, #fff 0 -2px 0;
    }

        .ins_title2 .title span {
            position: relative;
            z-index: 3;
            width: fit-content;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
        }

    .ins_title2::before {
        position: absolute;
        content: "";
        left: 0;
        width: 100%;
        height: 50%;
        bottom: 0;
        background: linear-gradient(to top, #FFE9CB 0%, #FFD18A 98%);
    }

    .ins_title2 .btnH {
        width: fit-content;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        font-size: var(--font14);
        position: relative;
        z-index: 2;
        gap: 14px;
    }

        .ins_title2 .btnH a {
            text-shadow: unset;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            padding: 0 17px;
            height: 26px;
            font-size: 14px;
            color: #965132;
            border: 1px solid #ddc4a5;
            position: relative;
            z-index: 1;
        }

            .ins_title2 .btnH a::after {
                content: '';
                position: absolute;
                bottom: 1px;
                right: 1px;
                width: calc(100% - 4px);
                height: calc(100% - 4px);
                border: 1px solid #FFF;
                -webkit-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .ins_title2 .btnH a.balck {
                background: #f8f6f3;
                color: #000000;
            }

.secondOnSeriesSelection1-c table.w120 th:nth-child(1) {
    width: 120px;
}

.secondOnSeriesSelection1-c table.w120 th:nth-child(2) {
    width: 150px;
}

.secondOnSeriesSelection1-c table.w120 th:nth-child(3) {
    width: 330px;
}

.secondOnSeriesSelection1-c table.w120 th:nth-child(4) {
    width: 158px;
}

.secondOnSeriesSelection1-c table.w120 th:nth-child(5) {
    width: 140px;
}

.secondOnSeriesSelection1-c table.w120 th:nth-child(6) {
    width: 160px;
}

.secondOnSeriesSelection1-c table td button {
    font-size: var(--font14);
    width: 80px;
    height: 26px;
    background: var(--active_color);
    border: 0;
    border-radius: 4px;
    color: #FFFFFF;
    cursor: pointer;
}

    .secondOnSeriesSelection1-c table td button.over {
        background: #e6e6e6;
        color: #666666;
        border: 1px solid #bbbbbb;
    }

.insCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

    .insCon1 .con1 {
        height: auto;
        border: 1px solid #f7d690;
    }

        .insCon1 .con1 .title {
            width: 100%;
            height: 40px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            background: url(/content/v2/v3/img/bg-1.png);
            background-size: cover;
            text-shadow: #FFF7ED 2px 0 0, #FFF7ED 0 2px 0, #FFF7ED -2px 0 0, #FFF7ED 0 -2px 0;
            font-size: var(--font20);
            font-weight: 600;
            color: var(--active_color);
            border-bottom: 1px solid #f7d690;
        }

        .insCon1 .con1 .cont {
            width: 100%;
            height: auto;
            padding: 11px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-orient: vertical;
            -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
            gap: 11px;
        }

            .insCon1 .con1 .cont > div {
                width: 100%;
                height: auto;
                gap: 10px;
            }

                .insCon1 .con1 .cont > div a {
                    width: 100%;
                    height: 32px;
                    border-radius: 4px;
                    background: #ff9933;
                    border: 1px solid #ff6a12;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    color: #FFFFFF;
                    font-size: var(--font14);
                }

            .insCon1 .con1 .cont .list {
                display: grid;
                grid-template-columns: repeat(14, 1fr);
            }

            .insCon1 .con1 .cont .list2 {
                display: grid;
                grid-template-columns: repeat(12, 1fr);
            }

            .insCon1 .con1 .cont .list3 {
                display: grid;
                grid-template-columns: repeat(11, 1fr);
            }

                .insCon1 .con1 .cont .list3 a {
                    background: #ff6a12;
                    border-color: #ee4603;
                }

            .insCon1 .con1 .cont .list4 {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
            }

                .insCon1 .con1 .cont .list4 a {
                    background: none;
                    color: #000000;
                    border-color: #cccccc;
                }

.userBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 13px;
    gap: 8px;
}

    .userBox a {
        width: fit-content;
    }

    .userBox div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 8px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

.ins_userCon1 {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

    .ins_userCon1 .center_box {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        border: 1px solid #e6e6e6;
        padding: 20px;
        border-radius: 5px;
    }

        .ins_userCon1 .center_box .images_box {
            width: 175px;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-orient: vertical;
            -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

            .ins_userCon1 .center_box .images_box::after {
                content: '';
                position: absolute;
                right: 0;
                width: 1px;
                height: 90%;
                top: 5%;
                border-right: 1px dashed #d1d1d1;
            }

            .ins_userCon1 .center_box .images_box .icon {
                width: 120px;
                height: 120px;
                border-radius: 120px;
                overflow: hidden;
            }

                .ins_userCon1 .center_box .images_box .icon img {
                    width: 100%;
                    height: auto;
                }

            .ins_userCon1 .center_box .images_box .word {
                width: 100%;
                height: auto;
                text-align: center;
                margin-top: 14px;
            }

                .ins_userCon1 .center_box .images_box .word .t2 {
                    margin-top: 6px;
                }

        .ins_userCon1 .center_box .user_box {
            width: 638px;
            height: auto;
            padding: 0 30px;
            position: relative;
            z-index: 1;
        }

            .ins_userCon1 .center_box .user_box::after {
                content: '';
                position: absolute;
                right: 0;
                width: 1px;
                height: 90%;
                top: 5%;
                border-right: 1px dashed #d1d1d1;
            }

            .ins_userCon1 .center_box .user_box .list_box {
                width: 100%;
                height: auto;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
            }

                .ins_userCon1 .center_box .user_box .list_box .list {
                    width: 100%;
                    height: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -ms-flex-direction: column;
                    -webkit-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    position: relative;
                    z-index: 1;
                }

                    .ins_userCon1 .center_box .user_box .list_box .list::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        width: 1px;
                        height: 100%;
                        background: #e6e6e6;
                    }

                    .ins_userCon1 .center_box .user_box .list_box .list .t1 {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-orient: vertical;
                        -ms-flex-direction: column;
                        -webkit-flex-direction: column;
                        flex-direction: column;
                        gap: 8px;
                    }

                    .ins_userCon1 .center_box .user_box .list_box .list:last-child::after {
                        opacity: 0;
                    }

            .ins_userCon1 .center_box .user_box .contBox {
                width: 100%;
                height: auto;
                background: #fff6ea;
                border: 1px solid #f7d690;
                margin-top: 30px;
                border-radius: 5px;
            }

                .ins_userCon1 .center_box .user_box .contBox .con1 {
                    width: 100%;
                    height: 50px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    -webkit-justify-content: space-between;
                    justify-content: space-between;
                    font-size: var(--font14);
                    padding: 0 13px;
                }

                    .ins_userCon1 .center_box .user_box .contBox .con1 .riB,
                    .ins_userCon1 .center_box .user_box .contBox .con1 .leB {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        gap: 8px;
                    }

                    .ins_userCon1 .center_box .user_box .contBox .con1 .bg {
                        width: 90px;
                        height: 28px;
                        color: #FFF;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                    }

                .ins_userCon1 .center_box .user_box .contBox .btr {
                    border-top: 1px solid #f7d690;
                }

        .ins_userCon1 .center_box .signin_box {
            width: 389px;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-orient: vertical;
            -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

            .ins_userCon1 .center_box .signin_box .btn {
                margin-top: 10px;
                width: 308px;
                height: 60px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                background: #ff9933;
                border-radius: 10px;
                gap: 10px;
                color: #FFFFFF;
                cursor: pointer;
                position: relative;
                z-index: 1;
                overflow: hidden;
            }

                .ins_userCon1 .center_box .signin_box .btn::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 100%;
                    height: 50%;
                    background: #ffa348;
                    z-index: -1;
                }

            .ins_userCon1 .center_box .signin_box .wor {
                margin-top: 30px;
            }

.ins_userCon2 {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

    .ins_userCon2 .center_box {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

        .ins_userCon2 .center_box .left_box {
            width: 230px;
            height: 100%;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            z-index: 1;
            border-bottom: 1px solid #f7d690;
        }

            .ins_userCon2 .center_box .left_box .item_box {
                width: 100%;
                height: auto;
                position: relative;
                z-index: 2;
            }

                .ins_userCon2 .center_box .left_box .item_box .item {
                    width: 100%;
                    height: auto;
                }

                    .ins_userCon2 .center_box .left_box .item_box .item .title {
                        font-size: var(--font20);
                        height: 50px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        padding: 0 46px;
                        background: #ff6a12;
                        position: relative;
                        z-index: 1;
                        color: #FFFFFF;
                        font-weight: 600;
                    }

                        .ins_userCon2 .center_box .left_box .item_box .item .title::after {
                            content: '';
                            position: absolute;
                            top: 0;
                            right: 0;
                            width: 100%;
                            height: 50%;
                            background: #ffbc8b;
                            opacity: 0.2;
                            z-index: -1;
                        }

                    .ins_userCon2 .center_box .left_box .item_box .item .list {
                        width: 100%;
                        height: auto;
                        position: relative;
                        z-index: 1;
                    }

                        .ins_userCon2 .center_box .left_box .item_box .item .list::after {
                            content: '';
                            position: absolute;
                            z-index: 3;
                            bottom: 0;
                            right: 0;
                            width: 1px;
                            height: 100%;
                            background: #f7d690;
                        }

                        .ins_userCon2 .center_box .left_box .item_box .item .list .one {
                            width: 100%;
                            height: 40px;
                            padding: 0 46px;
                            font-size: var(--font16);
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                            color: #666666;
                            background: #fff6ea;
                            position: relative;
                            z-index: 1;
                        }

                            .ins_userCon2 .center_box .left_box .item_box .item .list .one::after {
                                content: '';
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                width: 4px;
                                height: 100%;
                                background: #ffd28e;
                            }

                            .ins_userCon2 .center_box .left_box .item_box .item .list .one::before {
                                content: '';
                                position: absolute;
                                bottom: 0;
                                right: 0;
                                width: 100%;
                                height: 1px;
                                background: #FFF;
                            }

                            .ins_userCon2 .center_box .left_box .item_box .item .list .one.active {
                                background: #FFFFFF;
                                color: var(--active_color);
                            }

                                .ins_userCon2 .center_box .left_box .item_box .item .list .one.active::after {
                                    background: #ff6a12;
                                }

                            .ins_userCon2 .center_box .left_box .item_box .item .list .one:hover {
                                color: var(--active_color);
                            }

        .ins_userCon2 .center_box .right_box {
            width: 934px;
            height: 100%;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            z-index: 1;
            border: 1px solid #f7d690;
            padding-bottom: 10px;
        }

            .ins_userCon2 .center_box .right_box .ins_title .title {
                width: 100%;
                height: 50px;
                padding: 0 20px;
                text-align: start;
            }

            .ins_userCon2 .center_box .right_box .cont1 {
                width: 100%;
                height: auto;
                padding: 20px;
            }

                .ins_userCon2 .center_box .right_box .cont1 .tableBox {
                    width: 100%;
                    height: auto;
                }

                    .ins_userCon2 .center_box .right_box .cont1 .tableBox table,
                    .ins_userCon2 .center_box .right_box .cont1 .tableBox th,
                    .ins_userCon2 .center_box .right_box .cont1 .tableBox td {
                        border: 1px solid #e6e6e6;
                        border-collapse: collapse;
                    }

                    .ins_userCon2 .center_box .right_box .cont1 .tableBox table {
                        width: 100%;
                        height: auto;
                    }

                        .ins_userCon2 .center_box .right_box .cont1 .tableBox table tr {
                            width: 100%;
                            height: auto;
                        }

                            .ins_userCon2 .center_box .right_box .cont1 .tableBox table tr td:first-child {
                                width: 100px;
                            }

                            .ins_userCon2 .center_box .right_box .cont1 .tableBox table tr td {
                                padding: 0 20px;
                                height: 60px;
                                line-height: 60px;
                                font-size: var(--font14);
                                color: #333333;
                            }

                                .ins_userCon2 .center_box .right_box .cont1 .tableBox table tr td input {
                                    width: 100%;
                                    height: 40px;
                                    border: 1px solid #cccccc;
                                    padding: 0 20px;
                                }

                                .ins_userCon2 .center_box .right_box .cont1 .tableBox table tr td .green {
                                    width: 100px;
                                    height: 32px;
                                    background: #66cc99;
                                    display: inline-flex;
                                    -webkit-box-align: center;
                                    -ms-flex-align: center;
                                    -webkit-align-items: center;
                                    align-items: center;
                                    -webkit-box-pack: center;
                                    -ms-flex-pack: center;
                                    -webkit-justify-content: center;
                                    justify-content: center;
                                    color: #FFFFFF;
                                }

                                .ins_userCon2 .center_box .right_box .cont1 .tableBox table tr td span {
                                    display: inline-block;
                                    padding-right: 10px;
                                }

                            .ins_userCon2 .center_box .right_box .cont1 .tableBox table tr:nth-child(2n) {
                                background: #fff6ea;
                            }

            .ins_userCon2 .center_box .right_box .inp {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                gap: 10px;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                font-size: var(--font14);
            }

                .ins_userCon2 .center_box .right_box .inp span {
                    width: 70px;
                    text-align: end;
                }

                .ins_userCon2 .center_box .right_box .inp input {
                    width: 200px;
                    height: 40px;
                    border: 1px solid #cccccc;
                    padding: 0 20px;
                }

            .ins_userCon2 .center_box .right_box .inpB {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                gap: 10px;
                padding-left: 20px;
            }

                .ins_userCon2 .center_box .right_box .inpB .one {
                    width: fit-content;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -ms-flex-direction: column;
                    -webkit-flex-direction: column;
                    flex-direction: column;
                    gap: 20px;
                }

                    .ins_userCon2 .center_box .right_box .inpB .one .sp {
                        width: 100%;
                        min-height: 40px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        font-size: var(--font14);
                    }

                    .ins_userCon2 .center_box .right_box .inpB .one .teR {
                        -webkit-box-pack: end;
                        -ms-flex-pack: end;
                        -webkit-justify-content: flex-end;
                        justify-content: flex-end;
                        text-align: end;
                    }

                    .ins_userCon2 .center_box .right_box .inpB .one input {
                        width: 200px;
                        height: 40px;
                        border: 1px solid #cccccc;
                        padding: 0 20px;
                    }

                    .ins_userCon2 .center_box .right_box .inpB .one .in {
                        border: 1px solid #cccccc;
                        width: auto;
                        height: auto;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                    }

                        .ins_userCon2 .center_box .right_box .inpB .one .in input {
                            width: 140px;
                            height: 40px;
                            border: 0;
                        }

                        .ins_userCon2 .center_box .right_box .inpB .one .in button {
                            width: 100px;
                            height: 40px;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            -webkit-justify-content: center;
                            justify-content: center;
                            background: #efefef;
                            border: 0;
                            font-size: var(--font14);
                            border-left: 1px solid #cccccc;
                            cursor: pointer;
                        }

            .ins_userCon2 .center_box .right_box .sussBox {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-orient: vertical;
                -ms-flex-direction: column;
                -webkit-flex-direction: column;
                flex-direction: column;
                gap: 30px;
                padding-top: 40px;
                padding-bottom: 30px;
            }

            .ins_userCon2 .center_box .right_box .buX,
            .ins_userCon2 .center_box .right_box .copy {
                width: fit-content;
                padding: 0 18px;
                height: 40px;
                background: #efefef;
                color: #333333;
                border: 1px solid #cccccc;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
            }

            .ins_userCon2 .center_box .right_box .cont2 {
                width: 100%;
                height: auto;
                padding: 20px;
            }

                .ins_userCon2 .center_box .right_box .cont2 .item_box {
                    width: 100%;
                    height: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    position: relative;
                    z-index: 1;
                    padding-bottom: 4px;
                }

                    .ins_userCon2 .center_box .right_box .cont2 .item_box::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        width: 100%;
                        height: 4px;
                        background: var(--active_color);
                    }

                    .ins_userCon2 .center_box .right_box .cont2 .item_box .item {
                        width: 120px;
                        height:32px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        font-size: var(--font16);
                        color: #333333;
                        cursor: pointer;
                    }

                        .ins_userCon2 .center_box .right_box .cont2 .item_box .item:hover {
                            color: var(--active_color);
                        }

                        .ins_userCon2 .center_box .right_box .cont2 .item_box .item.active {
                            background: var(--active_color);
                            color: #FFFFFF;
                        }

                .ins_userCon2 .center_box .right_box .cont2 .listBox1 {
                    display: none;
                }

                    .ins_userCon2 .center_box .right_box .cont2 .listBox1.active {
                        display: block !important;
                    }

            .ins_userCon2 .center_box .right_box .gCon1 {
                width: 100%;
                height: auto;
                padding: 20px;
                line-height: 1.8;
            }

.bcBox {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

    .bcBox .more {
        width: 110px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        background: url(/content/v2/v3/img/bg1.png);
        background-size: cover;
        border: 0;
        font-size: var(--font18);
        color: #FFFFFF;
        cursor: pointer;
    }

    .bcBox.bg11 .more {
        background: url(/content/v2/v3/img/bg11.png) !important;
    }

.word9 {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

    .word9 .item {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
    }

        .word9 .item .name {
            width: 90px;
            text-align: end;
            flex-shrink: 0;
            font-size: var(--font14);
        }

        .word9 .item .woT {
            width: auto;
            height: auto;
        }

            .word9 .item .woT .conNa {
                width: auto;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                gap: 25px;
            }

                .word9 .item .woT .conNa .one {
                    width: auto;
                    height: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    gap: 10px;
                    cursor: pointer;
                    font-size: var(--font14);
                }

                    .word9 .item .woT .conNa .one input[type="radio"] {
                        display: none;
                    }

                    .word9 .item .woT .conNa .one i.yu {
                        width: 24px;
                        height: 24px;
                        border-radius: 100px;
                        border: 1px solid #CCCCCC;
                        display: block;
                    }

                    .word9 .item .woT .conNa .one.active i {
                        background: var(--active_color);
                        border-color: var(--active_color);
                    }

                    .word9 .item .woT .conNa .one input[type="text"],
                    .word9 .item .woT .conNa .one select {
                        width: 240px;
                        height: 30px;
                        border: 1px solid #CCCCCC;
                        padding: 0 10px;
                        background: none;
                        font-size: var(--font14);
                    }

                    .word9 .item .woT .conNa .one select {
                        height: 40px;
                    }

                .word9 .item .woT .conNa .bor {
                    width: fit-content;
                    height: auto;
                    border: 1px solid #CCCCCC;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                }

                    .word9 .item .woT .conNa .bor input {
                        border: 0 !important;
                        width: 100px !important;
                    }

                    .word9 .item .woT .conNa .bor .moed {
                        width: auto;
                        height: 30px;
                        padding: 0 20px;
                        background: #e5e5e5;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                    }

                .word9 .item .woT .conNa .add {
                    width: 80px;
                    height: 30px;
                    background: #66cc99;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    color: #FFFFFF;
                    cursor: pointer;
                }

                .word9 .item .woT .conNa textarea {
                    width: 740px;
                    height: 160px;
                    border: 1px solid #CCCCCC;
                    padding: 0 10px;
                }

        .word9 .item .bgFF {
            width: 100%;
            height: auto;
            padding: 20px;
            background: #fafafa;
            line-height: 2;
            font-size: var(--font14);
        }

.secondOnSeriesSelection1-c.w300 {
    margin-top: 0;
}

    .secondOnSeriesSelection1-c.w300 table th {
        text-align: start;
        padding: 0 15px;
    }

    .secondOnSeriesSelection1-c.w300 table td {
        text-align: start;
        padding: 10px 15px;
    }

        .secondOnSeriesSelection1-c.w300 table td:nth-child(1) {
            width: 34%;
        }

        .secondOnSeriesSelection1-c.w300 table td:nth-child(2) {
            width: 70px;
        }

        .secondOnSeriesSelection1-c.w300 table td:nth-child(3) {
            width: 140px;
        }

        .secondOnSeriesSelection1-c.w300 table td:nth-child(4) {
            width: 140px;
        }

        .secondOnSeriesSelection1-c.w300 table td:nth-child(5) {
            width: 160px;
        }

        .secondOnSeriesSelection1-c.w300 table td:nth-child(6) {
            width: 70px;
        }

.secondOnSeriesSelection1-c.w301 {
    margin-top: 0;
}

    .secondOnSeriesSelection1-c.w301 table th {
        text-align: start;
        padding: 0 15px;
    }

    .secondOnSeriesSelection1-c.w301 table td {
        text-align: start;
        padding: 10px 15px;
        width: 26%;
        height: auto;
    }

.secondOnSeriesSelection1-c.w302 {
    margin-top: 0;
}

    .secondOnSeriesSelection1-c.w302 table th {
        text-align: start;
        padding: 0 15px;
    }

    .secondOnSeriesSelection1-c.w302 table td {
        text-align: start;
        padding: 10px 15px;
    }

        .secondOnSeriesSelection1-c.w302 table td:nth-child(1) {
            width: 34%;
        }

        .secondOnSeriesSelection1-c.w302 table td:nth-child(2) {
            width: 70px;
        }

        .secondOnSeriesSelection1-c.w302 table td:nth-child(3) {
            width: 140px;
        }

        .secondOnSeriesSelection1-c.w302 table td:nth-child(4) {
            width: 140px;
        }

        .secondOnSeriesSelection1-c.w302 table td:nth-child(5) {
            width: 160px;
        }

        .secondOnSeriesSelection1-c.w302 table td:nth-child(6) {
            width: 70px;
        }

.secondOnSeriesSelection1-c.w303 table th {
    text-align: start;
    padding: 0 15px;
}

.secondOnSeriesSelection1-c.w303 table td {
    text-align: start;
    padding: 10px 15px;
}

    .secondOnSeriesSelection1-c.w303 table td:nth-child(1) {
        width: 100px;
    }

    .secondOnSeriesSelection1-c.w303 table td:nth-child(2) {
        width: 70px;
    }

    .secondOnSeriesSelection1-c.w303 table td:nth-child(3) {
        width: 140px;
    }

    .secondOnSeriesSelection1-c.w303 table td:nth-child(4) {
        width: 140px;
    }

    .secondOnSeriesSelection1-c.w303 table td:nth-child(5) {
        width: 160px;
    }

    .secondOnSeriesSelection1-c.w303 table td:nth-child(6) {
        width: 70px;
    }

.remove {
    width: fit-content;
    height: auto;
}

    .remove button {
        width: 86px;
        height: 26px;
        border: 1px solid #e6e6e6;
        background: linear-gradient(0deg, #ede7e0 10%, #ffe4d200 100%);
        border-radius: 4px;
        font-size: var(--font14);
        cursor: pointer;
    }

.ins_table {
    width: 100%;
    height: auto;
}

    .ins_table .tableBox {
        width: 100%;
        height: auto;
    }

        .ins_table .tableBox table {
            height: auto;
            border: 1px solid #E6E6E6;
            width: 100%;
            border-collapse: collapse;
        }

            .ins_table .tableBox table tr {
                width: 100%;
                height: auto;
                border-top: 1px solid #e6e6e6;
            }

                .ins_table .tableBox table tr td {
                    border-right: 1px solid #e6e6e6;
                    font-size: 14px;
                    color: #666;
                    padding: 5px;
                    height: 40px;
                }

                .ins_table .tableBox table tr:first-child td {
                    background: #FAFAFA;
                    font-family: Microsoft YaHei;
                    font-weight: 400;
                    font-size: 14px;
                    color: #999999;
                    line-height: 40px;
                }

                .ins_table .tableBox table tr .dou {
                    padding-left: 3px;
                    vertical-align: middle;
                    margin-top: -4px;
                }

                .ins_table .tableBox table tr .icn {
                    width: 20px;
                    height: 20px;
                    display: inline-flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    border-radius: 2px;
                    font-style: normal;
                    font-size: 12px;
                }

                    .ins_table .tableBox table tr .icn.acIcon {
                        background: #f9e7d1;
                        color: #d27700;
                        border: 1px solid #f8b16e;
                    }

                    .ins_table .tableBox table tr .icn.noIcon {
                        background: #c4c4c2;
                        color: #FFFFFF;
                        border: 1px solid #797979;
                    }

                .ins_table .tableBox table tr .bL {
                    min-width: 64px;
                    height: 28px;
                    border: 1px solid #CCCCCC;
                    display: inline-flex;
                    font-size: var(--font14);
                    border-radius: 4px;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                }

                .ins_table .tableBox table tr .bL2 {
                    min-width: 40px;
                    height: 30px;
                    border: 1px solid #CCCCCC;
                    display: inline-flex;
                    font-size: var(--font14);
                    border-radius: 4px;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                }

                .ins_table .tableBox table tr:nth-child(2n+1) {
                    background-color: #fff6ea;
                }

        .ins_table .tableBox.textc table tr td:first-child {
            text-align: center;
        }

        .ins_table .tableBox.textc2 table tr td {
            text-align: center;
        }

    .ins_table.bgnone .tableBox table tr:first-child td {
        background: none !important;
    }

    .ins_table.bgnone .tableBox table tr:nth-child(2n+1) {
        background-color: unset !important;
    }

    .ins_table.bgnone .tableBox table tr:nth-child(2n) {
        background-color: #fff6ea !important;
    }

.pasger {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

    .pasger .icon {
        width: 40px;
        height: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        border: 1px solid #CCCCCC;
        cursor: pointer;
        color: #666666;
    }

.cont3HY {
    width: 100%;
    height: auto;
    padding: 20px;
}

    .cont3HY .imgH_box {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }

        .cont3HY .imgH_box .images_h {
            width: 100%;
            height: auto;
        }

            .cont3HY .imgH_box .images_h img {
                width: 100%;
                height: auto;
            }

        .cont3HY .imgH_box .btnBox {
            width: 100%;
            height: auto;
            position: absolute;
            bottom: 20px;
        }

            .cont3HY .imgH_box .btnBox .btnH0 {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
            }

                .cont3HY .imgH_box .btnBox .btnH0 .more {
                    width: fit-content;
                    height: 40px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    background: #fff7ef;
                    padding: 0 60px;
                    border-radius: 100px;
                    font-weight: 600;
                    color: #ca0100;
                    line-height: 1;
                    position: relative;
                    z-index: 1;
                    overflow: hidden;
                    border: 2px solid #ca0100;
                }

                    .cont3HY .imgH_box .btnBox .btnH0 .more::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        width: 100%;
                        height: 50%;
                        background: #ffe1c2;
                        z-index: -1;
                    }

            .cont3HY .imgH_box .btnBox .btnH1 {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
            }

                .cont3HY .imgH_box .btnBox .btnH1 .more {
                    width: fit-content;
                    height: 30px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    background: #ffffff;
                    padding: 0 15px;
                    border-radius: 6px;
                    color: #000000;
                    line-height: 1;
                    position: relative;
                    z-index: 1;
                    overflow: hidden;
                    border: 2px solid #ca0100;
                }

    .cont3HY .wordH_box {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

        .cont3HY .wordH_box .contH1 {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-orient: vertical;
            -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
            gap: 20px;
        }

            .cont3HY .wordH_box .contH1 .item {
                width: 100%;
                height: auto;
            }

                .cont3HY .wordH_box .contH1 .item .title {
                    width: 100%;
                    height: 40px;
                    color: #FFFFFF;
                    background: #ff6a12;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    font-size: var(--font18);
                }

                .cont3HY .wordH_box .contH1 .item .cH1 {
                    width: 100%;
                    height: auto;
                    padding: 20px;
                    border: 1px solid #e6e6e6;
                    border-top: 0;
                }

                    .cont3HY .wordH_box .contH1 .item .cH1.gr2 {
                        width: 100%;
                        height: auto;
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 20px;
                    }

                    .cont3HY .wordH_box .contH1 .item .cH1 .aheH {
                        width: fit-content;
                        height: 40px;
                        display: inline-flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        font-size: var(--font16);
                        color: #FFFFFF;
                        padding: 0 50px;
                    }

.titWid100 {
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 5px;
    font-size: var(--font16);
    background: #ff6a12;
    color: #FFF;
}

.widTw100 {
    width: 100%;
    height: 240px;
    border: 1px solid #CCCCCC;
    padding: 5px;
    font-size: var(--font14);
}

.aHrefBox {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 20px;
}

    .aHrefBox .one {
        min-width: 160px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 0 20px;
        color: #FFFFFF;
    }

.greBox {
    width: fit-content;
    height: 30px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: #66cc99;
    color: #FFFFFF;
    font-size: var(--font14);
}

.hzCon1 {
    width: 100%;
    height: auto;
}

    .hzCon1 .time {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        gap: 20px;
    }

        .hzCon1 .time .layui-input {
            height: 30px;
            font-size: var(--font14);
        }

.hzCon2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

    .hzCon2 .listOne {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border: 1px solid #e6e6e6;
        border-top: 0;
    }

        .hzCon2 .listOne .one {
            width: 100%;
            height: auto;
            line-height: 1.8;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-orient: vertical;
            -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
            gap: 10px;
        }

            .hzCon2 .listOne .one .t1 {
                background: #FAFAFA;
                font-family: Microsoft YaHei;
                font-weight: 400;
                border: 1px solid #e6e6e6;
                color: #999999;
                line-height: 40px;
                padding: 0 10px;
                height: 40px;
            }

            .hzCon2 .listOne .one .t2 {
                width: 100%;
                height: auto;
                padding: 0 10px;
            }

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.popupCon1 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
}

    .popupCon1 .center_box {
        width: 460px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon1 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon1 .center_box .title::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 50%;
                background: #ffbc8b;
                opacity: 0.2;
                z-index: -1;
            }

            .popupCon1 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon1 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
        }

            .popupCon1 .center_box .content .textB {
                width: 100%;
                height: 220px;
                border: 1px solid #e5e5e5;
                padding: 13px;
            }

            .popupCon1 .center_box .content .fuz {
                width: 100%;
                height: auto;
                margin-top: 20px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
            }

                .popupCon1 .center_box .content .fuz .one {
                    width: 240px;
                    height: 40px;
                    font-size: var(--font16);
                    background: #ff6a12;
                    border-radius: 4px;
                    color: #FFFFFF;
                    cursor: pointer;
                    border: 0;
                }

    .popupCon1.active {
        display: flex;
    }

#kehu {
    position: relative;
    z-index: 99;
}

.popupCon2 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
}

    .popupCon2 .center_box {
        width: 460px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon2 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon2 .center_box .title::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 50%;
                background: #ffbc8b;
                opacity: 0.2;
                z-index: -1;
            }

            .popupCon2 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon2 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
        }

            .popupCon2 .center_box .content .teCon {
                width: 100%;
                height: auto;
                padding: 50px 0;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                text-align: center;
            }

                .popupCon2 .center_box .content .teCon a {
                    color: #0099ff;
                }

    .popupCon2.active {
        display: flex;
    }

.popupCon7 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
}

    .popupCon7 .center_box {
        width: 460px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon7 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon7 .center_box .title::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 50%;
                background: #ffbc8b;
                opacity: 0.2;
                z-index: -1;
            }

            .popupCon7 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon7 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
        }

            .popupCon7 .center_box .content .textB {
                width: 100%;
                min-height: 100px;
                padding: 40px 0;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                text-align: center;
            }

                .popupCon7 .center_box .content .textB a {
                    color: #0099ff;
                }

    .popupCon7.active {
        display: flex;
    }

.popupCon3 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
}

    .popupCon3 .center_box {
        width: 900px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon3 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon3 .center_box .title::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 50%;
                background: #ffbc8b;
                opacity: 0.2;
                z-index: -1;
            }

            .popupCon3 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon3 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            gap: 20px;
        }

            .popupCon3 .center_box .content .images {
                width: 260px;
                flex-shrink: 0;
            }

            .popupCon3 .center_box .content .wordPu3 {
                width: 100%;
                height: auto;
            }

                .popupCon3 .center_box .content .wordPu3 .word9 {
                    width: 100%;
                    height: auto;
                    border: 1px solid #CCCCCC;
                    border-top: 0;
                    padding: 20px;
                }

                    .popupCon3 .center_box .content .wordPu3 .word9 .name {
                        width: 130px;
                    }

    .popupCon3.active {
        display: flex;
    }

.ins_qhbCon2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

    .ins_qhbCon2 .center_box {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

        .ins_qhbCon2 .center_box .content {
            width: 100%;
            height: auto;
        }

            .ins_qhbCon2 .center_box .content .title {
                width: 100%;
                height: 50px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                background: #f35422;
                color: #FFFFFF;
                font-weight: 600;
                font-size: var(--font18);
            }

            .ins_qhbCon2 .center_box .content .item_box {
                width: 100%;
                height: auto;
            }

                .ins_qhbCon2 .center_box .content .item_box .item {
                    width: 100%;
                    height: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    -webkit-justify-content: space-between;
                    justify-content: space-between;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                }

                    .ins_qhbCon2 .center_box .content .item_box .item .wordB {
                        width: fit-content;
                        height: auto;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        gap: 18px;
                    }

.retract {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

    .retract button {
        width: fit-content;
        height: 28px;
        padding: 0 20px;
        background: #f38e35;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        gap: 10px;
        color: #FFFFFF;
        font-size: 12px;
        border: 0;
    }

.ins_gdCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    padding-bottom: 50px;
}

    .ins_gdCon1 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_gdCon1 .center_box .item_box {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

            .ins_gdCon1 .center_box .item_box::after {
                content: '';
                position: absolute;
                z-index: 2;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 4px;
                background: #ff6a12;
                -webkit-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .ins_gdCon1 .center_box .item_box .item {
                width: auto;
                height: 50px;
                padding: 0 23px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
                overflow: hidden;
                background: url(/content/v2/v3/img/bg10.png);
                position: relative;
                z-index: 1;
                font-size: var(--font20);
                color: #ff6a12;
                line-height: 1;
                cursor: pointer;
            }

                .ins_gdCon1 .center_box .item_box .item::after {
                    content: '';
                    position: absolute;
                    z-index: -1;
                    top: 2px;
                    left: 2px;
                    width: calc(100% - 4px);
                    height: calc(100% - 2px);
                    background: #FFF;
                    -webkit-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                    border-top-left-radius: 5px;
                    border-top-right-radius: 5px;
                }

                .ins_gdCon1 .center_box .item_box .item.active {
                    color: #FFFFFF;
                }

                    .ins_gdCon1 .center_box .item_box .item.active::after {
                        opacity: 0;
                    }

        .ins_gdCon1 .center_box .content {
            width: 100%;
            height: auto;
            background: #fff6ea;
            padding: 24px 40px;
            display: none;
        }

            .ins_gdCon1 .center_box .content .list_box {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-orient: vertical;
                -ms-flex-direction: column;
                -webkit-flex-direction: column;
                flex-direction: column;
                gap: 20px;
            }

                .ins_gdCon1 .center_box .content .list_box .list {
                    width: 100%;
                    height: auto;
                    padding: 26px;
                    background: #FFFFFF;
                    border-radius: 4px;
                    overflow: hidden;
                    border: 1px solid #f5c44b;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    -webkit-justify-content: space-between;
                    justify-content: space-between;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                }

                    .ins_gdCon1 .center_box .content .list_box .list .images_box {
                        width: fit-content;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        gap: 20px;
                    }

                        .ins_gdCon1 .center_box .content .list_box .list .images_box .images {
                            width: 250px;
                        }

                    .ins_gdCon1 .center_box .content .list_box .list .icon {
                        width: 120px;
                    }

                        .ins_gdCon1 .center_box .content .list_box .list .icon img {
                            width: 100%;
                            height: auto;
                        }

            .ins_gdCon1 .center_box .content.active {
                display: block;
            }

            .ins_gdCon1 .center_box .content .titBgFF {
                width: 100%;
                height: 40px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                padding: 0 10px;
                font-size: var(--font14);
                background: #FFFFFF;
            }

            .ins_gdCon1 .center_box .content .list_box1 {
                width: 100%;
                height: auto;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }

                .ins_gdCon1 .center_box .content .list_box1 .list {
                    width: 100%;
                    height: auto;
                }

                    .ins_gdCon1 .center_box .content .list_box1 .list .images {
                        width: 100%;
                        height: auto;
                    }

                        .ins_gdCon1 .center_box .content .list_box1 .list .images img {
                            width: 100%;
                            height: auto;
                        }

                    .ins_gdCon1 .center_box .content .list_box1 .list .word {
                        font-size: 13px;
                        margin-top: 10px;
                    }

            .ins_gdCon1 .center_box .content .list_box2 {
                width: 100%;
                height: auto;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 40px;
            }

                .ins_gdCon1 .center_box .content .list_box2 .list {
                    width: 100%;
                    height: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    background: #FFFFFF;
                    border-radius: 4px;
                    overflow: hidden;
                }

                    .ins_gdCon1 .center_box .content .list_box2 .list .images {
                        width: 90px;
                        flex-shrink: 0;
                    }

                    .ins_gdCon1 .center_box .content .list_box2 .list .word {
                        width: 100%;
                        height: auto;
                        padding: 16px 10px;
                        padding-bottom: 20px;
                        border: 1px solid #f7d690;
                        border-left: 0;
                        border-radius: 4px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-orient: vertical;
                        -ms-flex-direction: column;
                        -webkit-flex-direction: column;
                        flex-direction: column;
                        -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                        -webkit-justify-content: space-between;
                        justify-content: space-between;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                    }

                        .ins_gdCon1 .center_box .content .list_box2 .list .word .bgf {
                            width: 100%;
                            height: auto;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            -webkit-justify-content: center;
                            justify-content: center;
                            height: 40px;
                            border-radius: 5px;
                            background: #fff6ea;
                        }

                        .ins_gdCon1 .center_box .content .list_box2 .list .word .t1 {
                            text-align: center;
                        }

.ins_xxCon1 {
    width: 100%;
    height: auto;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    z-index: 5;
    padding-bottom: 80px;
}

    .ins_xxCon1 .center_box {
        width: 100%;
        height: auto;
        border-radius: 5px;
        overflow: hidden;
        border: 1px solid #f7d690;
        border-top: 0;
    }

.flf {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.contentXX1 {
    width: 100%;
    height: auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    padding-top: 24px;
}

    .contentXX1::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 20px;
        right: 0;
        width: 100%;
        height: 27px;
        background: linear-gradient(0deg, #ffe9ca 10%, #ffd18a 100%);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .contentXX1 .bgfa {
        width: 100%;
        height: auto;
        background: #fafafa;
        padding: 20px;
        line-height: 1.5;
        position: relative;
        z-index: 2;
    }

    .contentXX1 .tabBox {
        width: 100%;
        height: auto;
        padding: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        gap: 20px;
        border: 1px solid #e6e6e6;
        border-top: 0;
    }

.popupCon4 {
    width: 168px;
    height: auto;
    position: fixed;
    top: 30%;
    right: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 20;
}

    .popupCon4 .word {
        position: absolute;
        top: 36%;
        width: 72%;
        height: auto;
        z-index: 5;
    }

    .popupCon4 .word2 {
        position: absolute;
        top: 74%;
        width: 71%;
        height: auto;
        z-index: 5;
    }

    .popupCon4 .icon {
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
    }

    .popupCon4.active {
        display: none;
    }

.btnB {
    width: fit-content;
    height: 36px;
    padding: 0 28px;
    background: #fafafa;
    border: 1px solid #CCCCCC;
    font-size: var(--font16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
    cursor: pointer;
}

.ins_qhbCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #971515;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .ins_qhbCon1 .hbword {
        position: absolute;
        margin: 0 auto;
        top: 20%;
        text-align: center;
    }

    .ins_qhbCon1 .contenthb1 {
        width: 100%;
        height: auto;
        position: absolute;
        z-index: 3;
        top: 32%;
        left: 0;
    }

    .ins_qhbCon1 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_qhbCon1 .center_box .content0 {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
        }

            .ins_qhbCon1 .center_box .content0 .btn {
                width: 160px;
                height: 50px;
                background: #f5c44b;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                font-size: var(--font24);
                color: #971515;
                font-weight: 600;
                border-radius: 5px;
                flex-shrink: 0;
            }

        .ins_qhbCon1 .center_box .content1 {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            margin-top: 20px;
        }

            .ins_qhbCon1 .center_box .content1 .line {
                width: 100%;
                height: 0;
                border-bottom: 2px dashed #f5c44b;
            }

            .ins_qhbCon1 .center_box .content1 .worB {
                width: 160px;
                height: 50px;
                background: #f5c44b;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                font-size: var(--font24);
                color: #971515;
                font-weight: 600;
                border-radius: 5px;
                flex-shrink: 0;
            }

        .ins_qhbCon1 .center_box .content2 {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            gap: 20px;
            margin-top: 20px;
        }

            .ins_qhbCon1 .center_box .content2 .worB {
                width: 100%;
                background: #00000033;
                padding: 20px;
                color: #FFFFFF;
                line-height: 2.1428;
                font-size: var(--font14);
            }

        .ins_qhbCon1 .center_box .content3 {
            width: 100%;
            height: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

            .ins_qhbCon1 .center_box .content3 .contBox {
                width: 100%;
                height: auto;
                background: #FFFFFF;
            }

                .ins_qhbCon1 .center_box .content3 .contBox .title {
                    width: 100%;
                    height: 40px;
                    background: #f5c44b;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    color: #971515;
                    font-size: var(--font18);
                    font-weight: 600;
                }

                .ins_qhbCon1 .center_box .content3 .contBox .conB {
                    width: 100%;
                    height: auto;
                    padding: 20px;
                }

    .ins_qhbCon1 .img_bg {
        width: 100%;
        height: auto;
    }

        .ins_qhbCon1 .img_bg img {
            width: 100%;
            height: auto;
        }

.ins_tgCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 100px;
}

    .ins_tgCon1 .center_box .item_box {
        width: 100%;
        height: auto;
        background: #fff6ea;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 18px;
    }

        .ins_tgCon1 .center_box .item_box .item {
            width: 100%;
            height: auto;
            border: 1px solid #f7d690;
            border-radius: 5px;
            overflow: hidden;
            background: #FFFFFF;
        }

            .ins_tgCon1 .center_box .item_box .item .contg1 {
                width: 100%;
                height: auto;
                padding: 18px;
            }

                .ins_tgCon1 .center_box .item_box .item .contg1 .bgt {
                    width: 100%;
                    height: auto;
                    background: #fafafa;
                    border: 1px solid #e6e6e6;
                }

                .ins_tgCon1 .center_box .item_box .item .contg1 .tgBtn {
                    width: 100%;
                    height: 50px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    color: #FFFFFF;
                    font-size: var(--font18);
                    background: #ed4200;
                }

            .ins_tgCon1 .center_box .item_box .item .ins_title2 .title > span {
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                gap: 20px;
            }

            .ins_tgCon1 .center_box .item_box .item .ins_title2 .btnH a {
                background: #ed4200;
                color: #FFFFFF;
                border-color: #c63902;
                border-radius: 5px;
            }

                .ins_tgCon1 .center_box .item_box .item .ins_title2 .btnH a::after {
                    display: none;
                }

.ins_hzCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 50px;
}

    .ins_hzCon1 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_hzCon1 .center_box .item_box {
            width: 100%;
            height: auto;
            padding: 40px;
            background: #fff6ea;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

            .ins_hzCon1 .center_box .item_box .item {
                width: 100%;
                height: auto;
                background: url(/content/v2/v3/img/bg3.jpg) no-repeat;
                background-size: cover;
                border-radius: 5px;
                overflow: hidden;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                padding: 25px;
                padding-bottom: 50px;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                gap: 20px;
                border: 1px solid #f0c297;
                box-shadow: 0 0 10px 1px #7c3c0142;
                position: relative;
                z-index: 1;
            }

                .ins_hzCon1 .center_box .item_box .item .icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 100px;
                    border: 1px solid #f0c297;
                    background: #FFFFFF;
                    overflow: hidden;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                }

                .ins_hzCon1 .center_box .item_box .item .line {
                    width: calc(100% - 50px);
                    height: auto;
                    border-radius: 100px;
                    background: #FFFFFF;
                    position: absolute;
                    bottom: 25px;
                }

                    .ins_hzCon1 .center_box .item_box .item .line i {
                        width: 50%;
                        height: 4px;
                        background: #965132;
                        display: block;
                        border-radius: 100px;
                    }

.ins_phCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 50px;
}

    .ins_phCon1 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_phCon1 .center_box .item_box {
            width: 100%;
            height: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

            .ins_phCon1 .center_box .item_box .item {
                width: 100%;
                height: auto;
                border: 1px solid #f7d690;
                border-radius: 5px;
                overflow: hidden;
            }

                .ins_phCon1 .center_box .item_box .item .title {
                    width: 100%;
                    height: 50px;
                    color: #FFFFFF;
                    background: #ff6a12;
                    position: relative;
                    z-index: 1;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    font-size: var(--font18);
                }

                    .ins_phCon1 .center_box .item_box .item .title::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        right: 0;
                        width: 100%;
                        height: 50%;
                        background: #ffbc8b;
                        opacity: 0.2;
                        z-index: -1;
                    }

                .ins_phCon1 .center_box .item_box .item .list {
                    width: 100%;
                    height: auto;
                }

                    .ins_phCon1 .center_box .item_box .item .list .one {
                        width: 100%;
                        height: auto;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                        -webkit-justify-content: space-between;
                        justify-content: space-between;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        padding: 12px 20px;
                        background: #fff6ea;
                    }

                        .ins_phCon1 .center_box .item_box .item .list .one .word {
                            width: fit-content;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            gap: 20px;
                        }

                            .ins_phCon1 .center_box .item_box .item .list .one .word .font {
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: -webkit-flex;
                                display: flex;
                                -webkit-box-orient: vertical;
                                -ms-flex-direction: column;
                                -webkit-flex-direction: column;
                                flex-direction: column;
                                gap: 5px;
                            }

                                .ins_phCon1 .center_box .item_box .item .list .one .word .font p {
                                    width: 100%;
                                    height: auto;
                                    display: -webkit-box;
                                    display: -ms-flexbox;
                                    display: -webkit-flex;
                                    display: flex;
                                    gap: 5px;
                                }

                                .ins_phCon1 .center_box .item_box .item .list .one .word .font .w23 {
                                    width: 23px;
                                    display: -webkit-box;
                                    display: -ms-flexbox;
                                    display: -webkit-flex;
                                    display: flex;
                                    -webkit-box-align: center;
                                    -ms-flex-align: center;
                                    -webkit-align-items: center;
                                    align-items: center;
                                    -webkit-box-pack: center;
                                    -ms-flex-pack: center;
                                    -webkit-justify-content: center;
                                    justify-content: center;
                                }

                        .ins_phCon1 .center_box .item_box .item .list .one .icn {
                            width: 20px;
                            height: 20px;
                            display: inline-flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            -webkit-justify-content: center;
                            justify-content: center;
                            border-radius: 2px;
                            font-style: normal;
                            font-size: 12px;
                        }

                            .ins_phCon1 .center_box .item_box .item .list .one .icn.acIcon {
                                background: #f9e7d1;
                                color: #d27700;
                                border: 1px solid #f8b16e;
                            }

                            .ins_phCon1 .center_box .item_box .item .list .one .icn.noIcon {
                                background: #c4c4c2;
                                color: #FFFFFF;
                                border: 1px solid #797979;
                            }

                        .ins_phCon1 .center_box .item_box .item .list .one:nth-child(2n) {
                            background: #FFFFFF;
                        }

.borone {
    border: 0 !important;
}

.zhCont1 {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

    .zhCont1 .zCon1 {
        width: 100%;
        height: auto;
        border: 1px solid #ffd18a;
        border-radius: 6px;
    }

        .zhCont1 .zCon1 .title {
            width: fit-content !important;
        }

        .zhCont1 .zCon1 .woC {
            width: 100%;
            height: auto;
            padding: 20px;
        }

            .zhCont1 .zCon1 .woC .item {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                padding: 20px 0;
                position: relative;
                z-index: 1;
                color: #333333;
            }

                .zhCont1 .zCon1 .woC .item::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    width: 100%;
                    height: 1px;
                    background: #e6e6e6;
                    -webkit-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                .zhCont1 .zCon1 .woC .item .word {
                    width: fit-content;
                }

                    .zhCont1 .zCon1 .woC .item .word span {
                        color: #dc4f4f;
                    }

                .zhCont1 .zCon1 .woC .item .icon {
                    width: 400px;
                    flex-shrink: 0;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    -webkit-justify-content: space-between;
                    justify-content: space-between;
                }

                    .zhCont1 .zCon1 .woC .item .icon .layui-progress {
                        width: 260px;
                        height: 20px;
                    }

                .zhCont1 .zCon1 .woC .item:last-child::after {
                    opacity: 0;
                }

            .zhCont1 .zCon1 .woC .list {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                padding: 20px 0;
                position: relative;
                z-index: 1;
                color: #333333;
            }

                .zhCont1 .zCon1 .woC .list::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    width: 100%;
                    height: 1px;
                    background: #e6e6e6;
                    -webkit-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                .zhCont1 .zCon1 .woC .list .word {
                    width: fit-content;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    font-size: var(--font14);
                }

                .zhCont1 .zCon1 .woC .list .name {
                    width: 200px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    gap: 10px;
                }

                .zhCont1 .zCon1 .woC .list:last-child::after {
                    opacity: 0;
                }

            .zhCont1 .zCon1 .woC .img_list {
                width: 100%;
                height: auto;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

                .zhCont1 .zCon1 .woC .img_list.grid2 {
                    grid-column: span 2;
                }

                .zhCont1 .zCon1 .woC .img_list .img {
                    width: 100%;
                    height: auto;
                }

                .zhCont1 .zCon1 .woC .img_list img {
                    width: 100%;
                    height: auto;
                }

.ins_xsCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 50px;
}

    .ins_xsCon1 .center_box {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        gap: 20px;
    }

        .ins_xsCon1 .center_box .left_box {
            width: 278px;
            height: auto;
            flex-shrink: 0;
        }

            .ins_xsCon1 .center_box .left_box .item {
                width: 100%;
                height: auto;
                border: 1px solid #f7d690;
                border-radius: 5px;
                overflow: hidden;
            }

                .ins_xsCon1 .center_box .left_box .item .title {
                    width: 100%;
                    height: 50px;
                    color: #FFFFFF;
                    background: #ff6a12;
                    position: relative;
                    z-index: 1;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    font-size: var(--font18);
                }

                    .ins_xsCon1 .center_box .left_box .item .title::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        right: 0;
                        width: 100%;
                        height: 50%;
                        background: #ffbc8b;
                        opacity: 0.2;
                        z-index: -1;
                    }

                .ins_xsCon1 .center_box .left_box .item .list {
                    width: 100%;
                    height: auto;
                }

                    .ins_xsCon1 .center_box .left_box .item .list .one {
                        width: 100%;
                        height: auto;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                        -webkit-justify-content: space-between;
                        justify-content: space-between;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        padding: 12px 20px;
                        background: #fff6ea;
                    }

                        .ins_xsCon1 .center_box .left_box .item .list .one .word {
                            width: fit-content;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            gap: 20px;
                        }

                            .ins_xsCon1 .center_box .left_box .item .list .one .word .font {
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: -webkit-flex;
                                display: flex;
                                -webkit-box-orient: vertical;
                                -ms-flex-direction: column;
                                -webkit-flex-direction: column;
                                flex-direction: column;
                                gap: 5px;
                            }

                                .ins_xsCon1 .center_box .left_box .item .list .one .word .font p {
                                    width: 100%;
                                    height: auto;
                                    display: -webkit-box;
                                    display: -ms-flexbox;
                                    display: -webkit-flex;
                                    display: flex;
                                    gap: 5px;
                                }

                                .ins_xsCon1 .center_box .left_box .item .list .one .word .font .w23 {
                                    width: 23px;
                                    display: -webkit-box;
                                    display: -ms-flexbox;
                                    display: -webkit-flex;
                                    display: flex;
                                    -webkit-box-align: center;
                                    -ms-flex-align: center;
                                    -webkit-align-items: center;
                                    align-items: center;
                                    -webkit-box-pack: center;
                                    -ms-flex-pack: center;
                                    -webkit-justify-content: center;
                                    justify-content: center;
                                }

                        .ins_xsCon1 .center_box .left_box .item .list .one .icn {
                            width: 20px;
                            height: 20px;
                            display: inline-flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            -webkit-justify-content: center;
                            justify-content: center;
                            border-radius: 2px;
                            font-style: normal;
                            font-size: 12px;
                        }

                            .ins_xsCon1 .center_box .left_box .item .list .one .icn.acIcon {
                                background: #f9e7d1;
                                color: #d27700;
                                border: 1px solid #f8b16e;
                            }

                            .ins_xsCon1 .center_box .left_box .item .list .one .icn.noIcon {
                                background: #c4c4c2;
                                color: #FFFFFF;
                                border: 1px solid #797979;
                            }

                        .ins_xsCon1 .center_box .left_box .item .list .one:nth-child(2n) {
                            background: #FFFFFF;
                        }

        .ins_xsCon1 .center_box .right_box {
            width: 100%;
            height: auto;
            background: #fff6ea;
            border: 1px solid #f7d690;
            border-radius: 5px;
            overflow: hidden;
        }

            .ins_xsCon1 .center_box .right_box .item_box {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                gap: 12px;
                position: relative;
                z-index: 1;
            }

                .ins_xsCon1 .center_box .right_box .item_box::after {
                    content: '';
                    position: absolute;
                    z-index: 2;
                    bottom: 0;
                    right: 0;
                    width: 100%;
                    height: 4px;
                    background: #ff6a12;
                    -webkit-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                .ins_xsCon1 .center_box .right_box .item_box .item {
                    width: auto;
                    height: 50px;
                    padding: 0 23px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    border-top-left-radius: 5px;
                    border-top-right-radius: 5px;
                    overflow: hidden;
                    background: url(/content/v2/v3/img/bg10.png);
                    position: relative;
                    z-index: 1;
                    font-size: var(--font20);
                    color: #ff6a12;
                    line-height: 1;
                    cursor: pointer;
                }

                    .ins_xsCon1 .center_box .right_box .item_box .item::after {
                        content: '';
                        position: absolute;
                        z-index: -1;
                        top: 2px;
                        left: 2px;
                        width: calc(100% - 4px);
                        height: calc(100% - 2px);
                        background: #FFF;
                        -webkit-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                        border-top-left-radius: 5px;
                        border-top-right-radius: 5px;
                    }

                    .ins_xsCon1 .center_box .right_box .item_box .item.active {
                        color: #FFFFFF;
                    }

                        .ins_xsCon1 .center_box .right_box .item_box .item.active::after {
                            opacity: 0;
                        }

            .ins_xsCon1 .center_box .right_box .content {
                width: 100%;
                height: auto;
                padding: 24px 40px;
                display: none;
            }

                .ins_xsCon1 .center_box .right_box .content .wordC {
                    width: 100%;
                    height: auto;
                    padding: 20px;
                    background: #FFFFFF;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    -webkit-justify-content: space-between;
                    justify-content: space-between;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    gap: 20px;
                }

                    .ins_xsCon1 .center_box .right_box .content .wordC .wcbtn {
                        margin-top: 36px;
                        width: fit-content;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        gap: 20px;
                    }

                        .ins_xsCon1 .center_box .right_box .content .wordC .wcbtn .one {
                            width: fit-content;
                            height: 24px;
                            padding: 0 7px;
                            min-width: 80px;
                            font-size: 12px;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            -webkit-justify-content: center;
                            justify-content: center;
                            color: #FFFFFF;
                        }

                    .ins_xsCon1 .center_box .right_box .content .wordC .wco2 {
                        width: fit-content;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        gap: 20px;
                    }

                .ins_xsCon1 .center_box .right_box .content.active {
                    display: block;
                }

.qdCon1 {
    width: 100%;
    height: auto;
    padding: 20px;
}

    .qdCon1 .uij {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
        color: #333333;
    }

    .qdCon1 .time_box {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
    }

        .qdCon1 .time_box .time {
            width: 410px;
            flex-shrink: 0;
        }

            .qdCon1 .time_box .time .layui-inline {
                width: 100%;
                height: auto;
            }

            .qdCon1 .time_box .time .layui-laydate-static,
            .qdCon1 .time_box .time .layui-laydate-content table,
            .qdCon1 .time_box .time .layui-laydate-content,
            .qdCon1 .time_box .time .layui-laydate-main {
                width: 100%;
            }

                .qdCon1 .time_box .time .layui-laydate-content td,
                .qdCon1 .time_box .time .layui-laydate-content th {
                    height: 43px;
                    font-size: var(--font18);
                    color: #000000;
                }

            .qdCon1 .time_box .time .laydate-set-ym {
                font-size: var(--font18);
            }

            .qdCon1 .time_box .time .layui-laydate .layui-this,
            .qdCon1 .time_box .time .layui-laydate .layui-this > div {
                background: #05958a !important;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
            }

            .qdCon1 .time_box .time .layui-laydate-content td,
            .qdCon1 .time_box .time .layui-laydate-content th {
                width: 50px;
            }

            .qdCon1 .time_box .time .title {
                width: 100%;
                height: 40px;
                color: #FFFFFF;
                background: #ff9933;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                font-size: var(--font18);
            }

        .qdCon1 .time_box .word {
            width: 100%;
        }

            .qdCon1 .time_box .word .title {
                width: 100%;
                height: 40px;
                color: #FFFFFF;
                background: #ff6a12;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                font-size: var(--font18);
            }

            .qdCon1 .time_box .word .ins_table {
                width: 100%;
                height: auto;
                padding: 20px;
                border: 1px solid #e3e3e3;
            }

    .qdCon1 .qdSm {
        width: 100%;
        height: auto;
        padding: 18px;
        border: 1px solid #f7d690;
        margin-top: 10px;
        line-height: 1.8;
    }

    .qdCon1 .adC {
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

.popupCon5 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
    display: none;
}

    .popupCon5 .center_box {
        width: 640px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon5 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon5 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon5 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
        }

            .popupCon5 .center_box .content .img {
                width: 300px;
                height: auto;
            }

                .popupCon5 .center_box .content .img img {
                    width: 100%;
                    height: auto;
                }

            .popupCon5 .center_box .content .word {
                width: 280px;
                height: auto;
            }

                .popupCon5 .center_box .content .word .t1 {
                    width: 100%;
                    height: 50px;
                    background: #ff6a12;
                    color: #FFFFFF;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    padding: 10px 20px;
                }

                .popupCon5 .center_box .content .word .woc {
                    width: 100%;
                    height: auto;
                    border: 1px solid #e6e6e6;
                    padding: 20px;
                }

                    .popupCon5 .center_box .content .word .woc .t2 {
                        line-height: 2;
                    }

    .popupCon5.active {
        display: flex;
    }

.popupCon6 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
    display: none;
}

    .popupCon6 .center_box {
        width: 460px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon6 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon6 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon6 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px 50px;
        }

            .popupCon6 .center_box .content .img {
                width: 300px;
                height: auto;
            }

                .popupCon6 .center_box .content .img img {
                    width: 100%;
                    height: auto;
                }

            .popupCon6 .center_box .content .word {
                width: 100%;
                height: auto;
            }

                .popupCon6 .center_box .content .word input {
                    width: 100%;
                    height: 40px;
                    margin-top: 10px;
                }

            .popupCon6 .center_box .content .btn {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
            }

                .popupCon6 .center_box .content .btn button {
                    width: 90px;
                    height: 30px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    font-size: var(--font14);
                }

    .popupCon6.active {
        display: flex;
    }

.seleMyMo {
    width: 100%;
    height: 40px;
    border: 1px solid #f7d690;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 15px;
    margin-top: 15px;
}

    .seleMyMo .word {
        width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 30px;
    }

        .seleMyMo .word .one {
            width: auto;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            gap: 12px;
        }

            .seleMyMo .word .one input {
                width: 180px;
                height: 32px;
                border: 1px solid #cccccc;
                padding: 0 5px;
            }

    .seleMyMo .tobBox {
        width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

        .seleMyMo .tobBox .totalBet {
            width: 160px;
            height: 32px;
            background: #FFFFFF;
            border: 1px solid #CCCCCC;
            border-right: none;
            padding: 0 8px;
            display: flex;
            align-items: center;
            font-family: Microsoft YaHei;
            font-weight: 400;
            font-size: 14px;
            color: #333333;
        }

            .seleMyMo .tobBox .totalBet img {
                margin-left: 4px;
            }

        .seleMyMo .tobBox .submit {
            font-family: Microsoft YaHei;
            font-weight: 400;
            font-size: 14px;
            color: #FFFFFF;
            line-height: 32px;
            width: 80px;
            background: #ED4200;
            text-align: center;
            cursor: pointer;
        }

            .seleMyMo .tobBox .submit:hover {
                background-color: rgba(237, 66, 0, 0.9);
            }

.co00 {
    color: #0066cc;
}

.MyMode1 {
    width: 100%;
    height: auto;
}

    .MyMode1 .wordBg {
        width: 100%;
        height: auto;
        padding: 11px 42px;
        background: #fafafa;
    }

        .MyMode1 .wordBg .t1 {
            width: 100%;
            height: auto;
            position: relative;
            z-index: 1;
        }

            .MyMode1 .wordBg .t1 img {
                position: absolute;
                left: 0;
                transform: translateX(calc(-100% - 5px));
            }

    .MyMode1 .bg_b2 {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin-top: 20px;
    }

        .MyMode1 .bg_b2 .more {
            width: 200px;
            height: 46px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            background: url(/content/v2/v3/img/bg4.png) no-repeat;
            background-size: cover;
            font-size: var(--font20);
            color: #965132;
        }

.MyMode2 {
    width: 100%;
    height: auto;
}

    .MyMode2 .seleMyMo .word {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: 100%;
        height: auto;
    }

        .MyMode2 .seleMyMo .word input {
            width: 140px;
        }

        .MyMode2 .seleMyMo .word button {
            width: 100px;
            height: 32px;
            background: #66cc99;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            color: #FFFFFF;
            border: 0;
        }

.MyMoreCon3 {
    width: 100%;
    height: auto;
    padding: 20px;
    background: #fff6ea;
    margin-top: 20px;
}

    .MyMoreCon3 .contBox {
        width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .MyMoreCon3 .one {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

        .MyMoreCon3 .one .list {
            width: fit-content;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            gap: 8px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

        .MyMoreCon3 .one span {
            min-width: 56px;
            text-align: end;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            -webkit-justify-content: flex-end;
            justify-content: flex-end;
            font-size: var(--font14);
            color: #333;
        }

        .MyMoreCon3 .one .input {
            width: 180px;
            height: auto;
            border: 1px solid #CCC;
            background: #FFFFFF;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
        }

            .MyMoreCon3 .one .input input {
                width: 100%;
                height: 30px;
                border: 0 !important;
                box-shadow: unset !important;
                padding: 0 10px;
                font-size: var(--font14) !important;
            }

            .MyMoreCon3 .one .input .layui-form-select {
                width: fit-content;
                height: auto;
                font-size: var(--font14);
            }

                .MyMoreCon3 .one .input .layui-form-select .layui-select-title {
                    width: fit-content;
                    height: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                }

                    .MyMoreCon3 .one .input .layui-form-select .layui-select-title .layui-edge {
                        width: 30px;
                        height: 30px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        flex-shrink: 0;
                        position: relative;
                        z-index: 1;
                        top: unset;
                        right: unset;
                        border: 0;
                        margin-top: 0;
                    }

                        .MyMoreCon3 .one .input .layui-form-select .layui-select-title .layui-edge::after {
                            content: '\e61a';
                            position: absolute;
                            width: auto;
                            height: auto;
                            font-family: "layui-icon";
                            font-style: normal;
                        }

                    .MyMoreCon3 .one .input .layui-form-select .layui-select-title input {
                        border-right: 1px solid #CCC !important;
                    }

        .MyMoreCon3 .one.teFl {
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
        }

        .MyMoreCon3 .one .btnBox {
            width: 100px;
            height: 32px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            background: #66cc99;
            font-size: var(--font14);
            color: #FFFFFF;
            cursor: pointer;
        }

.MyMoreCon4 {
    width: 100%;
    height: auto;
    padding: 20px;
    background: #fafafa;
    margin-top: 20px;
}

    .MyMoreCon4 .text1 {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: 30px;
        color: #333333;
        line-height: 1.8;
    }

        .MyMoreCon4 .text1 p {
            text-indent: 2em;
        }

.MyMoreCon5 {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

    .MyMoreCon5 .contBox {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        gap: 20px;
    }

        .MyMoreCon5 .contBox .one1 {
            width: 100%;
            height: auto;
        }

            .MyMoreCon5 .contBox .one1 .img {
                width: 100%;
                height: auto;
                border: 1px solid #ffd18a;
                padding: 12px;
            }

                .MyMoreCon5 .contBox .one1 .img img {
                    width: 100%;
                    height: auto;
                }

        .MyMoreCon5 .contBox .one2 {
            width: 31.3%;
            height: auto;
            flex-shrink: 0;
        }

            .MyMoreCon5 .contBox .one2 .cont1 {
                width: 100%;
                height: auto;
                padding: 20px;
                border: 1px solid #ffd18a;
                border-top: 0;
            }

                .MyMoreCon5 .contBox .one2 .cont1 .t1 {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    gap: 15px;
                }

                .MyMoreCon5 .contBox .one2 .cont1 .one {
                    width: 100%;
                    height: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -ms-flex-direction: column;
                    -webkit-flex-direction: column;
                    flex-direction: column;
                    gap: 25px;
                    margin-top: 25px;
                }

                    .MyMoreCon5 .contBox .one2 .cont1 .one .list {
                        width: 100%;
                        height: auto;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        gap: 40px;
                        color: #666666;
                    }

                        .MyMoreCon5 .contBox .one2 .cont1 .one .list span {
                            width: 60px;
                            font-size: var(--font14);
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                        }

                        .MyMoreCon5 .contBox .one2 .cont1 .one .list input {
                            width: 190px;
                            height: 32px;
                            background: #FFFFFF;
                            border: 1px solid #CCCCCC;
                            padding: 0 5px;
                        }

                .MyMoreCon5 .contBox .one2 .cont1 .btnBox {
                    width: 100%;
                    height: auto;
                    margin-top: 20px;
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 12px;
                }

                    .MyMoreCon5 .contBox .one2 .cont1 .btnBox .btn {
                        width: 100%;
                        height: 30px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        border: 1px solid #CCCCCC;
                        color: #666666;
                    }

                        .MyMoreCon5 .contBox .one2 .cont1 .btnBox .btn.active {
                            background: #66cc99;
                            border-color: #66cc99;
                            color: #FFFFFF;
                        }

                .MyMoreCon5 .contBox .one2 .cont1 .space {
                    width: 100%;
                    height: auto;
                    margin-top: 45px;
                }

                    .MyMoreCon5 .contBox .one2 .cont1 .space .layui-slider-wrap-btn {
                        border: 15px solid #66cc99 !important;
                    }

                    .MyMoreCon5 .contBox .one2 .cont1 .space .layui-slider-bar {
                        background: #66cc99 !important;
                    }

                .MyMoreCon5 .contBox .one2 .cont1 .herB {
                    width: 100%;
                    height: auto;
                    margin-top: 45px;
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;
                }

                    .MyMoreCon5 .contBox .one2 .cont1 .herB a {
                        width: 100%;
                        height: 40px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        border-radius: 4px;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        cursor: pointer;
                    }

                    .MyMoreCon5 .contBox .one2 .cont1 .herB .btn1 {
                        background: #66cc99;
                        color: #FFFFFF;
                    }

                    .MyMoreCon5 .contBox .one2 .cont1 .herB .btn2 {
                        background: #ff6a12;
                        color: #FFFFFF;
                    }

.MyMoreCon6 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

    .MyMoreCon6 .cont2 {
        width: 100%;
        height: auto;
    }

        .MyMoreCon6 .cont2 .item_box6 {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            position: relative;
            z-index: 1;
            padding-bottom: 4px;
        }

            .MyMoreCon6 .cont2 .item_box6::after {
                content: '';
                position: absolute;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 4px;
                background: var(--active_color);
            }

            .MyMoreCon6 .cont2 .item_box6 .item {
                width: 120px;
                height: 32px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                font-size: var(--font16);
                color: #333333;
                cursor: pointer;
            }

                .MyMoreCon6 .cont2 .item_box6 .item:hover {
                    color: var(--active_color);
                }

                .MyMoreCon6 .cont2 .item_box6 .item.active2 {
                    background: var(--active_color);
                    color: #FFFFFF;
                }

        .MyMoreCon6 .cont2 .one {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            gap: 10px;
        }

            .MyMoreCon6 .cont2 .one .list {
                width: fit-content;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                gap: 8px;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
            }

                .MyMoreCon6 .cont2 .one .list .input {
                    width: 90px;
                    height: auto;
                    border: 1px solid #CCC;
                    background: #FFFFFF;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                }

                    .MyMoreCon6 .cont2 .one .list .input input {
                        width: 100%;
                        height: 30px;
                        border: 0 !important;
                        box-shadow: unset !important;
                        padding: 0 10px;
                        font-size: var(--font14) !important;
                    }

                    .MyMoreCon6 .cont2 .one .list .input .layui-form-select {
                        width: fit-content;
                        height: auto;
                        font-size: var(--font14);
                    }

                        .MyMoreCon6 .cont2 .one .list .input .layui-form-select .layui-select-title {
                            width: fit-content;
                            height: auto;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                        }

                            .MyMoreCon6 .cont2 .one .list .input .layui-form-select .layui-select-title .layui-edge {
                                width: 30px;
                                height: 30px;
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: -webkit-flex;
                                display: flex;
                                -webkit-box-align: center;
                                -ms-flex-align: center;
                                -webkit-align-items: center;
                                align-items: center;
                                -webkit-box-pack: center;
                                -ms-flex-pack: center;
                                -webkit-justify-content: center;
                                justify-content: center;
                                flex-shrink: 0;
                                position: relative;
                                z-index: 1;
                                top: unset;
                                right: unset;
                                border: 0;
                                margin-top: 0;
                            }

                                .MyMoreCon6 .cont2 .one .list .input .layui-form-select .layui-select-title .layui-edge::after {
                                    content: '\e61a';
                                    position: absolute;
                                    width: auto;
                                    height: auto;
                                    font-family: "layui-icon";
                                    font-style: normal;
                                }

                            .MyMoreCon6 .cont2 .one .list .input .layui-form-select .layui-select-title input {
                                border-right: 1px solid #CCC !important;
                            }

            .MyMoreCon6 .cont2 .one .btn {
                width: 100px;
                height: 32px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                font-size: var(--font14);
                cursor: pointer;
            }

            .MyMoreCon6 .cont2 .one .btn1 {
                background: url(/content/v2/v3/img/bg5.jpg);
                background-size: cover;
                border-radius: 4px;
                color: #333333;
            }

            .MyMoreCon6 .cont2 .one .btn2 {
                background: url(/content/v2/v3/img/bg4.png);
                background-size: cover;
                border-radius: 4px;
                color: #965132;
            }

.MyMoreCon7 {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

    .MyMoreCon7 .wordBg {
        width: 100%;
        height: auto;
        padding: 20px;
        background: #fafafa;
    }

        .MyMoreCon7 .wordBg .t1 {
            width: 100%;
            height: auto;
            position: relative;
            z-index: 1;
        }

        .MyMoreCon7 .wordBg .t2 {
            line-height: 2;
        }

.popupCon8 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
}

    .popupCon8 .center_box {
        width: 650px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon8 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon8 .center_box .title::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 50%;
                background: #ffbc8b;
                opacity: 0.2;
                z-index: -1;
            }

            .popupCon8 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon8 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
        }

    .popupCon8.active {
        display: flex;
    }

.popupCon9 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
}

    .popupCon9 .center_box {
        width: 900px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon9 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon9 .center_box .title::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 50%;
                background: #ffbc8b;
                opacity: 0.2;
                z-index: -1;
            }

            .popupCon9 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon9 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
        }

    .popupCon9.active {
        display: flex;
    }

.popupCon10 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    background: #0000007a;
}

    .popupCon10 .center_box {
        width: 900px;
        border-radius: 10px;
        background: #FFFFFF;
        overflow: hidden;
    }

        .popupCon10 .center_box .title {
            width: 100%;
            height: 50px;
            background: #ff6a12;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            font-size: var(--font18);
            color: #FFFFFF;
            font-weight: 600;
        }

            .popupCon10 .center_box .title::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 50%;
                background: #ffbc8b;
                opacity: 0.2;
                z-index: -1;
            }

            .popupCon10 .center_box .title img {
                position: absolute;
                cursor: pointer;
                right: 20px;
            }

        .popupCon10 .center_box .content {
            width: 100%;
            height: auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

    .popupCon10.active {
        display: flex;
    }

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: rgba(255, 106, 18, 1) !important;
}

.layui-tab-brief > .layui-tab-title .layui-this {
    background: #ff6a12;
    color: #FFFFFF !important;
}

    .layui-tab-brief > .layui-tab-more li.layui-this:after, .layui-tab-brief > .layui-tab-title .layui-this:after {
        border-bottom: 0 !important;
    }

.layui-form-label {
    font-size: 14px !important;
    width: 120px !important;
}

.layui-form-radio:hover *, .layui-form-radioed, .layui-form-radioed > i {
    color: #ff6a12 !important;
}
