/* ----------- 電腦版banner ----------- */
.banner {
    padding: 46px 0 40px;
    margin: 0;
}
.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(246, 249, 247, 0) 0%,rgb(246, 249, 247, 1) 100%);
    z-index: -1;
}
.banner *{
    height: 100%;
}
.banner img {
    border-radius: 20px;
}
.banner .slick-prev,
.banner .slick-next {
    position: absolute;
    bottom: 95px;
    right: 5%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: transparent;
    background: #fff;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    z-index: 150;
    box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}
.banner .slick-next{
    bottom: 40px;
}
.banner .slick-prev:hover,
.banner .slick-next:hover {
    background: #F57F1A;
}
.banner .slick-prev::before,
.banner .slick-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
    width: 12px;
    height: 7px;
    background: url(../../images/common/index/b_arr.svg) no-repeat;
    background-size: contain;
    transition: all 0.5s ease;
}
.banner .slick-next::before{
    margin-top: -4px;
    transform: rotate(180deg);
}
.banner .slick-prev:hover:before,
.banner .slick-next:hover:before {
    background: url(../../images/common/index/b_arr_h.svg) no-repeat;
}
/* ----------- 手機版banner ----------- */
.banner_m {
    padding: 50px 0 30px;
    margin: 0;
    position: relative;
    z-index: 2;
}
.banner_m .container {
    max-width: 780px;
    padding: 0;
}
.banner_m img {
    border-radius: 0 0 10px 10px; 
}
.banner_m {
    display: none;
}
/* ----------- common ----------- */
body {
    background: #f6f9f7;
}
.title {
    position: relative;
    box-sizing: border-box;
    margin: 0 0 40px;
}
.title h2{
    position: relative;
    box-sizing: border-box;
    color: #333333;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0;
}
.title span{
    position: relative;
    box-sizing: border-box;
    color: #111111;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    font-family: 'Raleway', serif;
}
.more{
    position: relative;
    display: block;
    text-align: center;
    width: 90px;
    height: 30px;
    line-height: 30px;
    letter-spacing: 0;
    font-size: 15px;
    color: #212121;
    font-weight: 600;
    font-family: 'Raleway', serif;
    border-radius: 0;
    transition: all 0.5s ease;
    margin: 0;
}
.more:hover{
    color: #F57F1A;
}
.more::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #F57F1A;
    right: 0;
    transition: all 0.5s ease;
}
.more:hover:before {
    animation-name: line-ani;
    animation-duration: 1s;
    background-color: #00A650;
}
@keyframes line-ani{
    0%{
        width: 100%;
    }
    35%{
        right: 0;
        width: 0;
    }
    65%{
        right: 0;
        width: 0;
        right: unset;
    }
    100%{
        left: 0;
        width: 100%;
    }
}
/* ----------- sect1 ----------- */
.sect1 {
    position: relative;
    padding: 0 0 40px;
}
.adr-sect {
    position: relative;
    /* min-height: 245px; */
}
.adr-sect .adr-list {
    margin: 0 -17px;
}
.adr-sect .item {
    padding: 0 17px;
    width: calc(100% / 4);
}
.adr-sect .item:nth-child(4n+1) {
    clear: left;
}
.adr-sect .box {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
}
.adr-sect .box .pic{
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 20px;
}
.adr-sect .box .txt {
    position: relative;
    padding: 15px 0 0;
    text-align: center;
}
.adr-sect .box .name {
    position: relative;
    box-sizing: border-box;
    font-size: 20px;
    color: #111111;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 25px;
    white-space: inherit;
    margin: 0 auto;
    padding-left: 40px;
    width: fit-content;
}
.adr-sect .box .name::before{
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 3px;
    background: #F57F1A;
}
.adr-sect .box .name::after{
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background: #00A650;
}
.adr-list .item .box .cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.adr-sect .box .pic:before {
    content: "MORE";
    font-size: 15px;
    letter-spacing: 0;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 100% 0 0 0;
    padding: 30px 6.7px 15px 17px;
    background: #F57F1A;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 15;
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
    transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
    font-family: 'Raleway', serif;
}
.adr-sect .box:hover .pic:before {
    opacity: 1;
    transform: rotate(0deg);
}
.adr-sect .box .pic:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-110%) skewX(-10deg);
    background: rgba(255, 255, 255, 0.3);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-110%) skewX(-10deg);
}
.adr-sect .box:hover .pic:after {
    animation: ani_imgeffin 0.5s both ease;
    transform: translateX(110%) skewX(-10deg);
}
@keyframes ani_imgeffin {
    0% {
        opacity: 0;
        transform: translateX(-110%) skewX(-10deg);
    }
    10%, 90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(110%) skewX(-10deg);
    }
}
/* ----------- sect2 ----------- */
.sect2 {
    position: relative;
    padding: 50px 0 27px;
}
.news-sect {
    position: relative;
    box-sizing: border-box;
    max-width: 1330px;
    margin: 0 auto;
}
.news-sect .row{
    position: relative;
    box-sizing: border-box;
}
.news-sect .row .col.txt {
    position: relative;
    display: flex;
    margin: 0 7%;
    z-index: 2;
}
.news-sect .title {
    text-align: left;
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 800px);
    margin: 35px 0 0;
}
.news-sect .news-list {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 800px;
    padding: 25.5px 55px;
    box-shadow: 7px 7px 20px rgba(0,0,0,0.15);
    border-radius: 20px;
    background: #fff;
}
.news-sect .row .col.pic {
    position: relative;
    box-sizing: border-box;
    margin: -30px 0 0;
    z-index: 1;
}
.news-sect .pic img {
    border-radius: 20px;
}
.news-sect .title h2{
    padding-left: 50px;
    width: fit-content;
}
.news-sect .title h2::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 81%;
    transform: translateY(-50%);
    width: 32px;
    height: 4px;
    background: #F57F1A;
    transition: all 0.5s ease;
}
.news-sect .title h2::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 80%;
    transform: translateY(-50%);
    width: 16px;
    height: 4px;
    background: #00A650;
    transition: all 0.5s ease;
}
.news-sect .more{
    position: absolute;
    top: 88px;
    left: 180px;
} 
.news-list .item {
    position: relative;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}
.news-list .item:last-of-type {
    border: 0;
}
.news-list .box {
    position: relative;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    padding: 12px 0;
}
.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 .date {
    position: relative;
    float: left;
    color: #F57F1A;
    font-family: 'Raleway',serif;
    transition: all 0.5s ease;
    font-size: 15px;
    line-height: 22px;
    font-weight: bold;
    letter-spacing: 0;
    width: 90px;
}
.news-list .box:hover .date{
    color: #00A550;
}
.news-list .name {
    position: relative;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 17px;
    letter-spacing: 0.2px;
    font-weight: normal;
    transition: all 0.5s ease;
    width: calc(100% - 121px);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 25px;
    padding-right: 30px;
}
.news-list .box:hover .name {
    color: #00A550;
}
.news-list .name:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -2.5px;
    width: 8px;
    height: 5px;
    background: url(../../images/common/index/b_arr.svg) no-repeat;
    background-size: contain;
    transition: all 0.5s ease;
    transform: rotate(90deg);
}
.news-list .box:hover .name:after{
    background: url(../../images/common/index/b_arr_g.svg) no-repeat;
}
/* ----------- sect3 ----------- */
.sect3 {
    position: relative;
    padding: 27px 0 85px;
}
.sect3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgb(245, 245, 245, 0) 0%,rgb(245, 245, 245, 1) 30%);
    z-index: 1;
}
.products-sect .title{
    text-align: center;
}
.products-sect .title::before {
    content: '';
    position: absolute;
    top: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 4px;
    height: 32px;
    background: #F57F1A;
}
.products-sect .title::after {
    content: '';
    position: absolute;
    top: -39px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 4px;
    height: 16px;
    background: #00A650;
}
.products-sect .more {
    margin: 0 auto;
    z-index: 2;
}
.products-list {
    position: relative;
    z-index: 2;
    margin: 0 -17px;
}
.products-list .item {
    width: calc(100% / 4);
    padding: 0 17px;
    margin: 0 auto 25px;
}
.products-list .box {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
}
.products-list .box .cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.products-list .pic {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.products-list .box img {
    width: 100%;
}
.products-list .txt {
    position: relative;
    box-sizing: border-box;
    padding: 10px 25px;
    margin: -20px 30px 25px;
    transition: all .5s ease;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
}
.products-list .box:hover .txt {
    margin: -75px 30px 25px;
    background: #F57F1A;
}
.products-list .name {
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
    transition: all .5s ease;
}
.products-list .box:hover .name {
    color: #fff;
}
.products-sect .slick-prev,
.products-sect .slick-next {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    padding: 0;
    border: 0;
    background: #fff;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 2;
    cursor: pointer;
}
.products-sect .slick-prev {
    left: -8px;
}
.products-sect .slick-next {
    right: -8px;
}
.products-sect .slick-prev::before,
.products-sect .slick-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -6px;
    width: 12px;
    height: 7px;
    background: url(../../images/common/index/b_arr.svg) no-repeat;
    background-size: contain;
    transition: all 0.5s ease;
}
.products-sect .slick-prev:before {
    transform: rotate(270deg);
}
.products-sect .slick-next:before {
    transform: rotate(90deg);
}
.products-sect .slick-prev:hover,
.products-sect .slick-next:hover {
    background: #F57F1A;
}
.products-sect .slick-prev:hover:before,
.products-sect .slick-next:hover:before{
    background: url(../../images/common/index/b_arr_h.svg) no-repeat;
}
/* ----------- sect4 ----------- */
.sect4 {
    position: relative;
    padding: 80px 0 111px;
    background: #f9fbfa;
}
.about-sect {
    position: relative;
    box-sizing: border-box;
    max-width: 1240px;
    margin: 0 auto;
}
.about-sect .row{
    position: relative;
    box-sizing: border-box;
}
.about-sect .row .col.txt {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 7%;
    z-index: 2;
}
.about-sect .title {
    text-align: left;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding-right: 85px;
}
.about-sect .txt-box {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    padding: 61px 60px 34px;
    box-shadow: 7px 7px 20px rgba(0,0,0,0.15);
    border-radius: 20px;
    background: #fff;
    margin: 35px 0 0;
}
.about-sect .txt-box .editor {
    position: relative;
    box-sizing: border-box;
    color: #535353;
    letter-spacing: 1px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 115px;
}
.about-sect .row .col.pic {
    position: relative;
    box-sizing: border-box;
    display: block;
    margin: -192px 0 0;
    z-index: 1;
    min-height: 545px;
}
.about-sect .row .col.pic .pic {
    position: relative;
    box-sizing: border-box;
    float: left;
}
.about-sect .row .col.pic .pic:first-of-type{
    z-index: 2;
}
.about-sect .row .col.pic .pic:last-of-type{
    /* margin: 112px auto 0 -270px;
    text-align: right;
    display: block;
    z-index: 1; */
    margin: -300px auto 0 0;
    text-align: right;
    display: block;
    z-index: 1;
    float: right;
}
.about-sect .row .col.pic img{
    border-radius: 20px;
}
.about-sect .row .col.pic .a_pic_txt{
    position: absolute;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    padding: 22px 30px 22px 84px;
    display: block;
    text-align: left;
    z-index: 3;
}
.about-sect .row .col.pic .a_pic_txt h4{
    position: relative;
    box-sizing: border-box;
    color: #F37F19;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    font-family: 'Raleway', serif;
}
.about-sect .row .col.pic .a_pic_txt span{
    position: relative;
    box-sizing: border-box;
    color: #00A550;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
    font-family: 'Raleway', serif;
}
.about-sect .title h2{
    padding-left: 50px;
    width: fit-content;
    margin: 0;
}
.about-sect .title h2::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 81%;
    transform: translateY(-50%);
    width: 32px;
    height: 4px;
    background: #F57F1A;
    transition: all 0.5s ease;
}
.about-sect .title h2::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 80%;
    transform: translateY(-50%);
    width: 16px;
    height: 4px;
    background: #00A650;
    transition: all 0.5s ease;
}
.about-sect .more {
    margin: 20px 0 0 auto;
}
/* ----------- rwd ----------- */
@media screen and (max-width: 1440px) {
    .news-sect .row .col.txt,
    .about-sect .row .col.txt {
        margin: 0 5%;
    }
}
@media screen and (max-width: 1330px) {
    .banner {
        padding: 30px 0;
    }
    .sect1 {
        padding: 0 0 20px;
    }
    .adr-sect .adr-list {
        margin: 0 -15px;
    }
    .adr-sect .item {
        padding: 0 15px;
    }
    .sect2 {
        position: relative;
        padding: 30px 0;
    }
    .products-list {
        margin: 0 -15px;
    }
    .products-list .item {
        padding: 0 15px;
    }
    .products-sect .slick-prev {
        left: 0;
    }
    .products-sect .slick-next {
        right: 0;
    }
    .sect3 {
        padding: 25px 0 60px;
    }
    .sect4 {
        padding: 60px 0 100px;
    }
    .news-sect .row .col.txt,
    .about-sect .row .col.txt {
        margin: 0 1%;
    }
}
@media screen and (max-width: 1200px) {
    .title{
        margin: 0 0 25px;
    }
    .title span {
        font-size: 40px;
    }
    .title h2 {
        font-size: 26px;
    }
    .about-sect .title {
        padding-right: 50px;
    }
    .about-sect .row .col.pic .a_pic_txt {
        padding: 20px 30px 20px 40px;
    }
    .news-sect .row .col.txt,
    .about-sect .row .col.txt {
        margin: 0 2%;
    }
    .news-sect .news-list{
        max-width: 700px;
        padding: 25px 45px;
    }
    .news-sect .title {
        width: calc(100% - 700px);
    }
    .news-sect .row .col.txt {
        flex-direction: column;
    }
    .news-sect .title {
        width: 100%;
        text-align: center;
        margin: 0 0 25px;
    }
    .news-sect .title h2 {
        padding-left: 50px;
        width: fit-content;
        margin: 0 auto;
    }
    .news-sect .news-list {
        max-width: unset;
        padding: 25px 45px 60px
    }
    .news-sect .more {
        position: relative;
        top: unset;
        left: unset;
        margin: -30px auto 0;
    }
}
@media screen and (max-width: 1000px) {
    .banner {
        padding: 0 0 30px;
        margin: 0;
    }
    .banner img{
        border-radius: 0 0 20px 20px;
    }
    .adr-sect .box .name {
        font-size: 16px;
        padding-left: 30px;
    }
    .adr-sect .adr-list {
        margin: 0 -10px;
    }
    .adr-sect .item {
        padding: 0 10px;
    }
    .news-list .name {
        font-size: 16px;
    }
    .products-list .name {
        font-size: 16px;
    }
    .products-list .txt {
        padding: 10px 15px;
        margin: -25px 20px 25px;
    }
    .products-list .box:hover .txt {
        margin: -60px 20px 25px;
    }
    .about-sect .row .col.txt {
        flex-direction: column;
    }
    .about-sect .row .col.pic {
        margin: -80px 0 0;
    }
    .about-sect .txt-box {
        max-width: unset;
        padding: 40px 45px 0;
        margin: 0;
        text-align: center;
    }
    .about-sect .txt-box .editor {
        -webkit-line-clamp: initial;
        height: unset;
    }
    .about-sect .more {
        margin: 30px auto 0;
    }
    .about-sect .title {
        width: 100%;
        text-align: center;
        margin: 0 0 25px;
        padding: 0;
    }
    .about-sect .title h2 {
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .banner {
        display: none;
    }
    .banner_m {
        display: block;
        padding: 0 0 30px;
    }
    .adr-sect .item {
        width: calc(100% / 2);
    }
    .adr-sect .box {
        margin: 0 auto 30px;
    }
    .adr-sect .box .pic:before{
        font-size: 13px;
    }
    .sect1 {
        padding: 0;
    }
    .sect2 {
        padding: 15px 0 30px;
    }
    .news-sect .news-list {
        max-width: unset;
        padding: 20px 30px 60px;
    }
    .news-list .date {
        float: none;
        display: block;
        margin: 0 0 5px;
    }
    .news-list .name{
        width: calc(100% - 30px);
    }
    .sect3 {
        padding: 25px 0 50px;
    }
    .sect4 {
        padding: 35px 0 60px;
    }
    .about-sect .txt-box {
        padding: 30px 35px 0;
    }
    .about-sect .row .col.pic .pic:last-of-type{
        display: none;
    }
    .about-sect .row .col.pic {
        margin: -30px 0 0;
        min-height: unset;
    }
    .about-sect .row .col.pic .pic{
        float: none;
    }
    .about-sect .row .col.pic .a_pic_txt{
        position: relative;
        top: unset;
        left: unset;
    }
    .about-sect .row .col.pic .a_pic_txt h4{
        font-size: 30px;
    }
    .about-sect .row .col.pic .a_pic_txt span {
        font-size: 20px;
    }
}
@media screen and (max-width: 480px) {
    .about-sect .txt-box {
        padding: 20px 20px 0;
    }
    .about-sect .row .col.pic .a_pic_txt {
        padding: 20px 15px 0;
    }
    .about-sect .row .col.pic .a_pic_txt h4 {
        margin: 0 0 10px;
    }
}