/* 2. banner */

.carousel{
    height: calc(100vw / 2);
    max-height: 650px;
    border-radius: 20px;
    overflow: hidden;
    /*background: #1e66f8;*/
}


@media (max-width: 600px) {
    .carousel{
        height: 250px;
    }
}

/** 2.1 banner1 **/

.banner_nav{
    overflow: hidden;
    /*background-repeat:no-repeat;*/
    /*background-attachment:fixed;*/
    background-position:center;
    background-size:cover;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    -ms-background-size:cover;
}

#banner-nav div{
    height: 100%;
}

.chipNav {
    display: flex;
    position:absolute;
    height: 60%;
    width: 100%;
}

.chipNav>div{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.PC .chip{
    display: none !important;;
}



.PHONE #chip{
    display: none !important;
}

.banner1 .chip{
    display: none;
    background:url("../images/chip2.png");
    height: 100%;
    width: 100%;
    background-position:center;
    background-size:contain;
    background-repeat:no-repeat;
    max-height: 230px;
}

.PHONE .banner1 .chip{
    display: inherit;
}

.left,
.middle,
.center{
    justify-content: center;
}

.banner1 .right{
    justify-content: flex-start;
}

.banner1 .slider_content{
    margin-left: 3vw;
}

.banner1 .slider_content h2{
    color: #FFFFFF;
    font-weight: 600;
    white-space:nowrap;
}

@media (max-width: 600px) {
    .banner1 .left .slider_content,
    .banner1 .right .slider_content{
        display: none;
    }

    .banner1 .middle>div{
        margin: -30px;
    }

}



.banner_button{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 40px;
    background: #1e66f8;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 32px;
}

.banner_button a{
    display: block;
    color:#fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 40px;
    width: 100%;
}



.banner_button:hover{
    background: #4884fc;
}


@media(max-width: 991px){
    .slider_content h2
    {
        font-size: 2rem;
    }
    .banner_button{
        margin-top: 0.5rem;
        width: 8rem;
        height: 2.5rem;
    }
    .banner_button a{
        font-size: 14px;
    }
}

@media(max-width: 750px){
    .slider_content h2
    {
        font-size: 1.5rem;
    }
    .banner_button{
        margin-top: 0.5rem;
        width: 6rem;
        height: 2rem;
    }
}

.chip3D>canvas{
    width: 100% !important;
    height: 100% !important;
    max-width: 450px;
    max-height: 450px;
}



/** 2.1 banner1 End**/

/** 2.2 slide_content **/

.banner_content{
    display: none;
}

@media (max-width: 600px) {
    .banner_content{
        display: block;
        background: #0071c5;
        padding: 2rem 1rem;
        color: #FFFFFF;
    }

    .banner_content h2
    {
        font-size: 1.5rem;
    }

    .banner_content h3{
        font-size: 1.2rem;
    }

    .banner_content .banner_button{
        background: #FFFFFF;
    }

    .banner_content .banner_button{

    }

    .banner_content .banner_button a{
        background: #FFFFFF;
        color: #0071c5;
        font-size: 1rem;
    }

    .banner_content .banner_button:hover a{
        background: #fdfdfd;
        color: #0649d0;
    }

}


/** 2.2 slide_content END**/

/* 3.slider */

.slider_nav{
    position: absolute;
    color: rgba(5, 5, 5, 0.3);
    font-size: 3rem;
    width: 5rem;
    height: 100%;
    background:transparent;
    transform:translateY(-50%);
    z-index:2;
    cursor:pointer;
    visibility:hidden;
    opacity:0;
    transition:all 300ms ease;
}

.pc .banner:hover .slider_nav{
    visibility:visible;
    opacity:1;
}

.slider_nav_left{
    top:50%;
    left:0;
}
.slider_nav_right{
    top:50%;
    right:0;
}

/* 3.slider END */


/* 2. banner End */

/* 3. source */

.title{
    padding: 2rem;
    text-align: center;
}

@media (max-width: 991px) {
    .title{
        padding-top: 0;
    }
}

/*.source{*/
/*    background: #FFFFFF;*/
/*}*/

.source::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    top:0;
    background: url("/images/source_bg.png");
    background-repeat:no-repeat;
    /*background-attachment:fixed;*/
    background-position: top;
    background-size: cover;
    background-size: cover;

}

.source h3{
    margin: 1rem 0;
}

.source_row{
    width: 100%;
}



.source .source_title li{
    background: rgba(250,250,250,0.2);
    backdrop-filter:blur(30px);
    transition: background 0.3s;
}

.source .source_title li:first-child{
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
}

.source .source_title li:last-child{
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
}



.source .source_title li.on{
    background: #1e66f8;
}




.source .source_title li div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    font-size: 25px;
    cursor: pointer;
}

.source .source_title i{
    color: #0068b5;
    font-weight: 400;
}

.source .source_title li span{
    color: #262626;
    font-size: 1rem;
    padding-top: 0.5rem;
    white-space:nowrap;

}
@media (max-width: 600px) {
    .source .source_title li div{
        padding: 1rem;
        font-size: 26px;
    }


    .source .source_title li span{
        font-size: 0.8rem;
    }
}

.source .source_title li.on span,
.source .source_title li.on svg{
    color: #FFFFFF;
}

/* 3.2 source_contain */

.source .source_contain .source_row>li{
    display: none;
    margin: 5em 2em;
}

.source .source_contain .source_row>li>div{
    display: flex;
    flex-direction:row;
}

.source .source_contain .source_row>li.on{
    display: block;
    animation-name: heightup;
    /*animation-delay: 1s;*/
    animation-duration: 1s;

}

.source_contain_left{
    width: 60%;
    padding-right: 3em;
    float: left;
}

.s_title{
    padding-bottom: 1em;
}

.source_contain_left .s_title h5{
    line-height: 30px;
}

.source_contain_right{
    width: 40%;
    float: left;
}

.source_contain_right img{
    width: 80%;
    margin-left: 50%;
    transform: translateX(-50%);
}


@media (max-width: 772px) {

    .source .source_contain .source_row>li{
        margin: 2em 1em;
    }

    .source .source_contain .source_row>li>div{
        flex-direction: column;
    }
    .source_contain_left,
    .source_contain_right
    {
        width: 100%;
        padding: 0;
    }
    .source_contain_right img {
        width: 65%;
    }

}



.s_container ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.s_container li{
    width: 33.33%;
    padding-bottom: 1rem;
}

.s_container li a{
    font-weight: bolder;
    font-size: 1rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    white-space: nowrap;
    position: relative;
    padding-left: 2rem;
    color: #222;
}

.s_container li a:hover{
    color: #0d6efd;
}


.s_container li a:before{
    content: url("/images/right-icon.svg");
    height: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;

}


@media (max-width: 991px) {
    .s_container li{
        width: 50%;
    }
}

/* 3. source END*/

/* 4. cardNav */

.cardNav{
    /*background: #f2f2f2;*/
    font-size: 1rem;
    color: #222;
}

.event_card_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}



.cardBoard{
    background: #fff;
    /*margin: 0 auto 30px;*/
    margin: 0 10px 30px;
    box-shadow: 0 2px 6px 0px rgba(0,0,0,0.25);
    transition: box-shadow 0.5s,transform 0.5s;
}

.cardBoard{
    flex-basis: 31%;
    -webkit-flex-basis:31%;
    max-width: 496px;
    /*padding: 1em ;*/

}

@media (max-width: 991px) {

    .cardBoard{
        flex-basis: 45%;
        -webkit-flex-basis:45%;
    }
}

@media (max-width: 600px) {

    .cardBoard{
        flex-basis: 100%;
        -webkit-flex-basis:100%;
        /*margin: 0 2em;*/

    }
}

.cardBoard:hover{
    box-shadow: 6px 2px 6px 0px rgba(0,0,0,0.25);
    transform: translateX(-2px);
}

.card_info{
    padding: 2em;
}

.card_title{
    margin-bottom: 0.7rem;
    font-weight: bolder;
    height: 3rem;
}

.card_title span{
    height: 2rem;
}

/*.card_title::after{*/
/*    content: '';*/
/*    border-bottom: 3px solid #1e66f8;*/
/*    width: 50px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -0.8rem;*/
/*}*/

.cardPic{
    width: 100%;
    height: 180px;
}

.card_container{
    height: 5rem;
    font-size: 0.9em;
}

.card_enter{
    position: absolute;
    left: 2rem;
    bottom: 1rem;
    color: #1e66f8;
}

/* 4. cardNav END */
