@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&family=Poppins:wght@400;600;700&display=swap");
.bannerArea .circleDots > span, .productList .Img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.mainArea {
    padding: 80px 0 0;
    background: url(../images/bg_home.png) no-repeat center top, #f4f4f4;
}

@media (max-width: 640px) {
    .mainArea {
        padding-top: 50px;
    }
}

/***** bannerArea *****/
.bannerArea {
    position: relative;
    background-color: #2a2f33;
    overflow: hidden;
}

@media (min-width: 1181px) {
    .bannerArea {
        height: calc(100vh - 70px);
        padding: 19vh 0 15vh;
    }
}

.bannerArea .wrap {
    position: relative;
    z-index: 3;
    max-width: 1220px;
}

.bannerArea .aniBox {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/bn/bn_wave.png) no-repeat center;
    background-size: cover;
}

@media (max-width: 1180px) {
    .bannerArea .aniBox {
        height: 250px;
        margin-top: 0;
    }
}

.bannerArea .starBox {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bannerArea .starBox .star {
    position: absolute;
}

@media (min-width: 1181px) {
    .bannerArea .starBox .star {
        top: -8%;
        right: calc(50% - 180px);
        width: 842px;
    }
}

@media (max-width: 1180px) {
    .bannerArea .starBox .star {
        top: -50px;
        left: 70px;
        width: calc(842px / 2.6);
    }
}

@media (max-width: 480px) {
    .bannerArea .starBox .star {
        left: 30px;
    }
}

.bannerArea .starBox .star img {
    display: block;
    width: 100%;
    max-height: 100%;
    -webkit-animation: star 2s -.5s ease-in-out infinite alternate;
            animation: star 2s -.5s ease-in-out infinite alternate;
}

@-webkit-keyframes star {
    0% {
        opacity: 1;
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100% {
        opacity: 0.5;
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
}

@keyframes star {
    0% {
        opacity: 1;
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100% {
        opacity: 0.5;
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
}

.bannerArea .starBox .light {
    position: absolute;
}

@media (min-width: 1181px) {
    .bannerArea .starBox .light {
        top: 7%;
        right: calc(50% - 40px);
        width: 863px;
    }
}

@media (max-width: 1180px) {
    .bannerArea .starBox .light {
        top: 0;
        left: 0;
        width: calc(863px / 2.6);
    }
}

@media (max-width: 480px) {
    .bannerArea .starBox .light {
        left: -40px;
    }
}

.bannerArea .starBox .light img {
    display: block;
}

.bannerArea .starBox .light img:first-child {
    width: calc(682 / 863 * 100%);
    margin-top: -2%;
    margin-left: calc(30 / 863 * 100%);
    -webkit-animation: light1 2s -.5s ease-in-out infinite alternate;
            animation: light1 2s -.5s ease-in-out infinite alternate;
}

.bannerArea .starBox .light img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(450 / 863 * 100%);
    -webkit-animation: light2 2s -.5s ease-in-out infinite alternate;
            animation: light2 2s -.5s ease-in-out infinite alternate;
}

.bannerArea .starBox .light img:nth-child(3) {
    position: absolute;
    bottom: 2%;
    left: -3%;
    width: calc(251 / 863 * 100%);
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-animation: light3 2s -.5s ease-in-out infinite alternate;
            animation: light3 2s -.5s ease-in-out infinite alternate;
}

@-webkit-keyframes light1 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
        -webkit-transform: translate(-5px, -5px);
                transform: translate(-5px, -5px);
    }
}

@keyframes light1 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
        -webkit-transform: translate(-5px, -5px);
                transform: translate(-5px, -5px);
    }
}

@-webkit-keyframes light2 {
    0% {
        opacity: 1;
        -webkit-transform: rotate(0) translate(10px, 10px);
                transform: rotate(0) translate(10px, 10px);
    }
    100% {
        opacity: 0.7;
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
}

@keyframes light2 {
    0% {
        opacity: 1;
        -webkit-transform: rotate(0) translate(10px, 10px);
                transform: rotate(0) translate(10px, 10px);
    }
    100% {
        opacity: 0.7;
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
}

@-webkit-keyframes light3 {
    0% {
        opacity: 1;
        -webkit-transform: rotate(10deg);
                transform: rotate(10deg);
    }
    100% {
        opacity: 0.7;
        -webkit-transform: rotate(20deg) translateX(-60px);
                transform: rotate(20deg) translateX(-60px);
    }
}

@keyframes light3 {
    0% {
        opacity: 1;
        -webkit-transform: rotate(10deg);
                transform: rotate(10deg);
    }
    100% {
        opacity: 0.7;
        -webkit-transform: rotate(20deg) translateX(-60px);
                transform: rotate(20deg) translateX(-60px);
    }
}

@media (min-width: 1181px) {
    .bannerArea .bannerBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .bannerArea .titleBox {
        width: 360px;
        margin-right: -40px;
        padding-left: 40px;
    }
}

@media (max-width: 1180px) {
    .bannerArea .titleBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        min-height: 250px;
        margin-bottom: 0;
        padding: 45px;
    }
}

@media (max-width: 640px), (max-width: 1180px) and (max-height: 800px) {
    .bannerArea .titleBox {
        min-height: 150px;
        padding: 45px 45px 25px;
    }
}

.bannerArea .bnTitle {
    position: relative;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: unset;
    text-shadow: 0 0 20px #fff;
}

@media (max-width: 640px) {
    .bannerArea .bnTitle {
        font-size: 30px;
    }
}

.bannerArea .bnTitle span {
    display: block;
    padding-left: 70px;
    font-weight: 400;
}

@media (max-width: 640px) {
    .bannerArea .bnTitle span {
        padding-left: 50px;
    }
}

.bannerArea .circleDots {
    position: absolute;
    top: -30px;
    left: -40px;
    width: 95px;
    height: 95px;
    -webkit-animation: circleDotsRotate 4s -0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
            animation: circleDotsRotate 4s -0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@media (max-width: 640px) {
    .bannerArea .circleDots {
        top: -25px;
        left: -30px;
        width: 75px;
        height: 75px;
    }
}

.bannerArea .circleDots > span {
    position: absolute;
    top: 50%;
    left: calc(50% - 5px);
    display: block;
    width: 10px;
    height: 50%;
    padding: 0;
    opacity: 0;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-animation: circleDotsOpacity 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
            animation: circleDotsOpacity 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.bannerArea .circleDots > span:nth-child(1) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}

.bannerArea .circleDots > span:nth-child(12) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.bannerArea .circleDots > span:nth-child(2) {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
}

.bannerArea .circleDots > span:nth-child(11) {
    -webkit-animation-delay: -3.6666666667s;
            animation-delay: -3.6666666667s;
}

.bannerArea .circleDots > span:nth-child(3) {
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
}

.bannerArea .circleDots > span:nth-child(10) {
    -webkit-animation-delay: -7.3333333333s;
            animation-delay: -7.3333333333s;
}

.bannerArea .circleDots > span:nth-child(4) {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

.bannerArea .circleDots > span:nth-child(9) {
    -webkit-animation-delay: -11s;
            animation-delay: -11s;
}

.bannerArea .circleDots > span:nth-child(5) {
    -webkit-transform: rotate(-120deg);
            transform: rotate(-120deg);
}

.bannerArea .circleDots > span:nth-child(8) {
    -webkit-animation-delay: -14.6666666667s;
            animation-delay: -14.6666666667s;
}

.bannerArea .circleDots > span:nth-child(6) {
    -webkit-transform: rotate(-150deg);
            transform: rotate(-150deg);
}

.bannerArea .circleDots > span:nth-child(7) {
    -webkit-animation-delay: -18.3333333333s;
            animation-delay: -18.3333333333s;
}

.bannerArea .circleDots > span:nth-child(7) {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

.bannerArea .circleDots > span:nth-child(6) {
    -webkit-animation-delay: -22s;
            animation-delay: -22s;
}

.bannerArea .circleDots > span:nth-child(8) {
    -webkit-transform: rotate(-210deg);
            transform: rotate(-210deg);
}

.bannerArea .circleDots > span:nth-child(5) {
    -webkit-animation-delay: -25.6666666667s;
            animation-delay: -25.6666666667s;
}

.bannerArea .circleDots > span:nth-child(9) {
    -webkit-transform: rotate(-240deg);
            transform: rotate(-240deg);
}

.bannerArea .circleDots > span:nth-child(4) {
    -webkit-animation-delay: -29.3333333333s;
            animation-delay: -29.3333333333s;
}

.bannerArea .circleDots > span:nth-child(10) {
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
}

.bannerArea .circleDots > span:nth-child(3) {
    -webkit-animation-delay: -33s;
            animation-delay: -33s;
}

.bannerArea .circleDots > span:nth-child(11) {
    -webkit-transform: rotate(-300deg);
            transform: rotate(-300deg);
}

.bannerArea .circleDots > span:nth-child(2) {
    -webkit-animation-delay: -36.6666666667s;
            animation-delay: -36.6666666667s;
}

.bannerArea .circleDots > span:nth-child(12) {
    -webkit-transform: rotate(-330deg);
            transform: rotate(-330deg);
}

.bannerArea .circleDots > span:nth-child(1) {
    -webkit-animation-delay: -40.3333333333s;
            animation-delay: -40.3333333333s;
}

.bannerArea .circleDots > span::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.75);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.75);
    background-color: #fff;
}

@media (max-width: 640px) {
    .bannerArea .circleDots > span::before {
        left: calc(50% - 4px);
        width: 8px;
        height: 8px;
    }
}

@-webkit-keyframes circleDotsRotate {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}

@keyframes circleDotsRotate {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}

@-webkit-keyframes circleDotsOpacity {
    38%, 98% {
        opacity: 1;
    }
    6%, 30% {
        opacity: 0;
    }
}

@keyframes circleDotsOpacity {
    38%, 98% {
        opacity: 1;
    }
    6%, 30% {
        opacity: 0;
    }
}

@media (min-width: 1181px) {
    .bannerList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: calc(100% - 360px + 40px);
        padding-right: 40px;
        padding-left: 40px;
    }
    .bannerList > li {
        width: calc(100% / 3);
        padding: 10px;
    }
}

.bannerList .item {
    position: relative;
    overflow: hidden;
}

@media (min-width: 1181px) {
    .bannerList .item {
        -webkit-transform: skewX(-12deg);
                transform: skewX(-12deg);
    }
    .bannerList .item .Img,
    .bannerList .item .Txt {
        -webkit-transform: skewX(12deg);
                transform: skewX(12deg);
    }
    .bannerList .item .Img {
        width: 185%;
    }
    .bannerList .item .Img img {
        max-height: calc(66vh - 70px);
        -webkit-transform: translateX(-12%);
                transform: translateX(-12%);
        -webkit-transition: .6s;
        transition: .6s;
    }
    .bannerList .item:hover .Img img {
        -webkit-transform: translateX(-12%) scale(1.05);
                transform: translateX(-12%) scale(1.05);
    }
}

@media (max-width: 1180px) {
    .bannerList .Img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 640px), (max-width: 1180px) and (max-height: 800px) {
    .bannerList .Img {
        height: 120px;
    }
}

.bannerList .Txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

@media (min-width: 1181px) {
    .bannerList .Txt {
        padding: 0 0 0 15px;
    }
}

@media (max-width: 1180px) {
    .bannerList .Txt {
        padding: 0 20px;
    }
}

.bannerList .Txt img {
    display: block;
}

.bannerList p.text {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0;
}

.bannerList .bannerBtn {
    position: relative;
    z-index: 3;
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-align: right;
    pointer-events: auto;
}

@media (min-width: 641px) {
    .bannerList .bannerBtn {
        padding: 12px 20px;
    }
}

@media (max-width: 640px), (max-width: 1180px) and (max-height: 800px) {
    .bannerList .bannerBtn {
        margin-top: 10px;
        padding: 6px 0;
        font-size: 14px;
    }
}

.bannerList .bannerBtn::before {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -50%;
    z-index: -1;
    width: 200%;
    height: 105%;
    background-color: rgba(0, 0, 0, 0.6);
}

.bannerList .bannerBtn::after {
    content: '>>';
    display: inline-block;
    margin-left: 5px;
    font-weight: 400;
    letter-spacing: -3pt;
}

@media (min-width: 1181px) {
    .bannerArea .aniBox {
        opacity: 0;
        -webkit-transition: .8s ease;
        transition: .8s ease;
    }
    .bannerArea .bnTitle {
        opacity: 0;
        -webkit-transform: translateX(-50px);
                transform: translateX(-50px);
        -webkit-transition: 1.1s 0s ease;
        transition: 1.1s 0s ease;
    }
    .bannerArea .bannerItem {
        opacity: 0;
        -webkit-transition: 1.4s cubic-bezier(0.65, 0.05, 0.36, 1);
        transition: 1.4s cubic-bezier(0.65, 0.05, 0.36, 1);
    }
    .bannerArea .bannerItem:nth-child(1) {
        -webkit-transform: translateX(-50px);
                transform: translateX(-50px);
    }
    .bannerArea .bannerItem:nth-child(2) {
        -webkit-transform: translateX(-200px);
                transform: translateX(-200px);
    }
    .bannerArea .bannerItem:nth-child(3) {
        -webkit-transform: translateX(-350px);
                transform: translateX(-350px);
    }
    .bannerArea.show .aniBox {
        opacity: 1;
    }
    .bannerArea.show .bnTitle {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    .bannerArea.show .bannerItem {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        -webkit-transition-delay: .6s;
                transition-delay: .6s;
    }
}

.productArea,
.newsArea {
    padding: 0 0 80px;
}

@media (max-width: 640px) {
    .productArea,
    .newsArea {
        padding-bottom: 50px;
    }
}

.productArea .titleBox,
.newsArea .titleBox {
    text-align: center;
}

/***** productArea *****/
@media (max-width: 640px) {
    .productArea {
        display: none;
    }
}

.productList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productList li {
    padding: 5px;
    min-width: 400px;
}

.productList .item {
    position: relative;
    border: 1px solid #e3e3e3;
}

.productList .item:hover .Img img {
    -webkit-transform: scale(1.1) translateX(4%);
            transform: scale(1.1) translateX(4%);
}

.productList .Img {
    overflow: hidden;
}

.productList .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.productList .Txt {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 15px 25px 150px;
    pointer-events: none;
    overflow: hidden;
}

.productList .Txt img {
    display: block;
    max-width: 100%;
}

.productList h3 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.productList .txtExp {
    margin-top: 10px;
    font-size: 13px;
    line-height: calc(20 / 13);
}

/***** newsArea *****/
@media (min-width: 641px) {
    .newsArea .arrowBox .arrowPrev {
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .newsArea .arrowBox {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .newsArea .arrowBox .arrowPrev {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}

.newsList.slick-dotted.slick-slider {
    margin-bottom: 20px;
}

.newsList li {
    padding: 0;
}

@media (min-width: 641px) {
    .newsList .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        background-color: #fff;
    }
    .newsList .Img {
        width: 50%;
    }
    .newsList .Txt {
        width: 50%;
        padding: 35px;
    }
}

@media (min-width: 641px) and (max-width: 800px) {
    .newsList .Txt {
        padding: 20px;
    }
}

.newsList .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

@media (max-width: 640px) {
    .newsList .Txt {
        padding: 20px 0;
    }
}

.newsList h3 {
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 961px) {
    .newsList h3 {
        margin-top: 30px;
    }
}

@media (max-width: 960px) {
    .newsList h3 {
        margin-top: 15px;
    }
}

.newsList .classTitle {
    display: inline-block;
    padding: 0 10px;
    color: #fff;
    line-height: 24px;
    background-color: #005bac;
}

.newsList .newsDate {
    display: none;
    font-size: 12px;
    color: #b2b2b2;
}

.newsList .txtExp {
    margin-top: 10px;
    font-size: 13px;
}

.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 .7s;
    transition: all .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 .7s;
    transition: all .7s;
}

.popWin .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 700px;
    max-width: 90%;
    max-height: 85vh;
    opacity: 0;
    background-color: #fff;
    -webkit-transition: all .7s;
    transition: all .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: #d6000f;
    border-radius: 50%;
}

.popWin .close::before, .popWin .close::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 23px;
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.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);
    }
}
/*# sourceMappingURL=home.css.map */