.serviceArea .serviceList .serviceItem .Img img, .serviceArea .serviceList .serviceItem .Txt .chTitle a::before, .newsArea .rightBox .newsList .Txt .chTitle a::before, .linkArea .linkList .Img, .linkArea .linkList .num {
    transition: all .5s;
}

.aboutArea .aboutLi:nth-child(1) .moreBtn, .aboutArea .aboutLi:nth-child(1) .moreBtn::after, .newsArea .rightBox .moreBtn, .newsArea .rightBox .moreBtn::after {
    transition: all .3s;
}

.mainArea {
    padding: 0;
    background-image: url(../images/homeWBg.jpg);
    background-repeat: repeat;
}

/* loading*/
.loadingArea {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15000;
    width: 100%;
    height: 100vh;
    opacity: 1;
    pointer-events: none;
}

.loadingArea.show {
    pointer-events: auto;
    animation: fadeOut 4s forwards linear;
}

.loadingArea.show .loadLogo .NW, .loadingArea.show .loadLogo .NR {
    opacity: 1;
}

.loadingArea.show .loadLogo .logoCh, .loadingArea.show .loadLogo .logoEn {
    opacity: 1;
}

.loadingArea.show .loadLogo .logoTxt {
    opacity: 1;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    95% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
    }
}

.loadingArea::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    background-color: #dbdbdb;
}

.loadingArea .loadLogo {
    position: absolute;
    width: 500px;
    height: 500px;
    top: calc(50% - 250px);
    left: calc(50% - 250px);
}

.loadingArea .loadLogo .NW, .loadingArea .loadLogo .NR {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1.2s;
    animation: logoLeft 3.6s forwards;
}

.loadingArea .loadLogo .logoTxt {
    height: 220px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 130px;
    left: -10px;
    opacity: 0;
    animation: none;
    transition: 1.2s 1.5s ease-in-out;
}

.loadingArea .loadLogo .circleWrap {
    width: 500px;
    height: 500px;
    position: relative;
    animation: logoLeft 3.6s forwards;
}

.loadingArea .loadLogo .circleWrap .helfWrap {
    width: 250px;
    height: 500px;
    overflow: hidden;
    position: absolute;
    top: 0;
}

.loadingArea .loadLogo .circleWrap .helfWrapLeft {
    left: 0;
}

.loadingArea .loadLogo .circleWrap .helfWrapRight {
    right: 0;
}

.loadingArea .loadLogo .circleWrap .circle {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    box-sizing: content-box;
    transform: rotate(-225deg);
}

.loadingArea .loadLogo .circleWrap .circleLeft {
    left: 0;
    border-top: 10px solid #722827;
    border-left: 10px solid #722827;
    border-bottom: 10px solid transparent;
    border-right: 10px solid transparent;
    animation: leftCircle 0.6s 0.6s linear forwards;
}

@keyframes leftCircle {
    0% {
        transform: rotate(-225deg);
    }
    100% {
        transform: rotate(-45deg);
    }
}

.loadingArea .loadLogo .circleWrap .circleRight {
    right: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #722827;
    border-right: 10px solid #722827;
    animation: rightCircle 0.6s linear forwards;
}

@keyframes rightCircle {
    0% {
        transform: rotate(-225deg);
    }
    100% {
        transform: rotate(-45deg);
    }
}

.loadingArea .loadLogo .logoCh {
    font-family: DFKai-sb;
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0px;
    color: #111;
    position: absolute;
    top: 150px;
    left: 0px;
    width: 700px;
    opacity: 0;
    transition: 1.2s 1.5s ease-in-out;
}

.loadingArea .loadLogo .logoEn {
    font-family: 'Noto Sans TC';
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .5px;
    color: #111;
    position: absolute;
    top: 280px;
    left: 5px;
    width: 700px;
    opacity: 0;
    transition: 1.2s 1.5s ease-in-out;
}

@media (max-width: 3840px) {
    .loadingArea .loadLogo {
        width: 200px;
        height: 200px;
        top: calc(50% - 100px);
        left: calc(50% - 100px);
    }
    .loadingArea .loadLogo .NW, .loadingArea .loadLogo .NR {
        animation: logoLeft3 3.6s forwards;
    }
    .loadingArea .loadLogo .circleWrap {
        width: 200px;
        height: 200px;
        animation: logoLeft3 3.6s forwards;
    }
    .loadingArea .loadLogo .circleWrap .helfWrap {
        width: 100px;
        height: 200px;
    }
    .loadingArea .loadLogo .circleWrap .circle {
        width: 190px;
        height: 190px;
    }
    .loadingArea .loadLogo .circleWrap .circleLeft {
        border-top: 5px solid #722827;
        border-left: 5px solid #722827;
        border-bottom: 5px solid transparent;
        border-right: 5px solid transparent;
    }
    .loadingArea .loadLogo .circleWrap .circleRight {
        border-top: 5px solid transparent;
        border-left: 5px solid transparent;
        border-bottom: 5px solid #722827;
        border-right: 5px solid #722827;
    }
    .loadingArea .loadLogo .logoTxt {
        height: 80px;
        top: 60px;
        left: 5px;
        opacity: 0;
    }
    .loadingArea .loadLogo .logoCh {
        font-size: 42px;
        top: 60px;
        left: 0px;
        width: 500px;
    }
    .loadingArea .loadLogo .logoEn {
        font-size: 21px;
        top: 115px;
        left: 5px;
        width: 500px;
        letter-spacing: 0px;
    }
    @keyframes logoLeft3 {
        0% {
            transform: scale(1);
        }
        35% {
            transform: scale(1) translate(0);
        }
        100% {
            transform: scale(0.5) translate(-300px);
        }
    }
}

@media (max-width: 640px) {
    .loadingArea .loadLogo {
        width: 100px;
        height: 100px;
        top: calc(50% - 50px);
        left: calc(50% - 50px);
    }
    .loadingArea .loadLogo .NW, .loadingArea .loadLogo .NR {
        animation: logoLeft4 3.6s forwards;
    }
    .loadingArea .loadLogo .circleWrap {
        width: 100px;
        height: 100px;
        animation: logoLeft4 3.6s forwards;
    }
    .loadingArea .loadLogo .circleWrap .helfWrap {
        width: 50px;
        height: 100px;
    }
    .loadingArea .loadLogo .circleWrap .circle {
        width: 94px;
        height: 94px;
    }
    .loadingArea .loadLogo .circleWrap .circleLeft {
        border-top: 3px solid #722827;
        border-left: 3px solid #722827;
        border-bottom: 3px solid transparent;
        border-right: 3px solid transparent;
    }
    .loadingArea .loadLogo .circleWrap .circleRight {
        border-top: 3px solid transparent;
        border-left: 3px solid transparent;
        border-bottom: 3px solid #722827;
        border-right: 3px solid #722827;
    }
    .loadingArea .loadLogo .logoTxt {
        height: 50px;
        top: 25px;
        left: -10px;
        opacity: 0;
    }
    .loadingArea .loadLogo .logoCh {
        font-size: 25px;
        top: 28px;
        left: 0px;
        width: 500px;
        font-family: 'DFKai-sb';
    }
    .loadingArea .loadLogo .logoEn {
        font-size: 12px;
        top: 58px;
        left: 5px;
        width: 500px;
        letter-spacing: 0px;
    }
    @keyframes logoLeft4 {
        0% {
            transform: scale(1);
        }
        35% {
            transform: scale(1) translate(0);
        }
        100% {
            transform: scale(0.5) translate(-170px);
        }
    }
}

@keyframes loadLine {
    0% {
        width: 0;
    }
    20% {
        width: 30%;
    }
    60% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}

@keyframes logoLeft {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1) translate(0);
    }
    100% {
        transform: scale(0.5) translate(-800px);
    }
}

/*pop*/
.popWin {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 12000;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    line-height: 1.8;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    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;
    transition: all .7s;
}

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

.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: #fff; */
    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 {
    transform: rotate(45deg);
}

.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popWin.show .mask, .popWin.show .inner {
    opacity: 1;
}

.popWin .close::after {
    transform: rotate(-45deg);
}

@media (max-width: 1180px) {
    .popWin .close {
        right: 0;
        top: 0;
        border-radius: 0;
    }
    .popWin .popContent {
        max-height: calc(100vh - 150px);
    }
}

.serviceArea {
    padding: 90px 0 120px;
    position: relative;
    overflow: hidden;
}

.serviceArea .bgcloud {
    position: absolute;
    bottom: 80px;
    right: -450px;
    opacity: 0.35;
}

@media (max-width: 640px) {
    .serviceArea .bgcloud {
        display: none;
    }
}

.serviceArea .titleBox {
    margin: 0 0 35px;
}

.serviceArea .infoBox {
    padding: 0 0 45px;
    width: 510px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #626262;
    margin: 0 auto;
    text-align: center;
}

.serviceArea .serviceList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.serviceArea .serviceList .serviceItem {
    width: 25%;
    max-width: 305px;
    position: relative;
    padding: 0 0 10px;
}

.serviceArea .serviceList .serviceItem .Img {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.serviceArea .serviceList .serviceItem .Img a {
    width: 100%;
}

.serviceArea .serviceList .serviceItem .Img a:hover img {
    transform: scale(1.1);
}

.serviceArea .serviceList .serviceItem .Img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceArea .serviceList .serviceItem .Txt {
    position: relative;
    display: block;
}

.serviceArea .serviceList .serviceItem .Txt .chTitle {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #111;
    padding: 20px 0 0;
    overflow: hidden;
}

.serviceArea .serviceList .serviceItem .Txt .chTitle a {
    width: 100%;
    height: 100%;
    color: #111;
    position: relative;
}

.serviceArea .serviceList .serviceItem .Txt .chTitle a::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #111;
    position: absolute;
    bottom: 0;
    left: -100%;
}

.serviceArea .serviceList .serviceItem .Txt .chTitle a:hover::before {
    left: 0;
}

.serviceArea .serviceList .serviceItem .Txt .chExp {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.5px;
    color: #555;
    padding: 5px 0 0;
}

.serviceArea .serviceList .serviceItem .Txt .chExp.ellipsis {
    max-height: 55px;
}

.serviceArea .serviceList .serviceItem:nth-child(1), .serviceArea .serviceList .serviceItem:nth-child(2) {
    width: 50%;
    max-width: 625px;
    height: 315px;
}

.serviceArea .serviceList .serviceItem:nth-child(1) .Img, .serviceArea .serviceList .serviceItem:nth-child(2) .Img {
    height: 100%;
}

.serviceArea .serviceList .serviceItem:nth-child(1) .Txt, .serviceArea .serviceList .serviceItem:nth-child(2) .Txt {
    position: absolute;
    bottom: 35px;
    left: 30px;
}

.serviceArea .serviceList .serviceItem:nth-child(1) .Txt .chTitle, .serviceArea .serviceList .serviceItem:nth-child(2) .Txt .chTitle {
    color: #fff;
}

.serviceArea .serviceList .serviceItem:nth-child(1) .Txt .chTitle a, .serviceArea .serviceList .serviceItem:nth-child(2) .Txt .chTitle a {
    color: #fff;
}

.serviceArea .serviceList .serviceItem:nth-child(1) .Txt .chTitle a::before, .serviceArea .serviceList .serviceItem:nth-child(2) .Txt .chTitle a::before {
    background-color: #fff;
}

.serviceArea .serviceList .serviceItem:nth-child(1) .Txt .chExp, .serviceArea .serviceList .serviceItem:nth-child(2) .Txt .chExp {
    color: #fff;
}

@media (max-width: 1440px) {
    .serviceArea .serviceList .serviceItem {
        max-width: 25%;
        padding: 0 5px 10px;
    }
    .serviceArea .serviceList .serviceItem:nth-child(1), .serviceArea .serviceList .serviceItem:nth-child(2) {
        max-width: 50%;
    }
}

@media (max-width: 840px) {
    .serviceArea .serviceList .serviceItem {
        width: 100%;
        max-width: 100%;
        height: 315px;
        padding: 0;
    }
    .serviceArea .serviceList .serviceItem .Img {
        height: 100%;
    }
    .serviceArea .serviceList .serviceItem .Txt {
        padding: 0;
        position: absolute;
        bottom: 35px;
        left: 30px;
    }
    .serviceArea .serviceList .serviceItem .Txt .chTitle {
        color: #fff;
    }
    .serviceArea .serviceList .serviceItem .Txt .chTitle a {
        color: #fff;
    }
    .serviceArea .serviceList .serviceItem .Txt .chTitle a::before {
        background-color: #fff;
    }
    .serviceArea .serviceList .serviceItem .Txt .chExp {
        color: #fff;
    }
    .serviceArea .serviceList .serviceItem:nth-child(1), .serviceArea .serviceList .serviceItem:nth-child(2) {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .serviceArea .serviceList .serviceItem {
        height: 200px;
    }
    .serviceArea .serviceList .serviceItem .Txt {
        left: 25px;
        bottom: 25px;
    }
    .serviceArea .serviceList .serviceItem:nth-child(1), .serviceArea .serviceList .serviceItem:nth-child(2) {
        height: 200px;
    }
    .serviceArea .serviceList .serviceItem:nth-child(1) .Txt, .serviceArea .serviceList .serviceItem:nth-child(2) .Txt {
        left: 25px;
        bottom: 25px;
    }
}

.serviceArea .arrowBox {
    opacity: 0;
}

.serviceArea .arrowBox a {
    pointer-events: none;
}

@media (max-width: 840px) {
    .serviceArea .arrowBox {
        opacity: 1;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #111;
        position: absolute;
        bottom: calc( 100px - 22.5px);
        z-index: 3;
        transition: 0.3s all ease-in-out;
    }
    .serviceArea .arrowBox.left {
        left: 16px;
    }
    .serviceArea .arrowBox.right {
        right: 16px;
    }
    .serviceArea .arrowBox a {
        pointer-events: initial;
        display: inline-block;
        width: 100%;
        height: 100%;
        position: absolute;
    }
    .serviceArea .arrowBox a::before {
        content: "";
        width: 10px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 18.5px;
        left: 17px;
        transform: rotate(-45deg);
        transition: 0.3s all ease-in-out;
    }
    .serviceArea .arrowBox a::after {
        content: "";
        width: 10px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        bottom: 18.5px;
        left: 17px;
        transform: rotate(45deg);
        transition: 0.3s all ease-in-out;
    }
    .serviceArea .arrowBox a.nextArrow {
        transform: rotate(180deg);
    }
    .serviceArea .arrowBox:hover {
        background-color: #dfdfdf;
    }
    .serviceArea .arrowBox:hover a::before, .serviceArea .arrowBox:hover a::after {
        background-color: #111;
    }
}

@media (max-width: 840px) {
    .serviceArea {
        padding: 120px 0 80px;
    }
}

@media (max-width: 640px) {
    .serviceArea .infoBox {
        width: 100%;
        padding: 0 0 40px;
    }
}

.aboutArea {
    padding: 90px 0 0;
    margin-bottom: -140px;
    background-image: url(../images/homeGBg.jpg);
    background-repeat: repeat;
}

@media (max-width: 1440px) {
    .aboutArea {
        margin-bottom: -60px;
    }
}

@media (max-width: 1024px) {
    .aboutArea {
        margin-bottom: 0px;
    }
}

.aboutArea .aboutLi {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.aboutArea .aboutLi .Txt .chTitle {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .8px;
    color: #111;
    font-weight: 500;
}

.aboutArea .aboutLi .Txt .chExp {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.6px;
    color: #555;
}

.aboutArea .aboutLi:nth-child(1) .Img {
    width: 630px;
    height: 620px;
}

.aboutArea .aboutLi:nth-child(1) .Img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutArea .aboutLi:nth-child(1) .Txt {
    width: calc(100% - 630px);
    padding: 75px 45px 0 80px;
}

.aboutArea .aboutLi:nth-child(1) .Txt .chExp {
    padding: 25px 0 0;
}

.aboutArea .aboutLi:nth-child(1) .moreBtn {
    display: inline-block;
    padding: 0 65px;
    margin: 55px 0 0;
    background-color: #111;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
    width: 190px;
}

.aboutArea .aboutLi:nth-child(1) .moreBtn::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #b1b1b1;
    position: absolute;
    right: -20px;
    top: 19.5px;
}

.aboutArea .aboutLi:nth-child(1) .moreBtn:hover {
    background-color: #898989;
    color: #111;
}

.aboutArea .aboutLi:nth-child(1) .moreBtn:hover::after {
    right: -35px;
}

.aboutArea .aboutLi:nth-child(2) {
    flex-direction: row-reverse;
    top: -140px;
}

.aboutArea .aboutLi:nth-child(2) .Img {
    width: 750px;
    height: 560px;
}

.aboutArea .aboutLi:nth-child(2) .Img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutArea .aboutLi:nth-child(2) .Txt {
    width: calc(100% - 750px);
    height: 200px;
    margin: 240px 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    writing-mode: vertical-rl;
}

.aboutArea .aboutLi:nth-child(2) .Txt .chExp {
    padding: 0 10px 0 0;
}

.aboutArea .aboutLi:nth-child(2) .moreBtn {
    display: none;
}

@media (max-width: 1440px) {
    .aboutArea .aboutLi:nth-child(1) .Img {
        width: 504px;
        height: 496px;
    }
    .aboutArea .aboutLi:nth-child(1) .Txt {
        width: calc(100% - 504px);
        padding: 75px 25px 0 40px;
    }
    .aboutArea .aboutLi:nth-child(1) .moreBtn {
        margin: 30px 0 0;
    }
    .aboutArea .aboutLi:nth-child(2) {
        top: -60px;
    }
    .aboutArea .aboutLi:nth-child(2) .Img {
        width: 600px;
        height: 448px;
    }
    .aboutArea .aboutLi:nth-child(2) .Txt {
        margin: 120px 0 0;
    }
}

@media (max-width: 1200px) {
    .aboutArea .aboutLi:nth-child(1) .moreBtn {
        display: none;
    }
}

@media (max-width: 1024px) {
    .aboutArea .aboutLi:nth-child(1) .Img {
        display: none;
    }
    .aboutArea .aboutLi:nth-child(1) .Txt {
        width: 100%;
        padding: 40px 0 50px;
        text-align: center;
    }
    .aboutArea .aboutLi:nth-child(2) {
        flex-direction: row;
        top: 0px;
        padding: 0 0 80px;
    }
    .aboutArea .aboutLi:nth-child(2) .Img {
        width: 600px;
        height: 448px;
        margin: 0 auto;
    }
    .aboutArea .aboutLi:nth-child(2) .Txt {
        width: 600px;
        margin: 0 auto;
        padding: 30px 0 0;
        height: auto;
        display: block;
        writing-mode: horizontal-tb;
    }
}

@media (max-width: 768px) {
    .aboutArea .aboutLi:nth-child(2) .Img {
        width: 395px;
        height: 296px;
    }
    .aboutArea .aboutLi:nth-child(2) .Txt {
        width: 395px;
    }
}

@media (max-width: 640px) {
    .aboutArea .aboutLi:nth-child(1) .Txt .chTitle {
        font-size: 16px;
        line-height: 28px;
        padding: 0 0 10px;
    }
}

.aboutArea .bgBox {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.aboutArea .bgMountain {
    position: absolute;
    bottom: 140px;
    left: 0;
    opacity: 0.65;
}

@media (max-width: 1440px) {
    .aboutArea .bgMountain {
        bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .aboutArea .bgMountain {
        bottom: 0;
    }
}

@media (max-width: 640px) {
    .aboutArea .bgMountain {
        display: none;
    }
}

.aboutArea .bgBird {
    position: absolute;
    top: 315px;
    left: 80px;
    opacity: 0.6;
}

@media (max-width: 1880px) {
    .aboutArea .bgBird {
        left: 0;
    }
}

@media (max-width: 1680px) {
    .aboutArea .bgBird {
        display: none;
    }
}

.newsArea {
    padding: 90px 0 0;
    background-image: url(../images/homeWBg.jpg);
    background-repeat: repeat;
    display: flex;
    flex-wrap: wrap;
}

.newsArea .infoBox {
    width: 650px;
    height: 435px;
    margin: 30px 0 0;
}

.newsArea .infoBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .newsArea .infoBox {
        width: 40%;
    }
}

@media (max-width: 960px) {
    .newsArea .infoBox {
        display: none;
    }
}

.newsArea .rightBox {
    width: calc(100% - 650px);
    padding: 0 70px 0 124px;
}

.newsArea .rightBox .titleBox {
    display: inline-block;
    margin: 0 0px 60px 110px;
}

.newsArea .rightBox .newsList {
    border-top: 1px solid #e9e9e9;
}

.newsArea .rightBox .newsList .homeNewsLi {
    width: 100%;
    display: block;
}

.newsArea .rightBox .newsList .Txt {
    display: flex;
    flex-wrap: nowrap;
    padding: 22px 0;
    border-bottom: 1px solid #e9e9e9;
}

.newsArea .rightBox .newsList .Txt .date {
    font-family: 'Roboto';
    font-size: 15px;
    line-height: 35px;
    letter-spacing: 0.8px;
    color: #898989;
    padding-right: 20px;
    width: 105px;
}

.newsArea .rightBox .newsList .Txt .newIcon {
    width: 76px;
    font-family: 'Noto Serif TC';
    font-size: 13px;
    line-height: 35px;
    letter-spacing: 0.8px;
    padding: 0 10px;
    position: relative;
    margin: 0;
}

.newsArea .rightBox .newsList .Txt .newIcon::before {
    content: "";
    width: 1px;
    height: 13px;
    background-color: #bc1818;
    position: absolute;
    top: 11px;
    left: 0;
}

.newsArea .rightBox .newsList .Txt .newIcon::after {
    content: "";
    width: 1px;
    height: 13px;
    background-color: #bc1818;
    position: absolute;
    top: 11px;
    right: 0;
}

.newsArea .rightBox .newsList .Txt .chTitle {
    width: calc(100% - 191px);
    padding-left: 56px;
}

.newsArea .rightBox .newsList .Txt .chTitle a {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.8px;
    color: #111;
    font-family: 'Noto Serif TC';
    color: #111;
    position: relative;
}

.newsArea .rightBox .newsList .Txt .chTitle a::before {
    content: "";
    width: 0%;
    height: 1px;
    background-color: #626262;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.newsArea .rightBox .newsList .Txt .chTitle a:hover {
    color: #626262;
}

.newsArea .rightBox .newsList .Txt .chTitle a:hover::before {
    width: 100%;
}

.newsArea .rightBox .newsList .Txt .chTitle.ellipsis {
    height: 35px;
}

@media (max-width: 1440px) {
    .newsArea .rightBox .newsList .Txt .chTitle {
        padding-left: 20px;
    }
}

@media (max-width: 960px) {
    .newsArea .rightBox .newsList .Txt {
        padding: 14px 0 15px;
    }
}

@media (max-width: 768px) {
    .newsArea .rightBox .newsList .Txt {
        flex-wrap: wrap;
    }
    .newsArea .rightBox .newsList .Txt .chTitle {
        width: 100%;
        padding-left: 0px;
    }
    .newsArea .rightBox .newsList .Txt .chTitle a {
        line-height: 22px;
    }
    .newsArea .rightBox .newsList .Txt .chTitle a::before {
        bottom: -4px;
    }
    .newsArea .rightBox .newsList .Txt .chTitle.ellipsis {
        height: 22px;
    }
}

.newsArea .rightBox .moreBtn {
    display: inline-block;
    padding: 0 65px;
    margin: 50px 0 0;
    background-color: #111;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 1px;
    position: relative;
    width: 190px;
    white-space: nowrap;
}

.newsArea .rightBox .moreBtn::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #b1b1b1;
    position: absolute;
    right: -20px;
    top: 19.5px;
}

.newsArea .rightBox .moreBtn:hover {
    background-color: #898989;
    color: #111;
}

.newsArea .rightBox .moreBtn:hover::after {
    right: -35px;
}

@media (max-width: 1440px) {
    .newsArea .rightBox {
        width: 60%;
        padding: 0 40px 0 60px;
    }
}

@media (max-width: 960px) {
    .newsArea .rightBox {
        width: 100%;
        padding: 0 40px;
    }
    .newsArea .rightBox .titleBox {
        width: 100%;
        margin: 0 auto;
        margin: 0 0 40px;
    }
    .newsArea .rightBox .moreBtn {
        display: none;
    }
}

.linkArea {
    padding: 90px 0 80px;
    text-align: center;
}

.linkArea .infoBox {
    width: 450px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #626262;
    margin: 0 auto;
    padding: 20px 0 0;
}

@media (max-width: 640px) {
    .linkArea .infoBox {
        width: 100%;
    }
}

.linkArea .linkList {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0 0;
}

.linkArea .linkList .homeLinkLi {
    width: 20%;
    padding: 0 0 30px;
}

.linkArea .linkList .homeLinkLi:hover .Img {
    border: 2px solid #898989;
}

.linkArea .linkList .homeLinkLi:hover .num {
    color: #bc1818;
}

.linkArea .linkList .homeLinkLi:hover .num::before, .linkArea .linkList .homeLinkLi:hover .num::after {
    background-color: #bc1818;
}

.linkArea .linkList .Img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
}

.linkArea .linkList .Img img {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 16px;
    left: 16px;
}

.linkArea .linkList .num {
    padding: 20px 10px 0;
    font-family: 'Roboto';
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.5px;
    color: #959595;
    position: relative;
    display: inline-block;
}

.linkArea .linkList .num::before {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    top: 25.5px;
    left: 0;
    background-color: #959595;
}

.linkArea .linkList .num::after {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    top: 25.5px;
    right: 0;
    background-color: #959595;
}

.linkArea .linkList .chTitle {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.5px;
    color: #111;
    width: 100%;
    padding: 0 10px;
}

.linkArea .linkList .chTitle a {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #111;
}

@media (max-width: 960px) {
    .linkArea .linkList .homeLinkLi {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .linkArea .linkList .homeLinkLi {
        width: 33.33%;
    }
    .linkArea .linkList .homeLinkLi .chTitle {
        padding: 0 15px;
    }
}

@media (max-width: 440px) {
    .linkArea .linkList .homeLinkLi {
        width: 50%;
    }
    .linkArea .linkList .homeLinkLi .chTitle {
        padding: 0 5px;
    }
}

.mapArea .wrap {
    width: 100%;
}

#gmap_s {
    width: 100%;
    height: 400px;
}
/*# sourceMappingURL=home.css.map */