@charset "UTF-8";

html {
    font-size: 1vw;
    -webkit-text-size-adjust:none;
    color:#303030;
}
@font-face {
    font-family: ITCAGGbold;
    src:url(../css/font/ITCAvantGardePro-Bold.otf);
}
@media screen and (max-width: 1000px) {
    html {
        font-size:2vw;
    }
}
.symbol-m {
    display: none;
}
@media screen and (max-width: 1000px) {
    .symbol-m {
        display: block;
    }
    .symbol-pc {
        display: none;
    }
}
body {
    background: #fff;
    font-family:Arial,'Noto Sans TC',"Microsoft JhengHei",sans-serif;
}

img {
    position: relative;
    display: block;
    border: 0;
    width: 100%;
    height: auto;
}
.wrap {
    position: absolute;
    display: block;
    width: 100%;
    overflow: hidden;
}
.wrap .preload {
    display: none;
}

.wrap .footerBox {
    position: relative;
    display: block;
    width: 100%;
    padding: 1rem 0 1rem 0;
    background: #000;
    z-index: 2;
}

.wrap .footerBox .socialmedia {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    text-align: center;
    padding: 15px 0 15px 0;
}
.wrap .footerBox .socialmedia li {
    position: relative;
    display: inline-block;
    width: 6rem;
    max-width: 55px;
    margin: 0 1rem 0 1rem;
}
.wrap .footerBox .copyright {
    position: relative;
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 15px 0 0 0;
    font-family:Helvetica,Arial,"Microsoft JhengHei",sans-serif;
    color: #fff;
}
.wrap .footerBox .copyright br {
    display: none;
}
@media screen and (max-width: 1000px) {
    .wrap .footerBox .copyright br {
        display: block;
    }
}
.loading-page {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
}
.loading-page.expand {
    display: flex;
}
.loading-page .loading-img {
    position: relative;
    display: block;
    width: 25rem;
}
.loading-page span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-top: 1rem;
    color: #fff;
}
.nav {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 10;
}

.nav .burger-btn {
    position: absolute;
    display: block;
    width: 50px;
    height: 30px;
    right: 5vw;
    top:5vw;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav .burger-btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 6px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.nav .burger-btn span:nth-child(1) {
    top:0;
}
.nav .burger-btn span:nth-child(2) {
    top:calc(50% - 3px);
}
.nav .burger-btn span:nth-child(3) {
    top:calc(100% - 6px);
}
.nav .burger-btn span:nth-child(1) {
    -webkit-transform: scale(1,1) rotate(0deg);
    transform: scale(1,1) rotate(0deg);
}
.nav .burger-btn span:nth-child(2) {
    -webkit-transform: scale(1,1) rotate(0deg);
    transform: scale(1,1) rotate(0deg);
}
.nav .burger-btn span:nth-child(3) {
    -webkit-transform: scale(1,1)  rotate(0deg);
    transform: scale(1,1) rotate(0deg);
}
.nav.expand .burger-btn span:nth-child(1) {
    top:calc(50% - 3px);
    -webkit-transform: scale(1,1) rotate(45deg);
    transform: scale(1,1) rotate(45deg);
}
.nav.expand .burger-btn span:nth-child(2) {
    -webkit-transform: scale(0,1) rotate(0deg);
    transform: scale(0,1) rotate(0deg);
}
.nav.expand .burger-btn span:nth-child(3) {
    top:calc(50% - 3px);
    -webkit-transform: scale(1,1) rotate(-45deg);
    transform: scale(1,1) rotate(-45deg);
}
.nav .nav-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    left: 100%;
    background: #000;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
}
.nav.expand .nav-menu {
    left: 0;
}
.nav .nav-menu ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.nav .nav-menu ul li {
    font-family: ITCAGGbold,'Noto Sans TC',"Microsoft JhengHei",sans-serif;
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #fff;
    font-weight: bold;
    padding: 1.5rem;
    border-bottom: 1px solid #fff;
    text-align: center;
    cursor: pointer;
}
.nav .nav-menu ul li .highlight {
    position: relative;
    display: inline-block;
    border:2px solid #fff;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem 0;
    font-size: 2rem;
    line-height: 2rem;
}
.card-popup {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}
.card-popup.expand {
    display: flex;
}
.card-popup .card-popup-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 20rem;
    height: 15rem;
    background: #fff;
    border-radius: 2rem;
}
.card-popup .card-popup-text .t1 {
    position: relative;
    display: block;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: #000;
}
.card-popup .card-popup-text a {
    color: #fff;
}
.card-popup .card-popup-text .download-card-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12rem;
    height: 2rem;
    background: #0a3e27;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0,0,0,0.3);
    cursor: pointer;
    margin: 1rem auto 0 auto;
}
.card-popup .card-popup-text .download-card-btn:hover {
    background: #000;
}
.card-popup .card-popup-text .download-card-btn span {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3rem;
}
.popup.card-finish.expand {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.popup.card-finish span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}
.card-popup-imgbox {
    position: relative;
    display: block;
    width: calc(100% - 12rem);
    max-width: 600px;
}
@media screen and (max-width: 1000px) {
    .card-popup .card-popup-text {
        width: 25rem;
        height: 18rem;
    }
    .card-popup .card-popup-text .t1 {
        font-size: 1.8rem;
    }
    .card-popup .card-popup-text .download-card-btn {
        width: 19rem;
        height: 4rem;
        margin-top: 2rem;
    }
    .card-popup .card-popup-text .download-card-btn span {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .popup.card-finish span {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
}


.stage-container {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #efe9d2;
    z-index: 1;
    margin-top: -1px;
}
.stage-container-kv {
    background: #000;
    height:100vh;
    min-height: 45vw;
    background: url(../images/kv_bg.jpg) no-repeat center center;
    background-size: cover;
}
.kv-bg ul{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.kv-bg ul li{
    position: relative;
    display: block;
    width: 100%;
    height: 20%;
    background: #000;
}
.stage-container-kv .logo {
    position: absolute;
    display: block;
    width: 28rem;
    left: 10rem;
    top:4rem;
}
.kv-title {
    position: absolute;
    display: block;
    width: 64rem;
    bottom: 4rem;
    left: 10rem;
}
.kv-title .kv-title-img {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
}
.kv-title .kv-title-img1 {
    position: relative;
    display: block;
}
.scroll-down-btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border:2px solid #fff;
    bottom: 4rem;
    right: 5rem;
    cursor: pointer;
}
.scroll-down-btn::after {
    content: "";
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
    margin: -0.8rem 0 0 0;
    border-bottom:3px solid #fff;
    border-left:3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
    pointer-events: none;
}

@media screen and (max-width: 1000px) {
    .stage-container-kv .logo {
        width: 27rem;
        left: 3rem;
        top:3rem;
    }
    .kv-title {
        width: 44rem;
        bottom: 20rem;
        left: 3rem;
    }
    .scroll-down-btn {
        bottom: 3rem;
        right: 3rem;
    }
}
.side-btn {
    position: fixed;
    display: block;
    width: 10rem;
    right: -11rem;
    bottom: 3rem;
    cursor: pointer;
    z-index: 2;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
}
.side-btn.expand {
    right: 1rem;
}
.side-btn img:nth-of-type(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.side-btn:hover img:nth-of-type(1) {
    opacity: 0;
}
.side-btn:hover img:nth-of-type(2) {
    opacity: 1;
}
.stagebox {
    position: relative;
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 5rem 0;
}
.stage-title {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 5rem;
    background: #000;
    border-radius: 2.5rem;
    margin: 0 0 2rem 0;
}
.stage-sub-title {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8rem;
}
.stage-title-img {
    position: relative;
    display: block;
    margin: 0 0 0 7rem;
    font-family: ITCAGGbold,'Noto Sans TC',"Microsoft JhengHei",sans-serif;
    font-size: 3.6rem;
    line-height: 3.6rem;
    color: #fff;
    font-weight: bold;
}
.intro-text {
    position: relative;
    display: block;
    width: calc(100% - 14rem);
    margin: 0 0 0 7rem;
}
.bottom-line {
    position: relative;
    display: block;
    width: 100%;
    padding: 2rem 0;
}
@media screen and (max-width: 1000px) {
    .stagebox {
        width: 95%;
        padding: 5rem 0;
    }
    .stage-title {
        height: 5rem;
        border-radius: 2.5rem;
        margin: 0 0 2rem 0;
    }
    .stage-sub-title {
        font-size: 1.4rem;
        line-height: 2rem;
    }
    .stage-title-img {
        margin: 0 0 0 2rem;
    }
    .intro-text {
        width: calc(100% - 4rem);
        margin: 0 0 0 2rem;
    }
    .bottom-line {
        padding: 2rem 0;
    }
}

.stage-container-video-block {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 55.8vw;
    pointer-events: none;
    opacity: 0;
}
.stage-container-video {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    min-height: 55.8vw;
    overflow: hidden;
    top: 0;
    left: 0;
    background: #000;
    z-index: 0;
}
.stage-video-box {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}
.stage-video-box video {
    position: absolute;
    height: 100vh;
    width: 177.77777778vh; /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: 55.8vw; /* 100 * 9 / 16 */
    left: 50%; /* % of surrounding element */
    top: 50%;
    transform: translate(-50%, -50%); /* % of current element */
}
.video-muted-btn {
    position: absolute;
    display: block;
    right: calc(5vw + 70px);
    top:5vw;
    width: 40px;
    cursor: pointer;
}
.video-muted-btn img:nth-child(2) {
    position: absolute;
    width: 100%;
    left: 0;
    top:0;
}
.video-muted-btn.current-muted img:nth-child(1) {
    opacity: 1;
}
.video-muted-btn.current-muted img:nth-child(2) {
    opacity: 0;
}
.video-muted-btn.current-unmuted img:nth-child(1) {
    opacity: 0;
}
.video-muted-btn.current-unmuted img:nth-child(2) {
    opacity: 1;
}
@media screen and (max-width: 1000px) {
}

.popup {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(0,0,0,0.9);
}
.popup.expand {
    display: block;
}
.popup .close-btn {
    position: absolute;
    display: block;
    width: 4rem;
    height: 4rem;
    right: 1rem;
    top:1rem;
    background: #eee;
    cursor: pointer;
    z-index: 999;
}
.popup .close-btn::before {
    content: "";
    position: absolute;
    display: block;
    width: 80%;
    height: 3px;
    background: #000;
    left: 10%;
    top:calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.popup .close-btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 80%;
    height: 3px;
    background: #000;
    left: 10%;
    top:calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.popup.popup-video .video-player-list{
    position: absolute;
    display: block;
    width: calc(100% - 12rem);
    height: calc(56vw - 6.75rem);
    top:calc(50vh - 28vw + 3.375rem);
    left: 6rem;
}
.popup.popup-video .video-player-list li {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
}
.popup.popup-video .video-player-list li.current {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.popup.popup-video .video-player-list li iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1000px) {
    .popup.popup-video .video-player-list{
        position: absolute;
        display: block;
        width: 100vw;
        height: 56vw;
        top:calc(50vh - 28vw);
        left: 0;
    }
}
.popup.popup-rule.expand {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.popup .rule-content{
    position: relative;
    display: block;
    width: 500px;
    max-width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    background: #efe9d2;
    overflow:hidden;
    overflow-y: auto;
    border-radius: 0.5rem;
}
.popup .rule-content ul {
    position: relative;
    display: block;
    width: 100%;
    padding: 2rem;
}
.popup .rule-content ul li {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 0 2rem;
    font-size: 1rem;
    line-height: 1.8rem;
    margin-bottom: 2rem;
}
.popup .rule-content ul li::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.8rem;
    border-radius: 50%;
    background: #000;
    margin: 0.2rem 0 0 -1.5rem;
}
@media screen and (max-width: 1000px) {
    .popup .rule-content ul li {
        font-size: 1.5rem;
        line-height: 2.4rem;
    }
    .popup .rule-content ul li::before {
        width: 1.5rem;
        height: 1.5rem;
        line-height: 2.4rem;
        margin: 0.2rem 0 0 -2.2rem;
    }
}

.about-container {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0 0 0;
}
.about-list {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 5rem;
}
.about-list .item {
    position: relative;
    display: block;
    width: 100%;
}
.about-page {
    position: relative;
    display: flex;
    justify-content:space-around;
    align-items: center;
    width: 100%;
    text-align: center;
}
.about-page .about-item {
    position: relative;
    display: block;
    width: 15rem;
    background: #fff;
    padding: 0.8rem;
    cursor: pointer;
}
.about-page .about-item .imgbox {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
.about-page .about-item .imgbox::after {
    content: "";
    position: absolute;
    display: block;
    width: 4rem;
    height: 4rem;
    left: calc(50% - 2rem);
    top: calc(50% - 2rem);
    background: url(../images/video_icon.svg) no-repeat center center;
    background-size: contain;
}
.about-page .about-item .imgbox img.p2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.about-page .about-item:hover .imgbox img.p2 {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
}
.about-page .about-item .textbox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 7rem;
    margin: 0.5rem 0 0 0;
}
.about-page .about-item .textbox::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: calc(100% - 1.3rem);
    left: 0;
    bottom: 0;
    background: #000;
}
.about-page .about-item .textbox::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 5rem);
    height: 1px;
    right: 0;
    top: 0.5rem;
    background: #000;
}
.about-page .about-item .textbox .t1 {
    position: absolute;
    display: block;
    width: 3.5rem;
    left: 0;
    top: 0;
}
.about-page .about-item .textbox .t2 {
    position: relative;
    display: block;
    width: 100%;
    text-align: right;
    font-family:'Noto Serif TC',"Microsoft JhengHei",sans-serif;
    font-size: 1.75rem;
    line-height: 1.75rem;
    font-weight: 500;
    margin: 1.5rem 0 0 0;
}
.about-page .about-item .textbox .t3 {
    position: relative;
    display: block;
    width: 100%;
    text-align: right;
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin: 0.7rem 0 0 0;
}
.about-page .about-item.about-item-pos2,
.about-page .about-item.about-item-pos4 {
    top:3rem;
}
.slick-ui {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.arrow-left {
    position: relative;
    display: block;
    width: 40px;
    height: 50px;
    cursor: pointer;
}
.arrow-left img {
    pointer-events: none;
}
.arrow-left:hover img{
    -webkit-animation:leftLoop 0.3s ease 0s infinite alternate both;
    animation:leftLoop 0.3s ease 0s infinite alternate both;
}
.arrow-right {
    position: relative;
    display: block;
    width: 40px;
    height: 50px;
    cursor: pointer;
}
.arrow-right img {
    pointer-events: none;
}
.arrow-right:hover img{
    -webkit-animation:rightLoop 0.3s ease 0s infinite alternate both;
    animation:rightLoop 0.3s ease 0s infinite alternate both;
}
.small-logo {
    position: relative;
    display: block;
    width: 90%;
    margin: -5rem auto 1rem auto;
    text-align: right;
}
.small-logo span {
    position: relative;
    display: inline-block;
    width: 13rem;
}

@media screen and (max-width: 1000px) {
    
    .about-container {
        padding: 3rem 0 0 0;
    }
    .about-list {
        margin-bottom: 5rem;
    }
    .about-page {
        flex-wrap: wrap;
    }
    .about-page .about-item {
        width: 22rem;
        padding: 0.8rem;
        margin-bottom: 2rem;
    }
    .about-page .about-item .imgbox::after {
        width: 6rem;
        height: 6rem;
        left: calc(50% - 3rem);
        top: calc(50% - 3rem);
    }
    .about-page .about-item .textbox {
        height: 9rem;
        margin: 0.5rem 0 0 0;
    }
    .about-page .about-item .textbox::before {
        height: calc(100% - 2rem);
    }
    .about-page .about-item .textbox::after {
        width: calc(100% - 8rem);
    }
    .about-page .about-item .textbox .t1 {
        width: 6rem;
    }
    .about-page .about-item .textbox .t2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin: 1.5rem 0 0 0;
    }
    .about-page .about-item .textbox .t3 {
        font-size: 1.4rem;
        line-height: 1.8rem;
        margin: 0.7rem 0 0 0;
    }
    .about-page .about-item.about-item-pos2,
    .about-page .about-item.about-item-pos4 {
        top:3rem;
    }
    .small-logo {
        width: 90%;
        margin: -5rem auto 5rem auto;
    }
    .small-logo span {
        width: 22rem;
    }
}

.stage-container-join {
    background: #fff;
}
.stage-container-join .stage-title {
    background: #efe9d2;
}
.stage-container-join .stage-title-img {
    color: #000;
    font-weight: 700;
}
.join-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.join-container .box1 {
    position: relative;
    display: block;
    width: 38%;
}
.join-container .box2 {
    position: relative;
    display: block;
    width: 40%;
    margin-left: 3rem;
}
.join-container .textbox {
    position: relative;
    display: block;
    width: 100%;
    background: #efe9d2;
    border-radius: 0.7rem;
    padding: 0.8rem;
}
.join-container .textbox1 {
    margin-bottom: 1rem;
}
.join-container .textbox ul {
    position: relative;
    display: block;
    width: 100%;
}
.join-container .textbox ul li{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    color: #000;
    padding: 0.2rem 0;
}
.join-container .textbox ul li.dot-icon::before {
    content: "";
    position: relative;
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #000;
    margin-right: 0.4rem;
}
.join-container .textbox ul li span {
    font-size: 1.1rem;
    line-height: 1.3rem;
}
.join-container .textbox ul li span.big-t{
    font-size: 1.3rem;
    font-weight: 700;
}
.join-container .textbox ul li span.small-t{
    font-size: 0.8rem;
}
.join-videobox {
    position: relative;
    display: block;
    width: 100%;
    height: 17rem;
}
.join-video-player {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
/*
.join-videobox::after {
    content: "";
    position: absolute;
    display: block;
    width: 4rem;
    height: 4rem;
    left: calc(50% - 2rem);
    top: calc(50% - 2rem);
    background: url(../images/video_icon.svg) no-repeat center center;
    background-size: contain;
}*/
.join-map {
    position: relative;
    display: block;
    width: 100%;
    height: 15rem;
}
.join-map iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.map-text {
    position: relative;
    display: block;
    width: 20rem;
    margin: 0.5rem auto 0 auto;
}
.join-btn-box {
    position: relative;
    display: block;
    width: 11rem;
    margin: 0 auto;
}
.join-btn {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
}
.join-finger {
    position: absolute;
    display: block;
    width: 4rem;
    pointer-events: none;
    left: 7rem;
    top:7rem;
    -webkit-animation:upLoop 0.5s ease 0s infinite alternate both;
    animation:upLoop 0.5s ease 0s infinite alternate both;
}
@media screen and (max-width: 1000px) {
    .join-container {
        flex-direction: column;
    }
    .join-container .box1 {
        width: 100%;
    }
    .join-container .box2 {
        width: 100%;
        margin-left: 0;
    }
    .join-container .textbox {
        width: 80%;
        border-radius: 1rem;
        padding: 0.8rem;
        margin: 0 auto;
    }
    .join-container .textbox1 {
        margin-bottom: 1rem;
    }
    .join-container .textbox2 {
        margin-bottom: 2rem;
    }
    .join-container .textbox ul li{
        padding: 0.5rem 0;
    }
    .join-container .textbox ul li span {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    .join-container .textbox ul li span.big-t{
        font-size: 2.2rem;
        font-weight: 700;
    }
    .join-container .textbox ul li span.small-t{
        font-size: 1.5rem;
    }
    .join-videobox {
        height: 30rem;
    }
    /*
    .join-videobox::after {
        width: 6rem;
        height: 6rem;
        left: calc(50% - 3rem);
        top: calc(50% - 3rem);
    }*/
    .join-map {
        height: 30rem;
        margin-top: 5rem;
    }
    .map-text {
        width: 30rem;
        margin: 0.5rem auto 3rem auto;
    }
    .join-btn-box {
        width: 22rem;
    }
    .join-finger {
        width: 7rem;
        left: 15rem;
        top:15rem;
    }
}
.pioneers-list {
    position: relative;
    display: flex;
    justify-content:flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 3rem;
}
.pioneers-list .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 32%;
    cursor: pointer;
    margin-bottom: 2.5rem;
}
.pioneers-list .item .imgbox {
    position: relative;
    display: block;
    width: 17rem;
    height: 17rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.pioneers-list .item .imgbox img.p2 {
    position: absolute;
    top:0;
    left: 0;
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.pioneers-list .item:hover .imgbox img.p2 {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
}
.pioneers-list .item .textbox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: -1rem;
}
.pioneers-list .item .textbox .t1 {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
}
.pioneers-list .item .textbox .t1 span {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.6rem;
    padding: 0.3rem;
    background: #000;
    color: #fff;
}
.pioneers-list .item .textbox .t2 {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6rem;
    color: #000;
    padding: 0.5rem 0 0 0;
}
.pioneers-list .item .textbox .more-btn {
    position: relative;
    display: block;
    width: 9.4rem;
    height: 2rem;
    background: url(../images/more_btn.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
    margin-top: 0.5rem;
}
.pioneers-list .item:hover .textbox .more-btn {
    background: url(../images/more_btn_hover.svg) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 1000px) {
    .pioneers-list {
        margin-top: 3rem;
        justify-content:center; 
    }
    .pioneers-list .item {
        width: 45%;
        margin: 0 0.5rem 3rem 0.5rem;
    }
    .pioneers-list .item .imgbox {
        width: 20rem;
        height: 20rem;
    }
    .pioneers-list .item .textbox {
        margin-top: -1rem;
    }
    .pioneers-list .item .textbox .t1 span {
        font-size: 2.2rem;
        line-height: 2.2rem;
        padding: 0.5rem;
    }
    .pioneers-list .item .textbox .t2 {
        font-size: 1.1rem;
        line-height: 1.7rem;
        padding: 1rem 0 0 0;
    }
    .pioneers-list .item .textbox .more-btn {
        width: 15rem;
        height: 3rem;
        margin-top: 1rem;
    }
}
.stage-container-popular .pioneers-list .item .imgbox {
    border-radius: 0.3rem;
}
.stage-container-popular .pioneers-list .item .textbox {
    margin-top: 0;
}

.rule-btnbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    margin-bottom: 2rem;
}
.rule-btnbox li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12rem;
    height: 2.5rem;
    margin: 0 2rem;
    background: #0a3e27;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0,0,0,0.3);
    cursor: pointer;
}
.rule-btnbox li:hover {
    background: #000;
}
.rule-btnbox li span {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3rem;
}
.stepbox {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 85%;
}
.stepbox .box1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}
.stepbox .box1 .step-title {
    position: relative;
    display: block;
    width: 13.8rem;
    left: 4rem;
}
.stepbox .box2 {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 60%;
    margin: 0 0 0 10%;
}
.stepbox .color-box {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.stepbox .color-box li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 4rem;
    cursor: pointer;
}
.stepbox .color-box li .imgbox{
    position: relative;
    display: block;
    width: 4rem;
    height: 4rem;
    border:2px solid rgba(0,0,0,0);
}
.stepbox .color-box li:hover .imgbox {
    border:3px solid #000;
}
.stepbox .color-box li.current .imgbox {
    border:3px solid #666;
}
.stepbox .color-box li.item1 .imgbox {
    background: #fede3f;
}
.stepbox .color-box li.item2 .imgbox {
    background: #6fdcfd;
}
.stepbox .color-box li.item3 .imgbox {
    background: #004A16;
}
.stepbox .color-box li.item4 .imgbox {
    background: #feb9d9;
}
.stepbox .color-box li .textbox {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3rem;
    margin-top: 0.5rem;
}
.post-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    height: 4rem;
    background: #0a3e27;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0,0,0,0.3);
    cursor: pointer;
}
.post-btn:hover {
    background: #000;
}
.post-btn span {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3rem;
}
.input-list {
    position: relative;
    display: block;
    width: 19rem;
}
.input-list li {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
.input-list li input {
    position: relative;
    display: block;
    width: 100%;
    height: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    color: #333;
    border:0px solid rgba(0,0,0,0);
}
.input-list li textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 18.2rem;
    font-size: 1rem;
    line-height: 2rem;
    color: #333;
    border:0px solid rgba(0,0,0,0);
    resize: none;
}
.clear-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 2rem;
    background: #0a3e27;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0,0,0,0.3);
    cursor: pointer;
    margin: 0 auto;
}
.clear-btn:hover {
    background: #000;
}
.clear-btn span {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3rem;
}
.card-box {
    position: relative;
    display: block;
    margin-left: 2rem;
}
.preview-box {
    position: relative;
    display: block;
    width: 19rem;
    pointer-events: none;
}
.preview-box .card-bg {
    position: relative;
    display: block;
    width: 100%;
}
.preview-box .card-bg li {
    position: absolute;
    display: block;
    width: 100%;
    opacity: 0;
    top:0;
    left: 0;
}
.preview-box .card-bg li:nth-of-type(1) {
    position: relative;
    display: block;
}
.preview-box .card-bg li.current {
    opacity: 1;
}
.preview-box .user-name {
    position: absolute;
    display: block;
    font-size: 1rem;
    line-height: 1rem;
    bottom:24.5%;
    right:13%;
    letter-spacing: 0;
    color: #000;
}
.preview-box .user-text {
    position: absolute;
    display: block;
    font-size: 0.8rem;
    line-height: 2rem;
    top:30%;
    left:12%;
    letter-spacing: 0;
    width: 77%;
    color: #000;
    word-break:break-all; 
}
.render-box {
    position: fixed;
    display: none;
    width: 600px;
    height: 670px;
    pointer-events: none;
    left: 20px;
    top:20px;
}
.render-box .card-bg {
    position: relative;
    display: block;
    width: 100%;
}
.render-box .card-bg li {
    position: absolute;
    display: block;
    width: 100%;
    opacity: 0;
    top:0;
    left: 0;
}
.render-box .card-bg li:nth-of-type(1) {
    position: relative;
    display: block;
}
.render-box .card-bg li.current {
    opacity: 1;
}
.render-box .user-name {
    position: absolute;
    display: block;
    font-size: 30px;
    line-height: 30px;
    bottom:24.5%;
    right:13%;
    letter-spacing: 0;
    color: #000;
    font-weight: 700;
}
.render-box .user-text {
    position: absolute;
    display: block;
    font-size: 26px;
    line-height: 62px;
    top:30%;
    left:12%;
    letter-spacing: 0;
    width: 77%;
    color: #000;
    word-break:break-all; 
}
.download-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 2rem;
    background: #0a3e27;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0,0,0,0.3);
    cursor: pointer;
    margin: 1rem auto 0 auto;
}
.download-btn:hover {
    background: #000;
}
.download-btn span {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3rem;
}
@media screen and (max-width: 1000px) {
    .rule-btnbox {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }
    .rule-btnbox li {
        width: 16rem;
        height: 4rem;
        margin: 0 2rem;
    }
    .rule-btnbox li span {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
    .stepbox {
        width: 90%;
        justify-content: center;
        margin: 0 auto;
    }
    .stepbox .box1 {
        display: none;
    }
    .stepbox .box2 {
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    .stepbox .color-box {
        justify-content: center;
    }
    .stepbox .color-box li {
        margin: 0 2rem;
    }
    .stepbox .color-box li .imgbox{
        width: 6rem;
        height: 6rem;
    }
    .stepbox .color-box li .textbox {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-top: 1rem;
    }
    .post-btn {
        width: 30rem;
        height: 5.5rem;
        margin-bottom: 5rem;
    }
    .post-btn span {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }
    .clear-btn {
        width: 10rem;
        height: 4rem;
        margin-top: 2rem;
    }
    .clear-btn span {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
    .download-btn {
        width: 19rem;
        height: 4rem;
        margin-top: 2rem;
    }
    .download-btn span {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
}

.stage-container-tidbits .info-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
}
.stage-container-tidbits .info-box .imgbox {
    position: relative;
    display: block;
    width: 60%;
}
.stage-container-tidbits .info-box .textbox {
    position: relative;
    display: block;
    width: 40%;
    font-size: 1.2rem;
    line-height: 2.2rem;
    padding: 1rem;
    text-align: justify;
}
.stage-container-tidbits .info-box .more-btn {
    position: relative;
    display: block;
    width: 9.4rem;
    height: 2rem;
    background: url(../images/more_btn.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
    margin-top: 0.5rem;
}
.stage-container-tidbits .info-box:hover .more-btn {
    background: url(../images/more_btn_hover.svg) no-repeat center center;
    background-size: contain;
}
.stage-container-tidbits .info-box a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}
.tidbits-photo-box {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
}
.tidbits-photo-box .bigbox {
    position: relative;
    display: block;
    width: 100%;
    padding: 4rem;
    background: #fff;
    overflow: hidden;
}
.tidbits-photo-box .bigbox::before {
    content: "";
    position: absolute;
    display: block;
    width: 4rem;
    height: 100%;
    left: 0;
    top: 0;
    border:2rem solid #000;
    border-right: 0px;
    box-sizing: border-box;
    pointer-events: none;
}
.tidbits-photo-box .bigbox::after {
    content: "";
    position: absolute;
    display: block;
    width: 4rem;
    height: 100%;
    right: 0;
    top: 0;
    border:2rem solid #000;
    border-left: 0px;
    box-sizing: border-box;
    pointer-events: none;
}
.tidbits-photo-box .bigbox .tidbits-img-list {
    position: relative;
    display: block;
    width: 100%;
}
.tidbits-photo-box .bigbox .tidbits-img-list .imgbox{
    position: relative;
    display: block;
    width: 100%;
}

.tidbits-photo-box .bigbox:hover::before,
.tidbits-photo-box .bigbox:hover::after{
    display: none;
}
.tidbits-slider-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
}
.tidbits-slider {
    position: relative;
    display: block;
    width: 60rem;
    overflow: hidden;
}
.tidbits-slider-list {
    position: relative;
    display: block;
    width: 100%;
    list-style: none;
}
.tidbits-slider-list .item {
    position: relative;
    display: block;
    width: 15rem;
}
.tidbits-slider-list .item.video-item::before {
    content: "";
    position: absolute;
    display: block;
    width: 5rem;
    height: 5rem;
    z-index: 1;
    left: 50%;
    top:50%;
    margin: -2.5rem 0 0 -2.5rem;
    box-sizing: border-box;
    background: url(../images/video_icon.svg) no-repeat center center;
    background-size: contain;
}
.tidbits-slider-list .item .imgbox {
    position: relative;
    display: block;
    width: 90%;
    margin: 0 auto;
}
.tidbits-video-player {
    position: relative;
    display: block;
    width: 100%;
    height: 40vw;
}
@media screen and (max-width: 1000px) {
    .stage-container-tidbits .info-box {
        flex-direction: column;
    }
    .stage-container-tidbits .info-box .imgbox {
        width: 100%;
    }
    .stage-container-tidbits .info-box .textbox {
        width: 100%;
        font-size: 1.3rem;
        line-height: 2.8rem;
    }
    .stage-container-tidbits .more-btn {
        width: 15rem;
        height: 3rem;
        margin: 1rem auto;
    }
    .tidbits-slider {
        width: 36rem;
    }
    .tidbits-slider-list .item {
        width: 11rem;
    }
    .tidbits-video-player {
        height: 44vw;
    }
}
/* Slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;

/*    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    /*overflow: hidden;*/
    margin: 0;
    padding: 0;
    height: 100%;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    /*display: none;*/
    float: left;
    outline: none;
    /*height: 47vw;*/
    min-height: 1px;
    position: relative;
}
.slick-slide > div{width: 100%;}
.slick-slide *:focus{
    outline: none;
}
[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: flex;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


.slick-arrow {
    cursor: pointer;
/*    position: absolute;
    display: block;
    width: 41px;
    height: 81px;
    cursor: pointer;
    top: 50%;
    margin-top: -40px;
    background-position: top;
    z-index: 1;
    text-indent: -9999px;
    border: 0px;*/
}

.slick-arrow:focus {
    outline: none;
}

.slick-prev {
    left: 0;
}

.slick-prev::after {
    content: '';
    position: absolute;
    display: block;
    width: 41px;
    height: 81px;
    background-position: bottom;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
    top: 0px;
    left: 0px;
}

.slick-next {
    right: 0;
}

.slick-next::after {
    content: '';
    position: absolute;
    display: block;
    width: 41px;
    height: 81px;
    background-position: bottom;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
    top: 0px;
    left: 0px;
}

.slick-arrow:hover:after {
    opacity: 1;
}

ul.slick-dots {
    /*position: absolute;*/
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    text-align: center;
    position: relative;
    padding: 1rem 0;
}


ul.slick-dots li,ul.slick-dots li{
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    opacity: 1;
    border-radius:50%;
    margin: 0 10px 0 10px;
    padding: 0;
    cursor: pointer;
    box-sizing: content-box;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    border:0px solid #000;
    border-radius:50%;
    padding: 0px;
    margin: 0;
    cursor: pointer;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    background:#ccc;
/*    transform: scale(1.2);
    -webkit-transform: scale(1.2);*/
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    content: none;

}

.slick-dots li button:before{
    background: none;
}

.slick-dots li.slick-active button{
    background:#808080;
}

button:focus{
    outline: none;
}
/* slider end */

.wrap a{z-index: 1;}
/*.brand-list .slider{
    margin: 0 0 0 0%;
}
.stage5 .wallpaper-viewbox .slider .wallpaper-img{
    margin: 0;
}
.brand-list .slick-slide{
    display: flex;justify-content: center;align-items: center;
}
.brand-list .slider li{
    padding: 0 5px;
    margin: 0;
}*/