.newsArea .item .title, .productList .imgBox .Img.second, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .popWin .close::before, .popWin .close::after, .popWin .close {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.popWin {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    line-height: 1.8;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.popWin .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.popWin .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 700px;
    max-width: 90%;
    max-height: 85vh;
    opacity: 0;
    background-color: #fff;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.popWin .popContent {
    max-height: 85vh;
    overflow-y: auto;
}
.popWin img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.popWin .Txt {
    padding: 30px;
}
.popWin .Txt .popTitle {
    font-size: 25px;
    margin-bottom: 25px;
}
.popWin .close {
    width: 46px;
    height: 46px;
    background-color: #1a73e8;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.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 .close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
@media (min-width: 1201px) {
    .popWin .close:hover {
        background-color: #1a73e8;
    }
    .popWin .close:hover::before {
        -webkit-transform: rotate(-30deg);
                transform: rotate(-30deg);
    }
    .popWin .close:hover::after {
        -webkit-transform: rotate(30deg);
                transform: rotate(30deg);
    }
}
.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
    opacity: 1;
}
@media (max-width: 1180px) {
    .popWin .popContent {
        max-height: calc(100vh - 150px);
    }
}

.mainArea {
    padding: 0;
    padding-top: 105px;
}
@media (max-width: 1180px) {
    .mainArea {
        padding-top: 60px;
    }
}
@media (max-width: 540px) {
    .mainArea {
        padding-top: 30px;
    }
}

.bannerArea .bannerBox {
    position: relative;
}
.bannerArea .bannerList {
    position: relative;
    z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
    margin-bottom: 0;
}
.bannerArea .bannerItem h1 {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.bannerArea .bannerItem .Txt {
    max-width: 1200px;
    padding: 110px 20px 85px;
}
.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: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    opacity: 0;
}
.bannerArea .bannerItem .Txt .subtitle {
    color: #fff;
    display: block;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-top: 10px;
    opacity: 0;
}
.bannerArea .bannerItem .Txt .text {
    color: #fff;
    display: block;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-top: 10px;
    opacity: 0;
}
.bannerArea .bannerItem .Txt .btnBox {
    opacity: 0;
    padding-top: 30px;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    bottom: 150px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #fff;
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 5px);
    z-index: 1;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::after {
    content: "";
    border: 1px dashed #fff;
    border-radius: 50%;
    z-index: 1;
    width: 75%;
    height: 75%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
@media (max-width: 1440px) {
    .bannerArea .bannerItem .Txt {
        padding: 20px 20px 85px;
    }
}
@media (max-width: 960px) {
    .bannerArea .bannerItem .Txt {
        padding: 20px;
    }
}
.bannerArea .slick-current .Txt .title {
    -webkit-animation: slideUpAnimation 0.8s ease-in-out forwards;
            animation: slideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .subtitle {
    -webkit-animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
            animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
    -webkit-animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
            animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .socialBox {
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 2;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.bannerArea .socialBox .socialList {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.bannerArea .socialBox .socialList li {
    margin: 7.5px 0;
}
.bannerArea .socialBox .socialList li:first-child {
    margin-top: 0;
}
.bannerArea .socialBox .socialList li:last-child {
    margin-bottom: 0;
}
.bannerArea .socialBox .socialList li a {
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
    width: 20px;
    height: 18px;
    display: inline-block;
    fill: #fff;
    margin-top: -2px;
    vertical-align: middle;
}
@media (min-width: 1201px) {
    .bannerArea .socialBox .socialList li a:hover {
        color: #1a73e8;
    }
    .bannerArea .socialBox .socialList li a:hover svg {
        fill: #1a73e8;
    }
}
.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: #fff;
    -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: #fff;
    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: #1a73e8;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.bannerArea .slick-dots {
    bottom: 50%;
    right: 50px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
}
@media (max-width: 1180px) {
    .bannerArea .Txt .bannerVideo,
    .bannerArea .socialBox,
    .bannerArea .scrollDown,
    .bannerArea .slick-dots {
        display: none !important;
    }
}

.productBox {
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 20px;
}
.productBox.hide {
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.productList {
    margin: 0 -10.5px;
    position: relative;
}
.productList:not(.slick-slider) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.productList:not(.slick-slider) .productItem {
    width: 33.33%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
@media (max-width: 900px) {
    .productList {
        margin: 0 -5px;
    }
}
.productList .item {
    position: relative;
    overflow: hidden;
    padding: 10.5px;
}
@media (max-width: 900px) {
    .productList .item {
        padding: 0 5px;
    }
}
.productList .imgBox {
    position: relative;
    z-index: 1;
}
@media (min-width: 1201px) {
    .productList .imgBox:hover .Img.second {
        opacity: 1;
    }
}
.productList .imgBox .Img img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.productList .imgBox .Img.second {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.productList .Txt {
    position: relative;
    padding: 15px 0;
}
@media (max-width: 1180px) {
    .productList .Txt {
        padding: 10px 0;
    }
}

.bestArea {
    padding: 50px 0;
}
.bestArea .titleBox .title {
    position: relative;
    padding-right: 67px;
}
.bestArea .titleBox .title:after {
    content: "";
    position: absolute;
    top: -5px;
    right: 0;
    width: 46px;
    height: 46px;
    background: url("../images/icon/icon_thumb.png") no-repeat center center/contain;
}
@media (max-width: 1180px) {
    .bestArea .titleBox .title:after {
        width: 40px;
        height: 40px;
    }
}
@media (min-width: 1201px) {
    .bestArea .item:hover .textEditor {
        color: #1a73e8;
    }
}

.newsArea {
    margin-top: 22px;
    padding: 50px 0;
}
.newsArea .titleBox .title {
    position: relative;
    padding-right: 57px;
}
.newsArea .titleBox .title:after {
    content: "";
    position: absolute;
    right: 0;
    top: -6px;
    width: 50px;
    height: 52px;
    background: url("../images/icon/icon_wonder.png") no-repeat center center/contain;
}
@media (max-width: 1180px) {
    .newsArea .titleBox .title:after {
        width: 40px;
        height: 42px;
    }
}
@media (min-width: 1201px) {
    .newsArea .item:hover .title {
        color: #1a73e8;
    }
}
.newsArea .item .title {
    padding-top: 4px;
    padding-bottom: 10px;
    font-weight: 500;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-size: 22px;
    line-height: 1.2272727273;
    letter-spacing: 1.1px;
}
.newsArea .item .title a {
    display: block;
}
.newsArea .item .price {
    font-weight: 700;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-size: 22px;
    line-height: 1.2272727273;
    letter-spacing: 0px;
}
@media (max-width: 1180px) {
    .newsArea .item .title,
    .newsArea .item .price {
        font-size: 20px;
    }
}
@media (max-width: 540px) {
    .newsArea .item .title,
    .newsArea .item .price {
        font-size: 18px;
    }
}