.banner .slick-dots {
    position: absolute;
    bottom: 10px;
    right: 50%;
    margin-right: -720px;
    z-index: 50;
}
.banner .slick-dots li button {
    white-space: nowrap;
    text-indent: 101%;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: url('../../images/common/index/banner_dot.png') no-repeat;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.banner .slick-dots li.slick-active button {
    background-position: 100% 0;
}
.sect1{
    background: url(../../images/common/index/about_bg.jpg);
    background-size: cover;
    padding: 0;
    overflow: hidden;
}
.about-sect .row{
    display: flex;
    min-height: 600px;
    /* padding: 140px 0; */
    box-sizing: border-box;
    align-items: center;
}
.about-sect .row .col1{
    width: 56.737%;
    display: flex;
    position: absolute;
    left: 0;
    height: 600px;
    top: 0;
}
.about-sect .row .col1 .pic1{
    width: 59%;
}
.about-sect .row .col1 .pic2{
    width: 62.058%;
    margin-left: -24%;
    margin-top: 31%;
}
.about-sect .row .col1 .pic{
    position: relative;
}
/*---- smoke effect start ----*/
/*
.about-sect .row .col1 .pic:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    z-index: 21;
    width: 100%;
    height: 143%;
    bottom: 20%;
    background: url(../../images/common/index/hot_smoke.png) 50% 0% repeat-y;
    background-size: 100%;
    pointer-events: none;
    -webkit-animation-name: runtop, smoke_opacity;
    animation-name: runtop, smoke_opacity;
    -webkit-animation-duration: 45s, 4s;
    animation-duration: 45s, 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.about-sect .row .col1 .pic1:after {
    height: 53%;
    bottom: 47%;
}
@-webkit-keyframes runtop {
    0% {
        background-position-y: 0;
    }
    100% {
        background-position-y: 100%;
    }
}

@keyframes runtop {
    0% {
        background-position-y: 0;
    }
    100% {
        background-position-y: 100%;
    }
}

@-webkit-keyframes smoke_opacity {
    0% {
        opacity: .6;
    }
    30% {
        opacity: .3;
    }
    70% {
        opacity: .2;
    }
    100% {
        opacity: .6;
    }
}

@keyframes smoke_opacity {
    0% {
        opacity: .6;
    }
    30% {
        opacity: .3;
    }
    70% {
        opacity: .2;
    }
    100% {
        opacity: .6;
    }
}
*/
/*---- smoke effect end ----*/
/*.about-sect .row .col1 .pic img{
    position: relative;
    z-index: 2;
}
.about-sect .row .col1 .pic span{
    font-family: 'Noto Serif TC', serif;
    font-weight: 700;
    font-size: 200px;
    color: #EAE9E5;
    position: absolute;
    white-space:nowrap;
    letter-spacing: -24px;
    line-height: 1;

}
.about-sect .row .col1 .pic1 span{
    left: 70%;
    top: 5%;
}

.about-sect .row .col1 .pic2 span{
    right: 70%;
    top: 37%;
}*/

.about-sect .row .col2{
    width: 100%;
    position: relative;
    z-index: 5;
    margin-left: 50%;
    box-sizing: border-box;
}
.about-sect .row .col2:before{
    content: '';
    display: block;
    width: 889px;
    height: 523px!important;
    background: url(../../images/common/index/world.png) 50% 50%no-repeat;
    position: absolute;
    left: calc(50% - 444.5px);
    top: -90px;
    height: calc(50% - 261.5px);
    z-index: -1;
}
.about-sect .sect-title{
    color: #993031;
    font-size: 16px;
    font-weight: normal;
    font-family: 'EB Garamond', serif;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 13px;
}
.about-sect  .btn{
    position: relative;
    margin:30px 0 0;
}
.about-sect .sect-title span{
    color: #C7483D;
    font-weight: 700;
    font-family: 'Noto Serif TC', serif;
    font-size: 30px;
    display: block;
}
.about-sect .sect-title span:after{
    content: '';
    display: inline-block;
    width: 58px;
    height: 1px;
    background: #993031;
    margin-left: 28px;
    vertical-align: middle;
}
/*-about slide -*/
.about_slider {
    position: absolute;
    left: 33%;
    top: -30%;
    display: flex;
    z-index: 3;
    margin: auto 0;
    -webkit-transform: rotate(-14deg);
    transform: rotate(-14deg);
}



.about_slider .left ul li,
.about_slider .right ul li {
    padding-top: 50px;
    }

.about_slider .left {
/* margin-top:50px; */
margin-right:50px;
}


.about_slider .right,
.about_slider .left{
    width: 38%;
}
.about_slider .right ul,
.about_slider .left ul{
    list-style:none;
    margin: 0;
    padding: 0;

}
.about_slider .right ul li,
.about_slider .left ul li{
    -webkit-filter: saturate(0.2);
    transition:all .5s ease;
}
.about_slider .right ul li:hover,
.about_slider .left ul li:hover{
    -webkit-filter: saturate(1);
}

.about_slider .left ul:first-child {
    animation:left_loop 20s linear infinite;
}

.about_slider .left ul:last-child {
    animation:left_loop2 20s -10s  linear infinite;
}
/*-------------- left 1 --------------*/


@-webkit-keyframes left_loop {
0% {
-webkit-transform:translateY(100%);
transform:translateY(100%)
}

100% {
-webkit-transform:translateY(-100%);
transform:translateY(-100%)
}
}

@keyframes left_loop {
0% {
-webkit-transform:translateY(100%);
transform:translateY(100%)
}

100% {
-webkit-transform:translateY(-100%);
transform:translateY(-100%)
}
}
/*-------------- left 2 --------------*/


@-webkit-keyframes left_loop2 {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}

100% {
-webkit-transform:translateY(-200%);
transform:translateY(-200%)
}
}

@keyframes left_loop2 {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}

100% {
-webkit-transform:translateY(-200%);
transform:translateY(-200%)
}
}

/*-------------- left end --------------*/


.about_slider .right ul:first-child {
    animation:right_loop 21s linear infinite;
}

.about_slider .right ul:last-child {
    animation:right_loop2 21s -10.5s linear infinite;
}

/*-------------- right 1 --------------*/


@-webkit-keyframes right_loop {
0% {
-webkit-transform:translateY(-100%);
transform:translateY(-100%)
}

100% {
-webkit-transform:translateY(100%);
transform:translateY(100%)
}
}

@keyframes right_loop {
0% {
-webkit-transform:translateY(-100%);
transform:translateY(-100%)
}

100% {
-webkit-transform:translateY(100%);
transform:translateY(100%)
}
}
/*-------------- right 2 --------------*/


@-webkit-keyframes right_loop2 {
0% {
-webkit-transform:translateY(-200%);
transform:translateY(-200%)
}

100% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}

@keyframes right_loop2 {
0% {
-webkit-transform:translateY(-200%);
transform:translateY(-200%)
}

100% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}
/*--------------end----------------*/
.sect1-2 .row{
    display: flex;
}
.sect1-2 .row .col{
    width: 33.33%;
    position: relative;
    overflow: hidden;
}
.sect1-2 .row .col .pic{
    /* max-height: 400px; */
    /* overflow: hidden; */
}
.sect1-2 .row .col .pic img{
     object-fit:cover; 
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}
.sect1-2 .row .col .box{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction:column;
    transition:all .5s ease;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 30px;
    min-height:400px;
}
.sect1-2 .row .col .box:hover{
    
}
.sect1-2 .row .col .box:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: transparent;
    transition: all .6s;
}
.sect1-2 .row .col .box:hover:before{
    background-color: rgba(10,4,4,0.70);

}
.sect1-2 .row .col .box > div{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction:column;
    position: relative;
}
.sect1-2 .row .col .box .tit{
    background: url(../../images/common/index/item_bg.png) 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    line-height: 150px;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Noto Serif TC', serif;
    text-align: center;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    margin: 0 auto 0px;
    position: relative;
    z-index: 2;
    transition: all .5s ease;
    position:absolute;
    top:calc(50% - 75px);
    left:calc(50% - 75px);
}
.sect1-2 .row .col .box:hover .tit{
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 30px;
    top:calc(50% - 160px);
    left:calc(50% - 60px);

}
.sect1-2 .row .col .box .text{
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    font-size: 14px;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 2.2px;
    opacity: 1;
    transition: all ease .6s;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);

    transition: all .5s ease;
    position:absolute;
    left: 0;
    right: 0;
    top: 0;
    /* bottom: 0; */
    /* padding: 30px; */
    box-sizing: border-box;
    opacity: 0;
}
.sect1-2 .row .col .box:hover .text{
    opacity: 1;
    top: -30px;
    
    
}
.sect2 {
    background:#ECE9E2;
}
.news-sect {
    padding-top: 7px;
}
.news-sect .sect-title {
    background: url(../../images/common/index/news_tit.png);
    width: 274px;
    height: 194px;
    margin:15px auto -15px;
    font-size: 0;
}
.news-list {
    margin: 0 -20px;
}
.news-list .item {
    width: 25%;
    padding: 0 20px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 320px;
    margin: 0 auto 25px;
    position: relative;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}

.news-list .txt {
    position: relative;
    padding: 20px 12px;
    border:solid #CDCDCD;
    border-width: 0 2px 2px;
    background: #FFFFFF;
}
.news-list .date:before{
    content: 'DATE';
    display: inline-block;
    width: 60px;
    height: 25px;
    line-height: 25px;
    background: #C8493D;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    margin-right: 7px;
    margin-top: -3px;

}
.news-list .date {
    display: block;
    font-family: EB Garamond;
    
    font-size: 15px;
    color: #C7483D;
    letter-spacing: 1px;
}

.news-list .name {
    color: #444444;
    font-size: 18px;
    font-weight: bold;
    font-family: Noto Serif TC;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
    transition: all .6s ease;
}
.news-list .box:hover .name{
    color: #C8493D;
}
.news-list .description {
    color: #858585;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 57px;
    margin-bottom: 15px;
}
.news-list .more {
    display: block;
    border:solid 1px #444444;
    border-radius: 5px;
    font-size: 17px;
    color: #333333;
    background: #fff;
    position: absolute;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr ;
    right: -10px;
    top: -10px;
    width: 32px;
    height: 87px;
    line-height: 30px;
    text-align: center;
    z-index: 2;
    transition: all .6s ease;
    display: none;

}
.news-list .more:before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    background: #CD6156;
    transition: all .6s ease;
    z-index: -2;
}
.news-list .box:hover .more {
    border-color: #993031;
    color: #FFFFFF;

}
.news-list .box:hover .more:before{
    height: 100%;
}
@media screen and (max-width: 1470px) {
    .banner .slick-dots {
        right: 0;
        left: 0;
        margin: 0;
        padding: 0 15px;
        text-align: right;
    }
    .sect1 {
            
    }
}
@media screen and (max-width: 1200px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-list .item {
        padding: 0 7px;
    }
     .sect1-2 .row .col .box .text{
        font-size: 13px;
     }
 
}
@media screen and (max-width: 1000px) {
    .about-sect {
        top: 0;
        padding: 45px 0;
    }
    .news-list .item {
        width: 50%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
    .sect1{
        padding: 0px 0 40px;
    }
    .about-sect .row{
        flex-wrap: wrap;
        min-height: inherit;
    }
    .about-sect .row .col{
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    
    .about-sect .sect-title .btn{
        position: relative;
        margin:10px auto 0;
    }
    .about-sect .btn{
        margin: 30px auto 0;
    }
    .sect1-2 .row{
        flex-wrap: wrap;
    }
     .sect1-2 .row .col .box .tit{
        width: 120px;
        height: 120px;
        background-size: contain;
        background-repeat: no-repeat;
        line-height: 120px;
        font-size: 32px;
        top:calc(50% - 60px);
        left:calc(50% - 60px);
    }
    .sect1-2 .row .col .box:hover .tit{
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 24px;
        top:calc(0% - 130px);
        left:calc(50% - 45px);
    }
    .sect1-2 .row .col .box{
        /* padding-top: calc(50% - 100px); */
        /* padding-left: 15px; */
        /* padding-right: 15px; */
    }
    .sect1-2 .row .col .box:hover{
        padding-top: calc(0% - 0px);
    }
    .sect1-2 .row .col .box .text{
        letter-spacing: 1px;
    }

    .about-sect .sect-title span:after{
        width: 1px;
        height: 30px;
        display: block;
        margin: 10px auto 0;
    }
    .about_slider{
        display: none;
    }

}
@media screen and (max-width: 768px) {
    .news-list .box {
        margin-bottom: 30px;
    }
    .news-sect {
        padding: 30px 0 20px;
    }
    .about-sect .row .col1 .pic span{
        
    }
    .about-sect .row .col1 .pic1 span{
        left: 65%;
    }
    .about-sect .row .col1 .pic2 span{
        right: 65%;
    }
     .sect1-2 .row .col{
        width: 100%;
    }
     .sect1-2 .row .col img{
        width: 100%;
     }
    
    .sect1-2 .row .col .box:before {
        background-color: rgba(10,4,4,0.70);
    }


    .sect1-2 .row .col .box:hover{
        padding-top: 0;
    }

   
}
@media screen and (max-width: 580px) {
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
     .about-sect .row .col1 .pic span{
        font-size: 88px;
    }
    .about-sect .row .col1 .pic1 span {
        left: 90%;
    }
    .about-sect .row .col1 .pic2 span {
        right: 90%;
    }
}