@charset "UTF-8";

body {
    background: #000;
	font-size:12px;
	font-family:"微軟正黑體", "Microsoft JhengHei", "Arial", "Helvetica", "sans-serif";
    
    image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering: -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
    overflow-x: hidden;
}

a {
    position: relative;
    display: inline-block;
    color: inherit;
}
a:hover {
    color:inherit;
}
.loadingBox {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    background: radial-gradient(circle,rgba(112,122,122,1),rgba(20,20,20,1));
    background-attachment: fixed;
    z-index: 40;
    overflow: hidden;
}
.loadingBox.expand {
    display: block;
}
.loadingBox .bgRibbon {
    position: absolute;
    display: block;
    width: 100vw;
    height: 100vw;
    background: #1c1c1c;
}
.loadingBox .bgRibbon::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3vw;
    background: linear-gradient(90deg, rgba(235,160,53,1), rgba(170,107,53,1), rgba(255,242,133,1), rgba(190,123,53,1), rgba(235,160,53,1));
}
.loadingBox .bgRibbon.ribbon1 {
    transform: translate(-50%,-50%) rotate(-130deg);
    left: 140%;
    top:0;
}
.loadingBox .bgRibbon.ribbon2 {
    transform: translate(0%,-40%) rotate(40deg);
    right: 90%;
    top:100%;
}
.loadingBox .textBox {
    position: absolute;
    display: block;
    width: 200px;
    height: 30px;
    color:#f2c75c;
    left: 50%;
    top:50%;
    padding: 10px 0 0 0;
    text-align: center;
    font-size: 15px;
    letter-spacing: 3px;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-weight: lighter;
}
.loadingBox .textBox::before {
    content: "";
    position: absolute;
    display: block;
    width: 150px;
    height: 60px;
    left: 20px;
    top:-70px;
    background: url(../images/logo.svg) no-repeat center center;
    background-size: contain;
}
.loadingBox .textBox span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    top: 0;
    background: linear-gradient(90deg, rgba(235,160,53,1), rgba(170,107,53,1), rgba(255,242,133,1), rgba(190,123,53,1), rgba(235,160,53,1));
}
.loadingBox .textBox span:nth-child(1) {
    -webkit-animation:loadingAct 2s linear 0s infinite normal;
    animation:loadingAct 2s linear 0s infinite normal;
}
.loadingBox .textBox span:nth-child(2) {
    -webkit-animation:loadingAct 2s linear 1s infinite normal;
    animation:loadingAct 2s linear 1s infinite normal;
}
@-webkit-keyframes loadingAct {
    0% {opacity: 1;}
    35% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes loadingAct {
    0% {width:0;left: 0;}
    50% {width:100%;left: 0;}
    100% {width:0;left: 100%;}
}
.wrap {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}
.wrap.expand {
    display: block;
    margin: 80px 0 0 0;
    overflow: visible;
}
@media screen and (max-width: 1000px) {
    .wrap {
        margin: 50px 0 0 0;
    }
}
.nav {
    position: fixed;
    display: block;
    width: 100%;
    height: 80px;
    top:0;
    background: rgba(33,33,33,1);
    z-index: 10;
}
.nav::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));
}
.nav .logo {
    position: absolute;
    display: block;
    width: 110px;
    height: 40px;
    left: 20px;
    top:50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    background: url(../images/logo.svg) no-repeat center center;
    background-size: contain;
}
.nav .logo a{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.nav ul {
    position: absolute;
    display: block;
    right: 50px;
    top:50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    font-size: 0;
    line-height: 0;
}
.nav ul li {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    padding: 10px;
    margin: 0 0 0 60px;
    cursor: pointer;
    border:1px solid rgba(255,255,172,0);
    border-radius: 2px;
    color: #fff;
    -webkit-transition: color 0.3s ease 0s, border 0.3s ease 0s;
    transition: color 0.3s ease 0s, border 0.3s ease 0s;
}
.nav ul li:hover {
    color: rgba(255,255,172,1);
    border:1px solid rgba(255,255,172,0.3);
}
@media screen and (max-width: 1000px) {
    .nav {
        width: 100%;
        height: 50px;
    }
    .nav .burgerBtn {
        position: absolute;
        display: block;
        width: 40px;
        height: 30px;
        top:10px;
        right: 10px;
        cursor: pointer;
    }
    .nav .burgerBtn span {
        position: absolute;
        display: block;
        width: 100%;
        height: 3px;
        top:50%;
        background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));
        
        -webkit-transform: translate(0,-50%);
        transform: translate(0,-50%);
        -webkit-transition: -webkit-transform 0.3s ease 0s;
        transition: transform 0.3s ease 0s;
    }
    .nav .burgerBtn span:nth-child(1) {
        -webkit-transform: translate(0,-50%);
        transform: translate(0,-50%);
    }
    .nav .burgerBtn span:nth-child(2) {
        -webkit-transform: translate(0,-12px);
        transform: translate(0,-12px);
    }
    .nav .burgerBtn span:nth-child(3) {
        -webkit-transform: translate(0,9px);
        transform: translate(0,9px);
    }
    .nav.expand .burgerBtn span:nth-child(1) {
        -webkit-transform: translate(0,-50%) scale(0,1);
        transform: translate(0,-50%) scale(0,1);
    }
    .nav.expand .burgerBtn span:nth-child(2) {
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transform: translate(0,-50%) rotate(45deg);
    }
    .nav.expand .burgerBtn span:nth-child(3) {
        -webkit-transform: translate(0,-50%) rotate(-45deg);
        transform: translate(0,-50%) rotate(-45deg);
    }
    .nav ul {
        right: auto;
        left: 100%;
        width: 100%;
        top:50px;
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }
    .nav.expand ul {
        height: 100vh;
        left: 0;
        background: rgba(0,0,0,0.7);
    }
    .nav ul li {
        display: block;
        width: 100%;
        font-size: 18px;
        line-height: 18px;
        margin: 0;
        padding: 20px 0 20px 0;
        text-align: center;
        background: rgba(33,33,33,1);
        -webkit-transform: translate(100%,0);
        transform: translate(100%,0);
    }
    .nav ul li:nth-child(1) {
        -webkit-transition: -webkit-transform 0.5s ease 0s;
        transition: transform 0.5s ease 0s;
    }
    .nav ul li:nth-child(2) {
        -webkit-transition: -webkit-transform 0.5s ease 0.2s;
        transition: transform 0.5s ease 0.2s;
    }
    .nav ul li:nth-child(3) {
        -webkit-transition: -webkit-transform 0.5s ease 0.4s;
        transition: transform 0.5s ease 0.4s;
    }
    .nav.expand ul li {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }
    .nav ul li::after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 0;
        background: #000;
    }
    
}
.mainPage {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 6px 0;
}
.mainPage::before {
    content: "";
    position: absolute;
    display: block;
    left: -8vw;
    top:20%;
    width: 15vw;
    height: 80%;
    background: url(../images/bg_gold_line.png) no-repeat center center;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
}
.mainPage::after {
    content: "";
    position: absolute;
    display: block;
    right: -8vw;
    bottom:20%;
    width: 15vw;
    height: 80%;
    background: url(../images/bg_gold_line2.png) no-repeat center center;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
}
@media screen and (max-width: 1000px) {
    .mainPage::before {
        display: none;
    }
    .mainPage::after {
        display: none;
    }
}
.mainPage.page1 {
    height: 50vw;
    overflow: hidden;
}
.mainPage.page5 {
    height: 60vw;
}
.mainPage.page1 .bgTop {
    position: absolute;
    display: block;
    width: 100%;
    height: 40vw;
    background: url(../images/index_bg_top.jpg) no-repeat center center;
    background-size: cover;
    
    opacity: 0;
    -webkit-transform:translate(0,-30vw);
    transform: translate(0,-30vw);
    
    -webkit-transition: -webkit-transform 2s ease 0.3s, opacity 2s ease 0s;
    transition: transform 2s ease 0.3s, opacity 2s ease 0s;
}
.wrap.expand .mainPage.page1 .bgTop {
    opacity: 1;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}
.mainPage.page1 .bgBottom {
    position: absolute;
    display: block;
    width: 100%;
    height: 15vw;
    top:35vw;
    background: url(../images/index_bg_bottom.jpg) no-repeat center top;
    background-size: cover;
    
    opacity: 0;
    
    -webkit-transition: opacity 1s ease 0s;
    transition: opacity 1s ease 0s;
}
.wrap.expand .mainPage.page1 .bgBottom {
    opacity: 1;
}
@media screen and (max-width: 1000px) {
    .mainPage.page1 {
        min-height: 130vw;
    }
    .mainPage.page1 .bgTop {
        height: 60vw;
    }
    .mainPage.page1 .bgBottom {
        height: 70vw;
        top:60vw;
    }
    .mainPage.page5 {
        height: auto;
    }
}

.mainPage.page1 .bgMedal {
    position: absolute;
    display: block;
    width: 30vw;
    height: 50.4vw;
    left: 55%;
    top:2vw;
    background: url(../images/index_medal.png) no-repeat center center;
    background-size: contain;
    
    -webkit-transform: translate(100vw,0);
    transform: translate(100vw,0);
    
    -webkit-transition: -webkit-transform 1s ease 0.3s;
    transition: transform 1s ease 0.3s;
}
.wrap.expand .mainPage.page1 .bgMedal {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}
.mainPage.page1 .bgMedal .textBox {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.mainPage.page1 .bgMedal .textBox li {
    position: absolute;
    display: block;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
.mainPage.page1 .bgMedal .textBox li:nth-child(1) {
    width: 45%;
    height: 15%;
    top:27%;
    left: 51%;
}
.mainPage.page1 .bgMedal .textBox li:nth-child(2) {
    width: 65%;
    height: 15%;
    top:43%;
}
.mainPage.page1 .bgMedal .textBox.t1 li:nth-child(1) {
    background: url(../images/medal_t1_1.svg) no-repeat center center;
    background-size: contain;
}
.mainPage.page1 .bgMedal .textBox.t1 li:nth-child(2) {
    background: url(../images/medal_t1_2.svg) no-repeat center center;
    background-size: contain;
}
.mainPage.page1 .bgMedal .textBox.t2 li:nth-child(1) {
    background: url(../images/medal_t2_1.svg) no-repeat center center;
    background-size: contain;
}
.mainPage.page1 .bgMedal .textBox.t2 li:nth-child(2) {
    background: url(../images/medal_t2_2.svg) no-repeat center center;
    background-size: contain;
}
.mainPage.page1 .bgMedal .textBox.t1 {
    opacity: 1;
    -webkit-animation:bgMedal_textBox1 5s linear 0s infinite alternate;
    animation:bgMedal_textBox1 5s linear 0s infinite alternate;
}
.mainPage.page1 .bgMedal .textBox.t2 {
    opacity: 0;
    -webkit-animation:bgMedal_textBox2 5s linear 0s infinite alternate;
    animation:bgMedal_textBox2 5s linear 0s infinite alternate;
}
@-webkit-keyframes bgMedal_textBox1 {
    0% {opacity: 1;}
    35% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes bgMedal_textBox1 {
    0% {opacity: 1;}
    35% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 0;}
}
@-webkit-keyframes bgMedal_textBox2 {
    0% {opacity: 0;}
    50% {opacity: 0;}
    65% {opacity: 1;}
    100% {opacity: 1;}
}
@keyframes bgMedal_textBox2 {
    0% {opacity: 0;}
    50% {opacity: 0;}
    65% {opacity: 1;}
    100% {opacity: 1;}
}
.mainPage.page1 .bgMedal .star {
    position: absolute;
    display: block;
    width: 3vw;
    height: 3vw;
    background: url(../images/index_star.png) no-repeat center center;
    background-size: contain;
}
.mainPage.page1 .bgMedal .star.star1 {
    left: 83%;
    top:12.2%;
    opacity: 0;
    -webkit-transform:scale(0.5) rotate(0deg);opacity: 0;
    transform:scale(0.5) rotate(0deg);opacity: 0;
    -webkit-animation:bgMedal_star 5s linear 0s infinite normal;
    animation:bgMedal_star 5s linear 0s infinite normal;
}
.mainPage.page1 .bgMedal .star.star2 {
    left: 6%;
    top:72.5%;
    opacity: 0;
    -webkit-transform:scale(0.5) rotate(0deg);opacity: 0;
    transform:scale(0.5) rotate(0deg);opacity: 0;
    -webkit-animation:bgMedal_star 5s linear 2.5s infinite normal;
    animation:bgMedal_star 5s linear 2.5s infinite normal;
}
@-webkit-keyframes bgMedal_star {
    0% {-webkit-transform:scale(0.5) rotate(0deg);opacity: 0;}
    50% {-webkit-transform:scale(1.5) rotate(180deg);opacity: 1;}
    100% {-webkit-transform:scale(0.5) rotate(360deg);opacity: 0;}
}
@keyframes bgMedal_bgMedal_star {
    0% {transform:scale(0.5) rotate(0deg);opacity: 0;}
    50% {transform:scale(1.5) rotate(180deg);opacity: 1;}
    100% {transform:scale(0.5) rotate(360deg);opacity: 0;}
}

@media screen and (max-width: 1000px) {
    .mainPage.page1 .bgMedal {
        width: 50vw;
        height: 80vw;
        left: 25%;
        top:5vw;
    }
    .mainPage.page1 .bgMedal .star {
        width: 5vw;
        height: 5vw;
    }
    .mainPage.page1 .bgMedal .star.star1 {
        left: 83%;
        top:11%;
    }
    .mainPage.page1 .bgMedal .star.star2 {
        left: 6%;
        top:74%;
    }
}
.mainPage.page1 .titleBox {
    position: absolute;
    display: block;
    width: 40%;
    top:14vw;
    left: 50%;
    -webkit-transform: translate(-100%,0);
    transform: translate(-100%,0);
}
.mainPage.page1 .titleBox .textBox1 {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    text-align:center;
}
.mainPage.page1 .titleBox .textBox1 li {
    position: relative;
    display: inline-block;
    margin: 0 0.15vw 0 0.15vw;
    vertical-align: middle;
    font-size: 2.5vw;
    line-height: 2.5vw;
    color:#fff;
    font-weight: lighter;
    
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
}
.mainPage.page1 .titleBox .textBox1 li.type2 {
    color:#ffb500;
    font-family: Arial;
    font-weight: bold;
    font-size: 3.5vw;
    line-height: 3.5vw;
}
.mainPage.page1 .titleBox .textBox2 {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    text-align:center;
}
.mainPage.page1 .titleBox .textBox2 li {
    position: relative;
    display: inline-block;
    margin: 0 0.26vw 0 0.26vw;
    vertical-align: middle;
    font-size: 2.5vw;
    line-height: 2.5vw;
    color:#fff;
    font-weight: lighter;
    
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
}
.mainPage.page1 .titleBox .starBox {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    text-align:center;
    margin: 1vw 0 1.2vw 0;
}
.mainPage.page1 .titleBox .starBox li {
    position: relative;
    display: inline-block;
    width: 0.8vw;
    height: 0.8vw;
    margin: 0 2.6vw 0 2.6vw;
    vertical-align: middle;
    background: url(../images/index_title_star.png) no-repeat center center;
    background-size: contain;
    
    opacity: 0;
    -webkit-transform: scale(5);
    transform: scale(5);
}
.mainPage.page1 .titleBox .starBox li:nth-child(1) {
    margin: 0 2.6vw 0 0;
}
.mainPage.page1 .titleBox .starBox li:last-child {
    margin: 0 0 0 2.6vw;
}

.wrap.expand .mainPage.page1 .titleBox .textBox1 li {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.wrap.expand .mainPage.page1 .titleBox .textBox2 li {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.wrap.expand .mainPage.page1 .titleBox .starBox li {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(1)
{
    -webkit-transition: -webkit-transform 0.5s ease 0s, opacity 0.5s ease 0s;
    transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(2)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
    transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(3)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(4)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.3s, opacity 0.5s ease 0.3s;
    transition: transform 0.5s ease 0.3s, opacity 0.5s ease 0.3s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(5)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.4s, opacity 0.5s ease 0.4s;
    transition: transform 0.5s ease 0.4s, opacity 0.5s ease 0.4s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(6)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
    transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(7)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s;
    transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(8)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
    transition: transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(9)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.8s, opacity 0.5s ease 0.8s;
    transition: transform 0.5s ease 0.8s, opacity 0.5s ease 0.8s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(10)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.9s, opacity 0.5s ease 0.9s;
    transition: transform 0.5s ease 0.9s, opacity 0.5s ease 0.9s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(11)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.0s, opacity 0.5s ease 1.0s;
    transition: transform 0.5s ease 1.0s, opacity 0.5s ease 1.0s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(12)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.1s, opacity 0.5s ease 1.1s;
    transition: transform 0.5s ease 1.1s, opacity 0.5s ease 1.1s;
}
.mainPage.page1 .titleBox .textBox1 li:nth-child(13)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.2s, opacity 0.5s ease 1.2s;
    transition: transform 0.5s ease 1.2s, opacity 0.5s ease 1.2s;
}


.mainPage.page1 .titleBox .textBox2 li:nth-child(1)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
    transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(2)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s;
    transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(3)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
    transition: transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(4)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.8s, opacity 0.5s ease 0.8s;
    transition: transform 0.5s ease 0.8s, opacity 0.5s ease 0.8s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(5)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.9s, opacity 0.5s ease 0.9s;
    transition: transform 0.5s ease 0.9s, opacity 0.5s ease 0.9s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(6)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.0s, opacity 0.5s ease 1.0s;
    transition: transform 0.5s ease 1.0s, opacity 0.5s ease 1.0s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(7)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.1s, opacity 0.5s ease 1.1s;
    transition: transform 0.5s ease 1.1s, opacity 0.5s ease 1.1s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(8)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.2s, opacity 0.5s ease 1.2s;
    transition: transform 0.5s ease 1.2s, opacity 0.5s ease 1.2s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(9)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.3s, opacity 0.5s ease 1.3s;
    transition: transform 0.5s ease 1.3s, opacity 0.5s ease 1.3s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(10)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.4s, opacity 0.5s ease 1.4s;
    transition: transform 0.5s ease 1.4s, opacity 0.5s ease 1.4s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(11)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.5s, opacity 0.5s ease 1.5s;
    transition: transform 0.5s ease 1.5s, opacity 0.5s ease 1.5s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(12)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.6s, opacity 0.5s ease 1.6s;
    transition: transform 0.5s ease 1.6s, opacity 0.5s ease 1.6s;
}
.mainPage.page1 .titleBox .textBox2 li:nth-child(13)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.7s, opacity 0.5s ease 1.7s;
    transition: transform 0.5s ease 1.7s, opacity 0.5s ease 1.7s;
}

.mainPage.page1 .titleBox .starBox li:nth-child(1)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
    transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
}
.mainPage.page1 .titleBox .starBox li:nth-child(2)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s;
    transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s;
}
.mainPage.page1 .titleBox .starBox li:nth-child(3)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
    transition: transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
}
.mainPage.page1 .titleBox .starBox li:nth-child(4)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.8s, opacity 0.5s ease 0.8s;
    transition: transform 0.5s ease 0.8s, opacity 0.5s ease 0.8s;
}
.mainPage.page1 .titleBox .starBox li:nth-child(5)
{
    -webkit-transition: -webkit-transform 0.5s ease 0.9s, opacity 0.5s ease 0.9s;
    transition: transform 0.5s ease 0.9s, opacity 0.5s ease 0.9s;
}
.mainPage.page1 .titleBox .starBox li:nth-child(6)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.0s, opacity 0.5s ease 1.0s;
    transition: transform 0.5s ease 1.0s, opacity 0.5s ease 1.0s;
}
.mainPage.page1 .titleBox .starBox li:nth-child(7)
{
    -webkit-transition: -webkit-transform 0.5s ease 1.1s, opacity 0.5s ease 1.1s;
    transition: transform 0.5s ease 1.1s, opacity 0.5s ease 1.1s;
}
.mainPage.page1 .titleBox .ribbonBox {
    position: relative;
    display: block;
    width: 110%;
    height: 9vw;
    left: 50%;
    margin: 0;
    background: url(../images/index_title_bg.png) no-repeat center center;
    background-size: contain;
    
    opacity: 0;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    
    -webkit-transition:opacity 1s ease 2s;
    transition:opacity 1s ease 2s;
}
.mainPage.page1 .titleBox .ribbonBox a{
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.wrap.expand .mainPage.page1 .titleBox .ribbonBox {
    opacity: 1;
}
.mainPage.page1 .titleBox .ribbonBox span {
    position: absolute;
    display: block;
    width: 100%;
    top: 3.8vw;
    font-size: 2.3vw;
    line-height: 2.3vw;
    font-weight: bold;
    color:#000;
    text-align: center;
    pointer-events: none;
}
.mainPage.page1 .titleBox .ribbonBox span::after {
    content: "";
    position: absolute;
    display: block;
    right: 8%;
    top: 50%;
    width: 7vw;
    height: 7vw;
    background: url(../images/finger_icon.svg) no-repeat center center;
    background-size: contain;
    
    transform: translate(0,-10%);
}
.mainPage.page1 .titleBox .lineBox1 {
    position: absolute;
    display: block;
    width: 0;
    height: 3vw;
    top:2vw;
    left: 100%;
    border-right: 1px solid rgba(175,130,20,1);
    
    opacity: 0;
    
    -webkit-transition: width 1s ease 1s, opacity 1s ease 1s;
    transition: width 1s ease 1s, opacity 1s ease 1s;
}
.wrap.expand .mainPage.page1 .titleBox .lineBox1 {
    opacity: 1;
    width: 2vw;
}
.mainPage.page1 .titleBox .lineBox1::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    top:0;
    background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));
}
.mainPage.page1 .titleBox .lineBox1::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));
}
.mainPage.page1 .titleBox .lineBox2 {
    position: absolute;
    display: block;
    width: 2vw;
    height: 3vw;
    top:5vw;
    right: 100%;
    border-left: 1px solid rgba(175,130,20,1);
    
    opacity: 0;
    
    -webkit-transition: width 1s ease 1s, opacity 1s ease 1s;
    transition: width 1s ease 1s, opacity 1s ease 1s;
}
.wrap.expand .mainPage.page1 .titleBox .lineBox2 {
    opacity: 1;
    width: 2vw;
}
.mainPage.page1 .titleBox .lineBox2::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    top:0;
    background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));
}
.mainPage.page1 .titleBox .lineBox2::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));
}

@media screen and (max-width: 1000px) {
    .mainPage.page1 .titleBox {
        width: 80%;
        top:78vw;
        left: 10%;
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }
    .mainPage.page1 .titleBox .textBox1 li {
        margin: 0 0.4vw 0 0.4vw;
        font-size: 4.4vw;
        line-height: 4.4vw;
    }
    .mainPage.page1 .titleBox .textBox1 li.type2 {
        font-size: 6vw;
        line-height: 6vw;
    }
    .mainPage.page1 .titleBox .textBox2 li {
        margin: 0 0.6vw 0 0.6vw;
        font-size: 4.4vw;
        line-height: 4.4vw;
    }
    .mainPage.page1 .titleBox .starBox {
        margin: 2vw 0 2.7vw 0;
    }
    .mainPage.page1 .titleBox .starBox li {
        width: 1.8vw;
        height: 1.8vw;
        margin: 0 4.7vw 0 4.7vw;
    }
    .mainPage.page1 .titleBox .starBox li:nth-child(1) {
        margin: 0 4.7vw 0 0;
    }
    .mainPage.page1 .titleBox .starBox li:last-child {
        margin: 0 0 0 4.7vw;
    }
    .mainPage.page1 .titleBox .ribbonBox {
        width: 110%;
        height: 13vw;
        margin: 3vw 0 0 0;
    }
    .mainPage.page1 .titleBox .ribbonBox span {
        top: 5vw;
        font-size: 4.4vw;
        line-height: 4.4vw;
    }
    .mainPage.page1 .titleBox .lineBox1 {
        height: 6vw;
        top:3vw;
    }
    .wrap.expand .mainPage.page1 .titleBox .lineBox1 {
        width: 5vw;
    }
    .mainPage.page1 .titleBox .lineBox2 {
        height: 6vw;
        top:9vw;
    }
    .wrap.expand .mainPage.page1 .titleBox .lineBox2 {
        width: 5vw;
    }
}

.sideBtnBox {
    position: fixed;
    display: block;
    right: -25px;
    bottom: 10px;
    width: 270px;
    z-index: 2;
}
.sideBtnBox dl {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    margin: 0 0 10px 0;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transition:-webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
}
.sideBtnBox dl dt {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-left: 3px solid #ffc95a;
    border-right: 3px solid #eec466;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
}
.sideBtnBox dl dt::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.sideBtnBox dl dt::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    bottom:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.sideBtnBox dl dt span {
    position: absolute;
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 8px);
    left: 1px;
    top:4px;
    border:1px solid rgba(189,134,58,1); 
}
.sideBtnBox dl.sideBtn1 dt span {
    background: url(../images/side_btn1.png) no-repeat center center;
    background-size: 70%;
}
.sideBtnBox dl.sideBtn2 dt span {
    background: url(../images/side_btn2.png) no-repeat center center;
    background-size: 70%;
}
.sideBtnBox dl.sideBtn1 a,.sideBtnBox dl.sideBtn2 a{
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.sideBtnBox dl dd {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 60px;
    margin: 0 0 0 3px;
    border-left: 3px solid #ffc95a;
    border-right: 3px solid #eec466;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
}
.sideBtnBox dl dd::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.sideBtnBox dl dd::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    bottom:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.sideBtnBox dl dd span {
    position: absolute;
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 8px);
    left: 1px;
    top:4px;
    border:1px solid rgba(189,134,58,1); 
    font-size: 18px;
    line-height: 18px;
    padding: 14px 0 0 0;
    text-align: center;
    color:#f2c75c;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.sideBtnBox dl:hover {
    -webkit-transform: translate(-10px,0);
    transform: translate(-10px,0);
}
.sideBtnBox dl:hover dd {
    background: rgba(189,134,58,1);
}
.sideBtnBox dl:hover dd span {
    color:#fff;
}

@media screen and (max-width: 1400px) {
    .sideBtnBox {
        right: -210px;
    }
    .sideBtnBox dl:hover {
        -webkit-transform: translate(-190px,0);
        transform: translate(-190px,0);
    }
    .sideBtnBox dl.expand {
        -webkit-transform: translate(-190px,0);
        transform: translate(-190px,0);
    }
}
@media screen and (max-width: 1000px) {
    .sideBtnBox dl:hover {
        -webkit-transform:none;
        transform: none;
    }
    .sideBtnBox dl.expand {
        -webkit-transform: translate(-190px,0);
        transform: translate(-190px,0);
    }
}

.mainPage .bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mainPage.page2 .bg {
    background: radial-gradient(circle,rgba(112,122,122,1),rgba(20,20,20,1));
    background-attachment: fixed;
}
.mainPage.page3 .bg {
    background: radial-gradient(circle,rgba(209,209,209,1),rgba(153,153,153,1));
    background-attachment: fixed;
}
.mainPage.page4 .bg {
    background: radial-gradient(circle,rgba(112,122,122,1),rgba(20,20,20,1));
    background-attachment: fixed;
}
.mainPage.page5 .bg {
    background: url(../images/page5_bg.jpg) no-repeat right top;
    background-size: cover;
    background-attachment: local;
}
.mainPage.page6 .bg {
    background: radial-gradient(circle,rgba(120,120,120,1),rgba(82,82,82,1));
    background-attachment: fixed;
}
.mainPage.page7 .bg {
    background: radial-gradient(circle,rgba(112,112,112,1),rgba(28,28,28,1));
    background-attachment: fixed;
}
@media screen and (max-width: 1000px) {
    .mainPage.page5 .bg {
        background: radial-gradient(circle,rgba(112,122,122,1),rgba(20,20,20,1));
        background-attachment: fixed;
    }
    .mainPage.page5 .bg::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 80vw;
        top:5vw;
        left: 0;
        background: url(../images/page5_bg.jpg) no-repeat right top;
        background-size: cover;
        background-attachment:local;
    }
}
.mainPage .bgRibbon {
    position: absolute;
    display: block;
    width: 100vw;
    height: 100vw;
    background: #1c1c1c;
}
.mainPage .bgRibbon::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3vw;
    background: linear-gradient(90deg, rgba(235,160,53,1), rgba(170,107,53,1), rgba(255,242,133,1), rgba(190,123,53,1), rgba(235,160,53,1));
}
.mainPage.page2 .bgRibbon.ribbon1 {
    -webkit-transform: translate(-50%,-50%) rotate(-110deg);
    transform: translate(-50%,-50%) rotate(-110deg);
    left: 140%;
    top:0;
}
.mainPage.page2 .bgRibbon.ribbon2 {
    -webkit-transform: translate(-50%,-50%) rotate(-70deg);
    transform: translate(-50%,-50%) rotate(-70deg);
    left: 140%;
    top:100%;
}
.mainPage.page3 .bgRibbon.ribbon1 {
    -webkit-transform: translate(0,0) rotate(35deg);
    transform: translate(0,0) rotate(35deg);
    right: 45%;
    top:100%;
}
.mainPage.page3 .bgRibbon.ribbon2 {
    -webkit-transform: translate(-50%,-20%) rotate(-40deg);
    transform: translate(-50%,-20%) rotate(-40deg);
    left: 100%;
    top:100%;
}
.mainPage.page4 .bgRibbon.ribbon1 {
    -webkit-transform: translate(-40%,-30%) rotate(-110deg);
    transform: translate(-40%,-30%) rotate(-110deg);
    left: 140%;
    top:0;
}
.mainPage.page4 .bgRibbon.ribbon2 {
    -webkit-transform: translate(-50%,-20%) rotate(-70deg);
    transform: translate(-50%,-20%) rotate(-70deg);
    left: 140%;
    top:100%;
}
.mainPage.page6 .bgRibbon.ribbon1 {
    -webkit-transform: translate(-50%,-50%) rotate(-110deg);
    transform: translate(-50%,-50%) rotate(-110deg);
    left: 140%;
    top:0;
}
.mainPage.page6 .bgRibbon.ribbon2 {
    -webkit-transform: translate(-50%,-80%) rotate(-150deg);
    transform: translate(-50%,-80%) rotate(-150deg);
    left: 120%;
    top:0;
}
.mainPage.page7 .bgRibbon.ribbon1 {
    -webkit-transform: translate(-50%,-50%) rotate(-110deg);
    transform: translate(-50%,-50%) rotate(-110deg);
    left: 140%;
    top:0;
}
.mainPage.page7 .bgRibbon.ribbon2 {
    -webkit-transform: translate(-50%,-80%) rotate(-150deg);
    transform: translate(-50%,-80%) rotate(-150deg);
    left: 120%;
    top:0;
}

.mainPage .pageTitle {
    position: absolute;
    display: block;
    width: 100%;
    height: 12vw;
    top:0;
    -webkit-transform: translate(0,-45%);
    transform: translate(0,-45%);
}
@media screen and (max-width: 1400px) {
    .mainPage .pageTitle {
        height: 15vw;
    }
}
@media screen and (max-width: 1000px) {
    .mainPage .pageTitle {
        height: 20vw;
    }
}
@media screen and (max-width: 600px) {
    .mainPage .pageTitle {
        height: 30vw;
    }
}
.mainPage.page2 .pageTitle {
    background: url(../images/page_title1.png) no-repeat center center;
    background-size: contain;
}
.mainPage.page5 .pageTitle {
    background: url(../images/page_title2.png) no-repeat center center;
    background-size: contain;
}
.mainPage .pageFlag {
    position: absolute;
    display: block;
    width: 5vw;
    height: 10vw;
    left: 2vw;
    top:-5px;
}
@media screen and (max-width: 1000px) {
    .mainPage .pageFlag {
        width: 10vw;
        height: 20vw;
    }
}
@media screen and (max-width: 600px) {
    .mainPage .pageFlag {
        width: 15vw;
        height: 30vw;
    }
}
.mainPage.page2 .pageFlag {
    background: url(../images/page_flag1.png) no-repeat center top;
    background-size: contain;
}
.mainPage.page3 .pageFlag {
    background: url(../images/page_flag2.png) no-repeat center top;
    background-size: contain;
}
.mainPage.page4 .pageFlag {
    background: url(../images/page_flag3.png) no-repeat center top;
    background-size: contain;
}
.mainPage.page5 .pageFlag {
    background: url(../images/page_flag4.png) no-repeat center top;
    background-size: contain;
}
.mainPage.page6 .pageFlag {
    background: url(../images/page_flag5.png) no-repeat center top;
    background-size: contain;
}
.mainPage.page7 .pageFlag {
    background: url(../images/page_flag5.png) no-repeat center top;
    background-size: contain;
}

.mainPage .contentBox {
    position: relative;
    display: block;
    width: calc(100% - 400px);
    left: 200px;
    padding: 12vw 0 5vw 0;
}
.mainPage.page4 .contentBox {
    padding: 12vw 0 8vw 0;
}
.mainPage.page5 .contentBox {
    padding: 30vw 0 5vw 0;
    width: 570px;
}
.mainPage.page6 .contentBox {
    padding: 15vw 0 5vw 0;
}
@media screen and (max-width: 1400px) {
    .mainPage .contentBox {
        width: calc(100% - 100px);
        left: 50px;
        padding: 15vw 0 5vw 0;
    }
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox {
        padding-top: 200px;
    }
    .mainPage.page4 .contentBox {
        padding-top: 200px;
        padding-bottom: 15vw;
    }
    .mainPage.page5 .contentBox {
        padding-top: calc(85vw + 120px);
        width: calc(100% - 100px);
        left: 50px;
    }
    .mainPage.page6 .contentBox {
        padding-top: 290px;
    }
}
@media screen and (max-width: 600px) {
    .mainPage .contentBox {
        width: calc(100% - 40px);
        left: 20px;
    }
    .mainPage.page5 .contentBox {
        width: calc(100% - 40px);
        left: 20px;
    }
}
.mainPage .contentBox .topBox {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    font-size: 0;
    line-height: 0;
}
.mainPage .contentBox .topBox::before {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 1px;
    top:0;
    left: 0;
    background: #ffc95a;
}
.mainPage .contentBox .topBox::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 580px);
    height: 1px;
    top:0;
    right: 0;
    background: linear-gradient(90deg, rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.mainPage.page3 .contentBox .topBox::after {
    width: calc(100% - 780px);
}
.mainPage.page4 .contentBox .topBox::after {
    width: calc(100% - 990px);
}
.mainPage.page5 .contentBox .topBox::after {
    width: calc(100% - 150px);
}
.mainPage.page6 .contentBox .topBox::after {
    width: calc(100% - 440px);
}
.mainPage .contentBox .topBox dt {
    position: absolute;
    display: block;
    width:110px;
    height: 110px;
    left: 40px;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.mainPage .contentBox .topBox dt img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.mainPage .contentBox .topBox dd {
    position: absolute;
    display: block;
    color:#e0b643;
    font-size: 24px;
    line-height: 36px;
    left: 170px;
    vertical-align: middle;
    
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.mainPage.page3 .contentBox .topBox dd {
    color:#000;
}
.mainPage.page6 .contentBox .topBox dd {
    font-size: 30px;
}
.mainPage .contentBox .topBox dd span {
    display: inline-block;
    font-family: Arial;
    font-size: 50px;
    color: #fff;
    margin: 0 10px 0 10px;
    vertical-align: middle;
}
.mainPage.page3 .contentBox .topBox dd span {
    color:#a80000;
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .topBox::after {
        width: 30px;
    }
    .mainPage.page3 .contentBox .topBox::after {
        width: 30px;
    }
    .mainPage.page4 .contentBox .topBox::after {
        width: 30px;
    }
    .mainPage.page5 .contentBox .topBox::after {
        width: 30px;
    }
    .mainPage.page6 .contentBox .topBox::after {
        width: 30px;
    }
    .mainPage .contentBox .topBox dt {
        left: 50%;
        -webkit-transform: translate(-50%,-100%);
        transform: translate(-50%,-100%);
    }
    .mainPage .contentBox .topBox dd {
        width: calc(100% - 80px);
        left: 40px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }
    .mainPage .contentBox .topBox dd span {
        font-size: 35px;
        margin: 0 5px 0 5px;
    }
    .mainPage.page6 .contentBox .topBox dd {
        font-size: 20px;
        line-height: 30px;
    }
}
.mainPage .contentBox .middleBox {
    position: relative;
    display: block;
    width: 100%;
    border-left: 1px solid #ffc95a;
    border-right: 1px solid #eec466;
    padding: 0 0 2vw 0;
}
.mainPage .contentBox .middleBox::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(235,160,53,1), rgba(170,107,53,1), rgba(255,242,133,1), rgba(190,123,53,1), rgba(235,160,53,1));
}
.mainPage .contentBox .middleBox .fundList {
    position: relative;
    display: block;
    width: calc(100% - 120px);
    left: 60px;
    padding: 60px 0 0 0;
    font-size: 0;
    line-height: 0;
}
.mainPage .contentBox .middleBox .fundList li {
    position: relative;
    display: inline-block;
    width: calc(100% / 4 - 16px);
    height: 250px;
    margin: 0 8px 40px 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.mainPage.page4 .contentBox .middleBox .fundList li {
    height: 350px;
}
.mainPage.page3 .contentBox .middleBox .fundList li {
    width: calc(100% / 3 - 16px);
}
.mainPage.page4 .contentBox .middleBox .fundList li {
    width: calc(100% / 3 - 16px);
}
@media screen and (max-width: 1600px) {
    .mainPage .contentBox .middleBox .fundList li {
        width: calc(100% / 3 - 16px);
    }
}
@media screen and (max-width: 1100px) {
    .mainPage .contentBox .middleBox .fundList li {
        width: calc(100% / 2 - 16px);
    }
    .mainPage.page3 .contentBox .middleBox .fundList li {
        width: calc(100% / 2 - 16px);
    }
    .mainPage.page4 .contentBox .middleBox .fundList li {
        width: calc(100% / 2 - 16px);
    }
    .mainPage.page4 .contentBox .middleBox .fundList {
        padding: 70px 0 0 0;
    }
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .middleBox .fundList {
        width: calc(100% - 30px);
        left: 15px;
    }
    .mainPage.page4 .contentBox .middleBox .fundList {
        padding: 100px 0 0 0;
    }
}
@media screen and (max-width: 800px) {
    .mainPage.page3 .contentBox .middleBox .fundList {
        padding: 80px 0 0 0;
    }
    .mainPage.page4 .contentBox .middleBox .fundList {
        padding: 120px 0 0 0;
    }
    .mainPage .contentBox .middleBox .fundList li {
        width: calc(100% - 16px);
    }
    .mainPage.page3 .contentBox .middleBox .fundList li {
        width: calc(100% - 16px);
    }
    .mainPage.page4 .contentBox .middleBox .fundList li {
        width: calc(100% - 16px);
    }
}
@media screen and (max-width: 600px) {
    .mainPage.page2 .contentBox .middleBox .fundList {
        padding: 80px 0 0 0;
    }
    .mainPage.page3 .contentBox .middleBox .fundList {
        padding: 100px 0 0 0;
    }
    .mainPage.page4 .contentBox .middleBox .fundList {
        padding: 140px 0 0 0;
    }
}
.mainPage .contentBox .middleBox .fundList li .bgBox {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}
.mainPage .contentBox .middleBox .fundList li .bgBox::before {
    content: "";
    position: absolute;
    display: block;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    background: #fff;
    top:-50%;
    left: -50%;
}
.mainPage .contentBox .middleBox .fundList li .textBox {
    position: absolute;
    display: block;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top:10px;
}
.mainPage .contentBox .middleBox .fundList li .textBox .t1 {
    position: absolute;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    color:#808080;
    letter-spacing: 1px;
}
.mainPage .contentBox .middleBox .fundList li .textBox .t2 {
    position: absolute;
    width: 100%;
    top:45%;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    text-decoration: underline;
    color:#000;
}
.mainPage .contentBox .middleBox .fundList li .textBox .t2 span {
    font-weight: bold;
}
.mainPage .contentBox .middleBox .fundList li .textBox .t2 a {
    text-decoration: underline;
    color:#000;
}
.mainPage.page4 .contentBox .middleBox .fundList li .textBox .t1 {
    position: absolute;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    color:#808080;
    letter-spacing: 1px;
}
.mainPage.page4 .contentBox .middleBox .fundList li .textBox .t2 {
    top:40px;
    font-size: 18px;
    text-align: left;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    text-decoration:none;
}
.mainPage.page4 .contentBox .middleBox .fundList li .textBox .t2 p {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 15px;
    color:#cf0000;
}
.mainPage.page4 .contentBox .middleBox .fundList li .textBox .t3 {
    position: absolute;
    width: 100%;
    top:170px;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    text-decoration: none;
    color:#000;
}
.mainPage.page4 .contentBox .middleBox .fundList li .textBox .t3 p {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 15px;
    color:#cf0000;
}
.mainPage.page4 .contentBox .middleBox .fundList li .textBox .t3 a {
    text-decoration: underline;
    color:#000;
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn {
    position: absolute;
    display: block;
    left: 50%;
    bottom:10px;
    border-left: 3px solid #ffc95a;
    border-right: 3px solid #eec466;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    cursor: pointer;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn:hover {
    background: rgba(189,134,58,1);
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn .btnText {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 18px;
    padding: 20px;
    color:#f2c75c;
    letter-spacing: 2px;
    white-space: nowrap;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn:hover .btnText {
    color: #fff;
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    bottom:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn a {
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.mainPage .contentBox .middleBox .fundList li .textBox .btn span {
    position: absolute;
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 8px);
    left: 1px;
    top:4px;
    border:1px solid rgba(189,134,58,1);
}

@media screen and (max-width: 800px) {
    .mainPage .contentBox .middleBox .fundList li .textBox .t1 {
        font-size: 13px;
    }
    .mainPage .contentBox .middleBox .fundList li .textBox .t2 {
        font-size: 16px;
    }
    .mainPage .contentBox .middleBox .fundList li .textBox .t3 {
        font-size: 16px;
    }
    .mainPage.page4 .contentBox .middleBox .fundList li .textBox .t1 {
        position: relative;
        font-size: 13px;
    }
    .mainPage.page4 .contentBox .middleBox .fundList li .textBox .t2 {
        position: relative;
        top: auto;
        margin: 20px 0 0 0;
        font-size: 16px;
    }
    .mainPage.page4 .contentBox .middleBox .fundList li .textBox .t3 {
        position: relative;
        top: auto;
        margin: 20px 0 0 0;
        font-size: 16px;
    }
    .mainPage.page4 .contentBox .middleBox .fundList li .textBox .btn {
        position: relative;
        bottom: auto;
        margin: 20px 0 20px 0;
        text-align: center;
    }
    .mainPage.page4 .contentBox .middleBox .fundList li {
        height: auto;
    }
    .mainPage.page4 .contentBox .middleBox .fundList li .textBox {
        position: relative;
        height: auto;
    }
}

.mainPage .contentBox .middleBox .fundList li .awardBox {
    position: absolute;
    display: block;
    width: 120px;
    height: 90px;
    background: url(../images/fundlist_award_icon.svg) no-repeat center center;
    background-size: contain;
    right: -2px;
    top:-2px;
}
.mainPage .contentBox .middleBox .fundList li .awardBox span {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    left: 15%;
    top:39%;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}
.mainPage .contentBox .middleBox .fundList li .starBox {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.mainPage .contentBox .middleBox .fundList li .starBox::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(../images/index_star.png) no-repeat center center;
    background-size: contain;
    left: 80%;
    top:-20px;
}
.mainPage .contentBox .middleBox .fundList li .starBox::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(../images/index_star.png) no-repeat center center;
    background-size: contain;
    left: 5%;
    bottom:-20px;
}
.mainPage .contentBox .middleBox .tipBox {
    position: relative;
    display: block;
    width: calc(100% - 120px);
    left: 60px;
    font-size: 15px;
    line-height: 20px;
    color:#9c9b9a;
}
.mainPage .contentBox .middleBox .tipBox span {
    color:#fff;
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .middleBox .tipBox {
        width: calc(100% - 60px);
        left: 30px;
    }
}
.mainPage.page5 .contentBox .middleBox .teamTextBox {
    position: relative;
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 36px;
    color:#fff;
    padding: 60px 20px 20px 20px;
    letter-spacing: 2px;
}

.mainPage.page5 .contentBox .middleBox .teamTextBox span {
    display: block;
}
.mainPage.page5 .contentBox .middleBox .teamTextBox span:nth-child(2) {
    font-size: 24px;
}
.mainPage.page5 .contentBox .middleBox .teamTextBox .teamBtnList {
    position: relative;
    display: block;
    width: 100%;
    text-align: right;
    margin: 40px 0 0 0;
}
.mainPage.page5 .contentBox .middleBox .teamTextBox .teamBtnList li {
    position: relative;
    display: block;
    color: #e0b643;
    font-size: 24px;
    line-height: 24px;
    margin: 10px 30px 10px 0;
    vertical-align: middle;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.mainPage.page5 .contentBox .middleBox .teamTextBox .teamBtnList li:hover {
    color:#fff;
}
.mainPage.page5 .contentBox .middleBox .teamTextBox .teamBtnList li::after {
    content: "";
    position: absolute;
    display: block;
    right: -25px;
    top:50%;
    width: 24px;
    height: 24px;
    background: url(../images/arrow_btn.svg) no-repeat center center;
    background-size: contain;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
}
.mainPage.page5 .contentBox .middleBox .teamTextBox .teamBtnList li:hover::after {
    -webkit-transform: translate(5px,-50%);
    transform: translate(5px,-50%);
}
@media screen and (max-width: 1000px) {
    .mainPage.page5 .contentBox .middleBox .teamTextBox {
        padding: 20px 20px 20px 20px;
        font-size: 16px;
    }
    .mainPage.page5 .contentBox .middleBox .teamTextBox span:nth-child(2) {
        font-size: 16px;
    }
    .mainPage.page5 .contentBox .middleBox .teamTextBox .teamBtnList li {
        font-size: 16px;
    }
}
.mainPage.page5 .contentBox .teamawardList {
    position: fixed;
    display: block;
    width: 40%;
    height: calc(100% - 80px);
    top:80px;
    right: calc(-40% - 50px);
    background: rgba(0,0,0,1);
    z-index: 20;
    
    -webkit-transition: right 1s ease 0s;
    transition: right 1s ease 0s;
}
.mainPage.page5 .contentBox .teamawardList.expand {
    right:0;
}

.mainPage.page5 .contentBox .teamawardList .teamawardBox {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    
    scrollbar-base-color: #765c35;
    scrollbar-3dlight-color: rgba(0,0,0,0);
    scrollbar-highlight-color: rgba(0,0,0,0);
    scrollbar-track-color: rgba(0,0,0,0);
    scrollbar-arrow-color: #c9a063;
    scrollbar-shadow-color: rgba(0,0,0,0);
    scrollbar-dark-shadow-color: rgba(0,0,0,0);
}
.mainPage.page5 .contentBox .teamawardList .teamawardBox::-webkit-scrollbar { width: 3px; height: 3px;}
.mainPage.page5 .contentBox .teamawardList .teamawardBox::-webkit-scrollbar-button {  background-color: #000; }
.mainPage.page5 .contentBox .teamawardList .teamawardBox::-webkit-scrollbar-track {  background-color: #000;}
.mainPage.page5 .contentBox .teamawardList .teamawardBox::-webkit-scrollbar-track-piece { background-color: #000;}
.mainPage.page5 .contentBox .teamawardList .teamawardBox::-webkit-scrollbar-thumb { height: 50px; background-color: #c9a063;border-radius: 3px;}
.mainPage.page5 .contentBox .teamawardList .teamawardBox::-webkit-scrollbar-corner { background-color: #000;}
.mainPage.page5 .contentBox .teamawardList .teamawardBox::-webkit-resizer { background-color: #000;}

.mainPage.page5 .contentBox .teamawardList::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top:0;
    left: 0;
    background: linear-gradient(0deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));
}
.mainPage.page5 .contentBox .teamawardList .closeBtn {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top:15px;
    left: -45px;
    cursor: pointer;
    background: #000;
    border-radius: 5px;
    border:1px solid rgba(189,134,58,1);
}
.mainPage.page5 .contentBox .teamawardList .closeBtn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:50%;
    background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));

    -webkit-transform: translate(0,-50%) rotate(45deg);
    transform: translate(0,-50%) rotate(45deg);
}
.mainPage.page5 .contentBox .teamawardList .closeBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:50%;
    background: linear-gradient(90deg, rgba(189,134,58,1), rgba(255,255,172,1), rgba(189,134,58,1));

    -webkit-transform: translate(0,-50%) rotate(-45deg);
    transform: translate(0,-50%) rotate(-45deg);
}
.mainPage.page5 .contentBox .teamawardList .closeBtn:hover::before {
    background: #fff;
}
.mainPage.page5 .contentBox .teamawardList .closeBtn:hover::after {
    background: #fff;
}
@media screen and (max-width: 1000px) {
    .mainPage.page5 .contentBox .teamawardList {
        width: 100%;
        top:50px;
        height: calc(100% - 50px);
        right: -100%;
    }
    .mainPage.page5 .contentBox .teamawardList .closeBtn {
        left: auto;
        right: 10px;
        z-index: 1;
        top:5px;
    }
}
.mainPage.page5 .contentBox .teamawardList table {
    position: relative;
    width: 100%;
}
.mainPage.page5 .contentBox .teamawardList table tr {
    position: relative;
    border-bottom: 1px solid #333;
}
.mainPage.page5 .contentBox .teamawardList table tr td {
    position: relative;
}
.mainPage.page5 .contentBox .teamawardList table tr td:nth-child(1) {
    color:#f2c75c;
    text-align: center;
    font-size:15px;
    padding: 5px 10px 5px 10px;
}
.mainPage.page5 .contentBox .teamawardList table tr:nth-child(1) td {
    color: #fff;
    background: #a26f00;
}
.mainPage.page5 .contentBox .teamawardList table tr:nth-child(1) td ul li {
    color: #fff;
    background: #a26f00;
}
.mainPage.page5 .contentBox .teamawardList table tr td ul {
    position: relative;
    display: block;
}
.mainPage.page5 .contentBox .teamawardList table tr td ul li {
    position: relative;
    display: block;
    padding: 15px;
    color:#fff;
    font-size: 15px;
    line-height: 20px;
    background: #2b2b2b;
    margin: 2px 0 0 0;
}
.mainPage.page6 .pageTitle {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    top:7vw;
    text-align: center;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}
.mainPage.page6 .pageTitle span {
    position: relative;
    display: inline-block;
    font-size: 36px;
    line-height: 36px;
    color:#fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.7);
}
.mainPage.page6 .pageTitle span::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top:50%;
    left: 0;
    -webkit-transform: translate(-100%,-50%);
    transform: translate(-100%,-50%);
    background: url(../images/award_side_icon_left.svg) no-repeat center center;
    background-size: contain;
}
.mainPage.page6 .pageTitle span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top:50%;
    right: 0;
    -webkit-transform: translate(100%,-50%);
    transform: translate(100%,-50%);
    background: url(../images/award_side_icon_right.svg) no-repeat center center;
    background-size: contain;
}
@media screen and (max-width: 1000px) {
    .mainPage.page6 .pageTitle {
        top:130px;
    }
    .mainPage.page6 .pageTitle span {
        font-size: 5vw;
        line-height: 5vw;
    }
}
.mainPage .contentBox .middleBox .fundInfoBox {
    position: relative;
    display: block;
    padding: 80px 60px 60px 60px;
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .middleBox .fundInfoBox {
        padding: 60px 30px 60px 30px;
    }
}
.mainPage .contentBox .middleBox .fundInfoBox .mainTextBox {
    position: relative;
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 36px;
    color:#fff;
    letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .middleBox .fundInfoBox .mainTextBox {
        font-size: 16px;
        line-height: 28px;
    }
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 0 0 0;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li {
    position: relative;
    display: block;
    width: 100%;
    vertical-align: middle;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table {
    position: relative;
    width: 100%;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table tr {
    position: relative;
    width: 100%;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table tr td {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    color:#fff;
    width: 14%;
    padding: 15px;
    border:1px solid #787878;
    background: #1f1f1f;
    text-align: center;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table tr td:nth-child(1) {
    width: 30%;
    text-align: left;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table tr:nth-child(1) td {
    background: #a26f00;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li:nth-child(2) {
    display: none;
}
.mainPage .contentBox .middleBox .fundInfoBox .yearListBox .noteBox {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    color:#d1d1d1;
    padding: 10px 0 0 0;
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table tr td {
        font-size: 15px;
        padding: 10px;
    }
    .mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table tr td:nth-child(5) {
        display: none;
    }
    .mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li table tr td:nth-child(6) {
        display: none;
    }
    .mainPage .contentBox .middleBox .fundInfoBox .yearListBox ul li:nth-child(2) {
        display: block;
        padding: 20px 0 0 0;
    }
}
.mainPage .contentBox .middleBox .fundInfoBox .awardTitle {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin: 60px 0 40px 0;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardTitle span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
    color:#e0b643;
}

.mainPage .contentBox .middleBox .fundInfoBox .awardTitle span::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top:50%;
    left: 0;
    -webkit-transform: translate(-100%,-50%);
    transform: translate(-100%,-50%);
    background: url(../images/award_side_icon_left2.svg) no-repeat center center;
    background-size: contain;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardTitle span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top:50%;
    right: 0;
    -webkit-transform: translate(100%,-50%);
    transform: translate(100%,-50%);
    background: url(../images/award_side_icon_right2.svg) no-repeat center center;
    background-size: contain;
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .middleBox .fundInfoBox .awardTitle span {
        font-size: 20px;
        line-height: 20px;
    }
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList {
    position: relative;
    display: block;
    width: 100%;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li {
    position: relative;
    display: none;
    padding: 15px 15px 15px 80px;
    font-size: 18px;
    line-height: 24px;
    color:#fff;
    background: #2b2b2b;
    border-bottom: 1px solid #787878;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList.expand li {
    display: block;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.new {
    display: block;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.btn {
    display: block;
    text-align: right;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.btn span {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
    margin: 0 30px 0 0;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.btn span:hover {
    color:#fff;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.btn span::before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    right: -25px;
    top:50%;
    background: url(../images/arrow_btn.svg) no-repeat center center;
    background-size: contain;
    -webkit-transform:translate(0,-50%) rotate(90deg);
    transform:translate(0,-50%) rotate(90deg);
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.btn span:nth-child(2) {
    display: none;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList.expand li.btn span:nth-child(1) {
    display: none;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList.expand li.btn span:nth-child(2) {
    display: block;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.btn span:nth-child(2)::before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    right: -25px;
    top:50%;
    background: url(../images/arrow_btn.svg) no-repeat center center;
    background-size: contain;
    -webkit-transform:translate(0,-50%) rotate(-90deg);
    transform:translate(0,-50%) rotate(-90deg);
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li span {
    color:#f2c75c;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li:nth-child(even) {
    background: #1f1f1f;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardList li.new::before {
    content: "NEW";
    position: absolute;
    display: block;
    left: 20px;
    color:#f2c75c;
}
@media screen and (max-width: 1000px) {
    .mainPage .contentBox .middleBox .fundInfoBox .awardList li {
        font-size: 15px;
        line-height: 20px;
        padding: 15px 15px 15px 60px;
    }
    .mainPage .contentBox .middleBox .fundInfoBox .awardList li.new::before {
        left: 10px;
    }
}
.mainPage .contentBox .middleBox .fundInfoBox .awardnote {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    color:#d1d1d1;
    padding: 10px 0 0 0;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardnote a {
    color:#fff;
    text-decoration: underline;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin: 40px 0 0 0;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn {
    position: relative;
    display: block;
    border-left: 3px solid #ffc95a;
    border-right: 3px solid #eec466;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn.awardInfoBtn1 {
    background: #550000;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox li:nth-child(1)::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top:-20px;
    left: 10px;
    background: url(../images/side_btn1.png) no-repeat center center;
    background-size: contain;
    pointer-events: none;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn:hover {
    background: rgba(189,134,58,1);
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn .btnText {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 18px;
    padding: 20px;
    color:#f2c75c;
    letter-spacing: 2px;
    white-space: nowrap;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn:hover .btnText {
    color: #fff;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    bottom:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn a {
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.mainPage .contentBox .middleBox .fundInfoBox .awardInfoBtnBox .btn span {
    position: absolute;
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 8px);
    left: 1px;
    top:4px;
    border:1px solid rgba(189,134,58,1);
}
.footerBox {
    position: relative;
    display: block;
    width: 100%;
}
.footerBox .footerInfo {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 200px 20px 200px;
    background: #212121;
    color:#8a8a8a;
    font-size: 15px;
    line-height: 15px;
    vertical-align: top;
}
.footerBox .footerInfo ul {
    display: inline-block;
}
.footerBox .footerInfo ul:nth-child(2) {
    float: right;
    text-align: right;
}
.footerBox .footerInfo ul li {
    position: relative;
    padding: 5px 0 5px 0;
}
.footerBox .footerInfo ul:nth-child(2) li {
    display: inline-block;
    padding: 5px 0 5px 25px;
    text-align: left;
    margin: 0 0 0 30px;
}
.footerBox .footerInfo ul:nth-child(2) li::before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 0;
    top:50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.footerBox .footerInfo ul:nth-child(2) li.info1::before {
    background: url(../images/footer_icon1.svg) no-repeat center center;
    background-size: contain;
}
.footerBox .footerInfo ul:nth-child(2) li.info2::before {
    background: url(../images/footer_icon2.svg) no-repeat center center;
    background-size: contain;
}
.footerBox .footerInfo ul:nth-child(2) li.info3::before {
    background: url(../images/footer_icon3.svg) no-repeat center center;
    background-size: contain;
}
.footerBox .footerInfo ul:nth-child(2) li.info4::before {
    background: url(../images/footer_icon4.svg) no-repeat center center;
    background-size: contain;
}
.footerBox .footerInfo ul:nth-child(2) li.info5::before {
    background: url(../images/footer_icon5.svg) no-repeat center center;
    background-size: contain;
}
@media screen and (max-width: 1600px) {
    .footerBox .footerInfo ul {
        display: block;
    }
    .footerBox .footerInfo ul:nth-child(2) {
        float:none;
        text-align: left;
    }
    .footerBox .footerInfo ul li {
        display: inline-block;
        line-height: 20px;
        margin: 0 5px 5px 0;
    }
    .footerBox .footerInfo ul:nth-child(2) li {
        margin: 0 5px 5px 0;
    }
    .footerBox .footerInfo ul br {
        display: none;
    }
}
@media screen and (max-width: 1400px) {
    .footerBox .footerInfo {
        padding: 20px 20px 20px 20px;
    }
}
.footerBox .footerNote {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 200px 150px 220px;
    background: #212121;
    margin: 2px 0 0 0;
    color:#b3b3b3;
    font-size: 15px;
    line-height: 24px;
}
.footerBox .footerNote ul {
    position: relative;
    display: block;
    list-style-type: decimal;
}
.footerBox .footerNote ul li {
    position: relative;
    padding: 0 0 10px 0;
}
@media screen and (max-width: 1400px) {
    .footerBox .footerNote {
        padding: 20px 20px 150px 40px;
    }
}
.formLightBox {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 30;
}
.formLightBox.expand {
    display: block;
}
.formLightBox .formBox {
    position: absolute;
    display: block;
    width: 80%;
    max-width: 700px;
    top:50%;
    left: 50%;
    -webkit-transform: translate(-50%,-35%);
    transform: translate(-50%,-35%);
    background: radial-gradient(circle,rgba(209,209,209,1),rgba(153,153,153,1));
}
.formLightBox .formBox .formTitle {
    position: absolute;
    display: block;
    width: 80%;
    height: 40vw;
    max-width: 480px;
    max-height: 290px;
    top:0;
    left: 50%;
    -webkit-transform: translate(-50%,-60%);
    transform: translate(-50%,-60%);
    background: url(../images/form_title.png) no-repeat center center;
    background-size: contain;
}
.formLightBox .formBox .bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.formLightBox .formBox .bg span {
    position: absolute;
    display: block;
    width: 10vw;
    height: 10vw;
    background: url(../images/form_bg.png) no-repeat center center;
    background-size: contain;
}
.formLightBox .formBox .bg span:nth-child(1) {
    top:-1px;
    left: -1px;
    transform: rotate(0);
}
.formLightBox .formBox .bg span:nth-child(2) {
    top:-1px;
    right: -1px;
    transform: rotate(90deg);
}
.formLightBox .formBox .bg span:nth-child(3) {
    bottom:-1px;
    left: -1px;
    transform: rotate(-90deg);
}
.formLightBox .formBox .bg span:nth-child(4) {
    bottom:-1px;
    right: -1px;
    transform: rotate(180deg);
}
.formLightBox .formBox .form {
    position: relative;
    display: block;
    width: calc(100% - 11vw);
    left: 50%;
    margin: 120px 0 0 0;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
.formLightBox .formBox .textBox {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #000;
    margin: 0 0 30px 0;
    border-left: 2px solid #ffc95a;
    border-right: 2px solid #eec466;
}
.formLightBox .formBox .textBox::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    top:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.formLightBox .formBox .textBox::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.formLightBox .formBox .textBox input {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: none;
    border: 0px;
    padding: 10px;
    font-size: 18px;
    color:#fff;
    font-family:"微軟正黑體", "Microsoft JhengHei", "Arial", "Helvetica", "sans-serif";
}
.formLightBox .formBox .checkBox {
    position: relative;
    display: block;
    width: 100%;
    
    font-size: 0;
    line-height: 0;
}
.formLightBox .formBox .checkBox .checkBtn {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: top;
}
.formLightBox .formBox .checkBox .checkText {
    position: relative;
    display: inline-block;
    width: calc(100% - 40px);
    margin: 0 0 0 10px;
    font-size: 15px;
    line-height: 24px;
    vertical-align: top;
}

.formLightBox .formBox .checkBox .checkText a{
    text-decoration: underline;
}


.formLightBox .formBox .checkBox .checkBtn input[type=checkbox] {
    visibility: hidden;
}
.formLightBox .formBox .checkBox .checkBtn input[type=checkbox] + label {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background: #000;
    left: 0;
    top:5px;
    cursor: pointer;
    border-left: 1px solid #ffc95a;
    border-right: 1px solid #eec466;
}
.formLightBox .formBox .checkBox .checkBtn input[type=checkbox] + label span {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    background: url(../images/check_icon.svg) no-repeat center center;
    background-size: contain;
}
.formLightBox .formBox .checkBox .checkBtn input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    top:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.formLightBox .formBox .checkBox .checkBtn input[type=checkbox] + label::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.formLightBox .formBox .checkBox .checkBtn input[type=checkbox]:checked + label span {
    display: block;
}

.formLightBox .formBox .btnBox {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 30px 0 30px 0;
}
.formLightBox .formBox .btnBox .closeBtn {
    position: relative;
    display: inline-block;
    width: 130px;
    border-radius: 5px;
    overflow: hidden;
    background: #cecece;
    cursor: pointer;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
    vertical-align: middle;
    margin: 10px;
}
.formLightBox .formBox .btnBox .closeBtn:hover {
    background: #888;
}
.formLightBox .formBox .btnBox .closeBtn:hover .btnText {
    color: #fff;
}
.formLightBox .formBox .btnBox .closeBtn .btnText {
    position: relative;
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    padding: 15px;
    color:#777777;
    letter-spacing: 2px;
    white-space: nowrap;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.formLightBox .formBox .btnBox .closeBtn a {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.formLightBox .formBox .btnBox .sendBtn {
    position: relative;
    display: inline-block;
    width: 130px;
    border-left: 3px solid #ffc95a;
    border-right: 3px solid #eec466;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s;
    vertical-align: middle;
    margin: 10px;
}
.formLightBox .formBox .btnBox .sendBtn:hover {
    background: rgba(189,134,58,1);
}
.formLightBox .formBox .btnBox .sendBtn .btnText {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    padding: 20px;
    color:#f2c75c;
    letter-spacing: 2px;
    white-space: nowrap;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.formLightBox .formBox .btnBox .sendBtn:hover .btnText {
    color: #fff;
}
.formLightBox .formBox .btnBox .sendBtn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.formLightBox .formBox .btnBox .sendBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    bottom:0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,200,90,1), rgba(189,134,58,1), rgba(255,255,172,1), rgba(255,225,112,1), rgba(238,196,102,1));
}
.formLightBox .formBox .btnBox .sendBtn a {
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.formLightBox .formBox .btnBox .sendBtn span {
    position: absolute;
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 8px);
    left: 1px;
    top:4px;
    border:1px solid rgba(189,134,58,1);
}

@media screen and (max-width: 1400px) {
    .formLightBox .formBox .textBox {
        height: 40px;
        margin: 0 0 20px 0;
    }
}
@media screen and (max-width: 1000px) {
    .formLightBox .formBox {
        top:25vw;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%,0);
    }
    .formLightBox .formBox .form {
        left: 50%;
        margin: 14vw 0 0 0;
    }
    .formLightBox .formBox .btnBox {
        padding: 10px 0 10px 0;
    }
    .formLightBox .formBox .btnBox .closeBtn {
        width: 100px;
        margin: 2px;
    }
    .formLightBox .formBox .btnBox .sendBtn {
        width: 100px;
        margin: 2px;
    }
    .formLightBox .formBox .btnBox .closeBtn .btnText {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 15px 0 15px 0;
    }
    .formLightBox .formBox .btnBox .sendBtn .btnText {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 15px 0 15px 0;
    }
    .formLightBox .formBox .checkBox .checkText {
        font-size: 13px;
        line-height: 18px;
    }
}