@charset "UTF-8";
.bannerArea .bannerItem .Txt .bannerBtn a .arrowBox,
.bannerArea .socialBox .socialList li,
.bannerArea .socialBox .socialList li a svg,
.bannerArea .videoBox,
.ctaArea .ctaContent .formList .checkArea .btn a .arrowBox,
.facArea .facListCenter .item .centerTxt,
.newsArea .slickArrowBox .arrow:before {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
@-webkit-keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@-webkit-keyframes bannerZoom {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes bannerZoom {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.popWin {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    line-height: 1.8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.popWin .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.popWin .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 700px;
    max-width: 90%;
    max-height: 85vh;
    opacity: 0;
    background-color: #fff;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.popWin .popContent {
    max-height: 85vh;
    overflow-y: auto;
}
.popWin img {
    display: block;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.popWin .Txt {
    padding: 30px;
}
.popWin .Txt .popTitle {
    font-size: 25px;
    margin-bottom: 25px;
}
.popWin .close {
    position: absolute;
    right: -23px;
    top: -23px;
    z-index: 1;
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
}
.popWin .close:after,
.popWin .close:before {
    content: "";
    position: absolute;
    left: 11px;
    top: 23px;
    width: 25px;
    height: 1px;
    background-color: #bca480;
}
.popWin .close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.popWin.show .inner,
.popWin.show .mask {
    opacity: 1;
}
.popWin .close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media (max-width: 1180px) {
    .popWin .close {
        right: 0;
        top: 0;
        border-radius: 0;
    }
    .popWin .popContent {
        max-height: calc(100vh - 150px);
    }
}
.mainArea {
    padding: 0;
}
.bannerArea .bannerBox {
    position: relative;
}
.bannerArea .videoBox {
    pointer-events: none;
    width: 100%;
    aspect-ratio: 16/9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}
.bannerArea .videoBox.pause {
    opacity: 0;
}
.bannerArea .videoBox .controllerList {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.bannerArea .videoBox #player {
    pointer-events: none;
}
@media (max-width: 1180px) {
    .bannerArea .videoBox {
        width: auto;
        height: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
.bannerArea .bannerVideo .videoBtn {
    z-index: 5;
    width: 75px;
    height: 75px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 480px) {
    .bannerArea .bannerVideo .videoBtn {
        top: 80%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
.bannerArea .bannerVideo .videoBtn:before {
    content: "";
    opacity: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 15px;
    border-color: transparent transparent transparent #c9a063;
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 4px);
    z-index: 3;
}
.bannerArea .bannerVideo .videoBtn svg {
    width: 27px;
    height: 27px;
    stroke: #c9a063;
    position: absolute;
    top: calc(50% - 13px);
    left: calc(50% - 13px);
    z-index: 3;
}
.bannerArea .bannerVideo .videoBtn:after {
    content: "";
    border: 1px dashed #fff;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    width: 75%;
    height: 75%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bannerArea .bannerVideo .videoBtn.pause:before {
    opacity: 1;
}
.bannerArea .bannerVideo .videoBtn.pause svg {
    opacity: 0;
}
.bannerArea .bannerList {
    position: relative;
    z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
    margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1540px;
    padding: 110px 20px 85px;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-shadow: 0px 0px 10px #222;
}
@media (max-width: 1560px) {
    .bannerArea .bannerItem .Txt {
        padding: 110px 90px 85px;
    }
}
.bannerArea .bannerItem .Txt .textBox {
    max-width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .textBox {
        max-width: 70%;
    }
}
@media (max-width: 480px) {
    .bannerArea .bannerItem .Txt .textBox {
        max-width: 100%;
    }
}
.bannerArea .bannerItem .Txt .title {
    color: #fff;
    font-size: 82px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 2px;
    opacity: 0;
    text-transform: uppercase;
    text-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .title {
        font-size: 58px;
    }
}
@media (max-width: 767px) {
    .bannerArea .bannerItem .Txt .title {
        font-size: 36px;
    }
}
.bannerArea .bannerItem .Txt .subtitle {
    color: #fff;
    display: block;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0;
    font-weight: 400;
    text-shadow: 0px 0px 19px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .bannerArea .bannerItem .Txt .subtitle {
        font-size: 24px;
    }
}
.bannerArea .bannerItem .Txt .text {
    color: #fff;
    display: block;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-top: 10px;
    opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn {
    opacity: 0;
    padding-top: 30px;
}
.bannerArea .bannerItem .Txt .bannerBtn a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.5px;
    padding: 15px 20px 15px 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 16px;
}
.bannerArea .bannerItem .Txt .bannerBtn a .arrowBox {
    width: 56px;
    height: 56px;
    border: 1px solid #fff;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.bannerArea .bannerItem .Txt .bannerBtn a .arrowBox i {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
    color: #fff;
    width: 14px;
    height: 14px;
    font-size: 13px;
}
@media (max-width: 1580px) {
    .bannerArea .bannerItem .Txt .bannerBtn a .arrowBox {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
    color: #c9a063;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover .arrowBox {
    border-color: #c9a063;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover .arrowBox i {
    color: #c9a063;
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt {
        padding: 90px 30px 85px;
    }
}
@media (max-width: 960px) {
    .bannerArea .bannerItem .Txt {
        /*padding: 20px;*/
        padding: 150px 30px 85px;
    }
}
.bannerArea .bannerItem .Img.zoom {
    -webkit-animation: bannerZoom 15s ease;
    animation: bannerZoom 15s ease;
}
.bannerArea .bannerItem .Img img {
    min-height: 580px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 767px) {
    .bannerArea .bannerItem .Img {
        min-height: 550px;
    }
}
.bannerArea .slick-current .Txt .title {
    -webkit-animation: textSlideUpAnimation 0.8s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .subtitle {
    -webkit-animation: textSlideUpAnimation 0.8s 0.4s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
    -webkit-animation: textSlideUpAnimation 0.8s 0.8s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .bannerBtn {
    -webkit-animation: textSlideUpAnimation 0.8s 1.2s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .videoBtn:after {
    -webkit-animation: rotate 50s linear forwards;
    animation: rotate 50s linear forwards;
}
.bannerArea .socialBox {
    display: block;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.bannerArea .socialBox .socialList {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.bannerArea .socialBox .socialList li {
    margin: 7.5px 0;
}
.bannerArea .socialBox .socialList li:first-child {
    margin-top: 0;
}
.bannerArea .socialBox .socialList li:last-child {
    margin-bottom: 0;
}
.bannerArea .socialBox .socialList li a {
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
    width: 20px;
    height: 18px;
    display: inline-block;
    fill: #fff;
    margin-top: -2px;
    vertical-align: middle;
}
.bannerArea .socialBox .socialList li a:hover {
    color: #c9a063;
}
.bannerArea .socialBox .socialList li a:hover svg {
    fill: #c9a063;
}
.bannerArea .scrollDown {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 50%;
    left: 50px;
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
    z-index: 2;
}
.bannerArea .scrollDown span {
    display: block;
}
.bannerArea .scrollDown span.text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
    width: 1px;
    height: 60px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    bottom: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.bannerArea .scrollDown span.line:before {
    content: "";
    width: 2px;
    height: calc(100% + 20px);
    -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
    animation: bannerScrollAnimation 2.5s linear infinite forwards;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.bannerArea .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    bottom: 5%;
    right: 50px;
}
.bannerArea .slick-dots li {
    width: 15px;
    height: 15px;
    margin: 0 10px;
}
.bannerArea .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}
.bannerArea .slick-dots li button:before {
    content: "";
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}
.bannerArea .slick-dots li.slick-active button:before {
    border: 1px solid #fff;
    background-color: #fff;
    opacity: 1;
}
.bannerArea .slick-dots li.slick-active button:after {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    left: 46%;
    top: 43%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
    .bannerArea .scrollDown,
    .bannerArea .slick-dots {
        display: none !important;
    }
}
.facArea .slick-dots,
.newsArea .slick-dots,
.processArea .slick-dots {
    width: auto;
}
.facArea .slick-dots button:before,
.newsArea .slick-dots button:before,
.processArea .slick-dots button:before {
    color: #c9a063;
}
.facArea .slick-dots .slick-active button:before,
.facArea .slick-dots:hover button:before,
.newsArea .slick-dots .slick-active button:before,
.newsArea .slick-dots:hover button:before,
.processArea .slick-dots .slick-active button:before,
.processArea .slick-dots:hover button:before {
    color: #c9a063;
}
.facArea .slick-dots .slick-active button:after,
.newsArea .slick-dots .slick-active button:after,
.processArea .slick-dots .slick-active button:after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #c9a063;
    position: absolute;
    left: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media (max-width: 1580px) {
    .facArea .slick-dots,
    .newsArea .slick-dots,
    .processArea .slick-dots {
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}
.facArea {
    padding: 120px 0 120px;
    background-image: url(../images/bg-case.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
}
@media (max-width: 960px) {
    .facArea {
        padding: 60px 0;
    }
}
.facArea .facBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
@media (max-width: 1680px) {
    .facArea .facBox {
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }
}
@media (max-width: 1180px) {
    .facArea .facBox {
        margin: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.facArea .facBox .titleBox {
    pointer-events: none;
    width: 100%;
    z-index: 3;
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
}
@media (max-width: 1680px) {
    .facArea .facBox .titleBox {
        right: 10%;
    }
}
@media (max-width: 1180px) {
    .facArea .facBox .titleBox {
        position: relative;
        text-align: center;
        right: 0;
    }
}
.facArea .facItem {
    pointer-events: auto;
}
.facArea .facItem .item {
    width: 100%;
}
.facArea .facListLeft,
.facArea .facListRight {
    max-width: 395px;
}
.facArea .facListRight .facItem {
    padding-top: 225px;
    padding-right: 0;
}
@media (max-width: 1180px) {
    .facArea .facListRight .facItem {
        padding-top: 0;
    }
}
@media (max-width: 1180px) {
    .facArea .facListRight {
        display: none;
    }
}
.facArea .facListLeft .facItem {
    padding-left: 0;
}
@media (max-width: 1680px) {
    .facArea .facListLeft {
        display: none;
    }
}
.facArea .facListLeft .slick-dots {
    bottom: 22%;
    right: 0;
}
@media (max-width: 1680px) {
    .facArea .facListLeft .slick-dots {
        display: none;
    }
}
.facArea .facListCenter {
    width: 100%;
    max-width: 580px;
}
.facArea .facListCenter .item {
    width: 100%;
}
.facArea .facListCenter .item .Img a {
    width: 100%;
    height: 100%;
    display: block;
}
.facArea .facListCenter .item .centerTxt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    bottom: 40px;
    left: 40px;
    border-left: 2px solid #fff;
}
.facArea .facListCenter .item .centerTxt a {
    color: #fff;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 30px;
    -webkit-text-decoration: border;
    text-decoration: border;
    padding: 0 4px;
    font-weight: 400;
    letter-spacing: 2px;
}
.facArea .facListCenter .item .centerTxt .titleEn a {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
}
.facArea .facListCenter .item .centerTxt:hover {
    border-color: #c9a063;
}
.facArea .facListCenter .item .centerTxt:hover a {
    color: #c9a063;
}
@media (max-width: 1180px) {
    .facArea .facListCenter .item .centerTxt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
        bottom: 40px;
        left: 40px;
        border-left: 2px solid #fff;
    }
    .facArea .facListCenter .item .centerTxt a {
        color: #fff;
        -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 30px;
        -webkit-text-decoration: border;
        text-decoration: border;
        padding: 0 4px;
        font-weight: 400;
        letter-spacing: 2px;
    }
    .facArea .facListCenter .item .centerTxt .titleEn a {
        font-size: 24px;
        font-weight: 500;
        line-height: 1.8;
    }
    .facArea .facListCenter .item .centerTxt:hover {
        border-color: #c9a063;
    }
    .facArea .facListCenter .item .centerTxt:hover a {
        color: #c9a063;
    }
}
@media (max-width: 540px) {
    .facArea .facListCenter .item .centerTxt {
        left: 20px;
        bottom: 20px;
    }
    .facArea .facListCenter .item .centerTxt a {
        font-size: 20px;
    }
    .facArea .facListCenter .item .centerTxt .titleEn a {
        font-size: 16px;
    }
}
.facArea .facListCenter .slick-dots {
    width: 100%;
    bottom: -10%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.facArea .slick-list {
    z-index: 2;
    pointer-events: none;
}
.facArea .slick-dots button:before {
    color: #c9a063;
}
.facArea .slick-dots .slick-active button:before,
.facArea .slick-dots:hover button:before {
    color: #c9a063;
}
.facArea .slick-dots .slick-active button:after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #c9a063;
    position: absolute;
    left: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.facArea .item {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.facArea .item:hover .Txt {
    top: 0;
    opacity: 1;
}
.facArea .Img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.facArea .Img img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.facArea .Txt {
    position: absolute;
    left: 0;
    top: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.facArea .Txt .title,
.facArea .Txt .titleEn {
    display: block;
    width: 100%;
}
.facArea .Txt .title a,
.facArea .Txt .titleEn a {
    display: block;
    padding-bottom: 2px;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.5px;
    color: #fff;
}
.facArea .Txt .titleEn a {
    font-size: 16px;
    position: relative;
    padding-bottom: 20px;
}
.facArea .Txt .titleEn a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    width: 32px;
    height: 1px;
}
.facArea .Txt .text {
    display: block;
    width: 100%;
    height: 46px;
    font-size: 13px;
    color: #fff;
    line-height: 1.8;
}
.facArea .Txt .moreBtn {
    position: absolute;
    right: 7%;
    bottom: 6%;
    margin-left: auto;
    margin-right: 0;
}
.facArea .Txt .moreBtn a .arrowBox {
    width: 80px;
    height: 80px;
    border-color: #fff;
}
.facArea .Txt .moreBtn a .arrowBox i {
    color: #fff;
}
.facArea .Txt .moreBtn a:hover {
    color: #c9a063;
}
.facArea .Txt .moreBtn a:hover .arrowBox {
    border-color: #c9a063;
    background-color: transparent;
}
.facArea .Txt .moreBtn a:hover .arrowBox i {
    color: #c9a063;
}
.aboutArea {
    padding: 0 0 85px;
    background-image: url(../images/bg.jpg);
    position: relative;
}
@media (max-width: 540px) {
    .aboutArea {
        padding: 0 0 45px;
    }
}
.aboutArea .abLogo {
    pointer-events: none;
    width: 83.5%;
    left: 0%;
    top: -30%;
    position: absolute;
}
.aboutArea .abLogo img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*max-width: 525px;*/
}
@media (max-width: 1320px) {
    .aboutArea .abLogo {
        top: -30%;
    }
    .aboutArea .abLogo img {
        width: 100%;
        object-fit: cover;
        height: 976px !important;
    }
}
@media (max-width: 1180px) {
    .aboutArea .abLogo {
        top: -20%;
    }
    .aboutArea .abLogo img {
        height: 776px !important;
    }
}

@media (max-width: 980px) {
    .aboutArea .abLogo {
        top: -15%;
    }
    .aboutArea .abLogo img {
        height: 676px !important;
    }
}

@media (max-width: 640px) {
    .aboutArea .abLogo {
        top: -15%;
    }
    .aboutArea .abLogo img {
        height: 476px !important;
    }
}

@media (max-width: 1180px) {
    .aboutArea .abLogo {
        top: -20%;
    }
    .aboutArea .abLogo img {
        height: 976px;
    }
}

.aboutArea .square {
    width: 100%;
    left: 0%;
    bottom: 0%;
    position: absolute;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
}
.aboutArea .square img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    max-width: 586px;
}
@media (max-width: 1180px) {
    .aboutArea .square {
        display: none;
    }
}
.aboutArea .titleBox {
    padding-bottom: 20px;
}
.aboutArea .titleEn {
    line-height: 1;
}
.aboutArea .aboutContent {
    position: relative;
    z-index: 2;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1180px) {
    .aboutArea .aboutContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.aboutArea .aboutContent .Img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.aboutArea .aboutContent .Img img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}
.aboutArea .aboutContent .right {
    width: 35%;
    padding-left: 75px;
}
@media (max-width: 1180px) {
    .aboutArea .aboutContent .right {
        width: 100%;
        padding-left: 0;
    }
}
.aboutArea .aboutContent .right .Txt .intro {
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.aboutArea .aboutContent .right .Txt .intro .introTitle {
    font-size: 20px;
    color: #0d0d0d;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 20px;
}
.aboutArea .aboutContent .right .Txt .intro .introTitle:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    background-color: #bfbfbf;
    width: 45px;
    height: 2px;
}
.aboutArea .aboutContent .right .Txt .intro .content {
    line-height: 1.8;
    padding-top: 20px;
    font-size: 15px;
    color: #4c4c4c;
    letter-spacing: 0.8px;
}
.aboutArea .aboutContent .right .title {
    margin-left: auto;
    margin-right: 0;
    text-align: center;
    max-width: 280px;
    font-size: 72px;
    color: #8c8c8c;
    letter-spacing: 0.4px;
    font-weight: 500;
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    position: relative;
}
.aboutArea .aboutContent .right .title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url(../images/x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 194%;
    z-index: -1;
}
.aboutArea .aboutContent .right .title:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -15%;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    background-color: #c9a063;
    width: 281px;
    height: 7px;
}
@media (max-width: 1180px) {
    .aboutArea .aboutContent .right .title {
        text-align: center;
        -webkit-transform: none;
        transform: none;
        font-size: 54px;
        margin-bottom: 8px;
    }
    .aboutArea .aboutContent .right .title:after {
        display: none;
    }
}
@media (max-width: 640px) {
    .aboutArea .aboutContent .right .title {
        max-width: 165px;
        font-size: 36px;
    }
}
.aboutArea .aboutContent .right .moreBtn {
    margin-top: 20px;
}
.processArea {
    padding: 170px 0 105px;
}
@media (max-width: 1180px) {
    .processArea {
        padding: 80px 0;
    }
}
@media (max-width: 640px) {
    .processArea {
        padding: 40px 0;
    }
}
.processArea .titleBox {
    text-align: left;
}
.processArea .titleBox .titleEn {
    line-height: 1;
}
@media (max-width: 1180px) {
    .processArea .titleBox {
        text-align: center;
    }
}
.processArea .processList,
.processArea .processMList {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 40px;
}
.processArea .processList .linkItem,
.processArea .processMList .linkItem {
    border-right: 1px solid #dedede;
    width: 25%;
}
.processArea .processList .linkItem .moreBtn a,
.processArea .processMList .linkItem .moreBtn a {
    font-weight: 500;
    padding: 25px 0;
}
.processArea .processList .linkItem .moreBtn a:hover,
.processArea .processMList .linkItem .moreBtn a:hover {
    color: #262626;
}
.processArea .processList .processItem,
.processArea .processMList .processItem {
    position: relative;
    width: 25%;
    padding: 35px 35px 100px 35px;
    border: 1px solid #dedede;
}
.processArea .processList .processItem:nth-child(2),
.processArea .processList .processItem:nth-child(4),
.processArea .processMList .processItem:nth-child(2),
.processArea .processMList .processItem:nth-child(4) {
    border: 1px solid #dedede;
    border-color: transparent #dedede #dedede transparent;
    border-radius: 0 0 23% 0;
}
.processArea .processList .processItem:nth-child(3),
.processArea .processMList .processItem:nth-child(3) {
    border: 1px solid #dedede;
    border-color: #dedede #dedede transparent transparent;
    border-radius: 0 23% 0 0;
}
.processArea .processList .processItem:nth-child(8),
.processArea .processMList .processItem:nth-child(8) {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
    border-color: transparent transparent #dedede #dedede;
    border-radius: 0 0 0 23%;
}
.processArea .processList .processItem:nth-child(7),
.processArea .processMList .processItem:nth-child(7) {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
    border-color: #dedede transparent transparent #dedede;
    border-radius: 23% 0 0 0;
}
.processArea .processList .processItem:nth-child(6),
.processArea .processMList .processItem:nth-child(6) {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
    border-color: transparent transparent #dedede #dedede;
    border-radius: 0 0 0 23%;
}
.processArea .processList .processItem:nth-child(5),
.processArea .processMList .processItem:nth-child(5) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
    border-color: #dedede transparent transparent #dedede;
    border-radius: 23% 0 0 0;
}
/*
.processArea .processList .processItem:nth-child(9),
.processArea .processMList .processItem:nth-child(9) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    border-color: transparent transparent #dedede #dedede;
    border-radius: 0 0 0 23%;
}
.processArea .processList .processItem:nth-child(10),
.processArea .processMList .processItem:nth-child(10) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    border-color: #dedede transparent transparent #dedede;
    border-radius: 23% 0 0 0;
}
*/
.processArea .processList .processItem .step,
.processArea .processMList .processItem .step {
    right: 14%;
    bottom: 7%;
    position: absolute;
    font-size: 15px;
    color: #999999;
}
.processArea .processList .processItem .step span,
.processArea .processMList .processItem .step span {
    font-size: 35px;
    font-family: "Times New Roman";
}
@media (max-width: 1320px) {
    .processArea .processList .processItem,
    .processArea .processMList .processItem {
        padding: 25px 25px 60px 25px;
    }
}
.processArea .processList .processMItem,
.processArea .processMList .processMItem {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    padding: 0 10px;
}
@media (max-width: 400px) {
    .processArea .processList .processMItem,
    .processArea .processMList .processMItem {
        padding: 0;
    }
}
.processArea .processList .processMItem .item,
.processArea .processMList .processMItem .item {
    padding: 35px 35px 100px 35px;
}
.processArea .processList .processMItem .step,
.processArea .processMList .processMItem .step {
    right: 14%;
    bottom: 7%;
    position: absolute;
    font-size: 15px;
    color: #999999;
}
.processArea .processList .processMItem .step span,
.processArea .processMList .processMItem .step span {
    font-size: 35px;
    font-family: "Times New Roman";
}
.processArea .processList .Img,
.processArea .processMList .Img {
    max-width: 50px;
}
.processArea .processList .Img img,
.processArea .processMList .Img img {
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.processArea .processList .Txt .title,
.processArea .processMList .Txt .title {
    font-size: 18px;
    color: #0d0d0d;
    letter-spacing: 1px;
    padding: 12px 0;
    position: relative;
}
.processArea .processList .Txt .title:after,
.processArea .processMList .Txt .title:after {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0%;
    background-color: #d2d2d2;
    width: 38px;
    height: 2px;
}
.processArea .processList .Txt .intro,
.processArea .processMList .Txt .intro {
    padding-top: 12px;
    font-size: 16px;
    color: #4c4c4c;
    letter-spacing: 0.9px;
}
.processArea .processMList {
    display: none;
}
@media (max-width: 1180px) {
    .processArea .processList {
        display: none;
    }
    .processArea .processMList {
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
    }
    .processArea .processMList .slick-current + .slick-active .processMItem {
        border: 1px solid;
        border-color: transparent #c2c2c2 transparent #c2c2c2;
    }
    .processArea .processMList .Txt .intro {
        height: 75px;
    }
    .processArea .processMList .slick-dots {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .processArea .slick-dots {
        bottom: -17%;
    }
}
@media (max-width: 767px) {
    .processArea .processMList {
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
    }
    .processArea .processMList .slick-current + .slick-active .processMItem {
        border: 1px solid;
        border-color: transparent transparent transparent #c2c2c2;
    }
}

@media (max-width: 540px) {
.processArea .processList .Img,
.processArea .processMList .Img {
    max-width: 50px;
    text-align: center;
    margin: auto;
}
.processArea .processList .Txt,
.processArea .processMList .Txt {
    text-align: center;
}
.processArea .processList .Txt .title:after,
.processArea .processMList .Txt .title:after {
    left: calc(50% - 19px);;    
}
.processArea .titleBox {
    margin-bottom: 0;
}

}

@media (max-width: 400px) {
    .processArea .processMList {
        padding: 0;
    }
}
.newsArea {
    padding: 80px 0 100px;
    background-image: url(../images/bg-news.jpg);
}
@media (max-width: 640px) {
    .newsArea {
        padding: 40px 0;
    }
}
.newsArea .newsBox {
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.newsArea .newsBox.hide {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}
.newsArea .slickArrowBox {
    pointer-events: none;
    max-width: 680px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    top: 41%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.newsArea .slickArrowBox .arrow {
    pointer-events: auto;
}
@media (min-width: 1201px) {
    .newsArea .slickArrowBox .arrow:hover {
        background-color: #fff;
    }
}
.newsArea .slickArrowBox .arrow:before {
    content: "";
    border-style: solid;
    display: block;
    z-index: 2;
    width: 0;
    height: 0;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.newsArea .slickArrowBox .arrowPrev:before {
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-color: #fff transparent transparent #fff;
    -webkit-transform: rotate(-45deg) translate(1px, 2px);
    transform: rotate(-45deg) translate(1px, 2px);
    z-index: 2;
}
.newsArea .slickArrowBox .arrowPrev:hover:before {
    border-color: #c9a063 transparent transparent #c9a063;
}
.newsArea .slickArrowBox .arrowNext:before {
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg) translate(-1px, 2px);
    transform: rotate(45deg) translate(-1px, 2px);
}
.newsArea .slickArrowBox .arrowNext:hover:before {
    border-color: #c9a063 #c9a063 transparent transparent;
}
@media (max-width: 1560px) {
    .newsArea .slickArrowBox {
        max-width: 1180px;
    }
}
@media (max-width: 640px) {
    .newsArea .slickArrowBox {
        display: none;
    }
}
.newsArea .item {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    padding-top: 55px;
    max-width: 400px;
}
@media (max-width: 1560px) {
    .newsArea .item {
        margin: 0 auto;
    }
}
@media (max-width: 960px) {
    .newsArea .item {
        padding-top: 0;
    }
}
.newsArea .newsList .slick-center .item {
    padding-top: 0px;
}
.newsArea .newsItem {
    padding: 0 50px;
}
@media (max-width: 640px) {
    .newsArea .newsItem {
        padding: 10px;
    }
}
.newsArea .Img {
    width: 100%;
}
.newsArea .Img img {
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.newsArea .Txt {
    position: relative;
    padding: 16px 0px 20px;
}
.newsArea .Txt .newsInfoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 7px;
}
.newsArea .Txt .newsInfoBox .step {
    font-size: 50px;
    font-family: "Times New Roman";
    color: #808080;
}
.newsArea .Txt .newsInfoBox .titleEn {
    font-size: 25px;
    color: #c9a063;
    font-weight: 500;
}
.newsArea .Txt .title {
    display: block;
    font-size: 22px;
    color: #191919;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.newsArea .Txt .text {
    height: 76px;
    font-size: 14px;
    color: #4c4c4c;
    letter-spacing: 0.9px;
    line-height: 1.8;
}
.newsArea .Txt .moreBtn {
    padding-top: 10px;
}
.ctaArea {
    padding: 80px 0 0;
    background-image: url(../images/bg-cta.jpg);
}
@media (max-width: 480px) {
    .ctaArea {
        padding: 40px 0 0;
    }
}
.ctaArea .titleBox {
    text-align: left;
}
.ctaArea .titleBox .titleEn {
    line-height: 1;
    color: #f4efe8;
}
.ctaArea .ctaContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1580px) {
    .ctaArea .ctaContent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 1500px;
        padding: 0 20px;
    }
}
.ctaArea .ctaContent .formBox {
    padding: 85px 140px 95px 170px;
    background-color: #fff;
    width: 60%;
    position: relative;
}
.ctaArea .ctaContent .formBox:before {
    z-index: -1;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fff;
    bottom: 0;
    right: 0;
}
@media (max-width: 1580px) {
    .ctaArea .ctaContent .formBox {
        padding: 40px;
        width: 80%;
    }
}
@media (max-width: 1180px) {
    .ctaArea .ctaContent .formBox {
        padding: 40px 30px;
        width: 100%;
    }
}
.ctaArea .ctaContent .formList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 13px;
    color: #2f2f2f;
    margin-left: -10px;
    margin-right: -10px;
}
.ctaArea .ctaContent .formList [class^="g-"] {
    float: none;
    padding: 15px 7.5px;
}
@media (max-width: 1580px) {
    .ctaArea .ctaContent .formList [class^="g-"] {
        padding: 5px;
    }
}
.ctaArea .ctaContent .formList .left {
    margin-bottom: 15px;
}
.ctaArea .ctaContent .formList label {
    font-weight: 500;
    display: inline-block;
    margin-right: 7px;
    font-size: 15px;
    color: #191919;
}
.ctaArea .ctaContent .formList em {
    margin-right: 6px;
    font-style: normal;
    font-weight: 400;
    font-family: "新細明體", Verdana, Geneva, sans-serif;
    color: #c9a063;
}
.ctaArea .ctaContent .formList .inputStyle,
.ctaArea .ctaContent .formList select,
.ctaArea .ctaContent .formList textarea {
    border: none;
    padding: 5px 10px;
    background-color: #f7f7f7;
    border-radius: 3px;
    font-size: 13px;
    color: #666666;
}
.ctaArea .ctaContent .formList .inputStyle {
    width: 100%;
    height: 35px;
    line-height: 35px;
}
.ctaArea .ctaContent .formList select {
    height: 35px;
    width: 100%;
}
.ctaArea .ctaContent .formList select option {
    border: none;
}
.ctaArea .ctaContent .formList textarea {
    display: block;
    width: 100%;
    height: 300px;
}
@media (max-width: 1580px) {
    .ctaArea .ctaContent .formList textarea {
        height: 100px;
    }
}
.ctaArea .ctaContent .mapBox {
    margin-top: 100px;
    width: 100%;
    max-height: 640px;
    max-width: 600px;
}
@media (max-width: 1580px) {
    .ctaArea .ctaContent .mapBox {
        margin-top: 20px;
        aspect-ratio: 640/600;
        margin-bottom: 30px;
    }
}
.ctaArea .ctaContent .mapBox iframe {
    display: block;
    height: 100%;
    width: 100%;
}
.ctaArea .ctaContent .formList {
}
.ctaArea .ctaContent .formList .checkArea {
    clear: both;
    padding-top: 35px;
    margin-right: 170px;
}
@media (max-width: 1580px) {
    .ctaArea .ctaContent .formList .checkArea {
        margin-right: 0;
        padding-top: 5px;
    }
}
.ctaArea .ctaContent .formList .checkArea .btn {
    display: inline-block;
    vertical-align: middle;
}
.ctaArea .ctaContent .formList .checkArea .btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 7px 15px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
    color: #262626;
    cursor: pointer;
}
.ctaArea .ctaContent .formList .checkArea .btn a .arrowBox {
    width: 56px;
    height: 56px;
    border: 1px solid #c9a063;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.ctaArea .ctaContent .formList .checkArea .btn a .arrowBox svg {
    width: 20px;
    height: 20px;
    stroke: #c9a063;
}
.ctaArea .ctaContent .formList .checkArea .btn a .arrowBox i {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
    color: #c9a063;
    width: 14px;
    height: 14px;
    font-size: 13px;
}
@media (max-width: 1580px) {
    .ctaArea .ctaContent .formList .checkArea .btn a .arrowBox {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}
.ctaArea .ctaContent .formList .checkArea .btn a:hover {
    color: #c9a063;
}
.ctaArea .ctaContent .formList .checkArea .btn a:hover .arrowBox {
    background-color: #c9a063;
    border-color: #c9a063;
}
.ctaArea .ctaContent .formList .checkArea .btn a:hover .arrowBox svg {
    stroke: #c9a063;
}
.ctaArea .ctaContent .formList .checkArea .btn a:hover .arrowBox i {
    color: #fff;
}
.ctaArea .ctaContent .sliderBox {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}
.ctaArea .ctaContent .note {
    position: absolute;
    left: 55px;
    top: 7px;
    font-family: "微軟正黑體";
    font-size: 15px;
    color: #999;
}
.ctaArea .ctaContent .error {
    border-color: #f00 !important;
}
