
    *{
        padding:0px;
        margin:0px;
        box-sizing: border-box;
    }
    body,html{
        width: 100%;
    }
    body{
        
        overflow-x: hidden;
    }
    
    ul{
        list-style: none;
    }
    a{
        text-decoration: none;
        color: inherit;
    }
    img{
        display: block;
        width: 100%;
        height: auto;
    }
    .cursor{
        cursor: pointer;
    }
    .default{
        cursor: default;
    }
    .react{
        height: initial !important;
    }
    *{
        -webkit-tap-highlight-color:transparent;
    }
    input, select, textarea,button{
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        outline: 0;
        border: 0;
        border-radius: 0;
        background: none transparent;
        color: inherit;
        font: inherit;
        line-height: normal;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .flex{
        display:box;
        display: -webkit-box; 
        display: -moz-box;
        display: -webkit-flex; 
        display: -moz-flex; 
        display: -ms-flexbox;
        display: flex;
    }
    .flex-align-items{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -moz-box-pack:center;
        -webkit-align-items: center;
        align-items: center;
    }
    .flex-justify-content{
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        box-align:center;
    }

    .obj-c{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .storeBox{
        display: none;
    }
    .fc{
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
    .delay-1{
        transition-delay: .1s;
    }
    .delay-2{
        transition-delay: .2s;
    }
    .delay-3{
        transition-delay: .3s;
    }
    html.noScroll body{
        position: fixed;
    }
    .container.fillAll{
        min-height: 100vh;
        flex-direction: column;
        display:box;
        display: -webkit-box; 
        display: -moz-box;
        display: -webkit-flex; 
        display: -moz-flex; 
        display: -ms-flexbox;
        display: flex;
    }
    .fillAll main{
        flex:1;
    }
    #loadingDiv{
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1000;
        background: #fff;
        top: 0px;
        left: 0px;
    }
    .hvc{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .fill,
    .fillAft::after,
    .fillBf::before{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .noTsn{
        transition: initial !important;
    }
    .hcb img{
            transition: opacity .4s;
    }
    .hcb img:last-child,
    .hcb:hover img{
        opacity: 0;
    }
    .hcb:hover img:last-child{
        opacity: 1;
    }
    /*::-webkit-scrollbar{
        width: 6px;
        height: 6px;
        
    }
    ::-webkit-scrollbar-thumb{
        border-radius: 3px;
        background: rgba(255,255,255, .15);
        
    }
    :hover::-webkit-scrollbar-thumb{
        background: rgba(255,255,255, .2);
    }
    ::-webkit-scrollbar-track{
        background: rgba(0,0,0,0);
    }*/

    header .menu{
        z-index: 50;
        position: fixed;
        width: 100%;
        top: 0px;
        left: 0px;
        height: 140px;
        padding-right: 30px;
        font-size: 26px;
       /* font-weight: ; */
    }
    header .menu nav{
        height: 100%;
        flex: 1;
        width: auto;
        transition: transform .4s,opacity .4s;
        transform: translateY(-100%);
        opacity: 0;
    }
    header .menu nav.clicked{
        transform: translateY(0px);
        opacity: 1;
    }
    header .menu .logo{
        width: 160px;
        left: 60px;
        position: absolute;
        top: 50%;
        transform: translate(-180px,-50%);
        z-index: 5;
        transition: transform 1s;
    }
    header .menu.active .logo{
        transform: translate(0px,-50%);
    }
    header .menu nav ul{
        flex: 1;
        margin-left: 0px;
        width: auto;
        padding-left: 235px;
    }
    header .menu nav ul li{
        float: left;
        margin-left: 4%;
        position: relative;
    }
    header .menu nav ul li>a{
        display: block;
        line-height: 140px;
        color: #222;
    }
    header .menu nav ul li a{
        transition: color .3s;
    }
    header .menu nav ul li a:hover,
    header .menu nav ul li.show>a,
    header .menu nav ul li.active>a{
        color: #2aa738;
    }
    header .menu nav ul li .sonMenu{
        position: absolute;
        width: 160px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        transition: height .5s;
        height: 0px;
        overflow: hidden;
    }
    header .menu nav ul li .sonMenu .inner{
        padding: 10px 0px;
        background: rgba(255,255,255,.5);
    }
    header .menu nav ul li .sonMenu a{
        display: block;
        line-height: 40px;
        font-size: 12px;
        text-align: center;
    }
    header .menu nav>*,
    header .menu .menuBtn{
        position: relative;
        margin-left: 6px;
        width: 140px;
        height: 100%;
        background: rgba(255,255,255,.5);
    }
    header .menu nav input{
        width: 0px;
        transition: width .4s;
        line-height: 40px;
        font-size: 14px;
        margin-left: 0px;
        border-bottom: 1px solid #000;
        top: 2px;
        white-space: nowrap;
    }
    header .menu nav input.active{
        width: 120px;
        transition-delay: .3s;
    }
    header .menu .ch{
        line-height: 140px;
        color: #3c3c3c;
        text-align: center;
    }
    header .menu .search img{
        width: auto;
        pointer-events: none;
    }
    header .menu .menuBtn{
        color: #fff;
        margin-left: 3px;
        background: transparent;
        transition: transform .4s;
        transform: scale(0);
    }
    header .menu.active .menuBtn{
        transform: scale(1);
    }

    header .menu .menuBtn p{
        line-height: 1;
        padding-bottom: 16px;
        z-index: 2;
        font-size: 16px;
    }
    header .menu .menuBtn::after{
        content: '';
        background: #212121;
        opacity: .9;
    }
    header .menu .menuBtn p::before,
    header .menu .menuBtn p::after{
        content: '';
        position: absolute;
        width: calc(100% - 8px);
        height: 2px;
        left: 0px;
        bottom: 0px;  
        background: #fff;
        transition: width .3s;
    }
    header .menu .menuBtn p::before{
        width: 100%;
        bottom: 8px;
    }
    header .menu .menuBtn:hover p::before{
        width: 60%;
        transition-delay: 50ms;
    }
    header .menu .menuBtn:hover p::after{
        width: calc(60% - 8px);
    }
    header .searchBox{
        position: fixed;
        transition: all .8s;
        width: 120px;
        height: 120px;
        top: 0px;
        right: 153px;
        z-index: 60;
        pointer-events: none;
    }
    header .searchBox::after{
        content: '';
        z-index: -1;
        opacity: 0;
        background: rgba(255,255,255,.8);
        transition: opacity .5s;
    }
    header .searchBox.active::after{
        opacity: 1;
    }
    header .searchBox.active{
        right: 0px;
        width: 100%;
        height: 100vh;
        pointer-events: all;
    }
    header .searchBox img{
        width: auto;
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%,-50%);
        opacity: 0;
        transition: all 1.6s,opacity .5s;
        z-index: 2;
    }
    header .searchBox.active img{
        opacity: 1;
        right: calc(50% - 400px);
        transform: translate(0%,-50%);
    }
    header .searchBox p{
        width: 800px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        padding-right: 50px;
    }
    header .searchBox p input{
        line-height: 68px;
        font-size: 36px;
        opacity: 0;
        transition: .5s opacity;
    }
    header .searchBox.active p input{
        opacity: 1;
        transition-delay: .8s;
    }
    header .searchBox p::after{
        content: '';
        position: absolute;
        height: 1px;
        width: 0%;
        bottom: 0px;
        background: #999;
        left: 0px;
        transition: width .8s;
    }
    header .searchBox.active p::after{
        width: 100%;
        transition-delay: .8s;
    }

    header .searchBox .close{
        position: absolute;
        width: 45px;
        height: 45px;
        top: 50px;
        right: 50px;
    }
    header .searchBox .close i{
        position: absolute;
        left: 0px;
        right: 0px;
        height: 4px;
        border-radius: 4px;
        top: 0px;
        bottom: 0px;
        margin: auto;
        width: 0%;
        background: #000;
        transition: width .4s;
        transform: rotate(45deg);
    }
    header .searchBox .close i:last-child{
        transform: rotate(-45deg);
    }
    header .searchBox.active .close i{
        width: 100%;
        transition-delay: 1.4s;
    }

    main{
        padding-top: 145px;
    }
    .lines{
        pointer-events: none;
        position: fixed;
    }
    .lines p{
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0px;
        background: #ddd;
    }
    .lines p:nth-child(1){
        left: 12.5%;
    }
    .lines p:nth-child(2){
        left: 31.25%;
    }
    .lines p:nth-child(3){
        left: 50%;
    }
    .lines p:nth-child(4){
        left: 68.75%;
    }
    .lines p:nth-child(5){
        left: 87.5%;
    }
    .ttl p{
        font-weight: bold;
        line-height: 1;
        transform: translateY(30px);
        transition: transform .5s,opacity .5s;
        opacity: 0;
    }
    .ttl.frozen p{
        transform: translateY(0px);
        opacity: 1;
    }
    .ttl .eng{
        transition-delay: .1s;
        text-transform: uppercase;
    }
    main .heading .ttl + *{
        transform: translateX(30px);
        transition: transform .5s,opacity .5s;
        transition-delay: .2s;
        opacity: 0;
    }
    main .heading .ttl.frozen + *{
        transform: translateX(0px);
        opacity: 1;
    }

    footer{
        padding-top: 55px;
        padding-bottom: 45px;
        background: #262626;
        color: #999;
        font-size: 14px;
        position: relative;
        z-index: 2;
    }
    footer .contn{
        width: 100%;
        max-width: 1480px;
        padding: 0px 40px;
        margin: 0 auto;
    }

    footer .contn .txt{
        justify-content: space-between;
        padding: 0px 20px;
        padding-bottom: 80px;
        border-bottom: 1px solid #fff;
    }
    footer .contn .txt .intro{
        width: 335px;
    }
    
    footer .contn .txt .intro .comps{
        margin-bottom: 30px;
    }
    footer .contn .txt .intro .comps p{
        color: #fff;
        font-weight: bold;
        font-size: 12px;
    }
    footer .contn .txt .intro .comps p:first-child{
        margin-bottom: 5px;
        font-size: 25px;
    }
    footer .contn .txt .intro li{
        margin-bottom: 10px;
    }
    footer .contn .txt .links .itm{
        margin-right: 60px;
        display: inline-block;
        vertical-align: top;
    }
    footer .contn .txt .links .itm>a{
        display: block;
        margin-bottom: 36px;
        font-size: 20px;
        color: #fff;
    }
    footer .contn .txt .links .itm .son a{
        margin-bottom: 20px;
        display: block;
        transition: color .4s;
    }
    footer .contn .txt .links .itm .son a:hover{
        color: #e60012;
    }
    footer .contn .txt .links .itm:nth-child(2) .son{
        overflow: hidden;
        width: 150px;
    }
    footer .contn .txt .links .itm:nth-child(2) .son a{
        float: left;
        /* width: 50%; */
        clear: both;
    }
    footer .contn .txt .links .itm:nth-child(2) .son a:nth-child(even){
        clear: initial;
        /* padding-left: 5px; */
    }

    footer .contn .footage{
        margin-top: 30px;
        border-top: 1px solid #fff;
        text-align: center;
        padding-top: 25px;
    }
    footer .contn .footage p{
        display: inline-block;
        margin: 0px 5px;
    }
