.applicationList .item,
.applicationList .item:before,
.fixedSideMenu .classLink a span,
.fixedSideMenu .classLink a:after,
.fixedSideMenu .classLink a:before,
.fixedSideMenu .hideBtn:after,
.fixedSideMenu .hideBtn:before,
.linkList .Img,
.newsList .Txt .title,
.productList .Img,
.productList .Img img,
.productList .Txt:before {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.fixedSideMenu,
.newsList .item:before {
    -webkit-transition: all 0.75s;
    -o-transition: all 0.75s;
    -moz-transition: all 0.75s;
    transition: all 0.75s;
}
@-webkit-keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-moz-keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        -moz-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}
@-o-keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@-moz-keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@-o-keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes rotate {
    to {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes rotate {
    to {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-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;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -moz-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;
    -o-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}
.popWin .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-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;
    -o-transition: all 0.7s;
    -moz-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;
    -moz-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);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.popWin .close:after,
.popWin .close:before {
    content: "";
    position: absolute;
    left: 11px;
    top: 23px;
    width: 25px;
    height: 1px;
    background-color: #00769d;
}
.popWin .close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-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);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media (max-width: 1180px) {
    .popWin .close {
        right: 0;
        top: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
    .popWin .popContent {
        max-height: -webkit-calc(100vh - 150px);
        max-height: -moz-calc(100vh - 150px);
        max-height: calc(100vh - 150px);
    }
}
.mainArea {
    padding: 0;
    background-color: #fff;
}
@media (max-width: 1600px) {
    .mainArea .wrap {
        padding: 0 40px;
    }
}
@media (max-width: 840px) {
    .mainArea .wrap {
        padding: 0 20px;
    }
}
.fixedSideMenu {
    background-color: #fff;
    -webkit-box-shadow: -5.992px -0.314px 32.8px 7.2px rgba(61, 61, 61, 0.05);
    -moz-box-shadow: -5.992px -0.314px 32.8px 7.2px rgba(61, 61, 61, 0.05);
    box-shadow: -5.992px -0.314px 32.8px 7.2px rgba(61, 61, 61, 0.05);
    position: fixed;
    top: 50%;
    right: -200px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}
@media (max-width: 1180px) {
    .fixedSideMenu {
        display: none;
    }
}
.fixedSideMenu:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.09);
    position: absolute;
    top: 0;
    left: 18px;
    bottom: auto;
    right: auto;
}
@media (max-width: 1440px) {
    .fixedSideMenu:before {
        left: 15px;
    }
}
.fixedSideMenu .hideBtn {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -30px;
    left: 5px;
}
@media (max-width: 1440px) {
    .fixedSideMenu .hideBtn {
        left: 0px;
    }
}
.fixedSideMenu .hideBtn:before {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background-color: #00769d;
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: auto;
    right: auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.fixedSideMenu .hideBtn:after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background-color: #00769d;
    position: absolute;
    top: 18px;
    left: 10px;
    bottom: auto;
    right: auto;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.fixedSideMenu.show {
    right: 0;
}
.fixedSideMenu.show.hide {
    right: -85px;
}
@media (max-width: 1440px) {
    .fixedSideMenu.show.hide {
        right: -85px;
    }
}
.fixedSideMenu.show.hide .hideBtn {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}
.fixedSideMenu .classLink .scrollItem {
    display: block;
    padding: 10px 10px 10px 10px;
    position: relative;
}
@media (max-width: 1440px) {
    .fixedSideMenu .classLink .scrollItem {
        padding: 5px 10px;
    }
}
.fixedSideMenu .classLink .scrollItem.current a {
    color: #00769d;
}
.fixedSideMenu .classLink .scrollItem.current a:before {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
.fixedSideMenu .classLink .scrollItem.current a:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
@media (min-width: 1201px) {
    .fixedSideMenu .classLink .scrollItem:hover a {
        padding-left: 20px;
    }
}
.fixedSideMenu .classLink a {
    color: #4c4c4c;
    display: block;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    padding: 5px 0px 5px 25px;
    position: relative;
    width: 100px;
}
.fixedSideMenu .classLink a:before {
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #00769d;
    position: absolute;
    top: 13px;
    left: 3.5px;
    bottom: auto;
    right: auto;
}
@media (max-width: 1440px) {
    .fixedSideMenu .classLink a:before {
        left: 1px;
    }
}
.fixedSideMenu .classLink a:after {
    border: 1px solid #00769d;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    width: 14px;
    height: 14px;
    background-color: transparent;
    position: absolute;
    top: 11px;
    left: 2px;
    bottom: auto;
    right: auto;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
@media (max-width: 1440px) {
    .fixedSideMenu .classLink a:after {
        left: -1px;
    }
}
.fixedSideMenu .classLink a span {
    position: relative;
    display: block;
}
.bannerArea .bannerBox {
    position: relative;
}
@media (max-width: 840px) {
    .bannerArea .bannerBox {
        background-color: #01a8ed;
    }
}
.bannerArea .bannerList {
    position: relative;
    z-index: 1;
    width: 100%;
}
.bannerArea .bannerList:not(.slick-slider) {
    max-height: 940px;
    overflow: hidden;
}
.bannerArea .bannerList:not(.slick-slider) .bannerItem {
    position: absolute;
    top: 0;
    left: 0;
}
.bannerArea .bannerList:not(.slick-slider) .bannerItem:first-child {
    position: relative;
    z-index: 2;
}
.bannerArea .bannerList.slick-dotted {
    margin-bottom: 0;
}
.bannerArea .bannerItem {
    display: block;
}
.bannerArea .bannerItem .Txt {
    max-width: 1200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 190px 20px 200px;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt {
        padding: 80px 20px;
    }
}
@media (max-width: 840px) {
    .bannerArea .bannerItem .Txt {
        padding: 40px 20px 280px;
        position: relative;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        display: none;
    }
    .bannerArrowBox, .bannerAnimation {
        display: none !important;
    }
}
@media (max-width: 640px) {
    .bannerArea .bannerItem .Txt {
        padding: 30px 20px 240px;
    }
}
.bannerArea .bannerItem .Txt .textBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-shadow: 0px 0px 10px #222;
}
@media (max-width: 640px) {
    .bannerArea .bannerItem .Txt .titleBox {
        margin-bottom: 0;
    }
}
.bannerArea .bannerItem .Txt .titleBox .titleTw {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.33;
    opacity: 0;
}
@media (max-width: 1440px) {
    .bannerArea .bannerItem .Txt .titleBox .titleTw {
        font-size: 50px;
    }
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .titleBox .titleTw {
        font-size: 40px;
        letter-spacing: 1px;
        line-height: 1.5;
    }
}
@media (max-width: 840px) {
    .bannerArea .bannerItem .Txt .titleBox .titleTw {
        font-size: 34px;
    }
}
@media (max-width: 640px) {
    .bannerArea .bannerItem .Txt .titleBox .titleTw {
        font-size: 30px;
        letter-spacing: 0.6px;
        line-height: 1.6;
    }
}
@media (max-width: 400px) {
    .bannerArea .bannerItem .Txt .titleBox .titleTw {
        font-size: 24px;
        line-height: 1.4;
    }
}
.bannerArea .bannerItem .Txt .bannerSubtitle {
    color: #fff;
    display: block;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.25;
    margin-top: 5px;
    opacity: 0;
}
@media (max-width: 1440px) {
    .bannerArea .bannerItem .Txt .bannerSubtitle {
        font-size: 20px;
    }
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .bannerSubtitle {
        font-size: 18px;
    }
}
@media (max-width: 840px) {
    .bannerArea .bannerItem .Txt .bannerSubtitle {
        font-size: 16px;
    }
}
@media (max-width: 640px) {
    .bannerArea .bannerItem .Txt .bannerSubtitle {
        display: none;
    }
}
.bannerArea .bannerItem .Txt .btnWrap {
    opacity: 0;
    margin: 45px auto 0;
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .btnWrap {
        margin: 30px auto 0;
    }
}
@media (max-width: 400px) {
    .bannerArea .bannerItem .Txt .btnWrap {
        margin: 20px auto 0;
    }
}
.bannerArea .bannerItem .Txt .bannerVideo {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    position: relative;
    position: absolute;
    bottom: 80px;
    right: -webkit-calc(50% - 50px);
    right: -moz-calc(50% - 50px);
    right: calc(50% - 50px);
    opacity: 0;
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .bannerVideo {
        width: 70px;
        height: 70px;
        right: -webkit-calc(50% - 35px);
        right: -moz-calc(50% - 35px);
        right: calc(50% - 35px);
    }
}
@media (max-width: 840px) {
    .bannerArea .bannerItem .Txt .bannerVideo {
        bottom: 160px;
    }
}
@media (max-width: 640px) {
    .bannerArea .bannerItem .Txt .bannerVideo {
        bottom: 130px;
    }
}
.bannerArea .bannerItem .Txt .bannerVideo:before {
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-animation: circleWave 2s infinite ease-out;
    -moz-animation: circleWave 2s infinite ease-out;
    -o-animation: circleWave 2s infinite ease-out;
    animation: circleWave 2s infinite ease-out;
}
@media (max-width: 840px) {
    .bannerArea .bannerItem .Txt .bannerVideo:before {
        -webkit-animation: circleWave 2.4s infinite ease-out;
        -moz-animation: circleWave 2.4s infinite ease-out;
        -o-animation: circleWave 2.4s infinite ease-out;
        animation: circleWave 2.4s infinite ease-out;
    }
}
.bannerArea .bannerItem .Txt .bannerVideo:after {
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-animation: circleWave 2s 1s infinite ease-out;
    -moz-animation: circleWave 2s 1s infinite ease-out;
    -o-animation: circleWave 2s 1s infinite ease-out;
    animation: circleWave 2s 1s infinite ease-out;
}
@media (max-width: 840px) {
    .bannerArea .bannerItem .Txt .bannerVideo:after {
        -webkit-animation: circleWave 2.4s 0.5s infinite ease-out;
        -moz-animation: circleWave 2.4s 0.5s infinite ease-out;
        -o-animation: circleWave 2.4s 0.5s infinite ease-out;
        animation: circleWave 2.4s 0.5s infinite ease-out;
    }
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
    border: 1px solid #00769d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
    z-index: 2;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn img {
    display: block;
    width: 16px;
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .bannerVideo .videoBtn img {
        width: 10px;
    }
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1;
    padding-top: 5px;
}
@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .bannerVideo .videoBtn span {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 10px;
    }
}
@-webkit-keyframes circleWave {
    to {
        opacity: 0;
        width: 160%;
        height: 160%;
    }
}
@-moz-keyframes circleWave {
    to {
        opacity: 0;
        width: 160%;
        height: 160%;
    }
}
@-o-keyframes circleWave {
    to {
        opacity: 0;
        width: 160%;
        height: 160%;
    }
}
@keyframes circleWave {
    to {
        opacity: 0;
        width: 160%;
        height: 160%;
    }
}
.bannerArea .bannerItem .Img {
    position: relative;
    z-index: 1;
}
.bannerArea .bannerItem.slick-current .Txt .titleTw {
    -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
    -moz-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
    -o-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
    animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerSubtitle {
    -webkit-animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
    -moz-animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
    -o-animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
    animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .btnWrap {
    -webkit-animation: bannerTxtAnimation 0.8s 1s ease-in-out forwards;
    -moz-animation: bannerTxtAnimation 0.8s 1s ease-in-out forwards;
    -o-animation: bannerTxtAnimation 0.8s 1s ease-in-out forwards;
    animation: bannerTxtAnimation 0.8s 1s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerVideo {
    -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
    -moz-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
    -o-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
    animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerArrowBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 90px;
    right: 77px;
    opacity: 0;
    z-index: 2;
}
@media (max-width: 840px) {
    .bannerArea .bannerArrowBox {
        right: -webkit-calc(50% - 105px);
        right: -moz-calc(50% - 105px);
        right: calc(50% - 105px);
        bottom: 48px;
    }
}
.bannerArea .bannerArrowBox.bannerAnimation {
    -webkit-animation: bannerTxtAnimation 0.6s ease-in-out forwards;
    -moz-animation: bannerTxtAnimation 0.6s ease-in-out forwards;
    -o-animation: bannerTxtAnimation 0.6s ease-in-out forwards;
    animation: bannerTxtAnimation 0.6s ease-in-out forwards;
}
.bannerArea .bannerArrowBox .slidePage {
    font-family: "Oswald", "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.64px;
    line-height: 1;
}
.bannerArea .bannerArrowBox .slidePage.current {
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}
.bannerArea .bannerArrowBox .slidePage.current:after {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    background-color: #fff;
    position: absolute;
    top: -webkit-calc(50% - 7px);
    top: -moz-calc(50% - 7px);
    top: calc(50% - 7px);
    left: auto;
    bottom: auto;
    right: 8px;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
}
.bannerArea .bannerArrowBox .slidePage.total {
    color: rgba(255, 255, 255, 0.8);
    padding-right: 20px;
}
.bannerArea .scrollDown {
    cursor: pointer;
    display: block;
    position: absolute;
    bottom: 90px;
    left: 30px;
    opacity: 0;
    z-index: 2;
}
@media (max-width: 1180px) {
    .bannerArea .scrollDown {
        display: none;
    }
}
.bannerArea .scrollDown.bannerAnimation {
    -webkit-animation: bannerTxtAnimation 0.6s ease-in-out forwards;
    -moz-animation: bannerTxtAnimation 0.6s ease-in-out forwards;
    -o-animation: bannerTxtAnimation 0.6s ease-in-out forwards;
    animation: bannerTxtAnimation 0.6s ease-in-out forwards;
}
.bannerArea .scrollDown .lineWrap {
    border: 1px solid #fff;
    -webkit-border-radius: 10.5px;
    -moz-border-radius: 10.5px;
    border-radius: 10.5px;
    width: 20px;
    height: 42px;
    padding: 10px 0;
    margin: 16px auto 0;
}
.bannerArea .scrollDown span {
    display: block;
}
.bannerArea .scrollDown span.text {
    color: #fff;
    display: block;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 5px;
    line-height: 20px;
}
.bannerArea .scrollDown span.line {
    width: 1px;
    height: 22px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.bannerArea .scrollDown span.line:before {
    content: "";
    width: 1px;
    height: 26px;
    -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
    -moz-animation: bannerScrollAnimation 2.5s linear infinite forwards;
    -o-animation: bannerScrollAnimation 2.5s linear infinite forwards;
    animation: bannerScrollAnimation 2.5s linear infinite forwards;
    background-color: #00769d;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.bannerArea .progressBar {
    display: none;
    width: 100%;
    height: 8px;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    right: auto;
    z-index: 3;
}
.bannerArea .progressBar .path {
    display: block;
    background-color: #00769d;
    width: 0%;
    height: 8px;
}
.bannerArea .progressBar .path.active {
    -webkit-animation: progressBarHorizontal linear forwards;
    -moz-animation: progressBarHorizontal linear forwards;
    -o-animation: progressBarHorizontal linear forwards;
    animation: progressBarHorizontal linear forwards;
}
.bannerArea .progressBar.show {
    display: block;
}
.bannerArea .progressBar.hide {
    display: none;
}
@-webkit-keyframes progressBarHorizontal {
    0% {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@-moz-keyframes progressBarHorizontal {
    0% {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@-o-keyframes progressBarHorizontal {
    0% {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes progressBarHorizontal {
    0% {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.bannerArea .slick-dots {
    width: 15px;
    margin: 0;
    bottom: 20%;
    right: 50px;
}
.bannerArea .slick-dots li {
    width: 100%;
    height: 15px;
    margin: 5px 0;
}
.bannerArea .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}
.bannerArea .slick-dots li button:before {
    content: "";
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 1;
}
.bannerArea .slick-dots li.slick-active button:before {
    border: 1px solid #fff;
    background-color: #fff;
    opacity: 1;
}
.applicationArea {
    background-image: url(../images/homebg.png);
    background-position: bottom center;
    padding: 96px 0 100px;
}
@media (max-width: 1500px) {
    .applicationArea {
        padding: 80px 0;
    }
}
@media (max-width: 1180px) {
    .applicationArea {
        padding: 67px 0 60px;
    }
}
@media (max-width: 400px) {
    .applicationArea {
        padding: 50px 0 40px;
    }
}
.applicationArea .wrap {
    position: relative;
}
.applicationArea .wrap > .expStyle {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}
.applicationArea .expStyle {
    padding-bottom: 25px;
    text-align: center;
}
@media (max-width: 400px) {
    .applicationArea .expStyle {
        padding-bottom: 10px;
    }
}
.applicationArea .expStyle.ellipsis {
    height: 115px;
}
@media (max-width: 840px) {
    .applicationArea .expStyle.ellipsis {
        height: auto;
    }
}
.applicationArea .arrowBox {
    position: absolute;
    bottom: 175px;
}
.applicationArea .arrowBox.arrowPrev {
    left: -30px;
}
.applicationArea .arrowBox.arrowNext {
    right: -30px;
}
@media (max-width: 1500px) {
    .applicationArea .arrowBox {
        bottom: 85px;
    }
    .applicationArea .arrowBox.arrowPrev {
        left: -webkit-calc(50% - 65px);
        left: -moz-calc(50% - 65px);
        left: calc(50% - 65px);
    }
    .applicationArea .arrowBox.arrowNext {
        right: -webkit-calc(50% - 65px);
        right: -moz-calc(50% - 65px);
        right: calc(50% - 65px);
    }
}
@media (max-width: 1180px) {
    .applicationArea .arrowBox {
        bottom: 105px;
    }
}
@media (max-width: 400px) {
    .applicationArea .arrowBox {
        bottom: 70px;
    }
}
.applicationArea .btnWrap {
    margin: 15px auto 0;
}
@media (min-width: 401px) and (max-width: 1180px) {
    .applicationArea .btnWrap {
        margin: 35px auto 0;
    }
}
.applicationList {
    padding-bottom: 40px;
}
@media (max-width: 1500px) {
    .applicationList {
        padding-bottom: 80px;
    }
}
@media (max-width: 1180px) {
    .applicationList {
        margin: 0 -20px;
    }
}
@media (max-width: 400px) {
    .applicationList {
        padding-bottom: 60px;
    }
}
.applicationList:not(.slick-slider) {
    max-height: 240px;
    overflow: hidden;
}
.applicationList .adItem {
    padding: 20px;
}
@media (max-width: 400px) {
    .applicationList .adItem {
        padding: 20px 8px;
    }
}
@media (min-width: 1201px) {
    .applicationList .adItem:hover .item {
        -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
        -webkit-transform: translateY(-7px);
        -moz-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        -o-transform: translateY(-7px);
        transform: translateY(-7px);
    }
}
.applicationList .item {
    aspect-ratio: 1/1;
    background-color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 160px;
    height: 160px;
    margin: 0 auto;
    padding: 10px 10px 20px;
    position: relative;
}
@media (max-width: 400px) {
    .applicationList .item {
        width: 130px;
        height: 130px;
    }
}
.applicationList .item:before {
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #01a8ed;
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
    -moz-transform: translate3d(-50%, -50%, 0) scale(0);
    transform: translate3d(-50%, -50%, 0) scale(0);
}
.applicationList .item a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
}
@media (min-width: 1201px) {
    .applicationList .item:hover:before {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
        -moz-transform: translate3d(-50%, -50%, 0) scale(1);
        transform: translate3d(-50%, -50%, 0) scale(1);
    }
    .applicationList .item:hover .Img img {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
    }
    .applicationList .item:hover .title {
        color: #fff;
    }
}
.applicationList .Img {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}
.applicationList .Img img {
    width: 100%;
    display: block;
}
.applicationList .Txt {
    padding: 0 10px;
    position: relative;
}
.applicationList .Txt .title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 20px;
}
.applicationList .Txt .title.ellipsis {
    max-height: 40px;
}
@media (max-width: 400px) {
    .applicationList .Txt .title {
        font-size: 15px;
        letter-spacing: 0;
    }
}
.aboutArea {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.aboutArea .Img {
    position: relative;
    width: 100%;
    margin-left: -100%;
}
.aboutArea .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.aboutArea .TxtBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
    z-index: 2;
}
@media (max-width: 1180px) {
    .aboutArea .TxtBox {
        padding: 40px 0;
    }
}
.aboutArea .wrap {
    position: relative;
    z-index: 2;
}
.aboutArea .Txt {
    max-width: 695px;
    text-shadow: 0px 0px 10px #000;
}
@media (max-width: 1280px) {
    .aboutArea .Txt {
        max-width: 100%;
    }
}
.aboutArea .Txt .paragraphTitle {
    display: block;
    padding: 0;
    margin-bottom: 35px;
    font-size: 20px;
    font-weight: 400;
}
.aboutArea .Txt .paragraphTitle.ellipsis {
    height: 96px;
}
@media (max-width: 640px) {
    .aboutArea .Txt .paragraphTitle.ellipsis {
        height: 96px;
    }
}
.aboutArea .Txt .expStyle.ellipsis {
    max-height: 120px;
}
.aboutArea .Txt .btnWrap {
    margin-top: 72px;
}
@media (max-width: 1440px) {
    .aboutArea .Txt .btnWrap {
        margin-top: 50px;
    }
}
.productArea {
    padding: 96px 0 170px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 1180px) {
    .productArea {
        padding: 67px 0 143px;
    }
}
.productArea .bgImg {
    pointer-events: none;
}
.productArea .bgImg img {
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: -webkit-calc(50% - 331px);
    left: -moz-calc(50% - 331px);
    left: calc(50% - 331px);
    bottom: auto;
    right: auto;
}
@media (max-width: 840px) {
    .productArea .bgImg img {
        width: 282px;
        left: -webkit-calc(50% - 141px);
        left: -moz-calc(50% - 141px);
        left: calc(50% - 141px);
    }
}
.productArea .wrap {
    position: relative;
}
.productArea .expStyle {
    padding-bottom: 25px;
    text-align: center;
}
.productArea .expStyle.ellipsis {
    height: 115px;
}
.productArea .arrowBox.arrowPrev {
    position: absolute;
    top: auto;
    left: -webkit-calc(50% - 65px);
    left: -moz-calc(50% - 65px);
    left: calc(50% - 65px);
    bottom: -80px;
    right: auto;
}
.productArea .arrowBox.arrowNext {
    position: absolute;
    top: auto;
    left: auto;
    bottom: -80px;
    right: -webkit-calc(50% - 65px);
    right: -moz-calc(50% - 65px);
    right: calc(50% - 65px);
}
@media (max-width: 840px) {
    .productArea .arrowBox.arrowNext,
    .productArea .arrowBox.arrowPrev {
        margin-bottom: 10px;
    }
}
.bgLine {
    border-left: 1px solid rgba(27, 27, 27, 0.1);
    border-right: 1px solid rgba(27, 27, 27, 0.1);
    width: 100%;
    max-width: 90%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}
@media (max-width: 640px) {
    .bgLine {
        max-width: -webkit-calc(100% - 40px);
        max-width: -moz-calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
}
.bgLine:before {
    content: "";
    border-left: 1px solid rgba(27, 27, 27, 0.1);
    border-right: 1px solid rgba(27, 27, 27, 0.1);
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (max-width: 640px) {
    .bgLine:before {
        display: none;
    }
}
.bgLine:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.1);
    position: absolute;
    top: 0;
    left: -webkit-calc(50% - 0.5px);
    left: -moz-calc(50% - 0.5px);
    left: calc(50% - 0.5px);
    bottom: auto;
    right: auto;
}
.productList {
    padding: 18px 22px 0;
}
@media (max-width: 840px) {
    .productList {
        padding: 0px 0 0;
    }
}
.productList:not(.slick-slider) {
    max-height: 560px;
    overflow: hidden;
}
.productList .slick-list {
    overflow: visible;
}
@media (max-width: 840px) {
    .productList .slick-list {
        overflow: hidden;
    }
}
.productList .productItem {
    padding: 20px 22px 40px;
}
@media (max-width: 840px) {
    .productList .productItem {
        padding: 20px 0;
    }
}
.productList .item {
    -webkit-box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.07);
    max-width: 630px;
    margin: 0 auto;
    position: relative;
}
@media (min-width: 1201px) {
    .productList .item:hover {
        -webkit-box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.2);
    }
    .productList .item:hover .Img img {
        opacity: 0.8;
        -webkit-transform: scale(1.03);
        -moz-transform: scale(1.03);
        -ms-transform: scale(1.03);
        -o-transform: scale(1.03);
        transform: scale(1.03);
    }
    .productList .item:hover .Txt:before {
        width: 100%;
        right: auto;
        left: 0;
    }
}
.productList .Img {
    /*background-color: #01a8ed;*/
    background-color: #fff;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.productList .Img a {
    display: block;
    width: 100%;
}
.productList .Img img {
    display: block;
    width: 100%;
}
.productList .Txt {
    background-color: #00769d;
    padding: 10px 0px;
    text-align: center;
    position: relative;
}
@media (max-width: 840px) {
    .productList .Txt {
        padding: 0;
    }
}
.productList .Txt:before {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    background-color: #01a8ed;
    position: absolute;
    top: 0;
    left: auto;
    bottom: auto;
    right: 0;
}
.productList .Txt .title {
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
@media (max-width: 840px) {
    .productList .Txt .title {
        height: 50px;
    }
}
.productList .Txt a {
    color: #fff;
    display: block;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.36;
    padding: 0 10px;
}
@media (max-width: 1180px) {
    .productList .Txt a {
        font-size: 20px;
    }
}
@media (max-width: 840px) {
    .productList .Txt a {
        font-size: 18px;
        line-height: 50px;
    }
}
@media (max-width: 400px) {
    .productList .Txt a {
        font-size: 17px;
    }
}
.productList .linkWrap {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
}
.newsArea {
    padding: 100px 0 80px;
    background-color: #f1f7f9;
}
@media (max-width: 1180px) {
    .newsArea {
        padding: 70px 0 50px;
    }
}
.newsArea .topBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
.newsArea .topBox:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    right: auto;
}
.newsArea .topBox .titleBox {
    margin-bottom: 0;
}
@media (max-width: 1180px) {
    .newsArea .topBox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .newsArea .topBox:before {
        display: none;
    }
    .newsArea .topBox .titleBox:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
.newsArea .classBox {
    background-color: transparent;
    padding-bottom: 10px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
@media (max-width: 1180px) {
    .newsArea .classBox {
        padding: 50px 0 0;
        width: 100%;
    }
}
@media (min-width: 1181px) {
    .newsArea .classBox .classLink {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-right: -20px;
    }
    .newsArea .classBox .classLink > li {
        padding: 0 5px;
        min-width: auto;
        display: block;
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -moz-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .newsArea .classBox .classLink > li:after,
    .newsArea .classBox .classLink > li:before {
        display: none;
    }
    .newsArea .classBox .classLink > li a {
        background-color: transparent;
        color: #383838;
        display: block;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.9px;
        line-height: 1.66;
    }
    .newsArea .classBox .classLink > li a.current {
        color: #01a8ed;
    }
}
@media (min-width: 1181px) and (min-width: 1201px) {
    .newsArea .classBox .classLink > li a:hover {
        color: #00769d;
        -webkit-transform: translateY(-3px);
        -moz-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        -o-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}
@media (max-width: 1180px) {
    .newsArea .classBox .classLink {
        margin-right: 0;
        width: 100%;
        left: 0;
    }
}
.newsArea .newsBox {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 40px 0 0;
}
.newsArea .newsBox.hide {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}
@media (max-width: 1180px) {
    .newsArea .newsBox {
        padding: 20px 0 0;
    }
}
.newsList:not(.slick-slider) {
    max-height: 484px;
    overflow: hidden;
}
.newsList .newsItem {
    padding: 20px 0;
    position: relative;
}
@media (max-width: 840px) {
    .newsList .newsItem {
        padding: 0 0 10px;
    }
}
.newsList .newsItem:hover .item:before {
    width: 100%;
}
.newsList .item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 10px 0 30px;
    position: relative;
}
@media (max-width: 1180px) {
    .newsList .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 640px) {
    .newsList .item {
        padding: 0px 0 25px;
    }
}
.newsList .item:before {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background-color: #0388df;
    position: absolute;
    top: auto;
    left: 0px;
    bottom: -1px;
    right: auto;
}
@media (min-width: 1201px) {
    .newsList .item:hover .arrowBox.helf .helfArrow {
        -webkit-animation: arrowMoveRight 0.6s infinite ease-out;
        -moz-animation: arrowMoveRight 0.6s infinite ease-out;
        -o-animation: arrowMoveRight 0.6s infinite ease-out;
        animation: arrowMoveRight 0.6s infinite ease-out;
    }
    .newsList .item:hover .Txt .title {
        color: #01a8ed;
    }
}
.newsList .date {
    width: 205px;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 20px;
}
@media (max-width: 640px) {
    .newsList .date {
        -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -moz-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding-right: 10px;
        width: auto;
        height: 50px;
    }
}
.newsList .date .day {
    color: #01a8ed;
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    padding-right: 10px;
}
@media (max-width: 1440px) {
    .newsList .date .day {
        font-size: 54px;
    }
}
@media (max-width: 1180px) {
    .newsList .date .day {
        font-size: 50px;
    }
}
@media (max-width: 840px) {
    .newsList .date .day {
        font-size: 46px;
    }
}
@media (max-width: 640px) {
    .newsList .date .day {
        font-size: 40px;
    }
}
.newsList .date .month,
.newsList .date .year {
    color: #383838;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.3;
}
.newsList .classTitle {
    border-left: 1px solid rgba(27, 27, 27, 0.2);
    border-right: 1px solid rgba(27, 27, 27, 0.2);
    color: #01a8ed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 128px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    margin: 5px 0;
    padding: 0 5px;
    position: relative;
}
@media (max-width: 640px) {
    .newsList .classTitle {
        -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        border: none;
        margin: 0;
        padding: 0 0 0 10px;
        text-align: right;
        width: auto;
    }
}
.newsList .Txt {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 45px;
}
@media (max-width: 1180px) {
    .newsList .Txt {
        width: -webkit-calc(100% - 60px);
        width: -moz-calc(100% - 60px);
        width: calc(100% - 60px);
        padding: 5px 0 0;
    }
}
@media (max-width: 640px) {
    .newsList .Txt {
        width: 100%;
    }
}
.newsList .Txt .title {
    color: #383838;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.9px;
    line-height: 30px;
}
.newsList .Txt .title.ellipsis {
    height: 30px;
}
.newsList .Txt .expStyle {
    margin-top: 5px;
}
.newsList .Txt .expStyle.ellipsis {
    height: 30px;
}
@media (max-width: 640px) {
    .newsList .Txt .expStyle {
        display: none;
    }
}
@media (max-width: 640px) {
    .newsList .arrowBox {
        display: none;
    }
}
.newsList .linkWrap {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
}
.linkArea {
    background-color: #f1f7f9;
}
.linkArea .wrap {
    max-width: 100%;
    padding: 0;
}
.linkList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 840px) {
    .linkList {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.linkList .linkItem {
    width: 100%;
    position: relative;
}
@media (max-width: 840px) {
    .linkList .linkItem + .linkItem {
        margin-top: 30px;
    }
}
.linkList .linkItem + .linkItem .item {
    padding-left: 100px;
}
@media (max-width: 840px) {
    .linkList .linkItem + .linkItem .item {
        padding-left: 60px;
    }
}
@media (max-width: 840px) {
    .linkList .linkItem + .linkItem .item {
        padding-left: 20px;
    }
}
.linkList .item {
    padding: 90px 77px 20px 115px;
    position: relative;
    min-height: 430px;
    height: 100%;
    width: 100%;
}
@media (max-width: 1440px) {
    .linkList .item {
        padding: 80px 60px;
    }
}
@media (max-width: 1280px) {
    .linkList .item {
        min-height: 400px;
    }
}
@media (max-width: 840px) {
    .linkList .item {
        padding: 50px 20px;
        min-height: auto;
    }
    .linkArea {
        display: none;
    }
}
@media (min-width: 1201px) {
    .linkList .item:hover .Img {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    .linkList .item:hover .Txt .titleBox {
        margin-bottom: 25px;
    }
    .linkList .item:hover .Txt .titleBox:before {
        background-color: #fff;
    }
    .linkList .item:hover .Txt .titleTw {
        color: #fff;
    }
    .linkList .item:hover .Txt .expStyle {
        color: #fff;
    }
    .linkList .item:hover .arrowBox .arrow:before {
        -webkit-animation: arrowMoveLeft 0.6s infinite ease-out;
        -moz-animation: arrowMoveLeft 0.6s infinite ease-out;
        -o-animation: arrowMoveLeft 0.6s infinite ease-out;
        animation: arrowMoveLeft 0.6s infinite ease-out;
    }
}
.linkList .Img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0.5;
}
.linkList .Img img {
    width: 100%;
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .linkList .Img {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.linkList .Txt {
    position: relative;
}
.linkList .Txt .title {
    display: none;
}
@media (max-width: 1200px) {
    .linkList .Txt .titleBox {
        margin-bottom: 25px;
    }
    .linkList .Txt .titleBox:before {
        background-color: #fff;
    }
    .linkList .Txt .titleTw {
        color: #fff;
    }
    .linkList .Txt .expStyle {
        color: #fff;
    }
}
.linkList .arrowBox {
    margin-left: auto;
    position: relative;
}
.linkList .linkWrap {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
}
