@charset "UTF-8";

html {
    font-size: 16px;
    -webkit-text-size-adjust:none;
    color:#303030;
}
@media screen and (max-width: 640px) {
}

body {
    background: #fff;
	font-size:12px;
    font-family:'Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    background: #ece9e4;
}

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 a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}
.kv-box {
    position: relative;
    display: flex;
    width: 100%;
    height: 54vw;
    overflow: hidden;
}
.kv-box .kv-imgbox {
    position: relative;
    display: block;
    width: 25%;
    height: 100%;
}
.kv-box .kv-imgbox .kv-img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.kv-box .kv-name {
    position: absolute;
    display: block;
    width: 40%;
    bottom:0;
}
.kv-box .kv-title {
    position: absolute;
    display: block;
    width: 64%;
    left: 18%;
    top:16vw;
}
.nav {
    position: fixed;
    display: block;
    width: 100%;
    height: 40px;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav.nav-fixed {
    background: #000;
}
.nav .nav-logo {
    position: absolute;
    display: block;
    width: 10%;
    min-width: 60px;
    max-width: 139px;
    left: 2vw;
    top:2vw;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav.nav-fixed .nav-logo {
    top:10px;
    left: 10px;
    width: 60px;
}
.nav .burger-btn {
    position: absolute;
    display: block;
    width: 30px;
    height: 25px;
    right: 2vw;
    top:2vw;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav.nav-fixed .burger-btn {
    top:12px;
    right: 10px;

}
.nav .burger-btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.nav .burger-btn span:nth-child(1) {
    -webkit-transform: scale(1,1) translate(0,0) rotate(0deg);
    transform: scale(1,1) translate(0,0) rotate(0deg);
}
.nav .burger-btn span:nth-child(2) {
    -webkit-transform: scale(1,1) translate(0,7px) rotate(0deg);
    transform: scale(1,1) translate(0,7px) rotate(0deg);
}
.nav .burger-btn span:nth-child(3) {
    -webkit-transform: scale(1,1) translate(0,14px) rotate(0deg);
    transform: scale(1,1) translate(0,14px) rotate(0deg);
}
.nav.expand .burger-btn span:nth-child(1) {
    -webkit-transform: scale(1,1) translate(0,7px) rotate(45deg);
    transform: scale(1,1) translate(0,7px) rotate(45deg);
}
.nav.expand .burger-btn span:nth-child(2) {
    -webkit-transform: scale(0,1) translate(0,7px) rotate(0deg);
    transform: scale(0,1) translate(0,7px) rotate(0deg);
}
.nav.expand .burger-btn span:nth-child(3) {
    -webkit-transform: scale(1,1) translate(0,7px) rotate(-45deg);
    transform: scale(1,1) translate(0,7px) rotate(-45deg);
}
.nav .nav-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    left: 100%;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
}
.nav.expand .nav-menu {
    left: 0;
}
.nav .nav-menu ul {
    position: relative;
    display: block;
    width: 80%;
}
.nav .nav-menu ul li {
    position: relative;
    display: block;
    width: 100%;
    font-family:'Noto Serif TC','Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    font-weight: 700;
    font-size: 3vw;
    line-height: 3vw;
    letter-spacing: 0.4vw;
    padding: 2vw 0 2vw 0;
    text-align: center;
    cursor: pointer;
    color:#fff;
    border-bottom:2px dotted rgba(255,255,255,0.5);
}
.nav .nav-menu ul li span {
    position: relative;
    display: inline-block;
    /*
    -webkit-transform: scale(1,1.2);
    transform: scale(1,1.2);*/
}
.nav .nav-menu ul li:last-child {
    border-bottom: 0;
}
.nav .nav-menu ul li:nth-child(1){
    color:#60b6ff;
}
.nav .nav-menu ul li:nth-child(2){
    color:#eb3b3e;
}
.nav .nav-menu ul li:nth-child(3){
    color:#e97eff;
}
.nav .nav-menu ul li:nth-child(4){
    color:#fff;
}
.nav .nav-menu ul li:nth-child(5){
    color:skyblue;
}
@media screen and (max-width: 1000px) {
    .nav .nav-menu ul li {
        font-size: 5vw;
        line-height: 5vw;
        padding: 3vw 0 3vw 0;
    }
}
.side-btn {
    position: fixed;
    display: block;
    width: 10%;
    min-width: 60px;
    max-width: 160px;
    right: 2vw;
    bottom: 5vw;
    z-index: 800;
    border:1px solid #0057a0;
    cursor: pointer;
}
.side-btn::before {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% + 2vw);
    height: calc(100% + 2vw);
    left: -1vw;
    top: -1vw;
    border:0.5vw solid #0057a0;
    box-sizing: border-box;
}
.side-btn:hover::before {
    border:0.5vw solid #000;
    background: #000;
}
.stagebox {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stage1::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 6vw;
    right: 8vw;
    top: 0;
    background: #000;
}
.stage1::after {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 6vw;
    left: 8vw;
    bottom: 0;
    background: #000;
}
.stage1 .stage1-text {
    position: relative;
    display: block;
    width: 70%;
    margin: 7vw 0 5vw 0;
}
.stage1 .stage1-img {
    position: relative;
    display: block;
    width: 30%;
    margin: 0 0 7vw 0;
}
@media screen and (max-width: 1000px) {
    .stage1::before {
        display: none;
    }
    .stage1::after {
        display: none;
    }
    .stage1 .stage1-text {
        width: 90%;
    }
    .stage1 .stage1-img {
        width: 45%;
    }
}
.stage2 {
    background: url(../images/stage2-bg.jpg) repeat center center;
}
.stagebox .stage-title {
    position: relative;
    display: block;
    width: 50%;
    margin: 7vw 0 7vw 0;
}
.stagebox .stage-title h1,
.lightbox-video .lightbox-video-box h1 {
    position: relative;
    display: block;
    width: 80%;
    font-size: 3vw;
    line-height: 3vw;
    font-family:'Noto Serif TC','Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    font-weight: 700;
    padding: 0 0 2vw 0;
}
.stagebox .stage-title h2,
.lightbox-video .lightbox-video-box h2 {
    position: relative;
    display: block;
    width: 100%;
    padding: 2vw 0 0 0;
    font-size: 1.5vw;
    line-height: 1.5vw;
    color:#000;
}
.stage2 .stage-title h1,
.lightbox-video .lightbox-video-box h1 {
    color:#0057a0;
    border-bottom: 1px solid #0057a0;
}
.stage2 .stage-title h2,
.lightbox-video .lightbox-video-box h2 {
    text-align: right;
}
.stage3 .stage-title h1 {
    width: 60%;
    left: 40%;
    color:#eb3b3e;
    border-bottom: 1px solid #eb3b3e;
    text-align: right;
}
.stage3 .stage-title h2 {
    text-align: right;
}
.stage4 .stage-title h1 {
    width: 60%;
    left: 0%;
    color:#731d85;
    border-bottom: 1px solid #731d85;
}
.stage4 .stage-title h2 {
    text-align: center;
}
.stage5 .stage-title h1 {
    width: 60%;
    left: 0%;
    color:#fff;
    border-bottom: 1px solid #fff;
}
.stage5 .stage-title h2 {
    text-align: center;
    color:#fff;
}
.stage2 .stage2-video-box {
    position: relative;
    display: block;
    width: 90%;
    padding: 0 0 7vw 0;
}
.stage2 .stage2-video-box .stage2-video-list {
    position: relative;
    display: block;
    width: 100%;
}
.stage2 .stage2-video-box .stage2-video-list .slider {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    text-align: center;
}
.stage2 .stage2-video-box .stage2-video-list li {
    position: relative;
    display: inline-block;
    width: 23%;
    margin: 0 1% 0 1%;
    background: #5eb534;
    padding: 0.6vw;
    border:1px solid #fff;
    border-radius: 0.8vw;
    overflow: hidden;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.stage2 .stage2-video-box .stage2-video-list li::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background: url(../images/video-play-btn.svg) no-repeat center center;
    background-size: contain;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
}
.stage2 .stage2-video-box .stage2-video-list li img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.stage2 .stage2-video-box .stage2-video-list li:hover {
    background: #fff;
}
.stage2 .stage2-video-box .stage2-video-list li:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.stage2 .stage2-video-box .stage2-video-btn {
    position: relative;
    display: none;
}
@media screen and (max-width: 1000px) {
    .stagebox .stage-title {
        width: 70%;
    }
    .stagebox .stage-title h1 {
        font-size: 4.5vw;
        line-height: 4.5vw;
        padding: 0 0 3vw 0;
    }
    .stagebox .stage-title h2 {
        padding: 3vw 0 0 0;
        font-size: 2.2vw;
        line-height: 3vw;
    }
    .stage2 .stage2-video-box {
        width: 70%;
    }
    .stage2 .stage2-video-box .stage2-video-list {
        overflow: hidden;
    }
    .stage2 .stage2-video-box .stage2-video-list .slider {
        white-space: nowrap;
    }
    .stage2 .stage2-video-box .stage2-video-list li {
        width: 100%;
        margin: 0;
        padding: 1.2vw;
        border:2px solid #fff;
        border-radius: 1.6vw;
    }
    .stage2 .stage2-video-box .stage2-video-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 5vw 0 0 0;
    }
    .stage2 .stage2-video-box .stage2-video-btn .dot {
        position: relative;
        display: block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #000;
        margin: 0 12px 0 12px;
        cursor: pointer;
    }
    .stage2 .stage2-video-box .stage2-video-btn .dot.current {
        background: #c05c2a;
    }
    .stage2 .stage2-video-box .stage2-video-btn .arrow-left,
    .stage2 .stage2-video-box .stage2-video-btn .arrow-right{
        position: relative;
        display: block;
        width: 25px;
        height: 25px;
        background: rgba(0,0,0,0.25);
        margin: 0 12px 0 12px;
        cursor: pointer;
    }
    .stage2 .stage2-video-box .stage2-video-btn .arrow-left::after {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        height: 10px;
        border-left: 3px solid #000;
        border-top: 3px solid #000;
        transform: rotate(-45deg);
        left: 9px;
        top: 6px;
    }
    .stage2 .stage2-video-box .stage2-video-btn .arrow-right::after {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        height: 10px;
        border-right: 3px solid #000;
        border-top: 3px solid #000;
        transform: rotate(45deg);
        right: 9px;
        top: 6px;
    }
}
.lightbox-video {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    left: -100%;
    top:0;
    z-index: 1000;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
}
.lightbox-video.expand {
    left: 0;
}
.lightbox-video .lightbox-video-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding: 2vw;
    background: #5eb534;
    border-radius: 1vw;
}
.lightbox-video .lightbox-video-box .video-content {
    position: relative;
    display: block;
    width: 90%;
    height: 27vw;
    background: #000;
}
.lightbox-video .lightbox-video-box .video-title {
    position: relative;
    display: none;
    width: 70%;
    margin: 2vw 0 0 0;
}
.lightbox-video.video1 .lightbox-video-box .video-title1,
.lightbox-video.video2 .lightbox-video-box .video-title2,
.lightbox-video.video3 .lightbox-video-box .video-title3,
.lightbox-video.video4 .lightbox-video-box .video-title4{
    display: block;
}
.lightbox-video .lightbox-video-box .closebtn {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    right: -50px;
    top:0;
    cursor: pointer;
}
.lightbox-video .lightbox-video-box .closebtn::before {
    content: "";
    position: absolute;
    display: block;
    width: 80%;
    left: 10%;
    height: 4px;
    background: #fff;
    top:calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.lightbox-video .lightbox-video-box .closebtn::after {
    content: "";
    position: absolute;
    display: block;
    width: 80%;
    left: 10%;
    height: 4px;
    background: #fff;
    top:calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media screen and (max-width: 1000px) {
    .lightbox-video .lightbox-video-box {
        width: 95%;
    }
    .lightbox-video .lightbox-video-box .video-content {
        height: 45vw;
    }
    .lightbox-video .lightbox-video-box .closebtn {
        right: 5px;
        top:-50px;
    }
}
.stage3 .cover-list {
    position: relative;
    display: block;
    font-size: 0;
    line-height: 0;
    padding-bottom: 25vw;
    text-align: center;
}
.stage3 .cover-list .cover-box {
    position: relative;
    display: inline-block;
    width: 35%;
    margin: 0 2% 2vw 2%;
}
.stage3 .cover-list .cover-box .cover-img {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}
.stage3 .cover-list .cover-box .cover-img img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.stage3 .cover-list .cover-box .cover-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.stage3 .cover-list .cover-box .cover-number {
    position: absolute;
    display: block;
    width: 20%;
    pointer-events: none;
}
.stage3 .cover-list .cover-box.cover1 .cover-number {
    bottom: 3%;
    right: 0;
}
.stage3 .cover-list .cover-box.cover2 .cover-number {
    bottom: 3%;
    right: 0;
}
.stage3 .cover-list .cover-box.cover3 .cover-number {
    bottom: 10%;
    left: -5%;
}
.stage3 .cover-list .cover-box.cover4 .cover-number {
    bottom: 10%;
    left: -5%;
}
.stage3 .cover-list .cover-box.cover1::before {
    content: "";
    position: absolute;
    display: block;
    width: 8vw;
    height: 1px;
    background: #000;
    left: -8vw;
    top:15vw;
}
.stage3 .cover-list .cover-box.cover2::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 8vw;
    background: #000;
    left: 26vw;
    top:-8vw;
}
.stage3 .cover-list .cover-box.cover3::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 8vw;
    background: #000;
    left: 18vw;
    top:43vw;
}
.stage3 .cover-list .cover-box.cover4::before {
    content: "";
    position: absolute;
    display: block;
    width: 8vw;
    height: 1px;
    background: #000;
    right: -8vw;
    top:20vw;
}
.stage3 .cover-list .cover-box .cover-btn {
    position: relative;
    display: block;
    width: 100px;
    margin: 1.5vw 0 0 0;
    text-align: center;
}
.stage3 .cover-list .cover-box .cover-btn span {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 13px;
    padding: 8px 0 8px 0;
    border:1px solid #000;
}
.stage3 .cover-list .cover-box .cover-btn:hover span {
    background: #000;
    color: #fff;
}
.stage3 .cover-list .cover-box.cover2 {
    top:17vw;
}
.stage3 .cover-list .cover-box.cover3 {
    left: -3vw;
}
.stage3 .cover-list .cover-box.cover4 {
    left: -3vw;
    top:15vw;
}
.stage3 .cover-list .cover-box.cover2 .cover-btn,
.stage3 .cover-list .cover-box.cover4 .cover-btn{
    float: right;
}
@media screen and (max-width: 1000px) {
    .stage3 .cover-list {
        padding-bottom: 0;
    }
    .stage3 .cover-list .cover-box {
        display: block;
        width: 80%;
        margin: 0 10% 0 10%;
    }
    .stage3 .cover-list .cover-box .cover-number {
        display: none;
    }
    .stage3 .cover-list .cover-box .cover-btn {
        width: 100px;
        margin: 4vw 0 10vw 0;
        margin-left: calc(50% - 50px);
        text-align: center;
    }
    .stage3 .cover-list .cover-box.cover2 {
        top:auto;
    }
    .stage3 .cover-list .cover-box.cover3 {
        left: auto;
    }
    .stage3 .cover-list .cover-box.cover4 {
        left: auto;
        top:auto;
    }
    .stage3 .cover-list .cover-box.cover2 .cover-btn,
    .stage3 .cover-list .cover-box.cover4 .cover-btn{
        float: none;
    }
    .stage3 .cover-list .cover-box.cover1::before,
    .stage3 .cover-list .cover-box.cover2::before,
    .stage3 .cover-list .cover-box.cover3::before,
    .stage3 .cover-list .cover-box.cover4::before {
        display: none;
    }
}
.stage4 {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: url(../images/article-bg.jpg) no-repeat center bottom;
    background-size: 100% auto;
}
.stage4 .article-list {
    position: relative;
    display: block;
    width: 80%;
    overflow: hidden;
}
.stage4 .article-list .slider {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
}
.stage4 .article-list .slider ul {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    white-space: normal;
    text-align: center;
}
.stage4 .article-list .slider ul li {
    position: relative;
    display: inline-block;
    width: 30%;
    margin: 0 1% 3vw 1%;
    vertical-align: top;
}
.stage4 .article-list .slider ul li .article-img {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
.stage4 .article-list .slider ul li .article-img img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.stage4 .article-list .slider ul li:hover .article-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.stage4 .article-list .slider ul li h1 {
    position: relative;
    display: block;
    font-size: 15px;
    line-height:18px;
    padding: 1vw 0 0 0;
    font-weight: 500;
    color:#000;
    text-align: left;
}
.stage4 .article-list .slider ul li h2 {
    position: relative;
    display: block;
    font-size: 10px;
    line-height: 15px;
    padding: 1vw 0 0 0;
    text-align: left;
}
.stage4 .stage4-article-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 1vw 0 5vw 0;
}
.stage4 .stage4-article-btn .dot {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000;
    margin: 0 12px 0 12px;
    cursor: pointer;
}
.stage4 .stage4-article-btn .dot.current {
    background: #c05c2a;
}
.stage4 .stage4-article-btn .arrow-left,
.stage4 .stage4-article-btn .arrow-right,
.wallpaper-viewbox .arrow-left,
.wallpaper-viewbox .arrow-right,
.lightbox-video-box .arrow-left,
.lightbox-video-box .arrow-right {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    background: rgba(0,0,0,0.25);
    margin: 0 12px 0 12px;
    cursor: pointer;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.stage4 .stage4-article-btn .arrow-left::after,
.wallpaper-viewbox .arrow-left::after,
.lightbox-video-box .arrow-left::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-left: 3px solid #000;
    border-top: 3px solid #000;
    transform: rotate(-45deg);
    left: 9px;
    top: 6px;
}
.stage4 .stage4-article-btn .arrow-left:hover,
.stage4 .stage4-article-btn .arrow-right:hover,
.wallpaper-viewbox .arrow-left:hover,
.wallpaper-viewbox .arrow-right:hover,
.lightbox-video-box .arrow-left:hover,
.lightbox-video-box .arrow-right:hover{
    background: rgba(0,0,0,1);
}
.stage4 .stage4-article-btn .arrow-right::after,
.wallpaper-viewbox .arrow-right::after,
.lightbox-video-box .arrow-right::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-right: 3px solid #000;
    border-top: 3px solid #000;
    transform: rotate(45deg);
    right: 9px;
    top: 6px;
}
.stage4 .stage4-article-btn .arrow-left:hover::after,
.wallpaper-viewbox .arrow-left:hover::after,
.lightbox-video-box .arrow-left:hover::after{
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
}
.stage4 .stage4-article-btn .arrow-right:hover::after,
.wallpaper-viewbox .arrow-right:hover::after,
.lightbox-video-box .arrow-right:hover::after{
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
}
@media screen and (max-width: 1000px) {
    .stage4 {
        background-size: 150% auto;
    }
    .stage4 .article-list {
        width: 100%;
    }
    .stage4 .article-list .slider {
        
    }
    .stage4 .article-list .slider ul {
        width: 90%;
        margin: 0 5% 0 5%;
    }
    .stage4 .article-list .slider ul li{
        padding-bottom: 2vw;
    }
    .stage4 .article-list .slider ul li:nth-child(1),
    .stage4 .article-list .slider ul li:nth-child(4){
        padding-top: 5vw;
        width: 95%;
    }
    
    .stage4 .article-list .slider ul li:nth-child(2),
    .stage4 .article-list .slider ul li:nth-child(3),
    .stage4 .article-list .slider ul li:nth-child(5),
    .stage4 .article-list .slider ul li:nth-child(6){
        width: 46%;
    }
    .stage4 .article-list .slider ul li:nth-child(4)::before {
        content: "";
        position: absolute;
        display: block;
        width: 100vw;
        left: calc(50% - 50vw);
        top:0;
        border-top: 1px solid #000;
    }
}
.stage5 {
    background: #353535;
}
.stage5 .wallpaper-viewbox {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
.stage5 .wallpaper-viewbox .slider {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
    margin: 0 0 0 -25%;
}
.stage5 .wallpaper-viewbox .slider .wallpaper-img {
    position: relative;
    display: inline-block;
    width: 20%;
    margin: 0 15% 0 15%;
    cursor: pointer;
    overflow: hidden;
}
.stage5 .wallpaper-viewbox .slider .wallpaper-img .download-btn {
    position: absolute;
    display: block;
    width: 20%;
    max-width: 52px;
    bottom: 2vw;
    right: 2vw;
}
.stage5 .wallpaper-viewbox .slider .wallpaper-img img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.stage5 .wallpaper-viewbox .slider .wallpaper-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.wallpaper-viewbox .arrow-left {
    position: absolute;
    top:50%;
    left: calc(30% - 25px)
}
.wallpaper-viewbox .arrow-right {
    position: absolute;
    top:50%;
    left: 70%;
}
.wallpaper-list {
    position: relative;
    display: block;
    width: 30%;
    margin: 2vw 0 5vw 0;
    overflow: hidden;
}
.wallpaper-list .slider {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
}
.wallpaper-list .slider li {
    position: relative;
    display: inline-block;
    width: calc(100% / 6 - 2%);
    margin: 0 1% 0 1%;
    cursor: pointer;
    overflow: hidden;
}
.wallpaper-list .slider li img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.wallpaper-list .slider li:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
    .stage5 .wallpaper-viewbox .slider .wallpaper-img {
        width: 40%;
        margin: 0 5% 0 5%;
    }
    .wallpaper-viewbox .arrow-left {
        left: calc(25% - 25px)
    }
    .wallpaper-viewbox .arrow-right {
        left: 75%;
    }
    .wallpaper-list {
        margin: 5vw 0 5vw 0;
        width: 60%;
    }
}
.wrap .footerBox {
    position: relative;
    display: block;
    width: 100%;
    padding: 3vw 0 3vw 0;
}

.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: 8vw;
    max-width: 55px;
    margin: 0 10px 0 10px;
}
.wrap .footerBox .copyright::before {
    content: "";
    position: absolute;
    display: block;
    width: 90%;
    height: 1px;
    background: #000;
    left: 5%;
    top:0;
}
.wrap .footerBox .copyright {
    position: relative;
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 15px 0 0 0;
}
.wrap .footerBox .copyright br {
    display: none;
}
@media screen and (max-width: 1000px) {
    .wrap .footerBox .copyright br {
        display: block;
    }
}

.lightbox-video-box .arrow-left{
    position: absolute;
    left: 5px;
    top:calc(50% - 20px);
}
.lightbox-video-box .arrow-right{
    position: absolute;
    right: 5px;
    top:calc(50% - 20px);
}
@media screen and (max-width: 1000px) {
    .lightbox-video-box .arrow-left{
        position: absolute;
        left: -10px;
    }
    .lightbox-video-box .arrow-right{
        position: absolute;
        right: -10px;
    }
}



/* 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;*/
    width: 100%;
    height: 100%;
    min-height: 1px;
    position: relative;
}
.slick-slide *:focus{
    outline: none;
}
[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    /*height: 100%;*/
    /*width: auto;*/
    /*display: block;*/
}

.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 {
    background: url(../images/kvArrowLeft.png) no-repeat;
    left: 0;
}

.slick-prev::after {
    content: '';
    position: absolute;
    display: block;
    width: 41px;
    height: 81px;
    background: url(../images/kvArrowLeft.png) no-repeat;
    background-position: bottom;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
    top: 0px;
    left: 0px;
}

.slick-next {
    background: url(../images/kvArrowRight.png) no-repeat;
    right: 0;
}

.slick-next::after {
    content: '';
    position: absolute;
    display: block;
    width: 41px;
    height: 81px;
    background: url(../images/kvArrowRight.png) no-repeat;
    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;
    bottom:10%;
    text-align: center;
}


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

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #000;
    border:0px;
    border-radius:50%;
    padding: 0px;
    cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
/*    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: #b2b2b2;
}

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

.container5 .slick-slide > div{
    width: 100%;
}
button:focus{
    outline: none;
}
/* slider end */

.wrap a{z-index: 1;}
.stage5 .wallpaper-viewbox .slider{
    margin: 0 0 0 0%;
}
.stage5 .wallpaper-viewbox .slider .wallpaper-img{
    margin: 0;
}
.wallpaper-viewbox .slick-slide{
    display: flex;justify-content: center;align-items: center;
}
.wallpaper-list .slider li{
    padding: 0 5px;
    margin: 0;
}
@media screen and (max-width: 1000px){
    .stage2 .stage2-video-box .stage2-video-list li {
        width: calc(70vw) !important;
    }
    .stage4 .article-list .slider ul{
        margin:0;
    }
    .stage5 .wallpaper-viewbox .slider .wallpaper-img{
        width: calc(40vw) !important;
    }
    .wallpaper-viewbox .arrow-right {
        left: calc(75% - 25px);
    }
}
@media screen and (max-width: 640px){
    .wallpaper-list .slider li{
        padding: 0 1vw;
        margin: 0;
    }
}