@charset "UTF-8";
/*通用212121*/
:root {
    --width: 1440;
}

.aboutArea .aboutList .aboutItem .Txt:before, .aboutArea .aboutList .aboutItem .Txt:after, .aboutArea .aboutList .aboutItem .Img, .applicationArea .applicationList .applicationItem .Txt .arrow, .applicationArea .applicationList .applicationItem .Txt .classTitle .title_tw, .applicationArea .applicationList .applicationItem a:before, .productsArea .arrowBox, .productsArea .appendDots .dotsList li .dots, .productsArea .appendDots, .bannerArea .videoArea, .bannerArea .arrowBox .arrow, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, header .menu > li a > span:after, header .menu > li a:before {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@-webkit-keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@-webkit-keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
}
@keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
}
@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
.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: #ffffff;
    -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);
    /* background-color: $color-wh; */
    border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 23px;
    width: 25px;
    height: 1px;
    background-color: #bca480;
    /* border-radius:  50%; */
}
.popWin .close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
    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);
    }
}

@media (min-width: 1181px) {
    .outerWrap {
        padding-top: 0;
    }
}
header:after {
    top: -125px;
}
header.hide {
    opacity: 0;
    pointer-events: none;
}
header.sticky:after {
    top: 0;
}
header.sticky .logo {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
}
header.sticky .logo a {
    background-image: url("../images/logo.svg");
}
header.sticky .topLink .searchBox a {
    background-color: #5dc6ad;
    border-color: #5dc6ad;
}
header.sticky .topLink .langBox:hover .circle {
    background-color: #5dc6ad;
    border-color: #5dc6ad;
}
header.sticky .topLink .langBox:hover .circle svg {
    color: #ffffff;
}
header.sticky .topLink .langBox > a .circle {
    background-color: #5dc6ad;
    border-color: #5dc6ad;
}
header.sticky .topLink .langBox > a .circle svg {
    color: #ffffff;
}
header.sticky .topLink .langBox > a .txt {
    color: #5dc6ad;
    border-color: #5dc6ad;
}
header.sticky .topLink .langBox > a .txt .arrow {
    background-image: url(../images/icon/icon_down2.png);
}
header.sticky .topLink .langBox ul {
    border-color: #5dc6ad;
    background-color: #ffffff;
}
header.sticky .topLink .langBox ul li:not(:last-child) {
    border-bottom-color: rgba(93, 198, 173, 0.6);
}
header.sticky .topLink .langBox ul li a {
    color: #555555;
    background-color: #ffffff;
}
@media (min-width: 1201px) {
    header.sticky .topLink .langBox ul li a:hover {
        color: #5dc6ad;
    }
}
header.sticky .menu > li a {
    color: #202020;
    padding: 32px 24px 33px;
}
header.sticky .menu > li a:before {
    display: none;
}
@media (max-width: 1600px) {
    header.sticky .menu > li a {
        padding: 32px 15px 33px;
    }
}
@media (max-width: 1440px) {
    header.sticky .menu > li a {
        padding: 32px 10px 33px;
    }
}
header.sticky .menu .submenu li a {
    padding: 13px 10px;
}
header.sticky .menu .submenu li a.current, header.sticky .menu .submenu li a:hover {
    color: #ffffff !important;
    background-color: #0081cc;
}
header .logo {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
header .logo a {
    background-image: url("../images/logo_wh.svg");
}
header .topLink .searchBox a {
    border: 1px solid #ffffff;
    background-color: transparent;
}
@media (min-width: 1201px) {
    header .topLink .searchBox a:hover {
        background-color: #5dc6ad;
        border-color: #5dc6ad;
    }
}
@media (min-width: 1181px) {
    header .topLink .langBox:hover .circle {
        background-color: #ffffff;
        border-color: #5dc6ad;
        -webkit-transition-delay: 0s;
                transition-delay: 0s;
    }
    header .topLink .langBox:hover .circle svg {
        color: #5dc6ad;
    }
    header .topLink .langBox:hover .txt {
        color: #5dc6ad;
        background-color: #ffffff;
        -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
    }
    header .topLink .langBox:hover .txt .arrow {
        background-image: url(../images/icon/icon_down2.png);
    }
}
header .topLink .langBox a .circle {
    border: 1px solid #ffffff;
    background-color: transparent;
    position: relative;
    z-index: 1;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
}
header .topLink .langBox a .txt {
    color: #ffffff;
    border-color: #ffffff;
    z-index: 0;
}
header .topLink .langBox a .txt .arrow {
    background-image: url(../images/icon/icon_down.png);
}
@media (min-width: 1201px) {
    header .topLink .langBox a:hover .circle {
        background-color: #ffffff;
        border-color: #5dc6ad;
        -webkit-transition-delay: 0s;
                transition-delay: 0s;
    }
    header .topLink .langBox a:hover .circle svg {
        color: #5dc6ad;
    }
    header .topLink .langBox a:hover .txt {
        color: #5dc6ad;
        background-color: #ffffff;
        -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
    }
    header .topLink .langBox a:hover .txt .arrow {
        background-image: url(../images/icon/icon_down2.png);
    }
}
header .topLink .langBox ul {
    border-color: #ffffff;
    background-color: #ffffff;
    border: 1px solid #5dc6ad;
}
header .topLink .langBox ul li:not(:last-child) {
    border-bottom-color: #5dc6ad;
}
header .topLink .langBox ul li a {
    color: #555555;
    background-color: transparent;
    border: 1px solid #ffffff;
}
@media (min-width: 1201px) {
    header .topLink .langBox ul li a:hover {
        color: #5dc6ad;
    }
}
@media (min-width: 1201px) {
    header .menu > li:hover a {
        color: #5dc6ad;
    }
    header .menu > li:hover a:before {
        height: 100%;
    }
}
header .menu > li a {
    display: block;
    color: #ffffff;
    padding: 40px 24px 30px;
    position: relative;
}
header .menu > li a:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0;
    margin: auto;
    content: "";
    background-color: #ffffff;
    z-index: -1;
}
header .menu > li a > span {
    position: relative;
    padding-bottom: 10px;
}
header .menu > li a > span:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    content: "";
    border-bottom: 3px solid #5dc6ad;
}
header .menu > li a.current, header .menu > li a:hover {
    color: #0081cc;
}
header .menu > li a.current > span:after, header .menu > li a:hover > span:after {
    width: 100%;
}
header .menu > li a.current:before, header .menu > li a:hover:before {
    height: 100%;
}
header .menu .submenu li a.current, header .menu .submenu li a:hover {
    color: #5dc6ad !important;
    background-color: #ffffff;
}
@media (max-width: 1640px) {
    header .menu > li a {
        padding: 40px 20px 30px;
    }
    header .menu .submenu {
        width: 100%;
    }
}
@media (max-width: 1600px) {
    header .menu > li a {
        padding: 40px 15px 30px;
    }
}
@media (max-width: 1366px) {
    header .menu > li a {
        padding: 40px 10px 30px;
    }
}

.mainArea {
    padding: 0;
}

.bannerArea {
    --videoWidth: 1440;
}
.bannerArea .bannerBox {
    position: relative;
}
.bannerArea .bannerList {
    position: relative;
    z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
    margin-bottom: 0;
}
.bannerArea .bannerList > .bannerItem:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.bannerArea .videoWrap {
    position: relative;
    width: 100%;
    padding-top: calc(656 / var(--videoWidth) * 100vw);
    overflow: hidden;
    background-color: #000000;
    pointer-events: none;
}
@media (max-width: 992px) {
    .bannerArea .videoWrap {
        position: absolute;
        padding-top: 114%;
    }
}
@media (max-width: 480px) {
    .bannerArea .videoWrap {
        padding-top: 600px;
    }
}
.bannerArea .bannerVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.bannerArea .bannerVideo .mbYTP_wrapper {
    height: 100%;
}
.bannerArea .bannerItem .Txt {
    max-width: 1360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 160px 30px 85px;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bannerArea .bannerItem .Txt .textBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.bannerArea .bannerItem .Txt .title {
    color: #0081cc;
    font-size: 60px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    line-height: 1.33;
    letter-spacing: 0.5px;
    opacity: 0;
}
.bannerArea .bannerItem .Txt .title br {
    display: none;
}
@media (max-width: 480px) {
    .bannerArea .bannerItem .Txt .title br {
        display: block;
    }
}
.bannerArea .bannerItem .Txt .subtitle {
    color: #292929;
    display: block;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1.75px;
    opacity: 0;
}
.bannerArea .bannerItem .Txt .text {
    color: #2f2f2f;
    font-size: 18px;
    font-weight: 500;
    display: block;
    line-height: 1.44;
    letter-spacing: 0.54px;
    margin-top: 16px;
    opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn {
    opacity: 0;
    padding-top: 15px;
}
.bannerArea .bannerItem .Txt .bannerBtn a {
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    letter-spacing: 0.54px;
    line-height: 1.4;
    text-align: center;
}
.bannerArea .bannerItem .Txt .bannerBtn a svg {
    vertical-align: middle;
    margin-left: 10px;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
    color: #5dc6ad;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover svg {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
}
@media (max-width: 768px) {
    .bannerArea .bannerItem .Txt .title {
        font-size: 40px;
        line-height: 1.125;
        letter-spacing: 0;
    }
    .bannerArea .bannerItem .Txt .subtitle {
        font-size: 28px;
        letter-spacing: 1.4px;
        margin-top: 10px;
    }
}
@media (max-width: 480px) {
    .bannerArea .bannerItem .Txt .text {
        display: none;
    }
}
.bannerArea .bannerItem .Img {
    position: relative;
    z-index: 1;
}
.bannerArea .bannerItem .Img img.pc {
    height: 100vh; /*875->920*/
}
.bannerArea .bannerItem .Img img.mb {
    display: none;
}
@media (max-width: 992px) {
    .bannerArea .bannerItem .Img img.pc {
        display: none;
    }
    .bannerArea .bannerItem .Img img.mb {
        display: block;
        height: 100%;
    }
    .bannerArea .bannerItem .Img img.usePc {
        height: 100vh;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
@media (max-width: 480px) {
    .bannerArea .bannerItem .Img img.pc {
        display: none;
    }
    .bannerArea .bannerItem .Img img.mb {
        height: 600px;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .bannerArea .bannerItem .Img img.usePc {
        height: 600px;
    }
}
.bannerArea .bannerItem.slick-current .Txt .title {
    -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
    -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
    -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
    -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerItem.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: #ffffff;
    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: #ffffff;
    margin-top: -2px;
    vertical-align: middle;
}
.bannerArea .socialBox .socialList li a:hover {
    color: #0081cc;
}
.bannerArea .socialBox .socialList li a:hover svg {
    fill: #0081cc;
}
.bannerArea .arrowBox {
    display: block;
    position: absolute;
    left: 83px;
    right: 83px;
    top: 50%;
    margin: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.bannerArea .arrowBox .arrow {
    width: 52px;
    height: 52px;
    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;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
}
@media (min-width: 1201px) {
    .bannerArea .arrowBox .arrow:hover svg {
        color: #5dc6ad;
    }
}
.bannerArea .scrollDown {
    cursor: pointer;
    display: block;
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
}
.bannerArea .scrollDown span {
    display: block;
}
.bannerArea .scrollDown span.text {
    color: #ffffff;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
    width: 2px;
    height: calc(100% + 20px);
    background-color: #ffffff;
    overflow: hidden;
    position: absolute;
    top: -5px;
    left: -5px;
    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: #0081cc;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.bannerArea .slick-dots {
    bottom: 52px;
}
.bannerArea .slick-dots li button::before {
    border: 1px solid #ffffff;
}
.bannerArea .slick-dots li button:hover::before {
    background-color: #ffffff;
}
.bannerArea .slick-dots li.slick-active button::before {
    border: 1px solid #ffffff;
    background-color: #ffffff;
}
.bannerArea .videoArea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #000;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
@media (min-width: 821px) {
    .bannerArea .videoArea.show {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }
}
.bannerArea .videoArea .closeVideo {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -35px;
    background: none;
    border: none;
    padding: 0;
    width: 60px;
    height: 70px;
    color: #fff;
    font-family: "Lato", sans-serif, "Noto Sans TC";
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.08em;
    cursor: pointer;
}
.bannerArea .videoArea .closeVideo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 1px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.bannerArea .videoArea .closeVideo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 1px;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media (max-width: 1180px) {
    .bannerArea .Txt .bannerVideo, .bannerArea .socialBox, .bannerArea .scrollDown, .bannerArea .arrowBox {
        display: none !important;
    }
}

@-webkit-keyframes reveal-curve-right {
    from {
        -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
                clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    to {
        -webkit-clip-path: polygon(100% 0, 0 1%, 0 100%, 100% 100%);
                clip-path: polygon(100% 0, 0 1%, 0 100%, 100% 100%);
    }
}

@keyframes reveal-curve-right {
    from {
        -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
                clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    to {
        -webkit-clip-path: polygon(100% 0, 0 1%, 0 100%, 100% 100%);
                clip-path: polygon(100% 0, 0 1%, 0 100%, 100% 100%);
    }
}
.productsArea {
    padding: 65px 0 343px;
    overflow: hidden;
    position: relative;
}
@media (max-width: 1180px) {
    .productsArea {
        padding-bottom: 220px;
    }
}
@media (max-width: 992px) {
    .productsArea {
        padding-bottom: 150px;
    }
}
@media (max-width: 768px) {
    .productsArea {
        padding-bottom: 120px;
    }
}
@media (max-width: 480px) {
    .productsArea {
        padding-top: 60px;
        padding-bottom: 80px;
    }
}
.productsArea .slogan {
    position: absolute;
    right: calc(50% - 1320px);
    top: 195px;
    color: rgba(50, 50, 50, 0.05);
    font-size: 300px;
    font-family: "Lato", sans-serif;
    line-height: 1;
    font-weight: 900;
    z-index: -1;
}
@media (max-width: 1180px) {
    .productsArea .slogan {
        display: none;
    }
}
@media (min-width: 1025px) {
    .productsArea.show .ribbon {
        opacity: 1;
        -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
                clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        -webkit-animation: reveal-curve-right 2.5s ease-in-out forwards;
                animation: reveal-curve-right 2.5s ease-in-out forwards;
    }
}
.productsArea .ribbon {
    position: absolute;
    right: 0;
    bottom: -85px;
    z-index: -1;
}
@media (min-width: 1025px) {
    .productsArea .ribbon {
        opacity: 0;
    }
}
@media (max-width: 1180px) {
    .productsArea .ribbon {
        bottom: 0;
        width: 60%;
        margin-right: 0;
        margin-left: auto;
    }
}
.productsArea .titleBox {
    margin-bottom: 40px;
}
.productsArea .titleBox .subTitle {
    padding-bottom: 7px;
}
.productsArea .classBoxRow {
    margin-bottom: 0;
}
@media (max-width: 1180px) {
    .productsArea .classBoxRow {
        margin-bottom: 30px;
    }
}
.productsArea .productsBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 -50px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding-top: 20px;
    --productsWidth: 1440;
}
.productsArea .productsBox.hide {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
}
@media (max-width: 1800px) {
    .productsArea .productsBox {
        margin: 0 calc(0% - 90 / var(--productsWidth) * 100vw); /*-120*/
    }
}
@media (max-width: 1440px) {
    .productsArea .productsBox {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}
@media (max-width: 1180px) {
    .productsArea .productsBox {
        margin: 0;
        padding: 0 30px;
    }
}
@media (max-width: 480px) {
    .productsArea .productsBox {
        padding: 0 20px;
    }
}
.productsArea .productsBox .productsList > .productsItem:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.productsArea .productsBox .productsList .productsItem a {
    display: block;
}
.productsArea .productsBox .productsList .productsItem .Img {
    background-color: #dfdfdf;
}
.productsArea .productsBox .productsList .productsItem .Img img {
    width: 100%;
}
.productsArea .productsBox .productsList .productsItem .Txt .classTitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.9px;
    line-height: 1.55;
}
.productsArea .productsBox .productsList .productsItem .Txt .classTitle:before {
    content: "";
    width: 28px;
    height: 4px;
    display: inline-block;
    background-color: #5dc6ad;
    margin-right: 16px;
    vertical-align: 4px;
}
.productsArea .productsBox .productsList .productsItem .Txt .title a {
    display: block;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.6px;
    line-height: 1.167;
    max-height: 105px;
}
.productsArea .productsBox .productsList .productsItem .Txt .text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.54px;
    line-height: 1.77;
}
.productsArea .productsBox .productsList .productsItem .btn_more {
    color: #ffffff;
    font-size: 20px;
}
.productsArea .productsBox .productsList .productsItem .btn_more svg {
    color: #ffffff;
}
.productsArea .productsBox .boxLeft,
.productsArea .productsBox .boxRight {
    width: calc(263 / var(--productsWidth) * 100vw); /*350*/
    padding-top: 70px;
}
.productsArea .productsBox .boxLeft .productsList .productsItem .Img,
.productsArea .productsBox .boxRight .productsList .productsItem .Img {
    border-radius: 40px 0 20px 0;
}
.productsArea .productsBox .boxLeft .productsList .productsItem .Txt,
.productsArea .productsBox .boxRight .productsList .productsItem .Txt {
    padding-top: 43px;
    padding-left: 33px;
}
.productsArea .productsBox .boxLeft .productsList .productsItem .Txt .classTitle,
.productsArea .productsBox .boxRight .productsList .productsItem .Txt .classTitle {
    color: #5dc6ad;
    padding-bottom: 10px;
}
.productsArea .productsBox .boxLeft .productsList .productsItem .Txt .title,
.productsArea .productsBox .boxRight .productsList .productsItem .Txt .title {
    color: #2e2e2e;
}
.productsArea .productsBox .boxLeft .productsList .productsItem .Txt .title a,
.productsArea .productsBox .boxRight .productsList .productsItem .Txt .title a {
    color: #2e2e2e;
}
.productsArea .productsBox .boxLeft .productsList .productsItem .Txt .text,
.productsArea .productsBox .boxLeft .productsList .productsItem .Txt .btnBox,
.productsArea .productsBox .boxRight .productsList .productsItem .Txt .text,
.productsArea .productsBox .boxRight .productsList .productsItem .Txt .btnBox {
    display: none;
}
@media (max-width: 1440px) {
    .productsArea .productsBox .boxLeft,
.productsArea .productsBox .boxRight {
        width: calc(225 / var(--productsWidth) * 100vw); /*300*/
    }
}
@media (max-width: 1180px) {
    .productsArea .productsBox .boxLeft,
.productsArea .productsBox .boxRight {
        display: none;
    }
}
.productsArea .productsBox .boxCenter {
    max-width: calc(775 / var(--productsWidth) * 100vw); /*1033*/
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    margin: auto;
}
.productsArea .productsBox .boxCenter .productsList .slick-dots {
    position: relative;
    bottom: 0;
    padding-top: 30px;
}
.productsArea .productsBox .boxCenter .productsList .slick-prev {
    left: calc(0% - 60 / var(--productsWidth) * 100vw); /*-80*/
}
.productsArea .productsBox .boxCenter .productsList .slick-next {
    right: calc(0% - 60 / var(--productsWidth) * 100vw); /*-80*/
}
.productsArea .productsBox .boxCenter .productsList .productsItem .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 40px 0 20px 0;
    overflow: hidden;
}
.productsArea .productsBox .boxCenter .productsList .productsItem .Img {
    width: 45.015%; /*465px*/
}
.productsArea .productsBox .boxCenter .productsList .productsItem .Txt {
    width: 54.985%;
    background-color: #0081cc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 105px 100px 50px;
}
.productsArea .productsBox .boxCenter .productsList .productsItem .Txt .classTitle {
    color: #ffffff;
    padding-bottom: 20px;
}
.productsArea .productsBox .boxCenter .productsList .productsItem .Txt .title a {
    color: #ffffff;
}
.productsArea .productsBox .boxCenter .productsList .productsItem .Txt .text {
    margin-top: 54px;
    max-height: 96px;
}
.productsArea .productsBox .boxCenter .productsList .productsItem .Txt .btnBox {
    padding-top: 55px;
}
.productsArea .productsBox .boxCenter .dotsList {
    display: none;
}
@media (max-width: 1800px) {
    .productsArea .productsBox .boxCenter .productsList .slick-prev {
        left: calc(0% - 83 / var(--productsWidth) * 100vw); /*-110*/
    }
    .productsArea .productsBox .boxCenter .productsList .slick-next {
        right: calc(0% - 83 / var(--productsWidth) * 100vw); /*-110*/
    }
}
@media (max-width: 1440px) {
    .productsArea .productsBox .boxCenter {
        max-width: calc(100% - 600px);
        padding: 0 50px;
    }
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt {
        padding: 85px 50px 30px;
    }
}
@media (max-width: 1180px) {
    .productsArea .productsBox .boxCenter {
        max-width: 100%;
        padding: 0;
    }
}
@media (max-width: 992px) {
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt {
        padding: 50px;
    }
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt .classTitle {
        font-size: 16px;
    }
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt .title {
        font-size: 26px;
    }
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt .text {
        font-size: 16px;
        max-height: none;
        height: 85px;
        margin-top: 30px;
    }
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt .btnBox {
        padding-top: 35px;
    }
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt .btnBox .btn_more {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .productsArea .productsBox .boxCenter .productsList .productsItem .Txt {
        padding: 40px 30px 50px;
    }
}
@media (max-width: 640px) {
    .productsArea .productsBox .boxCenter .productsList .productsItem .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .productsArea .productsBox .boxCenter .productsList .productsItem .Img,
.productsArea .productsBox .boxCenter .productsList .productsItem .Txt {
        width: 100%;
    }
}
.productsArea .appendDots {
    padding-top: 55px;
    padding-bottom: 115px;
}
.productsArea .appendDots .dotsList {
    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;
    margin: 0 -15px;
}
.productsArea .appendDots .dotsList li {
    padding: 0 15px;
}
.productsArea .appendDots .dotsList li.current, .productsArea .appendDots .dotsList li:hover {
    cursor: pointer;
}
.productsArea .appendDots .dotsList li.current .dots, .productsArea .appendDots .dotsList li:hover .dots {
    background-color: #0081cc;
}
.productsArea .appendDots .dotsList li .dots {
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 50%;
    border: 1px solid #0081cc;
    background-color: transparent;
}
@media (max-width: 480px) {
    .productsArea .appendDots .dotsList {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
@media (max-width: 1180px) {
    .productsArea .appendDots {
        padding-top: 35px;
        padding-bottom: 50px;
    }
}
.productsArea .arrowBox {
    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;
}
.productsArea .arrowBox .arrow {
    color: #0081cc;
    cursor: pointer;
}
@media (min-width: 1201px) {
    .productsArea .arrowBox .arrow:hover svg {
        color: #5dc6ad;
    }
}
.productsArea .arrowBox .arrowPrev {
    margin-right: 68px;
}
@media (min-width: 1201px) {
    .productsArea .arrowBox .arrowPrev:hover svg {
        -webkit-transform: translateX(-10px);
                transform: translateX(-10px);
    }
}
.productsArea .arrowBox .arrowNext {
    margin-left: 68px;
}
@media (min-width: 1201px) {
    .productsArea .arrowBox .arrowNext:hover svg {
        -webkit-transform: translateX(10px);
                transform: translateX(10px);
    }
}
.productsArea .arrowBox .arrow svg {
    color: #0081cc;
    vertical-align: middle;
}
.productsArea .arrowBox .pagingInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.productsArea .arrowBox .pagingInfo .num {
    color: #9c9c9c;
    font-size: 22px;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    line-height: 1;
    min-width: 21px;
}
.productsArea .arrowBox .pagingInfo .num:first-child {
    color: #5dc6ad;
    font-size: 48px;
}
.productsArea .arrowBox .pagingInfo .num:last-child {
    padding-bottom: 2px;
}
@media (max-width: 600px) {
    .productsArea .arrowBox .pagingInfo .num:first-child {
        font-size: 40px;
    }
}
@media (max-width: 480px) {
    .productsArea .arrowBox .pagingInfo .num {
        font-size: 18px;
    }
    .productsArea .arrowBox .pagingInfo .num:first-child {
        font-size: 30px;
    }
}
.productsArea .arrowBox .pagingInfo .slash {
    display: block;
    width: 1px;
    height: 27px;
    background-color: rgba(0, 0, 0, 0.72);
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    margin: 0 20px 2px;
}
@media (max-width: 640px) {
    .productsArea .arrowBox {
        display: none;
    }
}

.applicationArea {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 180px;
}
@media (max-width: 1180px) {
    .applicationArea {
        padding-top: 0;
        padding-bottom: 80px;
    }
}
@media (max-width: 768px) {
    .applicationArea {
        padding-bottom: 50px;
    }
}
.applicationArea .slogan {
    position: absolute;
    right: calc(50% - 950px);
    top: -26px;
    color: rgba(50, 50, 50, 0.05);
    font-size: 300px;
    font-family: "Lato", sans-serif;
    line-height: 1;
    font-weight: 900;
    z-index: -1;
}
@media (max-width: 1180px) {
    .applicationArea .slogan {
        display: none;
    }
}
@media (min-width: 1025px) {
    .applicationArea.show .ribbon {
        opacity: 1;
        -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
                clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        -webkit-animation: reveal-curve-right 1.7s ease-in-out forwards;
                animation: reveal-curve-right 1.7s ease-in-out forwards;
    }
}
.applicationArea .ribbon {
    left: 0;
    z-index: -1;
    margin-top: -30px;
}
@media (min-width: 1025px) {
    .applicationArea .ribbon {
        opacity: 0;
    }
}
.applicationArea .ribbon.mb {
    position: relative;
    width: 50%;
    display: none;
}
@media (max-width: 992px) {
    .applicationArea .ribbon.mb {
        display: block;
    }
}
.applicationArea .wrap {
    max-width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.applicationArea .wrap.mb {
    display: none;
}
.applicationArea .wrap .left {
    width: 690px;
    height: 965px;
    margin-bottom: 150px;
    position: relative;
}
.applicationArea .wrap .left .appImgList {
    height: 100%;
}
.applicationArea .wrap .left .appImgList .appImgItem {
    border-radius: 0 0 calc(45 / var(--width) * 100vw) 0; /*60*/
}
.applicationArea .wrap .left .appImgList .appImgItem img {
    height: 965px;
    -o-object-fit: cover;
       object-fit: cover;
}
.applicationArea .wrap .mid {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    padding: 0 111.5px 0 131.5px;
}
.applicationArea .wrap .mid .titleBox:after {
    display: none;
}
.applicationArea .wrap .mid .mb {
    display: none;
}
.applicationArea .wrap .right {
    width: 310px;
    -ms-flex-item-align: end;
        align-self: flex-end;
}
.applicationArea .wrap .right .appImgList {
    height: 590px;
}
.applicationArea .wrap .right .appImgList .appImgItem {
    border-radius: calc(60 / var(--width) * 100vw) 0 0 0; /*80*/
}
.applicationArea .wrap .right .appImgList .appImgItem img {
    height: 590px;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 1500px) {
    .applicationArea .wrap .left {
        width: 500px;
    }
    .applicationArea .wrap .mid {
        padding: 0 60px;
    }
    .applicationArea .wrap .right {
        width: 300px;
    }
}
@media (max-width: 1180px) {
    .applicationArea .wrap .left {
        width: 450px;
    }
    .applicationArea .wrap .mid {
        padding: 0 50px;
    }
    .applicationArea .wrap .right {
        width: 300px;
    }
}
@media (max-width: 992px) {
    .applicationArea .wrap {
        padding: 0 30px;
    }
    .applicationArea .wrap.pc {
        display: none;
    }
    .applicationArea .wrap.mb {
        display: block;
    }
    .applicationArea .wrap.mb .right {
        display: none;
    }
    .applicationArea .wrap .left,
.applicationArea .wrap .right {
        display: none;
    }
    .applicationArea .wrap .mid {
        width: 100%;
        padding: 0;
    }
    .applicationArea .wrap .mid .appImgList {
        margin: 0 -10px;
    }
    .applicationArea .wrap .mid .appImgList .appImgItem {
        padding: 0 10px;
    }
    .applicationArea .wrap .mid .appImgList .appImgItem img {
        border-radius: 0 0 60px 0;
    }
}
@media (max-width: 992px) and (max-width: 820px) {
    .applicationArea .wrap .mid .appImgList .appImgItem img {
        margin: 0 auto;
        width: auto;
        height: 500px;
    }
}
@media (max-width: 992px) and (max-width: 640px) {
    .applicationArea .wrap .mid .appImgList .appImgItem img {
        height: auto;
    }
}
@media (max-width: 992px) and (max-width: 480px) {
    .applicationArea .wrap .mid .appImgList .appImgItem img {
        border-radius: 0 0 40px 0;
    }
}
@media (max-width: 992px) {
    .applicationArea .wrap .mid .appImgList .appImgItem:not(.mouseOver) {
        position: relative;
    }
}
@media (max-width: 480px) {
    .applicationArea .wrap {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .applicationArea .wrap .mid {
        text-align: center;
    }
}
.applicationArea .titleBox .subTitle {
    margin-top: 44px;
}
.applicationArea .titleBox .text {
    margin-top: 29px;
    max-width: 520px;
}
.applicationArea .titleBox:after {
    display: none;
}
@media (max-width: 1180px) {
    .applicationArea .titleBox {
        margin-bottom: 35px;
    }
    .applicationArea .titleBox .subTitle {
        margin-top: 30px;
    }
    .applicationArea .titleBox .text {
        display: none;
    }
}
@media (max-width: 768px) {
    .applicationArea .titleBox .subTitle {
        margin-top: 20px;
    }
}
@media (min-width: 993px) {
    .applicationArea .applicationList {
        max-height: 612px;
        overflow-y: auto;
    }
}
.applicationArea .applicationList .applicationItem a {
    display: block;
    position: relative;
    padding: 30px 0 65px;
}
.applicationArea .applicationList .applicationItem a:before, .applicationArea .applicationList .applicationItem a:after {
    content: "";
    position: absolute;
    left: 0;
    pointer-events: none;
}
.applicationArea .applicationList .applicationItem a:before {
    top: 0;
    width: 0;
    height: 4px;
    background-color: #0081cc;
}
.applicationArea .applicationList .applicationItem a:after {
    top: 2px;
    width: 100%;
    height: 1px;
    background-color: rgba(93, 93, 93, 0.3);
}
@media (min-width: 1201px) {
    .applicationArea .applicationList .applicationItem a:hover:before {
        width: 300px;
    }
    .applicationArea .applicationList .applicationItem a:hover .Txt .classTitle .title_tw {
        color: #0081cc;
    }
    .applicationArea .applicationList .applicationItem a:hover .Txt .arrow {
        -webkit-transform: translateX(-10px);
                transform: translateX(-10px);
    }
    .applicationArea .applicationList .applicationItem a:hover .Txt .arrow svg {
        color: #0081cc;
    }
}
.applicationArea .applicationList .applicationItem .Txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.applicationArea .applicationList .applicationItem .Txt .number {
    color: #323232;
    font-size: 18px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
}
.applicationArea .applicationList .applicationItem .Txt .classTitle {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
}
.applicationArea .applicationList .applicationItem .Txt .classTitle .title_tw {
    color: #323232;
    font-size: 40px;
    font-weight: bold;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.applicationArea .applicationList .applicationItem .Txt .classTitle .title_en {
    color: #a5a5a5;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    width: 200px;
    padding-right: 30px;
    max-height: 40px;
}
.applicationArea .applicationList .applicationItem .Txt .arrow {
    width: 12px;
}
.applicationArea .applicationList .applicationItem .Txt .arrow svg {
    vertical-align: middle;
}
@media (max-width: 768px) {
    .applicationArea .applicationList .applicationItem a {
        padding: 30px 0 35px;
    }
    .applicationArea .applicationList .applicationItem .Txt .classTitle .title_tw {
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    .applicationArea .applicationList .applicationItem .Txt .classTitle {
        padding-left: 30px;
    }
    .applicationArea .applicationList .applicationItem .Txt .classTitle .title_tw {
        font-size: 25px;
        padding-right: 15px;
    }
    .applicationArea .applicationList .applicationItem .Txt .classTitle .title_en {
        padding-right: 0;
        width: 55%;
    }
}
@media (max-width: 480px) {
    .applicationArea .applicationList .applicationItem .Txt .classTitle {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-left: 20px;
    }
    .applicationArea .applicationList .applicationItem .Txt .classTitle .title_tw,
.applicationArea .applicationList .applicationItem .Txt .classTitle .title_en {
        width: 100%;
    }
    .applicationArea .applicationList .applicationItem .Txt .classTitle .title_tw {
        padding-right: 0;
    }
}
.applicationArea .appImgList {
    position: relative;
}
.applicationArea .appImgList > .appImgItem:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.applicationArea .appImgList .appImgItem {
    overflow: hidden;
}
@media (min-width: 993px) {
    .applicationArea .appImgList .appImgItem a {
        pointer-events: none;
    }
    .applicationArea .appImgList .appImgItem:not(.mouseOver) {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-transform: translateY(10%);
                transform: translateY(10%);
        opacity: 0;
        top: 0;
        left: 0;
    }
    .applicationArea .appImgList .appImgItem.mouseOut {
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        -webkit-transform: translateY(-10%);
                transform: translateY(-10%);
        opacity: 0;
        z-index: 1;
    }
    .applicationArea .appImgList .appImgItem.mouseOver {
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}
@media (max-width: 1180px) {
    .applicationArea .appImgList .appImgItem img {
        width: 100%;
    }
}
@media (max-width: 992px) {
    .applicationArea .appImgList {
        padding-bottom: 40px;
    }
}

.designArea {
    overflow: hidden;
    border-radius: 0 100px 0 100px;
}
@media (max-width: 992px) {
    .designArea {
        border-radius: 0 80px 0 80px;
    }
}
@media (max-width: 480px) {
    .designArea {
        border-radius: 0 60px 0 60px;
    }
}
.designArea .designList .designItem .item {
    position: relative;
}
.designArea .designList .designItem .Img {
    position: relative;
    height: 805px;
    background-attachment: fixed;
}
.designArea .designList .designItem .Img:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.designArea .designList .designItem .Txt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 820px;
    padding: 0 25px;
    z-index: 3;
}
.designArea .designList .designItem .Txt .titleBox {
    margin-bottom: 27px;
}
.designArea .designList .designItem .Txt .titleBox .titleTw {
    color: #ffffff;
}
.designArea .designList .designItem .Txt .text {
    color: rgba(255, 255, 255, 0.74);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.72px;
    line-height: 1.667;
    text-align: center;
}
.designArea .designList .designItem .Txt .btnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
    padding-top: 65px;
}
.designArea .designList .designItem .Txt .btnBox a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: block;
    color: #363535;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.75;
    padding: 20px 0;
    text-align: center;
    background-color: #ffffff;
}
.designArea .designList .designItem .Txt .btnBox a:first-child {
    color: #363535;
    background-color: #ffffff;
}
@media (min-width: 1201px) {
    .designArea .designList .designItem .Txt .btnBox a:first-child:hover {
        color: #0081cc;
    }
}
.designArea .designList .designItem .Txt .btnBox a:last-child {
    color: #ffffff;
    background-color: #0081cc;
}
@media (min-width: 1201px) {
    .designArea .designList .designItem .Txt .btnBox a:last-child:hover {
        color: #ffffff;
        background-color: #5dc6ad;
    }
}
@media (max-width: 1024px) {
    .designArea .designList .designItem .Img {
        background-attachment: scroll;
    }
}
@media (max-width: 768px) {
    .designArea .designList .designItem .Img {
        height: 500px;
    }
    .designArea .designList .designItem .Txt .text {
        font-size: 18px;
        letter-spacing: 0.54px;
        line-height: 2;
    }
    .designArea .designList .designItem .Txt .btnBox {
        padding-top: 40px;
    }
    .designArea .designList .designItem .Txt .btnBox a {
        font-size: 18px;
        letter-spacing: 1.8px;
        line-height: 2;
        padding: 10.5px 0;
    }
}
@media (max-width: 480px) {
    .designArea .designList .designItem .Txt .text {
        font-size: 16px;
    }
    .designArea .designList .designItem .Txt .btnBox a {
        font-size: 16px;
    }
}

@-webkit-keyframes line_ani {
    0% {
        width: 0;
    }
    100% {
        width: calc(100% + 40px);
    }
}

@keyframes line_ani {
    0% {
        width: 0;
    }
    100% {
        width: calc(100% + 40px);
    }
}
@-webkit-keyframes butterfly {
    0%, 32%, 64%, 100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    16%, 48%, 80% {
        -webkit-transform: translate(5px, -5px) scaleX(0.88) rotateY(20deg);
                transform: translate(5px, -5px) scaleX(0.88) rotateY(20deg);
    }
}
@keyframes butterfly {
    0%, 32%, 64%, 100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    16%, 48%, 80% {
        -webkit-transform: translate(5px, -5px) scaleX(0.88) rotateY(20deg);
                transform: translate(5px, -5px) scaleX(0.88) rotateY(20deg);
    }
}
.aboutArea {
    position: relative;
    overflow: hidden;
    --width: 1440;
}
@media (min-width: 1601px) and (max-width: 1920px) {
    .aboutArea {
        --width: 1360;
    }
}
@media (max-width: 1180px) {
    .aboutArea {
        --width: 885;
    }
}
.aboutArea .slogan {
    position: absolute;
    left: 37px;
    top: 88px;
    color: rgba(50, 50, 50, 0.05);
    font-size: 300px;
    font-family: "Lato", sans-serif;
    line-height: 1;
    font-weight: 900;
    z-index: -1;
}
@media (max-width: 1180px) {
    .aboutArea .slogan {
        display: none;
    }
}
@media (max-width: 768px) {
    .aboutArea .titleBox {
        margin-bottom: 20px;
    }
}
.aboutArea .wrap {
    max-width: 100%;
    padding-right: 0;
    padding-left: 95px;
    position: relative;
    min-height: 815px;
    height: 100%;
}
.aboutArea .wrap .left {
    padding-top: 114px;
    position: relative;
    z-index: 2;
}
.aboutArea .wrap .right {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 1090px;
    width: 100%;
    border-radius: calc(300 / var(--width) * 100vw) 0 0 0; /*400*/
    overflow: hidden;
}
.aboutArea .wrap .titleBar {
    position: relative;
    max-width: 650px;
}
.aboutArea .wrap .titleBar .titleBox:after {
    display: none;
}
.aboutArea .wrap .titleBar .titleBox .subTitle {
    margin-top: 23px;
}
.aboutArea .wrap .titleBar .titleBox .text {
    margin-top: 22px;
}
.aboutArea .wrap .titleBar .btnBox {
    position: absolute;
    right: 0;
    top: 17px;
    padding-top: 0;
}
@media (max-width: 1600px) {
    .aboutArea .wrap {
        padding-left: 50px;
    }
    .aboutArea .wrap .right {
        max-width: 800px;
    }
}
@media (max-width: 1440px) {
    .aboutArea .wrap .right {
        max-width: 700px;
    }
}
@media (max-width: 1180px) {
    .aboutArea .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-left: 0;
    }
    .aboutArea .wrap .left {
        width: 100%;
        padding: 50px 30px 0;
    }
    .aboutArea .wrap .right {
        position: relative;
        max-width: 100%;
    }
    .aboutArea .wrap .titleBar {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .aboutArea .wrap .titleBar .titleBox .text {
        display: none;
    }
    .aboutArea .wrap .titleBar .btnBox {
        top: 10px;
    }
}
@media (max-width: 480px) {
    .aboutArea .wrap .titleBar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
        padding-bottom: 15px;
    }
    .aboutArea .wrap .titleBar .titleBox .subTitle {
        margin-top: 20px;
    }
    .aboutArea .wrap .titleBar .btnBox {
        position: relative;
        top: 0;
    }
}
.aboutArea .wrap .main {
    position: relative;
}
.aboutArea .wrap .main .itemBox {
    width: 100%;
    height: 100%;
    max-width: 603px;
    min-height: 365px;
    max-height: 365px;
    position: absolute;
    left: 0;
    right: 110px;
    top: 86px;
    margin: auto;
}
.aboutArea .wrap .main .itemBox > div {
    position: absolute;
}
.aboutArea .wrap .main .itemBox > div img {
    display: block;
    width: 100%;
    height: 100%;
}
.aboutArea .wrap .main .itemBox .butterfly_img01 {
    width: 39px;
    height: 53px;
    left: 38px;
    top: 107px;
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
}
.aboutArea .wrap .main .itemBox .butterfly_img01 img {
    -webkit-animation: butterfly 4s -2.8s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
            animation: butterfly 4s -2.8s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.aboutArea .wrap .main .itemBox .butterfly_img02 {
    width: 66px;
    height: 43px;
    left: 0;
    top: 205px;
    -webkit-transform-origin: right top;
            transform-origin: right top;
}
.aboutArea .wrap .main .itemBox .butterfly_img02 img {
    -webkit-animation: butterfly 5s -3s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
            animation: butterfly 5s -3s forwards cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.aboutArea .wrap .main .itemBox .bird_img01 {
    width: 62px;
    height: 67px;
    right: 0;
    top: 0;
}
.aboutArea .wrap .main .itemBox .bird_img02 {
    width: 48px;
    height: 34px;
    top: 102px;
    right: 274px;
}
.aboutArea .wrap .main .itemBox .bird_img03 {
    width: 81px;
    height: 48px;
    top: 167px;
    right: 102px;
}
.aboutArea .wrap .main .itemBox .bird_img04 {
    width: 203px;
    height: 68px;
    left: 175px;
    bottom: 0;
}
.aboutArea .wrap .main .itemBox .deer_img01 {
    width: 92px;
    height: 121px;
    right: 106px;
    bottom: 0;
    z-index: 1;
}
.aboutArea .wrap .main .itemBox .deer_img02 {
    width: 99px;
    height: 87px;
    right: 79px;
    bottom: 0;
}
.aboutArea .wrap .main .bg img.pc {
    height: 815px;
    -o-object-fit: cover;
       object-fit: cover;
}
.aboutArea .wrap .main .bg img.mb {
    display: none;
}
@media (max-width: 1180px) {
    .aboutArea .wrap .main .bg img.pc {
        height: auto;
        -o-object-fit: fill;
           object-fit: fill;
        width: 100%;
    }
}
@media (max-width: 992px) {
    .aboutArea .wrap .main .bg img.pc {
        display: none;
    }
    .aboutArea .wrap .main .bg img.mb {
        display: block;
    }
}
@media (max-width: 480px) {
    .aboutArea .wrap .main .bg img.mb {
        height: 350px;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: 40% center;
           object-position: 40% center;
    }
}
@media (max-width: 1180px) {
    .aboutArea .wrap .main {
        --boxWidth: 800;
    }
    .aboutArea .wrap .main .itemBox {
        max-width: calc(452 / var(--boxWidth) * 100vw);
        min-height: calc(274 / var(--boxWidth) * 100vw);
        max-height: calc(274 / var(--boxWidth) * 100vw);
        right: calc(83 / var(--boxWidth) * 100vw);
        top: calc(65 / var(--boxWidth) * 100vw);
    }
}
@media (max-width: 992px) {
    .aboutArea .wrap .main .itemBox {
        display: none;
    }
}
.aboutArea .aboutList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 -3px;
    padding-top: 45px;
}
.aboutArea .aboutList .aboutItem {
    padding: 0 3px;
}
.aboutArea .aboutList .aboutItem:nth-child(1) .item a:before {
    background-position: 0 bottom;
    left: calc(0% - 14 / var(--width) * 100vw);
    bottom: calc(0% - 17 / var(--width) * 100vw);
    width: calc(135 / var(--width) * 100vw);
    height: calc(94 / var(--width) * 100vw);
}
.aboutArea .aboutList .aboutItem:nth-child(2) .item a:before {
    background-position: calc(0% - 113 / var(--width) * 100vw) 0;
    left: calc(0% - 11 / var(--width) * 100vw);
    top: calc(0% - 11 / var(--width) * 100vw);
    width: calc(128 / var(--width) * 100vw);
    height: calc(102 / var(--width) * 100vw);
}
.aboutArea .aboutList .aboutItem:nth-child(3) .item a:before {
    background-position: calc(0% - 218 / var(--width) * 100vw) bottom;
    left: calc(0% - 14 / var(--width) * 100vw);
    bottom: calc(0% - 17 / var(--width) * 100vw);
    width: calc(135 / var(--width) * 100vw);
    height: calc(92 / var(--width) * 100vw);
}
.aboutArea .aboutList .aboutItem:nth-child(4) .item a:before {
    background-position: calc(0% - 331 / var(--width) * 100vw) 0;
    left: calc(0% - 11 / var(--width) * 100vw);
    top: calc(0% - 11 / var(--width) * 100vw);
    width: calc(128 / var(--width) * 100vw);
    height: calc(102 / var(--width) * 100vw);
}
.aboutArea .aboutList .aboutItem:nth-child(5) .item a:before {
    background-position: calc(0% - 437 / var(--width) * 100vw) bottom;
    left: calc(0% - 14 / var(--width) * 100vw);
    bottom: calc(0% - 17 / var(--width) * 100vw);
    width: calc(135 / var(--width) * 100vw);
    height: calc(86 / var(--width) * 100vw);
}
.aboutArea .aboutList .aboutItem:nth-child(6) .item a:before {
    background-position: calc(0% - 550 / var(--width) * 100vw) 0;
    left: calc(0% - 10 / var(--width) * 100vw);
    top: calc(0% - 11 / var(--width) * 100vw);
    width: calc(128 / var(--width) * 100vw);
    height: calc(110 / var(--width) * 100vw);
}
.aboutArea .aboutList .aboutItem:nth-child(7) .item a:before {
    background-position: calc(0% - 656 / var(--width) * 100vw) bottom;
    left: calc(0% - 14 / var(--width) * 100vw);
    bottom: calc(0% - 17 / var(--width) * 100vw);
    width: calc(135 / var(--width) * 100vw);
    height: calc(84 / var(--width) * 100vw);
}
.aboutArea .aboutList .aboutItem:nth-child(odd) .Img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}
.aboutArea .aboutList .aboutItem:nth-child(odd) .Txt:after {
    content: "";
    width: 2px;
    height: 22px;
    background: #5dc6ad;
    display: block;
    margin: 7px auto 1px;
}
.aboutArea .aboutList .aboutItem:nth-child(odd) .Txt .title {
    margin-top: 6px;
}
@media (max-width: 768px) {
    .aboutArea .aboutList .aboutItem:nth-child(odd) .Img {
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }
    .aboutArea .aboutList .aboutItem:nth-child(odd) .Txt {
        padding-top: 20px;
    }
    .aboutArea .aboutList .aboutItem:nth-child(odd) .Txt:after {
        display: none;
    }
}
.aboutArea .aboutList .aboutItem:nth-child(even) .item a {
    margin-top: 14px;
}
.aboutArea .aboutList .aboutItem:nth-child(even) .Txt:before {
    content: "";
    width: 2px;
    height: 22px;
    background: #5dc6ad;
    display: block;
    margin: 1px auto 14px;
}
.aboutArea .aboutList .aboutItem:nth-child(even) .Txt .title {
    margin-top: 6px;
}
@media (max-width: 768px) {
    .aboutArea .aboutList .aboutItem:nth-child(even) .item a {
        margin-top: 0;
    }
    .aboutArea .aboutList .aboutItem:nth-child(even) .Txt {
        padding-top: 20px;
    }
    .aboutArea .aboutList .aboutItem:nth-child(even) .Txt:before {
        display: none;
    }
}
.aboutArea .aboutList .aboutItem .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
}
.aboutArea .aboutList .aboutItem .item a:before {
    position: absolute;
    content: "";
    background-image: url(../images/home/about_line.png);
    background-repeat: no-repeat;
    background-size: calc(790 / var(--width) * 100vw) calc(194 / var(--width) * 100vw);
    display: block;
    pointer-events: none;
    -webkit-animation: line_ani 1.5s infinite;
            animation: line_ani 1.5s infinite;
}
@media (min-width: 1201px) {
    .aboutArea .aboutList .aboutItem .item:hover .Img {
        background-color: #0081cc;
    }
    .aboutArea .aboutList .aboutItem .item:hover .Txt:before, .aboutArea .aboutList .aboutItem .item:hover .Txt:after {
        background-color: #0081cc;
    }
}
.aboutArea .aboutList .aboutItem .Img {
    width: 142px;
    height: 142px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.11);
            box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.11);
    background-color: #5dc6ad;
    position: relative;
    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;
}
@media (min-width: 769px) {
    .aboutArea .aboutList .aboutItem .Img {
        width: calc(107 / var(--width) * 100vw);
        height: calc(107 / var(--width) * 100vw);
    }
}
.aboutArea .aboutList .aboutItem .Img:after {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
    margin: auto;
    content: "";
    border-radius: 50%;
    border: 1px solid #ffffff;
}
.aboutArea .aboutList .aboutItem .Txt {
    text-align: center;
}
.aboutArea .aboutList .aboutItem .Txt .subTitle {
    color: #a5a5a5;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
}
@media (min-width: 769px) {
    .aboutArea .aboutList .aboutItem .Txt .subTitle {
        font-size: calc(14 / var(--width) * 100vw);
    }
}
.aboutArea .aboutList .aboutItem .Txt .title {
    color: #2e2e2e;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.458;
}
@media (min-width: 769px) {
    .aboutArea .aboutList .aboutItem .Txt .title {
        font-size: calc(18 / var(--width) * 100vw);
    }
}
@media (max-width: 1180px) {
    .aboutArea .aboutList {
        padding: 0 0 45px 30px;
    }
}
@media (max-width: 992px) {
    .aboutArea .aboutList {
        padding-left: 5px;
    }
}
@media (max-width: 768px) {
    .aboutArea .aboutList {
        display: block;
    }
    .aboutArea .aboutList .slick-dots {
        position: relative;
        bottom: 0;
        padding-top: 35px;
    }
    .aboutArea .aboutList > .aboutItem {
        float: left;
        width: 33.33%;
    }
    .aboutArea .aboutList > .aboutItem:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }
    .aboutArea .aboutList .aboutItem {
        padding-top: 20px;
    }
    .aboutArea .aboutList .aboutItem .item a:before {
        display: none;
    }
}
@media (max-width: 540px) {
    .aboutArea .aboutList > .aboutItem {
        width: 50%;
    }
    .aboutArea .aboutList > .aboutItem:nth-child(3) {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }
    .aboutArea .aboutList .aboutItem .Img {
        width: 120px;
        height: 120px;
    }
}