@charset "UTF-8";

html {
    font-size: 16px;
    -webkit-text-size-adjust:none;
    color:#000;
}

body {
    background: #fff;
	font-size:16px;
    background: #fff;
}

img {
    position: relative;
    display: block;
    border: 0;
    width: 100%;
    height: auto;
}
.symbol-m {
    display: none !important;
}
.symbol-pc {
    display: block !important;
}
.bg-container {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 100%;
    top:0;
    left: 0;
    z-index: 2;
}
.bg-container .bg-img1 {
    position: absolute;
    width: 16vw;
    top:140vw;
    left: 0;
}
.bg-container .bg-img2 {
    position: absolute;
    width: 9.5vw;
    top:175vw;
    right: 0;
}
.bg-container .bg-img3 {
    position: absolute;
    width: 8.5vw;
    top:230vw;
    left: 0;
}
.wrap {
    position: absolute;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 4vw 0 0 0;
}
.wrap .preload {
    display: none;
}
.nav {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    height: 4vw;
    background: #fff;
    box-shadow: 0 0.1vw 0.3vw rgba(0,0,0,0.2);
    z-index: 9;
    top:0;
    left: 0;
}
.nav .nav-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 10vw 0 0;
}
.nav .nav-list li {
    position: relative;
    display: block;
    width: 8vw;
    margin: 0 1vw;
    user-select: none;
    cursor: pointer;
}
.nav .nav-list li a{
    position: absolute;
    display: block;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.nav .nav-list li .icon {
    position: relative;
    width: 2vw;
    margin: 0 0.3vw 0 0;
    display: inline-block;
    vertical-align: middle;
    z-index: 2;
}
.nav .nav-list li .nav-text {
    position: relative;
    font-family:'Noto Sans TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    font-weight: 300;
    font-size: 1vw;
    line-height: 100%;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    z-index: 2;
}
.nav .nav-list li:hover > .nav-text {
    color: #8bac43;
}
.nav .nav-list li dl {
    position: absolute;
    display: block;
    background: #fff;
    width: 10vw;
    padding: 3vw 1vw 0 1vw;
    top:0;
    left: -1vw;
    z-index: 1;
    overflow: hidden;
    height: 0;
    -webkit-transition: height 0.5s ease;
    transition: height 0.5s ease;
}
.nav .nav-list li:hover dl {
    height: 12vw;
}
.nav .nav-list li dl dd {
    position: relative;
    display: block;
    width: 100%;
    margin: 0.5vw 0;
}
.nav .nav-list li dl dd:hover > .nav-text {
    color: #8bac43;
}
@media screen and (max-width: 1000px) {
    .nav {
        display: block;
        height: 12vw;
        background: #fff;
        box-shadow: 0 0.5vw 0.5vw rgba(0,0,0,0.2);
    }
    .nav .nav-list {
        flex-direction: column;
        margin: 0;
        align-items: center;
        justify-content: flex-start;
        position: absolute;
        top:12vw;
        left: 100%;
        padding: 10vw 0 0 0;
        background: #fff;
        height: calc(100vh - 12vw);
        width: 100%;
        -webkit-transition: left 0.5s ease;
        transition: left 0.5s ease;
    }
    .nav.expand .nav-list {
        left: 0;
    }
    .nav .nav-list li {
        width: 100%;
        margin: 0;
        user-select: none;
        cursor: pointer;
        padding: 4vw 0;
        border-bottom: 1px solid #ddd;
    }
    .nav .nav-list li .icon {
        width: 6vw;
        margin: 0 0.6vw 0 15vw;
    }
    .nav .nav-list li .nav-text {
        font-size: 5vw;
    }
    .nav .nav-list li:hover > .nav-text {
        color: #8bac43;
    }
    .nav .nav-list li dl{
        position: relative;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 0 0 0;
        top:auto;
        left:auto;
        z-index: 1;
        height: 0;
        background: #f1f1f1;
    }
    .nav .nav-list li:hover dl{
        position: relative;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 0 0 0;
        top:auto;
        left:auto;
        z-index: 1;
        height: 0;
        background: #f1f1f1;
        -webkit-transition: margin-top 0.5s ease,height 0.5s ease;
        transition: margin-top 0.5s ease,height 0.5s ease;
    }
    .nav .nav-list li.expand dl,
    .nav .nav-list li.expand:hover dl{
        height: 45vw;
        margin: 4vw 0 0 0;
    }
    .nav .nav-list li dl dd {
        position: relative;
        display: block;
        width: 100%;
        padding: 4vw 0 4vw 10vw;
    }
    .nav .nav-list li dl dd:hover > .nav-text {
        color: #8bac43;
    }
    .nav .burger-btn {
        position: absolute;
        display: block;
        width: 8vw;
        height: 6vw;
        right: 3vw;
        top:4vw;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index:2;
    }
    .nav .burger-btn span {
        position: absolute;
        display: block;
        width: 100%;
        height: 1vw;
        background: #8bac43;
        border-radius: 0.5vw;
        -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,2vw) rotate(0deg);
        transform: scale(1,1) translate(0,2vw) rotate(0deg);
    }
    .nav .burger-btn span:nth-child(3) {
        -webkit-transform: scale(1,1) translate(0,4vw) rotate(0deg);
        transform: scale(1,1) translate(0,4vw) rotate(0deg);
    }
    .nav.expand .burger-btn span:nth-child(1) {
        -webkit-transform: scale(1,1) translate(0,2vw) rotate(45deg);
        transform: scale(1,1) translate(0,2vw) rotate(45deg);
    }
    .nav.expand .burger-btn span:nth-child(2) {
        -webkit-transform: scale(0,1) translate(0,2vw) rotate(0deg);
        transform: scale(0,1) translate(0,2vw) rotate(0deg);
    }
    .nav.expand .burger-btn span:nth-child(3) {
        -webkit-transform: scale(1,1) translate(0,2vw) rotate(-45deg);
        transform: scale(1,1) translate(0,2vw) rotate(-45deg);
    }
    
}
.index-banner {
    position: relative;
    display: block;
    width: 100%;
    height: 39vw;
    background: url(../images/index-banner.jpg) no-repeat center center;
    background-size: cover;
}
.main-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1vw;
}
.main-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    padding: 3vw 0;
    font-size: 1em;
    line-height: 100%;
}
.main-container .leftbox {
    position: relative;
    display: block;
    width: 50%;
    font-size: 1em;
}
.main-container .rightbox {
    position: relative;
    display: block;
    width: 50%;
    font-size: 1em;
}
.main-titlebox {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1em;
}
.main-titlebox span {
    position: relative;
    display: block;
    font-size: 3em;
    line-height: 100%;
    font-weight: 200;
    color: #b7c945;
}
.main-titlebox .left-bar {
    position: relative;
    display: block;
    width: 10em;
    height: 0.3em;
    margin: 0 1em;
    background: #F2F047;
    background: linear-gradient(-90deg,rgba(242, 240, 71, 1) 0%, rgba(30, 217, 79, 1) 100%);
}
.main-titlebox .right-bar {
    position: relative;
    display: block;
    width: 10em;
    height: 0.3em;
    margin: 0 1em;
    background: #F2F047;
    background: linear-gradient(90deg,rgba(242, 240, 71, 1) 0%, rgba(30, 217, 79, 1) 100%);
}
.main-stage1{
    padding: 3em 0;
}
.main-stage1 .rightbox {
    padding: 0 0 0 3em;
}
.main-content-list {
    position: relative;
    display: block;
    border-left: 1px solid #8bac43;
    margin: 2em 0 0 3em;
    font-size: 1em;
    padding: 0 0 4em 0;
}
.main-content-list li {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1em;
    padding: 2em 0 0 0;
}

.main-content-list li .stage-list1-icon {
    position: relative;
    display: block;
    width: 6em;
}
.main-content-list li dl {
    position: relative;
    display: block;
    width: 20em;
    padding: 0 0 0 4em;
}
.main-content-list li dl::before {
    content: ".........";
    position: absolute;
    display: block;
    font-size: 1.5em;
    color: #8bac43;
    top:-0.3em;
    left: 0;
}
.main-content-list li dl dt {
    position: relative;
    display: block;
    font-size: 1em;
    line-height: 100%;
    font-weight: 700;
    color: #8bac43;
    padding: 0 0 0.5em 0;
}

.main-content-list li dl dd {
    position: relative;
    display: block;
    font-size: 1em;
    line-height: 150%;
    color: #888;
}
.main-stage2{
    padding: 3em 0;
}
.main-title2 {
    width: 80%;
}
.main-stage2 .main-container {
    background: #fff;
    width: 80%;
    margin: 2em 0 5vw 0;
    padding: 0;
}
.index-p2 {
    position: relative;
    display: block;
    background: url(../images/index-p2.jpg) no-repeat center center;
    background-size: cover;
    height: 25em;
}
.index-p2-textbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #65953c;
    font-size: 2.5em;
    line-height: 180%;
    font-weight: 200;
}
.index-p3 {
    position: relative;
    display: block;
    width: 90%;
}
.main-content-list.stage-list3 li dl {
    width: auto;
}
.main-stage4 {
    background: #f2f2f2;
}
.main-stage4 .main-container {
    display: block;
}
.main-title4 {
    width: auto;
    justify-content: center;
}
.main-stage4-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 4em 0 4em 0;
}
.main-stage4-list li {
    position: relative;
    display: block;
    width: 20em;
    margin: 0 2em;
}
.main-stage4-list li .imgbox {
    width: 80%;
    margin: 0 auto;
}
.main-stage4-list li .textbox {
    width: 100%;
    font-size: 1em;
    line-height: 150%;
    margin: 1em 0 0 0;
}
.main-stage5 .main-container {
    display: block;
}
.main-title5 {
    width: 100%;
}
.main-stage5-content {
    position: relative;
    display: block;
    padding: 3em 0;
}
.main-stage5-content dt {
    position: relative;
    display: block;
    font-size: 2.5em;
    line-height: 100%;
    text-align: center;
}
.main-stage5-content dd {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 2em 0 0 0;
}
.main-stage5-content dd .item {
    position: relative;
    display: block;
    width: 32em;
    margin: 0 2em;
}
.main-stage5-content dd .item .imgbox {
    position: relative;
    display: block;
    box-shadow: 0 0.3em 0.7em rgba(0,0,0,0.2);
}
.main-stage5-content dd .item span {
    position: relative;
    display: block;
    font-size: 1em;
    line-height: 150%;
    text-align: center;
    font-weight: 700;
    margin: 1em 0 0 0;
    color: #8bac43;
}
.main-stage6 {
    background: #f2f2f2;
}
.main-stage6 .main-container {
    display: block;
}
.main-title6 {
    width: auto;
    justify-content: center;
}
.main-stage6-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 4em 0 4em 0;
}
.main-stage6-list li {
    position: relative;
    display: block;
    width: 15em;
    margin: 0 1em;
}
.main-stage6-list li .imgbox {
    width: 80%;
    margin: 0 auto;
}
.main-stage6-list li .textbox {
    width: 100%;
    font-size: 1em;
    line-height: 150%;
    margin: 1em 0 0 0;
}
.main-stage6-list li .textbox .text-title {
    position: relative;
    display: block;
    text-align: center;
    font-weight: 700;
    line-height: 100%;
    font-size: 1em;
    color: #8bac43;
}
.main-stage6-list li .textbox .text-content {
    position: relative;
    display: block;
    font-size: 1em;
    line-height: 150%;
    color: #666;
    margin: 0.5em 0 0 0;
    text-align: justify;
}
.main-stage6-list li:nth-child(3) .textbox .text-content {
    text-align: center;
}
.main-stage-video {
    background: #f2f2f2;
}
.main-stage-video .videobox {
    border-top:1px solid #8bac43;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em 0;
    width: 70%;
}
.footer {
    position: relative;
    display: block;
    padding: 2vw 10%;
    background: #65953c;
    font-size: 1vw;
}
.footer-textbox1 {
    position: relative;
    display: block;
    font-size: 1.5em;
    color: #fff;
    line-height: 100%;
}
.footer-textbox2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1em;
    line-height: 150%;
    color: #fff;
    margin: 1.5em 0 0 0;
}
.footer-textbox2 ul {
    position: relative;
    display: flex;
}
.footer-textbox2 ul li {
    position: relative;
    display: block;
    margin: 0 2em 0 0;
}
@media screen and (max-width: 1000px) {
    .symbol-m {
        display: block !important;
    }
    .symbol-pc {
        display: none !important;
    }
    .bg-container .bg-img1 {
        width: 14vw;
        top:120vw;
    }
    .bg-container .bg-img2 {
        width: 11vw;
        top:570vw;
    }
    .bg-container .bg-img3 {
        width: 11vw;
        top:960vw;
    }
    .wrap {
        padding: 10vw 0 0 0;
    }
    .index-banner {
        width: 100%;
        height: 55vw;
        background: url(../images/index-banner.jpg) no-repeat 0 0;
        background-size: cover;
    }
    .main-stage {
        width: 100%;
        font-size: 2vw;
    }
    .main-container {
        flex-direction: column;
        width: 90vw;
        padding: 5em 0;
    }
    .main-container .leftbox {
        width: 100%;
    }
    .main-container .rightbox {
        width: 100%;
    }
    .main-titlebox {
        justify-content: center;
        align-items: center;
        font-size: 1em;
    }
    .main-titlebox span {
        font-size: 3.5em;
    }
    .main-titlebox .left-bar {
        width: 8em;
    }
    .main-titlebox .right-bar {
        width: 8em;
    }
    .main-stage1{
        padding: 2em 0;
    }
    .main-stage1 .main-container .leftbox{
        order: 2;
    }
    .main-stage1 .rightbox {
        order: 1;
        padding: 0;
    }
    .main-content-list {
        width: 80%;
        margin: 2em auto;
        font-size: 1em;
        padding: 0 0 4em 0;
    }
    .main-content-list li {
        font-size: 1.5em;
    }
    .main-content-list li .stage-list1-icon {
        width: 6em;
    }
    .index-p1 {
        margin: 0 0 5em 0;
    }
    .main-title2 {
        width: auto;
    }
    .main-stage2 .main-container {
        width: 100%;
    }
    .index-p2 {
        height: 40em;
    }
    .index-p2-textbox {
        height: 7em;
    }
    .index-p3 {
        width: 90%;
        margin: 0 auto;
    }
    .main-content-list.stage-list3 li dl {
        width: auto;
    }
    .main-stage4-list {
        flex-direction: column;
        margin: 2em 0 2em 0;
    }
    .main-stage4-list li {
        position: relative;
        display: block;
        width: 30em;
        margin: 2em auto;
    }
    .main-stage4-list li .imgbox {
        width: 60%;
        margin: 0 auto;
    }
    .main-stage4-list li .textbox {
        font-size: 1.5em;
    }
    .main-stage5 .main-container {
        display: block;
    }
    .main-stage5-content dd {
        flex-direction: column;
        margin: 2em 0 0 0;
    }
    .main-stage5-content dd .item {
        position: relative;
        display: block;
        width: 32em;
        margin: 0 auto 2em auto;
    }
    .main-stage5-content dd .item .imgbox {
        margin: 0 auto;
    }
    .main-stage5-content dd .item span {
        font-size: 1.5em;
    }
    .main-stage6-list {
        flex-direction: column;
        margin: 4em 0 2em 0;
    }
    .main-stage6-list li {
        position: relative;
        display: block;
        width: 35em;
        margin: 0 auto 3em auto;
    }
    .main-stage6-list li .imgbox {
        width: 60%;
        margin: 0 auto;
    }
    .main-stage6-list li .textbox .text-title {
        font-size: 1.8em;
        color: #8bac43;
    }
    .main-stage6-list li .textbox .text-content {
        font-size: 1.5em;
    }
    .main-stage6-list li:nth-child(3) .textbox .text-content {
        text-align: center;
    }
    .main-stage6-list li:nth-child(4) .textbox .text-content {
        text-align: center;
    }
    .footer {
        padding: 4vw 10%;
        font-size: 2vw;
    }
    .footer-textbox1 {
        text-align: center;
    }
    .footer-textbox2 {
        position: relative;
        display: block;
        text-align: center;
    }
    .footer-textbox2 ul {
        display: block;
        text-align: center;
    }
    .footer-textbox2 ul li {
        margin: 0 0 1em 0;
    }
    .main-stage-video .videobox {
        width: 85%;
        height: 70vw;
        padding: 10vw 0;
    }
    .main-stage-video .videobox iframe {
        height: 100%;
        width: 100%;
    }
}

.bg-container .bg-img4 {
    position: absolute;
    width: 9.5vw;
    top:30vw;
    left: 0;
}
.bg-container .bg-img5 {
    position: absolute;
    width: 14.5vw;
    top:100vw;
    right: 0;
}
.bg-container .bg-img6 {
    position: absolute;
    width: 10vw;
    top:150vw;
    left: 0;
}
.sub-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 19.5vw;
}
.sub-banner .banner-text {
    position: relative;
    display: block;
    color: #fff;
    font-size: 3.9vw;
    line-height: 100%;
}
.about-banner {
    background: url(../images/about-banner.jpg) no-repeat center center;
    background-size: cover;
}
.purpose-banner {
    background: url(../images/purpose-banner.jpg) no-repeat center center;
    background-size: cover;
}
.goal-banner {
    background: url(../images/goal-banner.jpg) no-repeat center center;
    background-size: cover;
}
.news-banner {
    background: url(../images/news-banner.jpg) no-repeat center center;
    background-size: cover;
}
.process-banner {
    background: url(../images/process-banner.jpg) no-repeat center center;
    background-size: cover;
}
.process-step-list {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 80%;
    font-size: 1vw;
    padding: 3em 0 0 0;
}
.process-step-list li {
    position: relative;
    display: block;
    width: 33.3%;
    margin: 0 0 4em 0;
}
.process-step-list li .imgbox {
    position: relative;
    display: block;
    width:14em;
    height: 14em;
    overflow: hidden;
    border-radius: 50%;
    border:0.4vw solid #cdf084;
    margin: 0 auto;
    
}
.process-step-list li .number-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:'Noto Serif TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    font-style: italic;
    background: #e3cf01;
    color: #fff;
    width: 1.5em;
    height: 1.5em;
    font-size: 3em;
    line-height: 0%;
    border-radius: 50%;
    left: calc(50% - 2em);
    top:-0.3em;
}
.process-step-list li .number-icon span {
    position: absolute;
    display: block;
    text-align: center;
    width: 100%;
    top:45%;
    left: -5%;
}
.process-step-list li .textbox {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.4em;
    color: #829700;
    padding: 0.7em 0 0 0;
}
.process-step-list li:nth-child(1)::before,
.process-step-list li:nth-child(3n+1)::before{
    content: "";
    position: absolute;
    display: block;
    width: 45em;
    height: 1px;
    border-bottom:0.25em dotted #8bac43;
    top:7em;
    left: 6em;
}
.main-stage7-list li:nth-child(10)::before {
    width: 30em;
}
.main-stage8 {
    background: #f2f2f2;
    padding: 4em 0 0 0;
}
.main-title8 {
    width: 80%;
}
.main-title8 .s-title {
    font-size: 1.8em;
    padding: 0 0 0 0.5em;
}
.main-sub-title {
    position: relative;
    display: block;
    font-size: 1.35em;
    line-height: 100%;
    padding: 1em 0 0 0;
    width: 80%;
}
.main-stage9 {
    padding: 4em 0 0 0;
}
.main-title9 {
    width: auto;
}
.ce-list {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}
.ce-list li {
    position: relative;
    display: block;
    width: 33%;
    margin: 0 0 3em 0;
}
.ce-list li .imgbox {
    position: relative;
    display: block;
    width: 70%;
    border:0.2em solid #a9a9a9;
    box-shadow: 0 0.3em 0.5em rgba(0,0,0,0.3);
    margin: 0 auto;
}
.ce-list li .textbox {
    position: relative;
    display: block;
    text-align: center;
    padding: 0.8em 0 0 0;
    font-size: 1.3em;
    line-height: 100%;
}
@media screen and (max-width: 1000px) {
    .bg-container .bg-img4 {
        width: 12vw;
        top:50vw;
    }
    .bg-container .bg-img5 {
        width: 14.5vw;
        top:280vw;
    }
    .bg-container .bg-img6 {
        width: 10vw;
        top:450vw;
    }
    .sub-banner {
        height: 30vw;
    }
    .sub-banner .banner-text {
        font-size: 6vw;
    }
    .process-step-list {
        width: 85%;
        font-size: 2vw;
        padding: 2em 0 0 0;
    }
    .process-step-list li {
        width: 50%;
        margin: 0 0 4em 0;
    }
    .process-step-list li:nth-child(3n+1)::before{
        display: none;
    }
    .process-step-list li:nth-child(1)::before,
    .process-step-list li:nth-child(2n+1)::before{
        content: "";
        position: absolute;
        display: block;
        width: 20em;
        height: 1px;
        border-bottom:0.25em dotted #8bac43;
        top:7em;
        left: 6em;
    }
    .main-stage7-list li:last-child::before{
        display: none;
    }
    .main-stage8 {
        background: #f2f2f2;
        padding: 4em 0 0 0;
    }
    .main-title8 {
        width: 100%;
        padding: 0 0 4em 0;
    }
    .main-title8 .s-title {
        position: absolute;
        display: block;
        font-size: 1.8em;
        padding: 0;
        top:2.2em;
    }
    .main-sub-title {
        font-size: 1.5em;
        line-height: 150%;
        padding: 0 0 0 0;
        width: 80%;
    }
    .main-stage9 {
        padding: 4em 0 0 0;
    }
    .main-title9 {
        width: auto;
    }
    .ce-list li {
        width: 100%;
        margin: 0 0 3em 0;
    }
}
.bg-container .bg-img7 {
    position: absolute;
    width: 35vw;
    top:26vw;
    right: 10vw;
}
.bg-container .bg-img8 {
    position: absolute;
    width: 35vw;
    top:68vw;
    right: 10vw;
}
.bg-container .bg-img9 {
    position: absolute;
    width: 30vw;
    top:105vw;
    right: 15vw;
}
.products-banner {
    background: url(../images/products-banner.jpg) no-repeat center center;
    background-size: cover;
}
.main-stage10 .main-container {
    display: block;
    font-size: 1vw;
}
.products-list {
    position: relative;
    display: block;
    width: 70%;
    padding:2em 0 4em 0;
    margin: 0 auto;
}
.products-list dt {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.products-list dt .number-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items:center;
    width: 9em;
    height: 6em;
    background: url(../images/products-title-icon.png) no-repeat center center;
    background-size: contain;
}
.products-list dt .number-icon span {
    position: relative;
    display: block;
    font-size: 4em;
    line-height: 0;
    font-family:'Noto Serif TC',Helvetica,Arial,"微軟正黑體","Microsoft JhengHei",sans-serif;
    color: #fff;
}
.products-list dt .title-text {
    position: relative;
    display: block;
    font-size: 3em;
    line-height: 100%;
    color: #b7c945;
    font-weight: 200;
}
.products-list dt .title-text .t2 {
    display: block;
    font-size: 0.5em;
}
.products-list dd {
    position: relative;
    display: block;
    margin: 3em 0 3em 0;
}
.products-list dd .t1 {
    position: relative;
    display: block;
    font-size: 2em;
    line-height: 100%;
    color: #63c048;
    font-weight: 700;
    padding: 0 0 0.5em 0;
}
.products-list dd .t2 {
    position: relative;
    display: block;
    font-size: 1.2em;
    line-height: 150%;
}
.product-table{
    margin: 0 auto;
}
.product-table th{
    border:1px solid #fff;
    background: #91f084;
    padding: 1em;
}
.product-table td{
    border:1px solid #fff;
    background: #cdf084;
    padding: 1em;
}
.product-table .cell-1 {
    width: 8em;
}
.product-table .cell-2 {
    width: 10em;
}
.product-table .cell-3 {
    width: 16em;
}
@media screen and (max-width: 1000px) {
    .bg-container .bg-img7 {
        width: 60vw;
        top:60vw;
        right: -30vw;
    }
    .bg-container .bg-img8 {
        width: 60vw;
        top:140vw;
        right: -25vw;
    }
    .bg-container .bg-img9 {
        position: absolute;
        width: 50vw;
        top:215vw;
        right: -20vw;
    }
    .products-banner {
        background: url(../images/products-banner.jpg) no-repeat center center;
        background-size: cover;
    }
    .main-stage10 .main-container {
        display: block;
        font-size: 2vw;
    }
    .products-list {
        width: 85%;
        padding:2em 0 4em 0;
    }
}

.vlist-container {
    position: relative;
    display: block;
    font-size: 1vw;
    margin: 0 auto 0 auto;
    width: 90%;
}
.vlist-container li {
    position: relative;
    list-style:circle;
    font-weight: 700;
    color: #65953c;
    font-size: 1.8em;
    line-height: 150%;
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.5);
    padding: 0.8em 0;
}
.vlist-container li dl {
    position: relative;
    display: block;
}
.vlist-container li dt {
    user-select: none;
    padding: 0 1.3em 0 0;
}
.vlist-container li dt::after {
    content:"";
    position: absolute;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-right: 0.1em solid #65953c;
    border-top: 0.1em solid #65953c;
    top:calc(1em - 0.5em);
    right:0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.vlist-container li.expand dt::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.vlist-container li dd {
    position: relative;
    display: none;
    padding: 0;
    margin: 1em 0;
}
.vlist-container li.expand dd {
    display: block;
}
.vlist-container .item-list {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 1vw;
}
.vlist-container .item-list .item {
    position: relative;
    display:block;
    width: 9em;
    border:1px solid #ccc;
    border-radius: 2em 2em 1em 1em;
    overflow: hidden;
    margin: 0em 0.5em 1em 0.5em;
}
.vlist-container .item-list .item .textbox {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.3em;
    line-height: 100%;
    background: #65953c;
    color: #fff;
    padding: 0.5em 0;
}
@media screen and (max-width: 800px) {
    .vlist-container {
        font-size: 2vw;
    }
    .vlist-container li dd {
        font-size: 0.8em;
    }
    .vlist-container .item-list {
        font-size: 2vw;
    }
}