@charset "utf-8";

body::-webkit-scrollbar {
    width: 6px;
    height: 10px;
    margin: 0 2px;
    background-color: rgba(0, 0, 0, 0);
    -webkit-border-radius: 100px;
}

    body::-webkit-scrollbar:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

body::-webkit-scrollbar-thumb {
    background: #B71C2C;
    -webkit-border-radius: 100px;
    border: 2px solid transparent;
}

    body::-webkit-scrollbar-thumb:active {
        background: rgba(0, 0, 0, 0.61);
        -webkit-border-radius: 100px;
    }


:root {
    --main-clr: #B71C2C;
}

/******* header *******************************************************************/


#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    height: 100px;
    transition: opacity .6s, height .3s;
    border-bottom: 1px solid rgba(238, 238, 238, 0.10);
}

    #header:before {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        height: 0;
        background: #fff;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        content: '';
        opacity: 0;
        transition: opacity .6s, height .3s;
        -webkit-transition: opacity .6s, height .3s;
    }

.dimNav {
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
    display: none;
}

    .dimNav.active {
        display: block;
    }

#header.white {
    background: #fff;
}


#header .header-wrap {
    position: relative;
    height: 100%;
    margin: auto;
    width: 100%;
}

#header .logo {
    position: absolute;
    z-index: 1;
    top: 28px;
    left: 40px;
}

    #header .logo > a {
        position: relative;
        display: inline-block;
        width: 164px;
        height: 34px;
        vertical-align: middle;
    }

#header.white .logo > a:before {
    background: url(../images/main/logo-c.svg) no-repeat 0 0;
}

#header.active .logo > a:before {
    background: url(../images/main/logo-c.svg) no-repeat 0 0;
}

#header .logo > a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(../images/main/logo-w.svg) no-repeat 0 0;
    background-size: 50% !important;
}

/*
    #header .nav-wrap>nav {
        position: absolute;
        height: 4rem;
        top: 50%;
        text-align: center;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
*/

#header #gnb-pc {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    height: 100px;
    line-height: 100px;
    max-width: 900px;
}

    #header #gnb-pc .gnb-li {
        font-size: 16px;
        width: 158px;
        height: 100px;
        color: #000;
    }

        #header #gnb-pc .gnb-li > a {
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
            font-weight: 500;
        }

#header.white #gnb-pc .gnb-li > a > span {
    color: #111;
}

#header.active #gnb-pc .gnb-li > a > span {
    color: #111;
}

#header #gnb-pc .gnb-li > a > span {
    position: relative;
    display: block;
    font-size: 19px;
    color: #fff;
}

    #header #gnb-pc .gnb-li > a > span:before {
        position: absolute;
        z-index: 1;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: #B71C2C;
        content: '';
        opacity: 0;
        transition: width .3s, opacity .3s;
        -webkit-transition: width .3s, opacity .3s;
    }

#header.active #gnb-pc .gnb-li > a:hover > span:before,
#header.active #gnb-pc .gnb-li > a:focus > span:before,
#header.active #gnb-pc .gnb-li.active > a > span:before {
    width: 100%;
    opacity: 1;
}

#header #gnb-pc .gnb-li > a:hover > span,
#header #gnb-pc .gnb-li > a:focus > span,
#header #gnb-pc .gnb-li.active > a > span {
    color: #B71C2C;
}

#header #gnb-pc .dph2 {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    opacity: 0;
    width: 100%;
    height: 0;
    border-left: 1px solid #ddd;
    transition: opacity .3s, height .3s;
    -webkit-transition: opacity .3s, height .3s;
}

#header #gnb-pc .gnb-li:last-of-type .dph2 {
    border-right: 1px solid #ddd;
}

#header #gnb-pc .dph2:hover {
    transition: all .3s;
    background: #f1f1f1;
}

#header #gnb-pc .sub-dph2 {
    color: #767676;
    text-align: center;
    line-height: 2.5;
    font-weight: 300;
    font-size: 16px;
    transition: color .3s;
    -webkit-transition: color .3s;
}

    #header #gnb-pc .sub-dph2 > a > span {
        position: relative;
        display: inline-block;
    }

        #header #gnb-pc .sub-dph2 > a > span:before {
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 0;
            height: 1px;
            background: #555;
            content: '';
            -webkit-transition: width .3s;
            transition: width .3s;
        }

    #header #gnb-pc .sub-dph2:hover,
    #header #gnb-pc .sub-dph2:focus,
    #header #gnb-pc .sub-dph2.active {
        color: #555;
    }

        #header #gnb-pc .sub-dph2:hover > a > span:before,
        #header #gnb-pc .sub-dph2:focus > a > span:before,
        #header #gnb-pc .sub-dph2.active > a > span:before {
            width: 100%;
        }

#header.active {
    background: #fff;
}

    #header.active:before {
        opacity: 1;
        height: 280px;
    }

    #header.active:after {
        opacity: 1;
        height: 280px;
    }

#header.onscr .header-wrap {
    border-bottom: 1px solid #eee;
}

#header.active #gnb-pc .gnb-li > a {
    color: #000;
}

#header.active #gnb-pc .dph2 {
    padding-top: 32px;
    opacity: 1;
    height: 278px;
}

#header.active #gnb-pc .gnb-li.active .dph2 {
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

/*  메뉴  */
#header .menu_link {
    display: block;
    position: absolute;
    top: 61%;
    right: 20px;
    transform: translate(-50%, -50%);
    z-index: 11;
}

    #header .menu_link .box {
        position: relative;
        width: 42px;
        height: 37px;
    }

    #header .menu_link span {
        display: block;
        position: relative;
        top: 63%;
        color: #fff;
        transition: all .5s;
        text-transform: uppercase;
    }

    #header .menu_link .box span:before {
        content: "";
        background: #fff;
        height: 4px;
        width: 40px;
        position: absolute;
        top: -10px;
        left: 50%;
        margin: 0 0 0 -20px;
        display: block;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

    #header .menu_link .box span:after {
        content: "";
        background: #fff;
        height: 4px;
        width: 40px;
        position: absolute;
        top: -20px;
        left: 50%;
        margin: 0 0 0 -20px;
        display: block;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

#header.white .menu_link span {
    color: #111;
}

    #header.white .menu_link span:before {
        background: #111;
    }

    #header.white .menu_link span:after {
        background: #111;
    }

#header.active .menu_link span {
    color: #111;
}

    #header.active .menu_link span:before {
        background: #111;
    }

    #header.active .menu_link span:after {
        background: #111;
    }

#header .menu_link .box.close span {
    color: #111;
}

    #header .menu_link .box.close span:before {
        transform: rotate(45deg);
        top: -15px;
        width: 25px;
        margin: 0 0 0 -13px;
        background: #111;
    }

    #header .menu_link .box.close span:after {
        transform: rotate(-45deg);
        top: -15px;
        width: 25px;
        margin: 0 0 0 -13px;
        background: #111;
    }

#header .side_menu {
    position: relative;
}

    #header .side_menu .menu_inner {
        background: #fff;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 8;
        transition: all .3s;
    }

        #header .side_menu .menu_inner.active {
            opacity: 1;
            visibility: visible;
        }

        #header .side_menu .menu_inner ul li a {
            transition: all .3s;
        }

        #header .side_menu .menu_inner .dflx {
            display: flex;
            height: 100vh;
            width: 100%;
            flex-direction: row-reverse;
        }

            #header .side_menu .menu_inner .dflx .nav {
                flex: 1;
                padding: 140px 100px;
            }

                #header .side_menu .menu_inner .dflx .nav ul li:first-child {
                    margin-top: 0;
                }

            #header .side_menu .menu_inner .dflx .bg_wrap {
                position: relative;
                width: 620px;
                height: 100%;
                background: url(../images/main/side_bg.png) no-repeat;
                background-size: cover !important;
            }

                #header .side_menu .menu_inner .dflx .bg_wrap:after {
                    content: "";
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    display: block;
                    background: rgb(0, 0, 0, .4);
                    z-index: 1;
                }

                #header .side_menu .menu_inner .dflx .bg_wrap .txt {
                    position: relative;
                    z-index: 2;
                }

                    #header .side_menu .menu_inner .dflx .bg_wrap .txt h2 {
                        font-size: 50px;
                        line-height: 1.4;
                        color: #fff;
                    }

                    @media (min-width:551px) {
                        #header .side_menu .menu_inner .dflx .bg_wrap .txt h2 .mbr {
                            display : none;
                        }
                    }

                    @media (max-width: 550px) {
                        #header .side_menu .menu_inner .dflx .bg_wrap .txt h2 br {
                            display : none;
                        }

                        #header .side_menu .menu_inner .dflx .bg_wrap .txt h2 .mbr {
                            display: block;
                        }
                    }

    #header .side_menu .nav .nav_list > li > a {
        display: inline-block;
        height: 100%;
        padding: 18px 30px;
        line-height: 60px;
        position: relative;
    }

    #header .side_menu .nav > .nav_list > li > a > span {
        display: flex;
        align-items: center;
        font-size: 58px;
        font-weight: 700;
        transform: translateX(0%);
        line-height: 1;
    }

    #header .side_menu .menu_inner .dflx .nav ul li a .dropdown {
        position: absolute;
        right: -9px;
        margin: 0;
        top: 38%;
        transform: translate(-50%, -50%);
        transform: rotate(135deg);
        transition: .3s ease;
    }

    #header .side_menu .menu_inner .dflx .nav ul li a.on .dropdown {
        transform: rotate(315deg);
    }

    #header .side_menu .sub_list {
        display: none;
        opacity: 1;
        padding-left: 30px;
    }

        #header .side_menu .sub_list > li > a > span {
            font-size: 28px;
        }

    #header .side_menu .bg_dflx {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 2;
        padding: 140px 60px;
    }

        #header .side_menu .bg_dflx .txt,
        #header .side_menu .bg_dflx .info {
            width: 100%;
        }

    #header .side_menu .info .info_list {
        display: flex;
    }

        #header .side_menu .info .info_list .info_item:not(:last-child) {
            margin-right: 80px;
        }

        #header .side_menu .info .info_list .info_item h3 {
            line-height: 1.3;
            font-size: 16px;
            margin-top: 16px;
            color: #fff;
        }

        #header .side_menu .info .info_list .info_item strong {
            font-size: 16px;
            color: #fff;
        }

    #header .side_menu .right-2.dropdown {
    }


    #header .side_menu .right-2 {
        display: inline-flex;
        width: 12px;
        height: 12px;
        cursor: pointer;
    }


        #header .side_menu .right-2.right-2 {
            border-top: 2px solid #000;
            border-right: 2px solid #000;
            transform: rotate(45deg);
        }

    #header .side_menu .sub_list > li {
        padding: 4px 0;
        display: inline-block;
    }

        #header .side_menu .sub_list > li:not(:last-child) {
            margin-right: 32px;
        }


/*  언어선택  */
#header .lang_wrap {
    position: absolute;
    top: 50%;
    right: 140px;
    display: flex;
    transform: translateY(-50%);
}

    #header .lang_wrap .inner {
        width: 50px;
        position: relative;
    }

    #header .lang_wrap button {
        color: #fff;
        background: transparent;
        overflow: hidden;
        position: relative;
        display: block;
        width: 100%;
        text-align: left;
        height: 100%;
        font-size: 13px;
        line-height: 24px;
        border: none;
        border-bottom: 2px solid #fff;
        text-transform: uppercase;
        font-weight: 600;
    }

        #header .lang_wrap button span {
            position: absolute;
            top: 0px;
            right: 0px;
            transition: transform 0.3s ease;
        }

            #header .lang_wrap button span.active i {
                transform: rotate(180deg);
            }

            #header .lang_wrap button span i {
                position: relative;
                top: 0px;
                font-size: 12px;
                color: #fff;
                transition: transform 0.3s ease;
            }

    #header .lang_wrap .lang_list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        text-align: center;
    }


#header .lang_wrap .lang_list li a {
    color: #111;
    text-transform: uppercase;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    background: #f9f9f9;
    line-height: 1;
}

        #header .lang_wrap .lang_list.active {
            height: auto;
        }



#header.white .lang_wrap button,
#header.active .lang_wrap button {
    color: #111;
    border-bottom: 2px solid #111;
}

#header.white .lang_wrap .li a,
#header.active .lang_wrap .li a {
    background: #111;
    color: #fff;
}

#header.white .lang_wrap span i,
#header.active .lang_wrap span i {
    color: #111;
}

/*#header .lang-wrap {
    position: absolute;
    top: 37px;
    right: 140px;
    display: flex;
}

    #header .lang-wrap a {
        display: inline-block;
        vertical-align: middle;
        font-size: 16px;
        color: #c2c2c2;
        font-weight: bold;
        position: relative;
    }

        #header .lang-wrap a.active {
            color: #e86824;
            font-weight: bold;
        }

        #header .lang-wrap a:first-child {
            margin-right: 24px;
        }

            #header .lang-wrap a:first-child:after {
                display: block;
                content: "";
                clear: both;
                width: 3px;
                height: 3px;
                background-color: #c2c2c2;
                position: absolute;
                right: -13px;
                top: 7px;
                border-radius: 50%;
            }*/
@media screen and (max-width:1600px) {
    #header #gnb-pc .gnb-li {
        width: 138px;
    }
}

@media screen and (max-width:1400px) {
    #header #gnb-pc .gnb-li {
        width: 120px;
    }

    #header .side_menu .menu_inner .dflx .bg_wrap {
        width: 520px;
    }

        #header .side_menu .menu_inner .dflx .bg_wrap .txt h2 {
            font-size: 38px;
        }

    #header .side_menu .info .info_list .info_item:not(:last-child) {
        margin-right: 40px;
    }

    #header .side_menu .menu_inner .dflx .nav {
        padding: 140px 50px;
    }

    #header .side_menu .nav > .nav_list > li > a > span {
        font-size: 42px;
    }

    #header .side_menu .sub_list > li > a > span {
        font-size: 22px;
    }

    #header .side_menu .sub_list > li:not(:last-child) {
        margin-right: 24px;
    }
}

@media screen and (max-width:1220px) {
    #header #gnb-pc .gnb-li {
        width: 118px;
    }

    #header .side_menu .menu_inner .dflx .nav {
        padding: 140px 30px;
    }

    #header .side_menu .sub_list > li > a > span {
        font-size: 20px;
    }
}

@media screen and (max-width:1200px) {
    #header {
        height: 66px;
    }

        #header .nav-wrap {
            display: none;
        }

        #header .logo {
            top: 50%;
            transform: translateY(-50%);
        }

            #header .logo > a {
                height: 30px;
            }

                #header .logo > a:before {
                    background-size: 45% !important;
                }

        #header .lang-wrap {
            top: 50%;
            transform: translateY(-50%);
        }

        #header .menu_link {
            right: 10px;
            top: 62%;
        }
}

@media (max-width:1100px) {
    #header .side_menu .bg_dflx {
        padding: 0 60px;
    }

    #header .side_menu .info .info_list {
        display: none;
    }

    #header .side_menu .menu_inner .dflx {
        flex-direction: column-reverse;
    }

        #header .side_menu .menu_inner .dflx .bg_wrap {
            width: 100%;
            height: 250px;
            background-position: 50% 50%;
        }

            #header .side_menu .menu_inner .dflx .bg_wrap .txt {
                display: flex;
                height: 100%;
                align-items: center;
            }

        #header .side_menu .menu_inner .dflx .nav {
            padding: 60px 30px;
        }

    #header .menu_link .box.close span {
        color: #fff;
    }

        #header .menu_link .box.close span:after,
        #header .menu_link .box.close span:before {
            background: #fff !important;
        }
}

@media (max-width:920px) {
    #header .side_menu .menu_inner .dflx .bg_wrap {
        width: 100%;
        height: 140px;
        background-position: 50% 50%;
    }

        #header .side_menu .menu_inner .dflx .bg_wrap .txt h2 {
            font-size: 22px;
        }

    #header .side_menu .nav > .nav_list > li > a > span {
        font-size: 32px;
    }

    #header .side_menu .sub_list > li > a > span {
        font-size: 18px;
    }

    #header .side_menu .sub_list > li {
        display: block;
    }

    #header .side_menu .menu_inner .dflx .nav {
        padding: 20px;
    }

    #header .side_menu .nav .nav_list > li > a {
        padding: 12px 20px;
    }

    #header .side_menu .bg_dflx {
        padding: 0 40px;
    }

    #header .side_menu .right-2 {
        width: 8px;
        height: 8px;
    }
}

@media screen and (max-width:786px) {
    #header .logo {
        left: 20px;
    }

    #header .lang_wrap {
        right: 100px;
    }

    #header .menu_link span {
        font-size: 14px;
        top: 80%;
    }

    #header .lang-wrap {
        right: 100px;
    }

    #header .menu_link {
        right: 0;
        top: 56%;
    }

    #header .side_menu .nav .nav_list > li > a {
        line-height: 80px;
    }

    #header .side_menu .sub_list > li {
        padding: 8px 0;
    }
}

@media (max-width:550px) {
    #header .lang_wrap {
        right: 80px;
    }
}

/******* sub *******************************************************************/
#sub_wrap {
    margin-top: 250px;
}

    #sub_wrap .sub_tit {
        max-width: 1440px;
        margin: 0 auto 60px;
        position: relative;
    }

        #sub_wrap .sub_tit h2 {
            font-size: 96px;
            line-height: 1;
            color: #111;
            font-family: 'Play', sans-serif;
        }

    #sub_wrap .sub_des_nav {
        border-bottom: 1px solid #eee;
    }

        #sub_wrap .sub_des_nav ul {
            display: flex;
            max-width: 1440px;
            margin: 0 auto;
        }

            #sub_wrap .sub_des_nav ul li {
                margin-left: 20px;
                margin-right: 20px;
                height: 45px;
            }

                #sub_wrap .sub_des_nav ul li:first-child {
                    margin-left: 0;
                }

                #sub_wrap .sub_des_nav ul li a {
                    font-size: 18px;
                    padding-bottom: 23px;
                    display: inline-block;
                    position: relative;
                }

                #sub_wrap .sub_des_nav ul li.on a:after {
                    content: "";
                    left: 0;
                    bottom: -1px;
                    width: 100%;
                    height: 3px;
                    background: var(--main-clr);
                    position: absolute;
                    display: block;
                    z-index: 1;
                }

    #sub_wrap .sub_hisNav {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 24px;
    }

        #sub_wrap .sub_hisNav ul {
            display: flex;
            align-items: center;
            height: 100%;
        }

            #sub_wrap .sub_hisNav ul li {
                margin-left: 5px;
                margin-right: 5px;
            }

                #sub_wrap .sub_hisNav ul li:first-child {
                    margin-left: 0;
                }

                #sub_wrap .sub_hisNav ul li a {
                    font-size: 15px;
                    color: #888;
                    text-transform: uppercase;
                    line-height: 1;
                }

                #sub_wrap .sub_hisNav ul li em {
                    padding-left: 6px;
                }

                    #sub_wrap .sub_hisNav ul li em i {
                        font-size: 12px;
                        color: #888;
                        transform: translateY(-2px);
                    }

    #sub_wrap .sub_stit {
        margin: 86px auto;
        max-width: 1440px;
    }

        #sub_wrap .sub_stit h2 {
            font-size: 48px;
            line-height: 1.4;
            color: #111;
            font-weight: 800;
        }

    #sub_wrap .sub_cmbg {
        position: relative;
    }

        /*
#sub_wrap .sub_cmbg:before {
    content: "";
    top: 200px;
    height: 800px;
    position: absolute;
    width: 100%;
    left: 0;
    background: #f8f8f8;
    z-index: -1;
}
*/



    #sub_wrap .sub_grt {
        position: relative;
        overflow: hidden;
    }

        #sub_wrap .sub_grt:before {
            content: "";
            width: 1440px;
            height: 500px;
            position: absolute;
            bottom: -180px;
            left: 0;
            z-index: -1;
            background: url(../images/sub/sub1_bg_after.png) no-repeat;
            overflow: hidden;
        }

        #sub_wrap .sub_grt .dflx {
            display: flex;
            justify-content: space-between;
            max-width: 1280px;
            margin: 80px auto;
        }

            #sub_wrap .sub_grt .dflx .left,
            #sub_wrap .sub_grt .dflx .right {
                width: 50%;
            }

                #sub_wrap .sub_grt .dflx .left h2 {
                    font-size: 32px;
                    line-height: 1.4;
                    color: #111;
                }

                #sub_wrap .sub_grt .dflx .right .p_1 {
                    font-size: 16px;
                    line-height: 1.6;
                    color: #555;
                    margin-bottom: 32px;
                    word-break : keep-all;
                }

                #sub_wrap .sub_grt .dflx .right .p_2 {
                    font-weight: bold;
                    font-size: 32px;
                    color: #111;
                    letter-spacing: 1.2px;
                }

                    #sub_wrap .sub_grt .dflx .right .p_2 em {
                        font-size: 16px;
                        font-weight: 300;
                        font-style: normal;
                    }

.sub_txt span {
    font-size: 92px;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Play', sans-serif;
}

.sub_txt.splitting .char {
    display: inline-block;
    animation: slide-in 1.8s cubic-bezier(.2, 0, .1, 1) both;
    animation-delay: calc(60ms * var(--char-index));
    will-change: transform;
    transform-origin: top left;
}


/*  sub drop  */
.sub_nav_wrap {
    position: relative;
    z-index : 1;
}

.sub_drop_wrap {
    max-width: 1440px;
    margin: 0 auto;
    height: 60px;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

    .sub_drop_wrap .sub_nav {
        float: left;
        height: 60px;
        line-height: 60px;
        border-right: 1px solid #eee;
    }

        .sub_drop_wrap .sub_nav:nth-child(1) {
            width: 80px;
            border-left: 1px solid #eee;
            border-top: 1px solid #eee;
        }

            .sub_drop_wrap .sub_nav:nth-child(1) span {
                display: inline-block;
                text-align: center;
                width: 100%;
            }

        .sub_drop_wrap .sub_nav:nth-child(2) {
            position: relative;
            float: left;
            width: 320px;
        }

        .sub_drop_wrap .sub_nav:nth-child(3) {
            position: relative;
            float: left;
            width: 320px;
        }

.sub_drop_list {
    display: none;
}

.sub_drop_wrap .sub_drop_list li {
    padding: 0 20px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

    .sub_drop_wrap .sub_drop_list li:hover {
        background: #f8f8f8;
    }

    .sub_drop_wrap .sub_drop_list li a {
        color: #111;
        font-size: 15px;
        display: block;
        width: 100%;
        height: 100%;
        text-transform: uppercase;
    }

.sub_drop_wrap .nav_on {
    position: relative;
    padding: 0 20px;
    display: block;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
}

    .sub_drop_wrap .nav_on span {
        display: inline-block;
        top: 0;
        right: 20px;
        position: absolute;
    }

        .sub_drop_wrap .nav_on span i {
            color: #333;
            font-size: 15px;
        }

.sub_drop_wrap .depth2 {
}

    .sub_drop_wrap .depth2 a {
        color: #111;
    }

        .sub_drop_wrap .depth2 a span i {
            color: #111;
        }

@media (max-width:768px) {
    .sub_drop_wrap .depth2 a {

        font-size: 14px;
    }

    .sub_drop_wrap .sub_drop_list li {

    }

        .sub_drop_wrap .sub_drop_list li,
        .sub_drop_wrap .nav_on {
            padding: 0 12px;
        }

    .sub_drop_wrap .sub_drop_list li a {
        font-size: 12px;
    }

            .sub_drop_wrap .nav_on span {
                right: 8px;
            }

            .sub_drop_wrap .nav_on span i {
                font-size: 12px;
            }
        }

.sub_nav.on .sub_drop_list {
    display: block;
    position: relative;
    z-index: 3;
}

@media (max-width:1450px) {
    #sub_wrap {
        margin-top: 200px;
    }

        #sub_wrap .sub_tit,
        #sub_wrap .sub_des_nav,
        #sub_wrap .sub_stit {
            padding: 0 34px;
        }

    .sub_txt span {
        font-size: 72px;
    }
}

@media (max-width:1024px) {
    #sub_wrap .sub_stit h2 {
        font-size: 32px;
    }

    .sub_txt span {
        font-size: 52px;
    }
}

@media (min-width:769px) {
    .sub_nav_wrap {
        display: none;
    }
}

@media (max-width:768px) {
    #sub_wrap .sub_tit {
        margin : 0 auto 40px;
    }

    #sub_wrap {
        margin-top: 65px;
    }

        #sub_wrap .sub_hisNav {
            display: none;
        }

        #sub_wrap .sub_des_nav {
            display: none;
        }

        #sub_wrap .sub_stit {
            margin : 32px auto;
        }

            #sub_wrap .sub_stit h2 {
                -ms-hyphens: auto;
                -webkit-yphens: auto;
                hyphens: auto;
                word-break: break-word;
            }

            #sub_wrap .sub_stit h2 br {
                display : none;
            }

            .sub_nav_wrap {
                padding-left: 0;
                display: block;
            }

    .sub_drop_wrap .sub_nav:nth-child(1) {
display : none;
    }

    .sub_drop_wrap .sub_nav:nth-child(2),
    .sub_drop_wrap .sub_nav:nth-child(3) {
        width: 50%;
    }

    #sub_wrap .sub_stit h2 {
        font-size: 18px;
    }

    #sub_wrap .sub_cmbg .bg {
        height: 320px !important;
        padding: 0 !important;
    }
}

@media (max-width:300px) {
    .sub_drop_wrap .depth2 a {
        font-size : 12px;
    }

    .sub_drop_wrap .nav_on {
        font-size : 12px;
    }
}



/******* business *******************************************************************/

.sch_sec1 {
    position: relative;
    padding: 150px 0 0;
}

    .sch_sec1:after {
        content: '';
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 80%;
        background-color: #f7f7f7;
    }

    .sch_sec1 .dflx {
        display: flex;
        max-width: 1280px;
        margin: 0 auto;
        height: 550px;
    }

        .sch_sec1 .dflx .left,
        .sch_sec1 .dflx .right {
            width: 50%;
        }

            .sch_sec1 .dflx .left .bg {
                height: 550px;
                text-align: center;
                background: #f1f1f1;
            }

                .sch_sec1 .dflx .left .bg .df {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: 100%;
                }

                    .sch_sec1 .dflx .left .bg .df img {
                        width: 360px;
                    }

            .sch_sec1 .dflx .right .df {
                display: flex;
                align-items: center;
                height: 100%;
                padding-left: 80px;
            }

                .sch_sec1 .dflx .right .df .txt {
                }

                    .sch_sec1 .dflx .right .df .txt h2 {
                        font-size: 46px;
                        line-height: 1.4;
                        margin-bottom: 24px;
                    }

                    .sch_sec1 .dflx .right .df .txt p {
                        line-height: 1.4;
                        font-size: 22px;
                    }

.sch_sec2 .busi_cmtit {
    padding: 150px 0 80px;
    text-align: center;
}

    .sch_sec2 .busi_cmtit .top {
        padding: 80px 0;
        background: #f0f4fb;
        margin-bottom: 100px;
    }

        .sch_sec2 .busi_cmtit .top .df {
        }

            .sch_sec2 .busi_cmtit .top .df h2 {
                font-size: 42px;
                line-height: 1.4;
                margin-bottom: 24px;
                font-weight: 700;
            }

            .sch_sec2 .busi_cmtit .top .df p {
                font-size: 20px;
                line-height: 1.5;
                color: #555;
            }

    .sch_sec2 .busi_cmtit .bot .df h2 {
        font-size: 42px;
        line-height: 1.4;
        margin-bottom: 24px;
        font-weight: bold;
    }

    .sch_sec2 .busi_cmtit .bot .df p {
        font-size: 18px;
        color: #555;
    }

.sch_sec3 {
    padding: 0 0 100px;
}

    .sch_sec3 .dflx {
        display: flex;
        height: 500px;
    }

        .sch_sec3 .dflx .dflx_item {
            max-width: 1280px;
            margin: 0 auto;
        }

        .sch_sec3 .dflx.rev {
            flex-direction: row-reverse;
        }

        .sch_sec3 .dflx .left,
        .sch_sec3 .dflx .right {
            width: 50%;
        }

        .sch_sec3 .dflx .left {
            position: relative;
        }

            .sch_sec3 .dflx .left .bg {
                height: 450px;
                background: #fff;
                border-radius: 30px;
                transform: translateY(-90px);
                box-shadow: 4px 12px 10px 6px rgb(0 0 0 / 4%);
                position: relative;
                text-align: center;
                border: 30px solid #fff;
                display: flex;
                align-items: center;
                overflow: hidden;
            }

    .sch_sec3 .dflx_wrap .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover !important;
    }

    .sch_sec3 .dflx .right .df {
        display: flex;
        align-items: center;
        height: 100%;
        padding-left: 60px;
    }

    .sch_sec3 .dflx.rev .right {
        position: relative;
    }

    .sch_sec3 .dflx .right ul li {
        position: relative;
        line-height: 1.4;
        padding-left: 10px;
        margin: 6px 0;
        font-size: 18px;
    }

        .sch_sec3 .dflx .right ul li:before {
            content: "";
            top: 9px;
            left: 0;
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 4px;
            background: #bcbcbc;
            z-index: 1;
        }


    .sch_sec3 .dflx.rev .right .df {
        position: absolute;
        top: 50%;
        left: calc((100% - 560px) / 2);
        transform: translateY(-50%);
    }

    .sch_sec3 .dflx .right .df .txt {
    }

        .sch_sec3 .dflx .right .df .txt span {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 12px;
            background: #B71C2C;
            margin-bottom: 16px;
        }


        .sch_sec3 .dflx .right .df .txt h2 {
            font-size: 32px;
            line-height: 1.4;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .sch_sec3 .dflx .right .df .txt p {
            font-size: 18px;
            color: #555;
            line-height: 1.4;
        }

    .sch_sec3 .dflx_wrap {
        background: #f9f9f9;
        margin: 250px 0;
    }

    .sch_sec3 .dflx_item {
        max-width: 1440px;
        margin: 0 auto;
    }

    .sch_sec3 .dflx_wrap:nth-child(1) {
        margin: 50px 0 250px;
    }

    .sch_sec3 .dflx_wrap:last-child {
        margin-bottom: 0;
    }

.sch_sec4 {
    padding: 100px 0;
}

    .sch_sec4 .tit {
        max-width: 1440px;
        margin: 0 auto 60px;
    }

        .sch_sec4 .tit h2 {
            font-size: 36px;
            line-height: 1;
            font-weight: 700;
        }

    .sch_sec4 .list {
        max-width: 1460px;
        margin: 0 auto;
    }

        .sch_sec4 .list ul {
            display: flex;
            flex-wrap: wrap;
        }

            .sch_sec4 .list ul li {
                width: 25%;
                padding-left: 15px;
                padding-right: 15px;
                margin-bottom: 30px;
            }

                .sch_sec4 .list ul li .over {
                    position: relative;
                    overflow: hidden;
                    height: 105px;
                    display: flex;
                    width: 100%;
                    align-items: center;
                    justify-content: center;
                }

@media (max-width:1450px) {
    .sch_sec3 .dflx_wrap {
        padding: 0 40px 60px 40px;
    }

    .sch_sec4 {
        padding: 100px 40px;
    }
}

@media (max-width:1300px) {
    .sch_sec1 .dflx {
        padding: 0 40px;
    }
}

@media (max-width:1200px) {
    .sch_sec2 .busi_cmtit .top .df h2 {
        font-size: 36px;
    }

    .sch_sec2 .busi_cmtit .top {
        padding: 80px 60px;
    }

        .sch_sec2 .busi_cmtit .top .df p {
            word-break: keep-all;
        }

            .sch_sec2 .busi_cmtit .top .df p br {
                display: none;
            }
}

@media (max-width:1024px) {
    .sch_sec1 .dflx .right .df .txt h2 img {
        width: 320px;
    }

    .sch_sec4 .list ul li {
        width: 33.33333333%;
    }

    .sch_sec2 .busi_cmtit .top .df h2 {
        font-size: 32px;
    }

    .sch_sec3 .dflx {
        height: auto;
        display: block;
    }

        .sch_sec3 .dflx.rev {
            flex-direction: row;
            display: block;
        }

    .sch_sec2 .busi_cmtit .bot .df h2 {
        font-size: 36px;
    }

    .sch_sec3 .dflx .right .df .txt h2 {
        font-size: 28px;
    }

    .sch_sec3 .dflx .left {
        width: 100%;
    }

    .sch_sec3 .dflx .right {
        width: 100%;
    }

        .sch_sec3 .dflx .right .df {
            padding-left: 0;
        }

    .sch_sec3 .dflx.rev .right .df {
        position: static;
        transform: translateY(0);
    }
}

@media (max-width:890px) {
    .sch_sec1 {
        padding: 80px 0 0;
    }

        .sch_sec1 .dflx {
            display: block;
            height: auto;
        }

            .sch_sec1 .dflx .left,
            .sch_sec1 .dflx .right {
                width: 100%;
            }

            .sch_sec1 .dflx .right {
                margin-top: 42px;
            }

                .sch_sec1 .dflx .right .df {
                    padding-left: 0px;
                }

        .sch_sec1:after {
            display: none;
        }

        .sch_sec1 .dflx .right .df .txt h2 img {
            width: 280px;
        }

        .sch_sec1 .dflx .right .df .txt p {
            font-size: 20px;
        }

    .sch_sec3 .dflx .right .df .txt h2 {
        font-size: 24px;
    }

    .sch_sec3 .dflx .left .bg {
        transform: translateY(-60px);
    }
}

@media (min-width:769px) {
    .mbr {
        display: none;
    }
}

@media (max-width:768px) {
    .mbr {
        display: block;
    }

    .sch_sec1 .dflx .right .df {
        justify-content: center;
        text-align: center;
    }

    .sch_sec4 {
        padding: 0 20px 80px;
    }

        .sch_sec4 .tit h2 {
            font-size: 32px;
        }

        .sch_sec4 .list ul li {
            width: 50%;
        }

    .sch_sec3 .dflx .right .df .txt span {
        width: 10px;
        height: 10px;
        margin-bottom: 8px;
    }

    .sch_sec3 .dflx_wrap {
        padding: 0 20px 60px 20px;
        margin: 120px 0;
    }

    .sch_sec1 .dflx .right .df .txt h2 img {
        width: 220px;
    }

    .sch_sec1 .dflx .right .df .txt p {
        font-size: 18px;
    }

    .sch_sec2 .busi_cmtit .top .df p {
        font-size: 18px;
    }

    .sch_sec2 .busi_cmtit .top {
        padding: 80px 20px;
    }

    .sch_sec2 .busi_cmtit {
        padding: 80px 0;
    }

        .sch_sec2 .busi_cmtit .bot .df h2 {
            font-size: 32px;
            margin-bottom: 0;
        }

    .sch_sec3 .dflx .right ul li {
        font-size: 16px;
    }

        .sch_sec3 .dflx .right ul li br {
            display: none;
        }

    .sch_sec3 .dflx_wrap:nth-child(1) {
        margin-bottom: 120px;
    }

    .sch_sec1 .dflx {
        padding: 0 20px;
    }

    .sch_sec2 .busi_cmtit .top .df h2 {
        font-size: 24px;
    }

        .sch_sec2 .busi_cmtit .top .df h2 br {
            display: none;
        }

    .sch_sec3 {
        padding: 0 0 80px;
    }

    .sch_sec4 .tit {
        margin: 0 auto 40px;
    }

    .sch_sec3 .dflx .left .bg {
        border: 20px solid #fff;
    }

    .sch_sec3 .dflx .left .bg {
        height: 250px;
    }

    .sch_sec1 .dflx .left .bg .df img {
        width: 280px;
    }
}


/******* footer *******************************************************************/
#footer .fam-wrap {
    position: absolute;
    vertical-align: middle;
    bottom: 20px;
    width: 200px;
    background-color: #fff;
    border: 1px solid #222;
    box-sizing: border-box;
    right: 0;
}

    #footer .fam-wrap > a {
        display: block;
        position: relative;
        z-index: 1;
        height: 50px;
        line-height: 50px;
        padding-left: 19px;
        font-size: 14px;
        color: #222;
        text-align: left;
        transition: all .2s;
        text-decoration: none;
        cursor: pointer;
    }

#footer .famtit {
    pointer-events: none;
}

#footer .fam-wrap .ic_arr {
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 17px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    overflow: hidden;
    vertical-align: middle;
}

    #footer .fam-wrap .ic_arr:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
        margin-top: 2px;
        border-top: 1px solid #222;
        border-left: 1px solid #222;
    }

    #footer .fam-wrap .ic_arr.rotate:before {
        transform: translate(-50%, -50%) rotate(-135deg);
        -webkit-transform: translate(-50%, -50%) rotate(-135deg);
        margin-top: -4px;
    }

#footer .fam-wrap ul {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px 19px;
    background: #444;
    margin-bottom: 50px;
    border-bottom: 0;
    display: none;
    border: 1px solid #222;
    box-sizing: border-box;
}

    #footer .fam-wrap ul li a {
        display: block;
        position: relative;
        padding: 5px 0;
        font-size: 12px;
        color: #fff;
        text-decoration: none;
    }

        #footer .fam-wrap ul li a:hover {
            opacity: .9;
        }

    #footer .fam-wrap ul.active {
        display: block;
    }

.right-fix {
    position: fixed;
    z-index: 20;
    top: 50%;
    right: 0;
    width: 80px;
    transform: translateY(-50%);
    border-bottom-left-radius: 12px;
    box-shadow: 2px 6px 12px 0 rgb(17 48 100 / 30%);
    transition: all .8s;
}

    .right-fix.on {
        right: -80px;
    }

    .right-fix.active {
        right: 0;
    }



        .right-fix .innner {
            position: relative;
        }

    .right-fix .inner .right-fix-btn {
        position : absolute;
        top : 0;
        left :-40px;
    }

        .right-fix .inner .right-fix-btn button {
            background: inherit;
            border: none;
            box-shadow: none;
            border-radius: 0;
            padding: 0;
            overflow: visible;
            cursor: pointer
        }

        .right-fix .inner .right-fix-btn span {
            color: #fff;
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height : 40px;
            background: #B71C2C;
        }

    .right-fix .right-fix-btn span i {
        transform: rotate(180deg);
    }

    .right-fix.on .right-fix-btn span i {
        transform: rotate(0);
    }

    .right-fix.active .right-fix-btn span i {
        transform: rotate(180deg);
    }

    .right-fix a {
        display: block;
        color: #fff;
        font-size: 15px;
        line-height: 1.3;
        padding: 24px 12px;
        text-align: center;
    }

        .right-fix a .dflx {
            display : flex ;
            flex-direction : column;
        }

        .right-fix a span {
            padding-top: 8px;
            display: inline-block;
            text-align: center;
        }

        .right-fix a:nth-child(1) {
            background: #f7f7f7;
            color: #222;
        }

            .right-fix a:nth-child(1) img {
                width: 24px;
            }

        .right-fix a:nth-child(2) {
            background: #0066B2;
        }


        .right-fix a:nth-child(2) img {
            width: 32px;
        }



#footer {
    padding: 60px 0;
    background: #F2F2F2;
}

    #footer .inner {
        padding: 0 80px;
    }

        #footer .inner .top {
            margin-bottom: 24px;
        }

            #footer .inner .top .stit {
                text-align: center;
                margin-bottom: 24px;
                color: #eee;
            }

    #footer .top span img {
        width: 120px;
    }

    #footer .bot p.p1 {
        color: #111 !important;
    }

    #footer .bot .fsns {
        position: absolute;
        top: 0;
        right: 0;
    }

        #footer .bot .fsns ul {
            display: flex;
            align-items: center;
        }

            #footer .bot .fsns ul li:nth-child(1) {
                margin-right: 12px;
            }

    #footer .inner .top ul {
        text-align: center;
        display: flex;
        justify-content: center;
    }

        #footer .inner .top ul li {
            margin-left: 16px;
        }

            #footer .inner .top ul li:nth-child(3) a {
                color: #fff;
            }

            #footer .inner .top ul li:first-child {
                margin-left: 0;
            }

            #footer .inner .top ul li a {
                color: #a5a5a5;
            }

    #footer .inner .bot {
        position: relative;
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid #e5e5e5;
    }

        #footer .inner .bot .finfo {
            text-align: left;
        }

            #footer .inner .bot .finfo p {
                font-size: 13px;
                color: #808080;
                margin-bottom: 4px;
            }

                #footer .inner .bot .finfo p:last-child {
                    margin-bottom: 0;
                }

                #footer .inner .bot .finfo p span {
                    display: inline-block;
                    position: relative;
                    vertical-align: middle;
                    margin-right: 10px;
                    font-weight: 400
                }

    #footer .cop_wrap {
        position: relative;
    }

        #footer .cop_wrap .cop p {
            color: #888;
            font-size: 12px;
        }

        #footer .cop_wrap .dflx .btn_wrap {
            position: absolute;
            top: 0;
            right: 0;
        }

            #footer .cop_wrap .dflx .btn_wrap ul {
                display: flex;
            }

                #footer .cop_wrap .dflx .btn_wrap ul li {
                    margin-left: 6px;
                }

                    #footer .cop_wrap .dflx .btn_wrap ul li:first-child {
                        margin-left: 0;
                    }

                    #footer .cop_wrap .dflx .btn_wrap ul li a {
                        color: #a3a3a3;
                        font-size: 11px;
                        display: inline-block;
                        padding: 4px 8px;
                        background: #292929;
                        font-family: 'Play', sans-serif;
                        transition: all .5s;
                    }

                        #footer .cop_wrap .dflx .btn_wrap ul li a:hover {
                            color: #fff;
                        }

@media (max-width:1200px) {
    #footer .top span img {
        width: 80px;
    }
}

@media (max-width:1024px) {
    #footer .inner {
        padding: 0 40px;
    }
}

@media (max-width:790px) {
    #footer .bot .fsns {
        position: inherit;
        margin-top: 12px;
    }

    #footer .fam-wrap {
        position: inherit;
        margin-top: 12px;
        bottom: inherit;
    }
}

@media (max-width:768px) {
    #footer .inner {
        padding: 0 40px;
    }

    #footer .inner .top .stit h3 {
        font-size: 15px;
    }

    #footer .inner .top ul li {
        margin-left: 10px;
    }

    #footer .inner .top ul li a {
        font-size: 13px;
    }
}

@media (max-width:420px) {
    #footer .inner {
        padding: 0 20px;
    }
}
