body {
    position: relative;
    padding: 670px 0 130px;
    background-color: #f2f2f2;
    background-size: 1920px auto;
    background-position: center top;
    background-repeat: no-repeat;
    overflow-x: hidden;
    font-family: 'Noto Sans TC', '微軟正黑體';
}

.container {
    position: relative;
    width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}

@media (max-width:1199px) and (min-width:992px) {
    .container {
        width: 980px;
    }
}

@media (max-width:991px) and (min-width:768px) {
    .container {
        width: 780px;
    }
}

@media (max-width:767px) {
    .container {
        width: 100%;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 1000;
    -webkit-transition: background-color .4s;
    -moz-transition: background-color .4s;
    transition: background-color .4s;
}

.logo {
    display: block;
    width: 218px;
}

.burger {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 20px;
    height: 16px;
}

.burger::before,
.burger::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.burger__line {
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #4bb134;
    padding: 0 15px;
}

.copyright {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.2;
    opacity: .7;
}

.footer__btnbox {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-self: center;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-self: center;
}

.nav__btn {
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 80px;
    margin-right: 30px;
}

.nav__anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    transition: background-color .3s;
}

.nav__anchor:hover::after,
.nav__btn--active::after {
    background-color: #006837;
}

.login__box {
    display: flex;
    flex-wrap: wrap;
    align-self: center;
}

.application__btn {
    display: block;
    width: 110px;
    color: #fff;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    background-color: #006837;
    border-radius: 3px;
    -webkit-transition: background-color .4s, color .5s;
    -moz-transition: background-color .4s, color .5s;
    transition: background-color .4s, color .5s;
}

.application__btn:hover {
    color: #006837;
    background-color: #fff;
}

.login__btn {
    display: block;
    width: 110px;
    color: #006837;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 3px;
    margin-left: 10px;
    -webkit-transition: background-color .4s, color .5s;
    -moz-transition: background-color .4s, color .5s;
    transition: background-color .4s, color .5s;
}

.login__btn:hover {
    color: #fff;
    background-color: #006837;
}

.bg__block {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    width: 1920px;
    height: 970px;
    margin-left: -960px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.itemwrap {
    -webkit-box-shadow: 0 0 5px rgba(127, 127, 127, .15);
    -moz-box-shadow: 0 0 5px rgba(127, 127, 127, .15);
    box-shadow: 0 0 5px rgba(127, 127, 127, .15);
}

.item {
    position: relative;
    padding: 25px 40px 60px 115px;
    background-color: #fff;
    border-top: 10px solid #006837;
}

.item__num {
    position: absolute;
    top: 0;
    left: 0;
}

.item__title {
    color: #4bb134;
    font-size: 36px;
    line-height: 1;
    margin: 0 0 24px;
}

.item__text {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
}

.item__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0 0;
}

.item__flex-box {
    width: calc((100% - 70px) / 3);
    text-align: center;
    padding: 40px 25px;
    border: 1px solid #eee;
    border-radius: 3px;
    opacity: 0;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: transform .8s, opacity .8s;
    -moz-transition: transform .8s, opacity .8s;
    transition: transform .8s, opacity .8s;
}

.item__flex-box:nth-child(2) {
    transition-delay: .2s;
}

.item__flex-box:nth-child(3) {
    transition-delay: .4s;
}

.item__flex-animation .item__flex-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

.item__flex-box img {
    height: 80px;
    margin: 0 0 15px;
}

.item__flex-text {
    color: #777;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
}

.item2 {
    padding-right: 0;
}

.item2__content {
    display: flex;
    flex-wrap: wrap;
    background-image: url(../images/index/item2_bg.png);
    background-position: right center;
    background-repeat: no-repeat;
}

.item2__listbox {
    width: 410px;
}

.item2__list {
    position: relative;
    color: #666;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    padding: 11px 15px 11px 30px;
    background-color: #f2f2f2;
    margin: 20px 0 0;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: transform .8s, opacity .8s;
    -moz-transition: transform .8s, opacity .8s;
    transition: transform .8s, opacity .8s;
}

.item2__list::before {
    content: attr(data-text);
    position: absolute;
    top: 11px;
    left: 15px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.item2__list:first-child {
    margin: 0;
}

.item2__list:nth-child(2) {
    transition-delay: .2s;
}

.item2__list:nth-child(3) {
    transition-delay: .4s;
}

.item2__listbox-animation .item2__list {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

.step {
    margin: 30px -10px 0;
}

.step__item {
    padding: 0 10px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: transform .8s, opacity .8s;
    -moz-transition: transform .8s, opacity .8s;
    transition: transform .8s, opacity .8s;
}

.step__item:nth-child(2) {
    transition-delay: .15s;
}

.step__item:nth-child(3) {
    transition-delay: .3s;
}

.step__item:nth-child(4) {
    transition-delay: .45s;
}

.step__item:nth-child(5) {
    transition-delay: .6s;
}

.step__animation .step__item {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

.step__box {
    position: relative;
    padding: 0 0 25px;
    border-radius: 3px;
    border: 1px solid #eee;
}

.step__arrow {
    position: relative;
    display: block;
    top: -1px;
    left: -1px;
    max-width: calc(100% + 2px);
    width: calc(100% + 2px);
}

.step__title {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 10px;
    margin: 15px 0 0;
}

.step__text {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    padding: 0 10px;
}

.notice {
    color: #999;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    margin: 22px 0 0;
}

.verify {
    width: calc(100% + 34px);
    height: 0;
    overflow: hidden;
    margin: 0 -17px;
    opacity: 0;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: transform .8s, opacity .8s;
    -moz-transition: transform .8s, opacity .8s;
    transition: transform .8s, opacity .8s;
}

.verify__block {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    margin: 0 -17px;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: transform .8s, opacity .8s;
    -moz-transition: transform .8s, opacity .8s;
    transition: transform .8s, opacity .8s;
    overflow: hidden;
}

.verify__block--more .verify__item {
    display: block !important;
}

.verify__block--more .verify__more {
    display: none;
}

.verify__more {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    width: 100%;
    height: 40px;
    margin-top: 25px;
}

.verify__more-btn {
    width: 160px;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    color: #FFF;
    background-color: #f6921e;
    border-style: solid;
    border-color: #ea5e3b;
    border-width: 0 0 4px 0;
    -webkit-transition: border-width .2s, margin-top .2s;
    -moz-transition: border-width .2s, margin-top .2s;
    -ms-transition: border-width .2s, margin-top .2s;
    -o-transition: border-width .2s, margin-top .2s;
    transition: border-width .2s, margin-top .2s;

    cursor: pointer;
}

.verify__more-btn:hover {
    margin-top: 4px;
    border-width: 0;
}

.verify__animation {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

.verify .slick-track {
    display: flex;
}

.verify .slick-slide {
    outline: none;
}

.slick-dotted.verify {
    margin: 0 -17px;
}

.verify .slick-dots {
    bottom: -30px;
}

.verify .slick-dots li {
    margin: 0;
}

.verify .slick-dots li button:before {
    color: #e6e6e6;
    opacity: 1;
}

.verify .slick-dots li.slick-active button:before {
    color: #f6921e;
}

.verify__item {
    padding: 0 17px;
}

.verify__box {
    display: block;
    height: 100%;
}

.verify__bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 4px solid #eee;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-transition: border-color .5s;
    -moz-transition: border-color .5s;
    transition: border-color .5s;
}

.verify__bg::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.verify__box:hover .verify__bg {
    border-color: rgba(75, 177, 52, .9);
}

.verify__mask {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    background-color: rgba(75, 177, 52, .9);
    opacity: 0;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    transition: opacity .5s;
}

.verify__box:hover .verify__mask {
    opacity: 1;
}

.verify__mask img {
    display: block;
    width: 10px;
    margin: 10px auto 0;
}

.verify__title {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    text-align: center;
    margin: 15px 0 0;
}

.download {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -17px;
}

.download__item {
    width: 25%;
    padding: 0 17px;
    margin: 30px 0 0;
    opacity: 0;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: transform .8s, opacity .8s;
    -moz-transition: transform .8s, opacity .8s;
    transition: transform .8s, opacity .8s;
}

.download__animation .download__item {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

.download__item:nth-child(2) {
    transition-delay: .2s;
}

.download__item:nth-child(3) {
    transition-delay: .4s;
}

.download__item:nth-child(4) {
    transition-delay: .6s;
}

.download__item:nth-child(-n + 4) {
    margin: 0;
}

.download__box {
    display: block;
    height: 100%;
    text-align: center;
    padding: 30px 25px;
    border: 1px solid #eee;
    border-radius: 3px;
}

.download__box:hover {
    border-color: #f6921e;
}

.download__box img {
    height: 50px;
    margin: 0 0 20px;
}

.download__title {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285;
    margin: 0 0 20px;
}

.download__size {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
}

.download__size::before {
    content: '';
    display: block;
    width: 9px;
    height: 10px;
    margin-right: 5px;
    background-image: url(../images/index/download_icon.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.download__box:hover .download__size {
    color: #f6921e;
}

.download__box:hover .download__size::before {
    background-image: url(../images/index/download_icon-hover.png);
}

.bottom__btnbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0;
}

.bottom__btn {
    position: relative;
    display: block;
    width: 240px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 56px;
    text-align: center;
    margin-left: 15px;
    border-style: solid;
    border-width: 0 0 8px;
    -webkit-transition: border-width .2s, margin-top .2s;
    -moz-transition: border-width .2s, margin-top .2s;
    transition: border-width .2s, margin-top .2s;
}

.bottom__btn:first-child {
    margin: 0;
}

.bottom__btn:hover {
    margin-top: 8px;
    border-width: 0;
}

.bottom__btn-letter {
    background-color: #4d4d4d;
    border-color: #333;
}

.bottom__btn-sign {
    background-color: #f6921e;
    border-color: #ea5e3b;
}

.bottom__btn-application {
    background-color: #4bb134;
    border-color: #006837;
}

.bottom__btn-hoverbox {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    color: #333;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px 15px;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s;
}

.bottom__btn-hoverbox::before {
    content: '';
    position: absolute;
    left: calc(50% - 6px);
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 9px 6px;
    border-color: transparent transparent #dddddd transparent
}

.bottom__btn-hoverbox::after {
    content: '';
    position: absolute;
    left: calc(50% - 5px);
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 8px 5px;
    border-color: transparent transparent #ffffff transparent
}

.bottom__btn:hover .bottom__btn-hoverbox {
    opacity: 1;
}

@media (max-width:1365px) and (min-width:1200px) {
    .nav__btn {
        margin-right: 15px;
    }
}

@media (max-width:1199px) {
    .download {
        margin: 0 -10px;
    }
    .download__item {
        padding: 0 10px;
    }
    .footer {
        flex-direction: column-reverse;
        padding-bottom: 20px;
    }
    .nav__btn {
        line-height: 56px;
    }
}

@media (max-width:1199px) and (min-width:992px) {
    body {
        padding: 554px 0 150px;
        background-size: 1588px auto
    }
    .bg__block {
        width: 1588px;
        height: 802px;
        margin-left: -794px;
    }
    .item2__content {
        -webkit-background-size: 400px;
        -o-background-size: 400px;
        background-size: 400px;
    }
}

@media (min-width:992px) {
    .burger {
        display: none;
    }
    .copyright__mobile {
        display: none;
    }
    .letter__btn-mobile {
        display: none;
    }
    .sign__btn-mobile {
        display: none;
    }
    .mobile__nav {
        display: none;
    }
    .verify__item {
        width: 20%;
    }
    .verify__item:nth-child(n+6) {
        margin-top: 20px;
    }
    .verify__item:nth-child(n+11) {
        display: none;
    }
}

@media (max-width:991px) {
    .header {
        position: fixed;
        padding: 12px 20px;
        background-color: #4bb134;
    }
    .nav__anchor::after {
        display: none;
    }
    .mobile__nav {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        background-color: #006834;
    }
    .mobile__nav--open {
        display: block;
    }
    .mobile__nav-btn {
        display: block;
        color: #fff;
        font-size: 16px;
        line-height: 36px;
        padding: 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }
    .mobile__nav-btn:hover {
        background-color: #4bb134;
    }
    .bg__block {
        top: 60px;
    }
    .item__num {
        display: none;
    }
    .item {
        padding: 40px 30px;
        border-top-width: 5px;
    }
    .item2__content {
        background-image: none;
    }
    .item2__listbox {
        width: 100%;
    }
    .item__title {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .item__title::before {
        content: attr(data-text);
    }
    .item__flex {
        margin: 15px 0 0;
    }
    .item__flex-box {
        width: 100%;
        padding: 25px 15px;
        margin: 15px 0 0;
    }
    .item__flex-box:first-child {
        margin: 0;
    }
    .step__item {
        width: 100%;
    }
    .download__item,
    .download__item:nth-child(n + 3) {
        margin: 20px 0 0;
    }
    .footer {
        padding: 0;
    }
    .footer__btnbox {
        width: 100%;
        flex-direction: column;
    }
    .nav {
        display: none;
    }
    .copyright {
        display: none;
    }
    .copyright__mobile {
        color: #999;
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        margin: 20px 0 0;
    }
    .bottom__btnbox {
        display: none;
    }
    .login__box {
        width: 100%;
    }
    .letter__btn-mobile {
        width: 25%;
        color: #fff;
        font-size: 16px;
        line-height: 40px;
        text-align: center;
        background-color: #4d4d4d;
    }
    .sign__btn-mobile {
        width: 25%;
        color: #fff;
        font-size: 16px;
        line-height: 40px;
        text-align: center;
        background-color: #f6921e;
    }
    .application__btn {
        width: 25%;
        font-size: 16px;
        border-radius: 0;
    }
    .login__btn {
        width: 25%;
        font-size: 16px;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width:991px) and (min-width:768px) {
    body {
        background-size: 1228px auto;
        padding: 488px 0 60px;
    }
    .bg__block {
        width: 1228px;
        height: 620px;
        margin-left: -614px;
    }
    .verify__item {
        width: 25%;
    }
    .verify__item:nth-child(n+5) {
        margin-top: 20px;
    }
    .verify__item:nth-child(n+9) {
        display: none;
    }
}

@media (max-width:991px) and (min-width:576px) {
    .step__item {
        width: calc(50% - 10px);
    }
    .step__item:last-child {
        width: 100%;
    }
    .download__item {
        width: 50%;
    }
}

@media (max-width:767px) and (min-width:576px) {
    body {
        background-size: 920px auto;
        padding: 380px 0 60px;
    }
    .bg__block {
        width: 920px;
        height: 465px;
        margin-left: -460px;
    }
    .verify__item {
        width: 33.333%;
    }
    .verify__item:nth-child(n+4) {
        margin-top: 20px;
    }
    .verify__item:nth-child(n+7) {
        display: none;
    }
}

@media (max-width:575px) {
    .download__item {
        width: 100%;
    }
    .download__item:nth-child(2) {
        margin: 20px 0 0;
    }
    .item4 {
        padding-bottom: 70px;
    }
    .verify__block {
        display: none;
    }
    .verify {
        height: auto;
        overflow: visible;
    }
    .verify__title {
        font-size: 14px;
        font-weight: 400;
    }
}

@media (max-width:575px) and (min-width:375px) {
    body {
        background-size: 600px auto;
        padding: 270px 0 60px;
    }
    .bg__block {
        width: 600px;
        height: 303px;
        margin-left: -300px;
    }
}

@media (max-width:374px) {
    body {
        background-size: 374px auto;
        padding: 230px 0 60px;
    }
    .bg__block {
        width: 500px;
        height: 252px;
        margin-left: -250px;
    }
}


/* 申請步驟 1-1 */

.body__step {
    padding: 0;
}

.main {
    padding: 50px 0 130px;
}

.item__step {
    padding: 40px 40px 60px 165px;
    -webkit-box-shadow: 0 0 5px rgba(127, 127, 127, .15);
    -moz-box-shadow: 0 0 5px rgba(127, 127, 127, .15);
    box-shadow: 0 0 5px rgba(127, 127, 127, .15);
}

.item__step .item__title {
    margin-bottom: 40px;
}

.step__form-item:nth-child(n + 2) {
    margin-top: 40px;
}

.step__form-row {
    position: relative;
    margin-bottom: 20px;
}

.step__form-row:not(.step__form-full) {
    max-width: 400px;
}

.step__form-row:last-child {
    margin: 0;
}

.step__form-phonebox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step__form-phone {
    width: calc(100% - 90px);
    max-width: 310px;
}

.extension {
    position: relative;
    width: 70px;
    margin-left: 20px;
}

.step__label {
    display: inline-block;
    color: #999;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px;
}

.step__input {
    width: 100%;
    height: 40px;
    font-family: 'Montserrat', 'Noto Sans TC', '微軟正黑體';
    color: #555;
    font-size: 16px;
    font-weight: 300;
    padding: 0 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.step__input:not([readonly]):focus {
    background-color: #fff;
}

.step__input[readonly] {
    cursor: not-allowed;
}

.step__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.step__bottom-text {
    max-width: calc(100% - 160px);
    color: #666;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    padding-right: 20px;
}

.footer__step {
    padding: 20px 30px;
}

.step__letter {
    display: block;
    width: 110px;
    color: #fff;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    background-color: #006837;
    border: 1px solid #006837;
    border-radius: 3px;
    -webkit-transition: color .4s, background-color .4s, border-color .4s;
    -moz-transition: color .4s, background-color .4s, border-color .4s;
    transition: color .4s, background-color .4s, border-color .4s;
}

.step__letter:hover {
    background-color: #222;
    border-color: #222;
}

.step__cancel {
    display: block;
    width: 110px;
    color: #006837;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    margin-left: 10px;
    -webkit-transition: color .4s, background-color .4s, border-color .4s;
    -moz-transition: color .4s, background-color .4s, border-color .4s;
    transition: color .4s, background-color .4s, border-color .4s;
}

.step__cancel:hover {
    color: #fff;
    background-color: #006837;
    border-color: #006837;
}

.footer__step-itembox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer__step-item {
    width: 260px;
    position: relative;
    color: #aaa;
    font-size: 16px;
    font-weight: 300;
    line-height: 47px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #006837;
    border-bottom: 1px solid #006837;
}

.footer__step-item::before {
    content: attr(data-text);
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: bold;
    margin-right: 3px;
}

.footer__step-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 2;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 6px;
    border-color: transparent transparent transparent #fff;
    -webkit-transition: border-color .4s;
    -moz-transition: border-color .4s;
    transition: border-color .4s;

    z-index: 1;
}

.footer__step-item:last-child::after {
    display: none;
}

.footer__step-item--active {
    color: #fff;
    background-color: #006837;
}

.footer__step-item--active::after {
    border-color: transparent transparent transparent #006837;

    z-index: 3;
}

.footer__step-item img {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 2;
}

.footer__step-item:first-child {
    border-left: 1px solid #006837;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.footer__step-item:last-child {
    border-right: 1px solid #006837;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .4);
}

.lightbox__box {
    width: calc(100% - 50px);
    max-width: 450px;
    position: relative;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
}

.lightbox__title {
    color: #333;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 25px;
}

.lightbox__text {
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 25px;
}

.lightbox__btn {
    display: block;
    width: 160px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #FFF;
    padding: 10px 0;
    margin: 0 auto;
    background-color: #4d4d4d;
    border-style: solid;
    border-color: #333;
    border-width: 0 0 4px 0;
    -webkit-transition: border-width .2s, transform .2s;
    -moz-transition: border-width .2s, transform .2s;
    -ms-transition: border-width .2s, transform .2s;
    -o-transition: border-width .2s, transform .2s;
    transition: border-width .2s, transform .2s, padding .2s;
}

.lightbox__btn:hover {
    border-width: 0;
    padding: 12px 0;
    transform: translateY(4px);
}

.lightbox__close,
.lightbox_logout__close,
.lightbox_application__close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
}

@media (max-width: 1699px) {
    .main:not(.main__guide) .copyright__mobile {
        display: block;
        color: #999;
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        margin: 20px 0 0;
    }
    .footer__step {
        padding: 15px 0 0;
    }
    .footer__step-itembox {
        position: static;
        margin-bottom: 15px;
    }
    .footer__step .copyright {
        display: none;
    }
    .footer__step .footer__btnbox {
        width: 100%;
        justify-content: center;
        flex-direction: row;
    }
    .step__letter {
        width: 50%;
        font-size: 16px;
        border-radius: 0;
    }
    .step__cancel {
        width: 50%;
        font-size: 16px;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width:1699px) and (min-width:992px) {
    .main {
        padding: 50px 0 140px;
    }
}

@media (max-width:1199px) {
    .footer__step {
        flex-direction: column;
    }
    .footer__step-item {
        width: auto;
        padding: 0 20px 0 25px;
    }
}

@media (max-width:991px) {
    .body__step {
        padding-top: 60px;
    }
    .main {
        padding: 30px 0 112px;
    }
    .item__step {
        padding: 30px 15px;
    }
    .item__step .item__title {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .step__bottom {
        padding-top: 15px;
        margin-top: 15px;
    }
    .footer__step-item {
        line-height: 1.2;
        background-color: transparent;
        border: none !important;
        -webkit-border-radius: 0;
                border-radius: 0;
    }
    .footer__step-item:not(.footer__step-item--active) {
        display: none;
    }
    .footer__step-item::after {
        display: none;
    }
    .footer__step-item img {
        display: none;
    }
}

@media (max-width:575px) {
    .step__bottom {
        flex-direction: column;
    }
    .step__bottom-text {
        line-height: 1.5;
    }
}


/* 申請步驟 1-1 end */


/* 申請步驟 1-2 */

.item__subtitle {
    color: #4bb134;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
}

.password__icon {
    position: absolute;
    bottom: 14px;
    right: 15px;
    display: block;
    width: 16px;
}

.password__icon-open {
    display: block;
}

.password__icon-close {
    display: none;
}

.password__icon--open .password__icon-close {
    display: block;
}

.password__icon--open .password__icon-open {
    display: none;
}

.password__icon+input {
    padding-right: 45px;
}


/* 申請步驟 1-2 end */


/* 申請步驟 2-1 */

.item__titlebox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.item__titlebox .item__title {
    margin: 0;
}

.company__info-title {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3125;
    text-align: right;
}

.company__info-title a {
    color: #4bb134;
    text-decoration: underline;
    margin-left: 7px;
    -webkit-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s;
}

.company__info-title a:hover {
    opacity: .8;
}

.number__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
}

.number__box-text {
    font-family: 'Montserrat';
    color: #555;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
}

.number__box-text::before {
    content: attr(data-text);
    font-family: 'Noto Sans TC', '微軟正黑體';
}

.number__box-text:nth-child(n + 2) {
    margin-left: 12px;
}

.step__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.step__tab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #aaa;
    font-size: 18px;
    line-height: 1;
    padding: 10px 15px;
    margin-left: 10px;
    border: 1px solid #aaa;
    border-radius: 3px;
    -webkit-transition: color .4s, background-color .4s, border-color .4s;
    -moz-transition: color .4s, background-color .4s, border-color .4s;
    transition: color .4s, background-color .4s, border-color .4s;
}

.step__tab:hover {
    border-color: #333;
}

.step__tab:first-child {
    margin: 0;
}

.step__tab--active {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

.step__tab img {
    margin-right: 5px;
}

.active__img {
    display: none;
}

.step__tab--active .active__img {
    display: block;
}

.step__tab--active .normal__img {
    display: none;
}

.step__form-box .step__form {
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s;
}

.step__form-box .step__form--open {
    height: auto;
    overflow: visible;
    opacity: 1;
}

.step__bottom-btnbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.save__btn {
    width: 160px;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    color: #FFF;
    background-color: #4bb134;
    border-style: solid;
    border-color: #006837;
    border-width: 0 0 4px 0;
    margin-right: 10px;
    -webkit-transition: border-width .2s, margin-top .2s;
    -moz-transition: border-width .2s, margin-top .2s;
    -ms-transition: border-width .2s, margin-top .2s;
    -o-transition: border-width .2s, margin-top .2s;
    transition: border-width .2s, margin-top .2s;

    cursor: pointer;
}

.save__btn:hover {
    margin-top: 4px;
    border-width: 0;
}

.upload__row {
    margin-top: 30px;
}

.upload__row:first-child {
    margin: 0;
}

.upload__title {
    position: relative;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    padding-left: 28px;
    margin-bottom: 10px;
}

.upload__title img {
    position: absolute;
    top: 7px;
    left: 0;
    height: 16px;
}

.upload__title span {
    color: #777;
    font-size: 16px;
    font-weight: 300;
}

.selectfile {
    display: none;
}

.file__label {
    display: block;
    width: 120px;
    color: #999;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: color .4s, border-color .4s;
    -moz-transition: color .4s, border-color .4s;
    transition: color .4s, border-color .4s;
}

.file__label:hover {
    color: #555;
    border-color: #555;
}

.upload__inputblock {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.upload__inputbox {
    position: relative;
    width: calc(100% - 130px);
    max-width: 600px;
}

.upload__input {
    width: 100%;
    height: 30px;
    font-family: 'Montserrat', 'Noto Sans TC', '微軟正黑體';
    color: #555;
    font-size: 16px;
    padding: 0 35px 0 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.upload__input-close {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 13px;
}

.re__upload {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 120px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    background-color: #4bb134;
    border-radius: 3px;
    margin-left: 10px;
    cursor: pointer;
    -webkit-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s;
}

.re__upload:hover {
    opacity: .8;
}

.re__upload img {
    width: 12px;
    margin-right: 5px;
}

.process__bar-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.process__bar-box::after {
    content: '上傳中';
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    margin-left: 10px;
}

.process__bar {
    width: calc(100% - 130px);
    max-width: 600px;
    height: 30px;
    border: 1px solid #f6921e;
    border-radius: 3px;
    background: -webkit-linear-gradient(-45deg, #ffc257 0%, #ffc257 20%, #f6921e 20%, #f6921e 45%, #ffc257 45%, #ffc257 70%, #f6921e 70%, #f6921e 95%, #ffc257 95%, #ffc257 100%);
    background-size: 30px 30px;
    background-position: 0 0;
    animation: process_bar 0.5s infinite linear;
}

@keyframes process_bar {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 0;
    }
}

@media (max-width:991px) {
    .company__info {
        width: 100%;
        margin-top: 10px;
    }
    .company__info-title {
        text-align: left;
    }
    .number__box {
        justify-content: flex-start;
    }
}

@media (max-width:767px) {
    .step__bottom {
        flex-direction: column;
    }
    .step__bottom-text {
        width: 100%;
        max-width: none;
        padding: 0 0 20px;
    }
}

@media (max-width:575px) {
    .item__titlebox {
        margin-bottom: 20px;
    }
    .step__tabs {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .step__tab {
        margin: 10px 0 0;
    }
    .process__bar-box::after {
        display: none;
    }
    .process__bar {
        width: 100%;
    }
    .upload__row {
        margin-top: 15px;
    }
    .upload__inputbox {
        width: 100%;
    }
    .re__upload {
        margin: 10px 0 0;
    }
    .step__bottom-btnbox {
        flex-direction: column;
    }
    .save__btn {
        margin: 0 0 10px;
    }
}


/* 申請步驟 2-1 end */


/* 申請步驟 3 */

.step__return {
    width: 160px;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    color: #FFF;
    background-color: #4d4d4d;
    border-style: solid;
    border-color: #333;
    border-width: 0 0 4px 0;
    -webkit-transition: border-width .2s, margin-top .2s;
    -moz-transition: border-width .2s, margin-top .2s;
    -ms-transition: border-width .2s, margin-top .2s;
    -o-transition: border-width .2s, margin-top .2s;
    transition: border-width .2s, margin-top .2s;
}

.step__return:hover {
    margin-top: 4px;
    border-width: 0;
}

.success {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.success .number__box-text {
    font-size: 14px;
}

.success .number__box {
    margin-top: 30px;
}

.success__title {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 12px;
}

.success__text {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin-top: 7px;
}

@media (max-width:991px) {
    .success img {
        width: 140px;
    }
    .success__title {
        font-size: 22px;
    }
}
/* 申請步驟 3 end */


/* 廠商登入 */
.login+.verify__more-btn {
    display: block;
    margin-top: 30px;
}
.login+.verify__more-btn:hover {
    margin-top: 34px;
}

@media (max-width:575px) {
    .login+.verify__more-btn {
        margin: 20px auto 0;
    }
    .login+.verify__more-btn:hover {
        margin: 24px auto 0;
    }
    }
}
/* 廠商登入 end */


/* 引導頁面 */

.main__guide {
    padding: 66px 0 130px;
}

.guide {
    position: relative;
    padding: 150px 40px 60px;
    background-color: #fff;
    border-top: 10px solid #006837;
    -webkit-box-shadow: 0 0 5px rgba(127, 127, 127, .15);
    -moz-box-shadow: 0 0 5px rgba(127, 127, 127, .15);
    box-shadow: 0 0 5px rgba(127, 127, 127, .15);
}

.guide__title {
    position: absolute;
    top: -26px;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.guide__title::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 0 5px;
    border-color: transparent transparent transparent #013a1e;
}

.guide__item:nth-child(n + 2) {
    margin-top: 60px;
}

.guide__item-title {
    position: relative;
    color: #4bb134;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 15px 26px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.guide__item-title img {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
}

.guide__item-text {
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
}

.guide__block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 4.5%;
}

.guide__block-img {
    width: 35%;
}

.guide__step {
    width: 53%;
}

.guide__step-text {
    color: #767676;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
}

.guide__step-itembox {
    margin: 20px 0;
}

.guide__step-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
}

.guide__step-item:first-child {
    margin: 0;
}

.guide__step-item img {
    width: 70px;
}

.guide__step-content {
    width: calc(100% - 70px);
    padding-left: 10px;
}

.guide__step-content p {
    color: #4d4d4d;
    font-size: 18px;
    line-height: 1.2;
}

.guide__step-content span {
    font-family: 'Montserrat', '微軟正黑體';
    color: #f6921e;
    font-weight: 500;
}

.guide__check {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-right: 36px;
}

.guide__check-img {
    width: 270px;
}

.guide__check-content {
    width: calc(100% - 270px);
    padding-right: 36px;
}

.guide__check-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    background-color: #f2f2f2;
    border-radius: 40px;
    margin-top: 15px;
}

.guide__check-item:first-child {
    margin: 0;
}

.guide__check-item img {
    width: 60px;
}

.guide__check-item p {
    max-width: calc(100% - 60px);
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    padding-left: 10px;
}

@media (max-width:991px) {
    .main__guide {
        padding: 36px 0 60px;
    }
    .guide__item:nth-child(n + 2) {
        margin-top: 20px;
    }
    .guide__block {
        align-items: center;
        flex-direction: column-reverse;
        padding: 0;
    }
    .guide__step {
        width: 100%;
        margin-bottom: 15px;
    }
    .guide__step-itembox {
        margin: 10px 0;
    }
    .guide__block-img {
        width: 100%;
        max-width: 350px;
    }
    .guide__check {
        align-items: center;
        flex-direction: column;
        padding: 0;
    }
    .guide__check-content {
        width: 100%;
        padding: 0 0 15px;
    }
}

@media (max-width:991px) and (min-width:576px) {
    .guide {
        padding: 120px 30px 30px;
    }
    .guide__title {
        width: 350px;
    }
}

@media (max-width:575px) {
    .guide {
        padding: 100px 20px 20px;
    }
    .guide__title {
        width: 230px;
    }
}

.new-survey {
    width: 100%;
}

.new-survey__item {
    width: 100%;
}
.new-survey__item:nth-child(n + 2) {
    padding-top: 25px;
    margin-top: 30px;

    border-top: 1px dashed #ddd;
}

.new-survey__title {
    width: 100%;
    margin-bottom: 15px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
}
.new-survey__title span {
    color: #f6921e;
}

.new-survey__radio {
    display: block;

    cursor: pointer;
}
.new-survey__radio input {
    display: none;
}
.new-survey__radio p {
    position: relative;

    padding-left: 30px;

    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}
.new-survey__radio p::before {
    content: "";

    position: absolute;
    top: 2px;
    left: 0;

    width: 20px;
    height: 20px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-radius: 50%;

    box-sizing: border-box;

    transition: background-color .3s;
}
.new-survey__radio input:checked + p::after {
    content: "";

    position: absolute;
    top: 6px;
    left: 4px;

    width: 12px;
    height: 12px;

    background-color: #4bb134;

    border-radius: 50%;

    box-sizing: border-box;
}
.new-survey__radio:hover p::before {
    background-color: #eee;
}

@media (min-width: 576px) {
    .new-survey__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;

        width: 100%;
    }
    .new-survey__list .new-survey__radio:nth-child(n + 2) {
        margin-left: 25px;
    }
}
@media (max-width: 575px) {
    .new-survey__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        flex-direction: column;

        width: 100%;
    }
    .new-survey__list .new-survey__radio {
        display: inline-block;
    }
    .new-survey__list .new-survey__radio:nth-child(n + 2) {
        margin-top: 10px;
    }
}

.new-survey__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;

    width: 100%;
}
.new-survey__row .new-survey__radio {
    display: inline-block;
}
.new-survey__row .new-survey__radio:nth-child(n + 2) {
    margin-top: 10px;
}

.new-survey__box {
    width: 100%;
    padding-left: 30px;
    margin-top: 10px;
}

.new-survey__inputlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;

    width: 100%;
}
.new-survey__inputlist:nth-child(2) {
    margin-top: 15px;
}
.new-survey__inputlist p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}
.new-survey__inputlist input {
    width: 180px;
    height: 36px;
    padding: 0 10px;
    margin-right: 5px;

    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-radius: 3px;

    transition: background-color .3s;
}
.new-survey__inputlist input:not(:read-only):hover {
    background-color: #eee;
}
.new-survey__inputlist input:not(:read-only):focus {
    background-color: #fff;
}

.new-survey__boxrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;

    width: 100%;
}
.new-survey__boxrow .new-survey__radio {
    display: inline-block;
}
.new-survey__boxrow .new-survey__radio:nth-child(n + 2):nth-child(odd) {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .new-survey__inputlist input {
        width: 150px;
        margin-right: 0;
    }
    .new-survey__inputlist p:nth-child(3) {
        width: 100%;
        padding-left: 75px;
        margin-top: 5px;
    }
}

/* 引導頁面 end */