
    *{
        padding:0px;
        margin:0px;
        box-sizing: border-box;
    }
    body,html{
        width: 100%;
    }
    body{
        overflow-x: hidden;
    }
    
    
    ul{
        list-style: none !important;
    }
    a{
        text-decoration: none;
        color: inherit;
    }
    img{
        display: block;
        width: 100%;
        height: auto;
    }
    .cursor{
        cursor: pointer;
    }
    .default{
        cursor: default;
    }
    .l1{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        white-space: normal;
        word-break: break-all;
    }
    .l2{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: normal;
        word-break: break-all;
    }
    .l3{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        white-space: normal;
        word-break: break-all;
    }
    .l4{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        white-space: normal;
        word-break: break-all;
    }
    .clearfix{
        zoom: 1;
    }
    .clearfix::after{
        content: '';
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
        display: block;
    }
    .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;
    }
    .iv{
        display: inline-block;
        vertical-align: top;
    }
    .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;
    }
    .flex-between{
        justify-content: space-between;
    }
    .flex-around{
        justify-content: space-around;
    }

    .obj-c{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .fc{
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
    .widthFix{
        max-width: 100%;
        max-height: 100%;
        width: auto;
    }
    .hvcContn{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .delay-1{
        transition-delay: .1s !important;
    }
    .delay-2{
        transition-delay: .2s !important;
    }
    .delay-3{
        transition-delay: .3s !important;
    }
    html.noScroll body{
        position: fixed;
        left: 0px;
    }
    .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%);
    }
    .vc{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .hc{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .fill,
    .fillAft::after,
    .fillBf::before{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .fillAft::after,
    .fillBf::before,
    .fillMid::before{
        content: '';
    }
    .fillMid{
        position: relative;
    }
    .fillMid::before{
        box-sizing: border-box;
        width: 100%;
        display: block;
        padding-bottom: 100%;
    }
    .noTsn{
        transition: initial !important;
    }
    .noTouch{
        pointer-events: none;
    }
    .storeBox{
        display: none;
    }
    .hbc{
        position: relative;
    }
    .hbc img:last-child,
    .dc img:last-child{
        position: absolute;
        top: 0px;
        left: 0px;
    }
    .hbc img,
    .dc img{
            transition: opacity .4s;
    }
    .hbc img:last-child,
    .hbc:hover img,
    .dc img:last-child{
        opacity: 0;
    }
    .hbc:hover img:last-child{
        opacity: 1;
    }
    .shake {
        transform-origin:center bottom;
        animation-duration:2s;
        animation-fill-mode:both;
        animation-name: shake;
    }
    @keyframes shake{
        0%{
            transform:rotate(0deg);
            transition-timing-function:cubic-bezier(0.215,.61,.355,1)
        }10%{
            transform:rotate(-12deg);
            transition-timing-function:cubic-bezier(0.215,.61,.355,1)
        }20%{
            transform:rotate(12deg);
            transition-timing-function:cubic-bezier(0.215,.61,.355,1)
        }28%{
            transform:rotate(-10deg);
            transition-timing-function:cubic-bezier(0.215,.61,.355,1)
        }36%{
            transform:rotate(10deg);
            transition-timing-function:cubic-bezier(0.755,.5,.855,.06)
        }42%{
            transform:rotate(-8deg);
            transition-timing-function:cubic-bezier(0.755,.5,.855,.06)
        }48%{
            transform:rotate(8deg);
            transition-timing-function:cubic-bezier(0.755,.5,.855,.06)
        }52%{
            transform:rotate(-4deg);
            transition-timing-function:cubic-bezier(0.755,.5,.855,.06)
        }56%{
            transform:rotate(4deg);
            transition-timing-function:cubic-bezier(0.755,.5,.855,.06)
        }60%{
            transform:rotate(0deg);
            transition-timing-function:cubic-bezier(0.755,.5,.855,.06)
        }100%{
            transform:rotate(0deg);
            transition-timing-function:cubic-bezier(0.215,.61,.355,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);
    }*/
    
    @font-face{
        font-family: 'Pro_SemiBold'; 
        src:url('../../font/MI\ Lan\ Pro_SemiBold.TTF') format('truetype');
    }
    @font-face{
        font-family: 'Pro_Light'; 
        src:url('../../font/MI\ Lan\ Pro_Light.TTF') format('truetype');
    }
    @font-face{
        font-family: 'Pro_Normal'; 
        src:url('../../font/MI\ Lan\ Pro_Normal.TTF') format('truetype');
    }
    @font-face{
        font-family: 'Pro_Medium'; 
        src:url('../../font/MI\ Lan\ Pro_Medium.TTF') format('truetype');
    }
    @font-face{
        font-family: 'Pro_Heavy'; 
        src:url('../../font/MI\ Lan\ Pro_Heavy.TTF') format('truetype');
    }
    @font-face{
        font-family: 'BAHNSCHRIFT'; 
        src:url('../../font/BAHNSCHRIFT.TTF') ;
    }
    body{
        font-family: 'Pro_Normal'; 
    }
    .pl,
    footer{
        font-family: 'Pro_Light'; 
    }
    .pn{
        font-family: 'Pro_Normal'; 
    }
    .pm,
    footer .content .links ul li>a{
        font-family: 'Pro_Medium'; 
    }
    .ba{
        font-family: 'BAHNSCHRIFT'; 
    }
    .bold{
        font-family: 'Pro_SemiBold'; 
    }
    .heavy{
        font-family: 'Pro_Heavy'; 
    }
    
    

    .subTip {
        opacity: 0 !important;
        padding: 0px 20px;
        white-space: nowrap;
        line-height: 80px;
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        text-align: center;
        border-radius: 10px;
        background: #001755;
        z-index: 1000;
        position: fixed;
        pointer-events: none;
    }
    .subTip.active{
        animation: suc 2.5s ease !important;
    }

    @keyframes suc{
        0%{
            opacity: 0;
        }40%{
            opacity: 1;
        }60%{
            opacity: 1;
        }100%{
            opacity: 0;
        }
    }

    .loading{
        position: fixed;
        z-index: 1000;
        width: 40px;
        height: 40px;
        top: calc(50% - 20px);
        left: calc(50% - 20px);
        transform: scale(.5);
        opacity: 0;
        transition: .3s ease;
        pointer-events: none;
    }
    .loading.active{
        opacity: 1;
        transform: scale(.8);
    }
    .loading span{
        position: absolute;
        border-radius: 4px;
        background: #001755;
        width: 4px;
        height: 16px;
        left: calc(50% - 2px);
        bottom: calc(50% + 10px);
        transform-origin: center calc(100% + 10px);
        animation: breather linear .4s infinite;
        animation-delay: 30ms;
    }
    @keyframes breather{
        0%{
            opacity: 0;
        }50%{
            opacity: 1;
        }100%{
            opacity: 0;
        }
    }

    .ready.anmt,
    .ready .anmt{
        animation-play-state: paused;
    }
    .frozen.anmt,
    .frozen .anmt{
        animation-play-state: running;
    }


    .fluid{
        width: calc(100% - 30px);
        max-width: 1160px;
        margin: 0 auto;
    }

    header .nav{
        position: fixed;
        z-index: 20;
        top: 0px;
        width: 100%;
        left: 0px;
        background-color: rgba(255,255,255,.5);
        transition: background .3s,box-shadow .3s;
        
    }
    header.bg .nav{
        box-shadow: 0px 2px 6px 2px rgba(0,0,0,.05);
        background-color: #fff;
    }
    header .nav .fluid{
        height: 90px;
        font-size: 18px;
    }
    header .nav .fluid>a{
        width: 160px;
    }
    header .nav .fluid .links + .bg{
        z-index: -1;
        background-color: #fff;
        opacity: 0;
        transition: .3s;
        pointer-events: none;
    }
    header .nav .sonBg,
    header .nav .fluid .links::after{
        content: '';
        height: 36px;
        opacity: .5;
        background: #D5BA8C;
        z-index: -1;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .6s;
        pointer-events: none;
        top: calc(100% + 36px);
    }
    header .nav .sonBg{
        height: 0px;
    }
    header .nav .fluid .links::after{
        top: 100%;
        background-color: #1A2C5C;
    }
    header .nav .fluid .links:hover + .bg{
        opacity: 1;
    }
    header .nav .fluid .links:hover::after,
    header .nav.third .sonBg{
        transform: scaleY(1);
    }
    header .nav .fluid .links li{
        position: relative;
        font-size: 18px;
    }
    header .nav .fluid .links li>a{
        padding: 0px 34px;
        position: relative;
        line-height: 90px;
        display: block;
        transition: opacity .4s;
        color: #001755;
    }
    header .nav .fluid .links a:hover{
        opacity: .6;
    }
    header .nav .fluid .links li:last-child a{
        padding-right: 0px !important;
    }
    header .nav .fluid .links .sonMenu{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        flex-wrap: nowrap;
        display: none;
        font-size: 14px;
    }
    
    header .nav .fluid .links li:nth-last-child(1) .sonMenu{
        left: auto;
        transform: initial;
        right: 0px;
    }
    header .nav .fluid .links li:hover>.sonMenu,
    header .nav.third .fluid .links li .sonMenu .inner>div:hover .sonMenu{
        display: block;
    }
    header .nav .fluid .links li:nth-child(1)>.sonMenu>.inner>div:nth-child(1){
        display: none;
    }
    header .nav .fluid .links .sonMenu .inner>div{
        padding: 0px 20px;
        color: #fff;
        line-height: 36px;
    }
    header .nav .fluid .links li>.sonMenu>.inner>div,
    header .nav .fluid .links .sonMenu>div{
        position: relative;
    }
    header .nav .fluid .links .sonMenu .sonMenu{
        white-space: normal;
        width: 32vw;
        width: 600px;
        left: 0px;
        transform: initial;
    }
    header .nav .fluid .links li>.sonMenu .inner .inner{
        flex-wrap: wrap;
    }
    header .nav .fluid .links .sonMenu div a{
        display: block;
    }
    header .nav .fluid .links .sonMenu div a:hover{
        color: #D5BA8C;
    }
    header .nav .fluid .links .sonMenu .sonMenu a:hover{
        color: #001755;
    }
    header .nav .fluid .links .lft>.sonMenu{
        left: 14px;
        transform: initial;
    }
    header .nav .fluid .links .rht>.sonMenu{
        left: auto;
        right: -20px !important;
    }

    header .nav .menuBtn{
        width: 36px;
        height: 36px;
        position: relative;
        background: #001755;
        border-radius: 50%;
    }
    header .nav .menuBtn span{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 1px;
        background: #fff;
        margin-left: -10px;
        transition: .3s transform,background .3s,opacity .3s,margin .3s;
    }
    header .nav .menuBtn span:first-child{
        margin-top: -6px;
    }
    header .nav .menuBtn span:last-child{
        margin-top: 6px;
    }
    header .nav .menuBtn.active span:first-child{
        margin-top: 0;
        -webkit-transform: rotate(45deg) scaleX(1.2);
        transform: rotate(45deg) scaleX(1.2);
    }
    header .nav .menuBtn.active span:last-child{
        margin-top: 0;
        -webkit-transform: rotate(-45deg) scaleX(1.2);
        transform: rotate(-45deg) scaleX(1.2);
    }
    header .nav .menuBtn.active span:nth-child(2){
        opacity: 0;
    }
    header .shadow{
        display: none;
        position: fixed;
        height: 100vh;
        background-color: rgba(0,0,0,.5);
        opacity: 0;
        transition: .3s;
        z-index: 15;
        pointer-events: none;
    }
    header.flip .shadow{
        opacity: 1;
        pointer-events: all;
    }
    header .windowBox{
        opacity: 0;
        transition: .3s;
        position: fixed;
        height: 100vh;
        z-index: 100;
    }
    header .windowBox.active{
        opacity: 1;
        pointer-events: all;
    }
    header .windowBox .bg{
        background-color: rgba(255,255,255,.8);
    }
    header .windowBox .window{
        opacity: 0;
        transform: translate(-50%,-40%);
        transition: opacity .5s,transform .5s;
        background: #fff;
        /*border: #CDCDCD 1px solid;*/
        padding: 36px;
        box-shadow: 0px 0px 8px 2px rgba(0,0,0,.1);
    }
    header .windowBox.active .window{
        transition-delay: .2s;
        opacity: 1;
        transform: translate(-50%,-50%);
    }
    header .windowBox .window>p{
        text-align: center;
        color: #001755;
        font-size: 36px;
    }
    header .windowBox .window .close{
        width: 40px;
        height: 40px;
        top: 20px;
        right: 20px;
        position: absolute;
    }
    header .windowBox .window .close::before,
    header .windowBox .window .close::after{
        content: '';
        position: absolute;
        background-color: #000;
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0px;
        transform: rotate(45deg);
    }
    header .windowBox .window .close::after{
        transform: rotate(-45deg);
    }
    header .windowBox .window .tips{
        margin-top: 16px;
        margin-bottom: 18px;
        color: #332C2B;
        font-size: 14px;
    }
    header .windowBox .window .form{
        padding: 27px 0px;
        border-top: 1px solid #A8A8A8;
        border-bottom: 1px solid #A8A8A8;
    }
    header .windowBox .window .submit{
        line-height: 52px;
        width: 284px;
        background: #D5BA8C;
        border-radius: 6px;
        text-align: center;
        color: #001755;
        font-size: 16px;
        margin: 0 auto;
        margin-top: 20px;
        transition: background .4s;
        border: 1px solid #D5BA8C;
    }
    header .windowBox .window .submit:hover{
        background-color: transparent;
    }
    .form .fgs{
        margin-left: -12px;
    }
    .form .fgs .item{
        width: calc(25% - 12px);
        margin-left: 12px;
        font-family: 'Pro_Light'; 
    }
    /*
    .form .fgs .item:first-child{
        width: calc(19% - 12px);
    }
    */
    .form .inp,
    .form .fg .send{
        padding: 0px 15px;
        font-size: 16px;
        line-height: 48px;
    }
    .form input{
        line-height: inherit;
    }
    
    .form .inp,
    .form .fg,
    .form .fg>*:first-child{
        transition: .3s border;
    }
    .form .item>.inp,
    .form .fg{
        border: 1px solid #bbb;
        border-radius: 4px;
    }
   
    .form .item>.inp:hover,
    .form .fg:hover,
    .form .fg:hover>*:first-child{
        border-color: #1A2C5C;
    }
    .form .item>.inp.warn,
    .form .fg.warn,
    .form .fg.warn>*:first-child{
        border-color: #F70000 !important;
    }
    .form .warning{
        line-height: 18px;
        margin: 3px 0px;
        color: #F70000;
        font-size: 14px;
        opacity: 0;
    }
    .form .warn + .warning{
        opacity: 1;
    }
    .form .item .inp{
        position: relative;
    }
    .form .item .inp span{
        color: #A1A1A1;
        left: 11px;
        pointer-events: none;
    }
    .form .item .inp input:focus + span,
    .form .item .inp.filled span{
        opacity: 0;
    }
    .form .fg{
        position: relative;
        overflow: hidden;
    }
    .form .fg.slct::after{
        pointer-events: none;
        content: "";
        display: none;
        position: absolute;
        margin-right: 16px;
        right: calc(100% - 90px);
        top: 50%;
        transform: translateY(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid rgb(37, 39, 41);
    }
    .form .fg>*:first-child{
        width: 106px;
        background: #DEDEDC;
        padding: 0px 11px;
        border-right: 1px solid #bbb;
    }
    .form .item:nth-child(2) .fg>*:first-child{
        display: none;
    }
    .form .fg>*:last-child{
        flex: 1;
    }
    .form .fg .send{
        padding: 0px !important;
        font-size: 16px;
        text-align: center;
        background: #001755;
        color: #fff;
    }
    .form .fg .send.disabled{
        cursor: not-allowed;
        color: #C1C1C2;
        background: #DEDEDC;
    }
    .form .agree .inner{
        margin-top: 12px;
        color: #B6B6B7;
        font-size: 12px;
        align-items: flex-end;
    }
    .form .agree .txt{
        flex: 1;
        position: relative;
        padding-left: 36px;
    }
    .form .agree .read{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 24px;
        height: 24px;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid #6B6B6B;
        transition: background .3s,border .3s;
    }
    .form .agree .read.active{
        background-color: #1A2C5C;
        border-color: #1A2C5C !important;
    }
    .form .agree .read.blink{
        animation: ease 1.2s borderBlink;
    }
    @keyframes borderBlink{
        0%{border-color: #6B6B6B;background: transparent;}
        10%{border-color: red;background: red;}
        20%{border-color: #6B6B6B;background: transparent;}
        30%{border-color: red;background: red;}
        40%{border-color: #6B6B6B;background: transparent;}
        50%{border-color: red;background: red;}
        60%{border-color: #6B6B6B;background: transparent;}
        70%{border-color: red;background: red;}
        80%{border-color: #6B6B6B;background: transparent;}
        90%{border-color: red;background: red;}
        100%{border-color: #6B6B6B;background: transparent;}
    }
    .form .agree .read img{
        width: 75%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
    }
    .form .agree .read.active img{
        transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
        transition-property: transform,opacity;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    .form .agree .inner .txt a{
        color: #1A2C5C;
    }


    main.noPdTop{
        padding-top: 0px;
    }
    main{
        padding-top: 90px;
    }
    main.morePad>*:first-child{
        padding-top: 88px;
    }
    main .banner{
        position: relative;
        font-size: 50px;
        height: 710px;
        color: #fff;
        line-height: 1;
        font-family: 'Pro_Normal'; 
    }
    main .banner>img{
        transition: clip-path 1.2s;
        clip-path: polygon(0% 100%,100% 100%,100% 100%,0% 100%);
    }
    main .banner.frozen>img{
        clip-path: polygon(0% 0%,100% 0%,100% 100%,0% 100%);
    }
    main .banner .txt>p{
        margin-top: 10px;
    }
    main .banner .txt>p:first-child{
        margin-top: 0px;
    }
    main .banner .txt .t{
        font-size: 22px;  
        margin-top: 20px;   
        color: #FEFEFE;  
        line-height: 1.5;
    }
    main .banner .txt>*{
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s,transform 1s;
    }
    main .banner .txt>*.frozen{
        opacity: 1;
        transform: translateY(0px);
    }

    main .ttl{
        font-size: 38px;
        color: #001755;
        line-height: 1;
        font-family: 'Pro_SemiBold'; 
        padding-bottom: 32px;
        position: relative;
    }
    main .ttl::after{
        content: '';
        position: absolute;
        width: 0%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0px;
        height: 1px;
        transition: width 1s;
        background-color: #CECECE;
    }
    main .ttl.frozen::after{
        width: 100%;
    }
    main .ttl p *{
        display: block;
        opacity: 0;
        transition: opacity .5s,transform .5s;
        transform: translateY(-30px);
    }
    main .ttl.frozen p *{
        opacity: 1;
        transform: translateY(0px);
    }
    main .ttl p{
        position: relative;
    }
    main .ttl .en{
        color: #D5BA8C;
        text-transform: uppercase;
        position: absolute;
        bottom: 0px;
        right: 0px;
        margin-top: 18px;
        font-size: 26px;
    }

    main .rules{
        position:fixed;
        width: 85%;
        max-width: 920px;
        z-index: 50;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 8%);
        padding: 50px 40px;
        display: none;
    }
    main .rules.active{
        display: block;
    }
    main .rules .close{
        position: absolute;
        width: 24px;
        height: 24px;
        top: 20px;
        right: 20px;
    }
    main .rules .close::before,
    main .rules .close::after{
        content: '';
        width: 100%;
        left: 0px;
        height: 2px;
        top: calc(50% - 1px);
        position: absolute;
        transform: rotate(45deg);
        background-color: #000;
    }
    main .rules .close::after{
        transform: rotate(-45deg);
    }
    main .rules .inner{
        overflow-y: auto;
        max-height: 70vh;
    }
    main .rules p:first-child{
        font-size: 20px;
        margin-top: 0px;
        margin-bottom: 20px;   
    }
    main .rules p{
        margin-top: 12px;
    }
    main .prev.dc,
    main .next.dc{
        transition: background .4s,transform .4s;
    }
    main .btn.dc{
        background-color: rgba(255,255,255,.9);
    }
    main .prev.dc:hover,
    main .next.dc:hover{
        background: rgba(214,191,149,.9) !important;
    }
    main .prev.dc img,
    main .next.dc img{
        top: 50%;
        left: 50%;
    }
    main .prev.dc:hover img,
    main .next.dc:hover img{
        opacity: 0;
    }
    main .prev.dc:hover img:last-child,
    main .next.dc:hover img:last-child{
        opacity: 1;
    }


    footer .content{
        font-size: 15px;
        padding-top: 130px;
        padding-bottom: 26px;
    }
    footer .content>*{
        justify-content: space-between;
    }
    footer .content>*>*:last-child{
        width: 466px;
    }
    footer .content .links{
        align-items: flex-start;
    }
    footer .content .links ul{
        flex: 1;
        text-align: center;    
    }
    footer .content .links ul li{
        margin-left: 80px;
        line-height: 1;
    }
    footer .content .links ul li:first-child{
        margin-left: 0px;
    }
    footer .content .links ul li>a{
        margin-bottom: 34px;
        color: #001755;
        
    }
    footer .content .links ul li:nth-child(1) .sonMenu p:nth-child(1){
        display: none;
    }
    footer .content .links ul li p{
        color: #5F5D5D;
        transition: color .4s;
        margin-top: 24px;
    }
    footer .content .links ul li p:hover{
        color: #001755;
    }
    footer .content .codes{
        text-align: center;
    }
    footer .content .codes img{
        width: calc(100% / 3 - 16px);
        margin-left: 24px;
    }
    footer .content .codes img:first-child{
        margin-left: 0px;
    }
    footer .content .book{
        margin-top: 80px;
        line-height: 1.4;
        color: #332C2B;
    }
    footer .content .book p:first-child{
        flex: 1;
    }
    
    footer .content .book .arwBtn{
        margin-left: 30px;
        color: #fff;
    }
    footer .content .book .arwBtn:hover{
        color: #001755;
    }
    .arwBtn{
        height: 48px;
        border-radius: 6px;
        background:#D5BA8C;
        border: 1px solid #D5BA8C;
        color: #001755;
        text-align: center;
        transition: background .5s,color .5s;
    }
    .arwBtn:hover{
        background-color: #fff;
    }
    .arwBtn i{
        overflow: hidden;
        width: 0px;
        transition: margin .5s,width .5s;
    }
    .arwBtn:hover i{
        margin-left: 18px;
    }
    .arwBtn:hover i,
    .arwBtn i img{
        width: 32px;
    }
    footer .foot{
        background: #001755;
        font-size: 14px;
        padding: 15px 0px;
    }
    footer .foot .fluid>a{
        width: 134px;
    }
    footer .foot .t{
        font-size: 14px;
        color: #D5BA8C;
        line-height: 1;
    }
    footer .foot .t p:last-child{
        color: #B6B6B7;
    }
    footer .foot i{
        display: inline-block;
        vertical-align: top;
        width: 1px;
        height: 14px;
        background-color: #b6b6b6;
        margin: 0 10px;
    }