.bg-layer {
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  background-image: radial-gradient(rgba(212, 212, 212, 0.5) 0.8px, rgba(255, 255, 255, 0) 0.8px);
  background-size: 24px 24px;
}
.banner {
    
}
.banner .slider,
.banner_m .slider {
    position: relative;
}
.banner_m .slick-dots,
.banner .slick-dots{
    line-height: 0;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: absolute;
    bottom: 40px;
    width: 100%;
}
.banner_m .slick-dots li,
.banner .slick-dots li{
    vertical-align: middle;
    width: auto;
    height: auto;
    line-height: 0;
}
.banner_m .slick-dots li button,
.banner .slick-dots li button{
    background: rgb(255 255 255 /50%);
    white-space: nowrap;
    text-indent: 101%;
    overflow: hidden;
    text-align: left;
    padding: 0;
    border: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
    margin: 0 4px;
    box-shadow: rgba(0,0,0,0.1) 2px 1px 3px 0px inset;
}
.banner_m .slick-dots li.slick-active button,
.banner .slick-dots li.slick-active button{
    background: #2EB2AA;
}
.banner .slick-dots li.slick-active button,
.banner_m .slick-dots li.slick-active button {
    background-position: 100% 0;
}
.banner_m {
    display: none;
}
.btn.more{
    border-radius: 0;
}
/* /////////// IMAGE ZOOM /////////// */
.banner img {
    max-width: 100%;
    height: auto;
    width:100%;
    opacity:.5;
    animation-duration: 4s;
    transition: all 2s ease;
    margin: auto;
    position: relative;
}
.banner .slick-item.slick-active img {
    animation-name: zoomOutImage;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomOutImage {
    from {
      -webkit-transform: scale(1);
         -moz-transform: scale(1);
          -ms-transform: scale(1);
           -o-transform: scale(1);
              transform: scale(1);
    }

    100% {
      -webkit-transform: scale(1.05);
         -moz-transform: scale(1.05);
          -ms-transform: scale(1.05);
           -o-transform: scale(1.05);
              transform: scale(1.05);
    }
}
.zoomOutImage {
    animation-name: zoomOutImage;
}
/*------ sects ------*/
.sect1 {
    padding: 206px 0 320px;
    background: rgb(247 247 247 /50%);
}
.sect2{
    margin-top: -107px;
    padding-bottom: 200px;
}
.sect2 .row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 128px;
}
.sect2 .row .col{
    /* flex: 1 1 calc(50% - 64px); */
}
.sect2 .row .col.pic{
    border-radius: 40px;
    overflow: hidden;
    max-width: 664px;
    flex-shrink: 0;
    aspect-ratio: 664 / 566;
}
.sect2 .row .col.pic img{
        object-fit: cover;
        height: 100% !important;
}
.sect2 .row .col.txt{
    
}
.sect3{
    position: relative;
}
.sect3 .container{
    max-width: 1817px;
}
.sect4 {
    padding: 140px 0 120px;
    background: rgb(247 247 247 /50%);
}
/*------ title ------*/
.sect-title{
    display: block;
    margin: 0 auto 60px;
    position: relative;
}
.about-sect .sect-title{
    text-align: left;
    margin: 0 0 48px 0 ;
}
.news-sect .sect-title{
    text-align: left;
    display: flex;
    align-items: flex-end;
    margin: 0 auto 52px;
}
.news-sect.n2 .sect-title{
    text-align: center;
    display: block;
}
.sect-title span{
    color: #333;
    font-size: 100px;
    font-weight: 700;
    font-family: "Figtree", sans-serif;
    line-height: 1;
}
.sect-title h2{
    color: #1f1f1f;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    margin-top: -8px;
    flex-shrink: 0;
    letter-spacing: 0.1em;
    display: block;
}
.news-sect .sect-title h2{
    margin-left: 24px;
}
.news-sect.n2 .sect-title h2{
    margin-left: 0;
}
/*------ more ------*/
.news-sect .btn-box{
    text-align: left;
    padding-top: 50px;
}
.news-sect.n2 .btn-box{
    text-align: center;
}
.more {
    width: 230px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2EB2AA;
    background-color: #fff;
    padding: 15px 30px;
    border: 1px solid #2EB2AA;
    border-radius: 60px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Figtree", sans-serif;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.text_box {
    display: block;
    position: relative;
    overflow: hidden;
}
.text_more {
    display: block;
    position: relative;
    top: 0;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.text_more:nth-child(2) {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
.circle_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    margin-left: 35px;
    background:rgb(46 178 170/20%);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.circle_color {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .7s cubic-bezier(0.4, 0, 0, 1);
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #2EB2AA;
    border-radius: 100%;
    transform: scale(0.4);
}
.circle_arrow {
    display: block;
    background: #fff;
    position:relative;
    left:0px;
    opacity:0;
    width: 8px;
    height: 6px;
    clip-path: polygon(50% 0%, 100% 78%, 100% 91%, 90% 96%, 80% 90%, 50% 40%, 20% 90%, 10% 96%, 0 91%, 0 78%);
    filter: blur(0px);
    transition: transform 0.6s;
    transform: translateX(-120%) rotate(90deg);
}
/* 第二個箭頭，預設隱藏在下方 */
.circle_color .circle_arrow:nth-child(2) {
    position: absolute;
    top: 100%;
    left: 0;
}
/* HOVER 時：文字滑動效果 */
.more:hover .text_more:nth-child(1) {
    transform: translateY(-100%); /* 第一個文字向上移動 100% 自身高度 */
}
.more:hover .text_more:nth-child(2) {
    transform: translateY(-100%); /* 第二個文字從下方移動到可見位置 */
}
/* HOVER 時：箭頭滑動效果 */
.more:hover .circle_color{
    transform:scale(1);
}
.more:hover .circle_color .circle_arrow{
    transform: translateX(0%) rotate(90deg);
    opacity:1;
}
/* 跑馬燈 */
/* 跑馬燈 */
.marquee {
    width: 100%;
    height: 255px;
    overflow: hidden;
    padding: 0;
    position:relative;
    display: block;
    margin-top: -160px;
    z-index: -1;
}
.marquee .track {
    white-space: nowrap;
    will-change: transform;
    animation: marquee_left 20s linear infinite;
}
.marquee .track span {
    flex-shrink: 0;
    display: inline-block;
    padding-right: 100px;
    font-size: 300px;
    line-height: 1;
    letter-spacing: 8px;
    color: #333;
    opacity: 0.03;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
    white-space: nowrap;
}
@keyframes marquee_left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/*------ about-sect ------*/
.about-sect .row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.about-sect .row .col.title_box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 460px;
    margin-left: 68px;
}
.about-sect .row .col.service_box{
    flex:1 1 ;
}
.about-sect .row .col.title_box .btn-box{
    padding: 95px 0 0;
}
.about-sect .row .col.editor_box{
    max-width: 526px;
}
.about-sect .editor {
    color: #868686;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.035em;
    min-height: 150px;
}
/*------ news-sect ------*/
.news-sect {
    position: relative;
    box-sizing: border-box;
}
.news-list .item + .item{
    margin-top: 16px;
}
.newsall .news-list .item + .item{
    margin-top: 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 .pic img{
    width: 100%;
}
.news-sect .newsall .arrowBox {
    position: absolute;
    box-sizing: border-box;
    top: 52%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    height: 0;
    z-index: 1;
}
.news-sect .newsall .arrowBox .arrow {
    position: relative;
    display: block;
    box-sizing: border-box;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    width: 26px;
    height: 50px;
    border: 0;
    background: transparent;
    border-radius: 0;
    transition: all .5s ease;
    cursor: pointer;
    z-index: 1;
}
.news-sect .newsall .arrowBox .arrowPrev{
    left: -50px;
}
.news-sect .newsall .arrowBox .arrowNext {
    right: -50px;
}
.news-sect .newsall .arrowBox .arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -7px;
    width: 26px;
    height: 26px;
    border: 1px solid #fff;
    border-width: 1px 1px 0 0;
    transform: rotate(225deg);
    transition: all .5s ease;
}
.news-sect .newsall .arrowBox .arrow:hover:before {
    border-color: #0197D9;
    top: 35%;
}
.news-sect .newsall .arrowBox .arrowNext::before {
    transform: rotate(45deg);
    margin-left: -23px;
}
.news-sect .newsall {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0 30px;
    padding: 0;
    z-index: 2;
}
.news-sect .newsleft {
    width: calc(52% - 15px);
}
.news-sect .newsleft .news-list .box {
    position: relative;
    box-sizing: border-box;
    border-radius: 40px;
    overflow: hidden;
}
.news-sect .newsleft .news-list .box .pic {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}
.news-sect .newsleft .news-list .box .txt {
    position: absolute;
    box-sizing: border-box;
    padding: 20px 45px 52px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 2;
}
.news-sect .newsright {
    width: calc(48% - 15px);
}
.news-sect .newsright .news-list {
    margin: -8px;
    box-sizing: border-box;
}
.news-sect .newsright .news-list .item {
    position: relative;
    box-sizing: border-box;
    padding: 8px;
    border: 0;
}
.news-sect .newsright .news-list .box {
    position: relative;
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px rgb(0 0 0 /8%);
}
.news-sect .newsright .news-list .box{
    gap: 16px;
}
.news-sect .newsright .news-list .box .pic {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    width: 200px;
    border-radius: 8px;
    z-index: 1;
}
.news-sect .box .txt{
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 16px;
}
.news-sect .newsleft .news-list .box .txt {
    padding: 32px 40px;
    border-radius: 16px;
    background: #fff;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    max-width: 648px;
    margin: 40px;
}
.news-sect .newsright .news-list .box .txt {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.news-sect .box .txt .date {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: #f8f8f8;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.2;
    padding:10px;
    border-radius: 30px;
    font-family: "Figtree", sans-serif;
    max-width: 130px;
    min-width: 130px;
    transition: all .3s;
}
.news-sect .box:hover .date{
    background: #2EB2AA;
    color: #fff;
}
.news-sect .box .txt .name{
    position: relative;
    box-sizing: border-box;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.8;
    margin: 0;
    transition: all .5s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}
.news-sect .newsleft .news-list .box .txt .name,
.news-sect .newsright .news-list .box .txt .name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}
.news-sect .box:hover .txt .name{
    color: #2EB2AA;
}
.slick_dots .slick-dots{
    line-height: 0;
    margin: 40px auto;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
}
.news-sect .slick_dots{
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}
.news-sect .slick_dots .slick-dots{
    margin: 0;
}
.slick_dots li{
    vertical-align: middle;
    width: auto;
    height: auto;
    line-height: 0;
}
.slick_dots li button{
    background: #fff;
    white-space: nowrap;
    text-indent: 101%;
    overflow: hidden;
    text-align: left;
    padding: 0;
    border: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
    margin: 0 4px;
    box-shadow: rgba(0,0,0,0.1) 2px 1px 3px 0px inset;
}
.news-sect .slick_dots li button{
    background: #bbb;
}
.slick_dots li.slick-active button{
    background: #2EB2AA;
}
.slick_dots li.slick-active button {
    background-position: 100% 0;
}
/*------//news sect ------*/
/*------products-sect ------*/
.products-sect .sect-title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}
.products-sect .sect-title:before,
.products-sect .sect-title:after {
    content: '';
    display: block;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 50%;
}
.products-sect .sect-title:before {
    left: 0;
    right: 50%;
    margin-right: 140px;
}
.products-sect .sect-title:after {
    right: 0;
    left: 50%;
    margin-left: 140px;
}
.products-list {
    margin: 0 -10px;
}
.products-list .item {
    width: 33.33%;
    padding: 0 10px;
}
.products-list .item:nth-child(3n+1) {
    clear: left;
}
.products-list .box {
    max-width: 450px;
    margin: 0 auto 40px;
    position: relative;
}
.products-list .item a.cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.products-list .box.new:before {
    content: '';
    display: block;
    background: url('../../images/common/products/new_tag.png') no-repeat;
    width: 58px;
    height: 58px;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
}
.products-list .pic-box {
    margin-bottom: 10px;
    position: relative;
}
.products-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}
.products-list .box:hover .pic {
    outline: 6px solid #2EB2AA;
}
.products-list .pic:before {
    content: "";
    background: url(../../images/common/products/hover.png) 50% 50% no-repeat rgba(0,0,0,0.50);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}
.products-list .box:hover .pic:before {
    opacity: 1;
}
.products-list .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.products-list .box:hover .pic img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.products-list .txt {
    position: relative;
}
.products-list .txt:before {
    content: 'READ MORE';
    display: inline-block;
    color: #2EB2AA;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 22px;
    width: 100px;
    border: 1px solid #2EB2AA;
    position: absolute;
    right: 0;
    top: 35px;
}
.products-list .box:hover .txt:before {
    background: #2EB2AA;
    color: #fff;
}
.products-list .name{
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 3px;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.products-list .description{
    color: #8B8B8B;
    font-size: 13px;
    line-height: 1.45;
    padding: 0 3px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 52px;
    margin-right: 120px;
}
/*------ //products-sect ------*/

@media screen and (max-width: 1440px) {
    .sect2 .row {
        gap: 60px;
    }
    .news-sect .sect-title{
        flex-wrap: wrap;
    }
    .news-sect .sect-title h2 {
        margin-left: 0;
    }
    .sect2 .row .col {
        flex: 1 1 calc(50% - 64px);
    }
}
@media screen and (max-width: 1320px) {
    .about-sect .row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-sect .row .col.title_box{
        margin: 0 auto;
    }
}
@media screen and (max-width: 1000px) {
    .banner {
        margin-bottom: 0;
    }
    .sect-title span{
        font-size: 64px;
    }
    .sect-title h2{
        font-size: 28px;
    }
    .more{
        width: 200px;
        height: 56px;
        font-size: 16px;
    }
    .circle_box{
        margin-left: 12px;
    }
    /*-about*/
    .sect1 {
        padding: 70px 0 196px;
    }
    .sect1 .sect-title {
        text-align: center;
        margin: 0 auto 24px;
    }
    .about-sect .row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }
    .about-sect .row .col.title_box .btn-box {
        padding: 30px 0 0;
        margin: 0 auto;
    }
    .about-sect .editor{
        padding: 0 20px;
    }
    /*-//about*/
    /*-news-*/
    .sect2 {
        padding-bottom: 88px;
    }
    .sect2 .row{
        flex-direction: column;
        gap: 40px;
    }
    .sect2 .row .col.pic{
        margin: 0 auto;
        max-width: 720px;
    }
    .sect2 .row .col.txt{
        padding: 0;
    }
    .news-sect .sect-title{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 24px;
    }
    .news-sect .sect-title h2{
        margin: 0 auto;
    }
    .news-sect .btn-box {
        padding-top: 32px;
        text-align: center;
    }
    .news-sect .newsall{
        flex-direction: column;
    }
    .news-sect .newsleft {
        width: 100%;
        margin: 0 auto 15px;
    }
    .news-sect .newsright{
        width: 100%;
        padding: 0;
    }
    .news-sect .newsall .arrowBox {
        position: relative;
        top: unset;
        left: 0;
        right: 0;
        margin: 40px auto 0;
        transform: unset;;
        width: 57px;
        height: 30px;
    }
    .news-sect .newsall .arrowBox .arrow {
        width: 16px;
        height: 30px;
    }
    .news-sect .newsall .arrowBox .arrow::before {
        margin-top: -8px;
        margin-left: -4px;
        width: 16px;
        height: 16px;
    }
    .news-sect .newsall .arrowBox .arrowNext::before {
        margin-top: -8px;
        margin-left: -13px;
    }
    .news-sect .newsall .arrowBox .arrowPrev {
        left: 0;
    }
    .news-sect .newsall .arrowBox .arrowNext {
        right: 0;
    }
    .news-sect .newsleft .news-list .box .txt {
        max-width: 100%;
    }
    .news-sect .newsleft .news-list .box .txt .name {
        font-size: 16px;
    }
    .news-sect .newsleft .news-list .box .txt .date,
    .news-sect .newsright .news-list .box .txt .date{
        
    }
    .news-sect .newsleft .news-list .box .txt .name,
    .news-sect .newsright .news-list .box .txt .name{
        font-size: 16px;
    }
    .news-sect .newsright .news-list .box .txt {
        padding: 15px;
    }
    .news-sect .slick_dots{
        position: relative;
        margin: 12px auto 0;
    }
    .sect4{
        padding: 56px 0;
    }
    /*-news end*/
    .products-list .item {
        width: 50%;
    }
    .products-list .item:nth-child(3n+1) {
        clear: none;
    }
    .products-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .banner {
        display: none;
    }
    .banner_m {
        display: block;
    }
    .about-sect .row .col.title_box{
        flex-basis: inherit;
    }
}
@media screen and (max-width: 600px) {
    .products-list .item {
        width: 100%;
    }
    .products-list .item:nth-child(n) {
        clear: none;
    }
}
@media screen and (max-width: 484px) {
    .reach_item{
        display: none;
    }
}
@media screen and (max-width: 440px) {
    .news-sect .box .txt{
        
    }
    .news-sect .newsleft .news-list .box .txt{
        position: relative;
        margin: 0 auto;
        border-radius: 0 0 16px 16px;
    }
    .news-sect .newsright .news-list .box{
        flex-direction: column;
    }
    .news-sect .newsright .news-list .box .pic{
        width: 100%;
    }
}
@media screen and (max-width: 400px) {
    .news-list .date {
        float: none;
    }
    .news-list .date:after {
        display: none;
    }
    .news-list .name {
        margin-left: 0;
    }
}