@charset "utf-8";
/* ------ banner ------ */
.banner .slick-dots {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}
.banner .slick-dots li {
    margin: 10px 0;
    display: flex;
}
.banner .slick-dots li button {
    white-space: nowrap;
    text-indent: 101%;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    border: 1px solid #D6D6D6;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
    border-radius: 100%;
}
.banner .slick-dots li.slick-active button {
    background: #52A9A4;
    border-color: #52A9A4;
}
/* ------ common ------ */
.sect-title {
    position: relative;
    margin: 0 0 30px;
}
.sect-title span{
    position: relative;
    box-sizing: border-box;
    font-size: 50px;
    font-weight: 600;
    color: #52A9A4;
    letter-spacing: 0.2px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}
.sect-title h2 {
    position: relative;
    box-sizing: border-box;
    display: block;
    font-size: 26px;
    font-weight: normal;
    color: #333333;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
}
/* ------ sect1-about ------ */
.sect1{
    position: relative;
    padding: 80px 0 0;
    z-index: 2;
}
.about-sect {
    position: relative;
    box-sizing: border-box;
}
.about-sect .sect-title{
    display: block;
    text-align: center;
    margin: 0;
}
.about-sect .sect-title::after {
    content: '';
    position: relative;
    display: block;
    width: 60px;
    height: 1px;
    background: #52A9A4;
    margin: 20px auto 0;
}
.about-sect .index-about-editor {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 60px 60px 115px;
}
.about-sect .index-about-editor::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background: url(../../images/common/index/bg.jpg);
    z-index: -1;
}
.about-sect .index-about-editor .editor {
    position: relative;
    box-sizing: border-box;
    color: #666666;
    letter-spacing: 1.5px;
    line-height: 2.2;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 145px;
}
.about-sect .more {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 85px;
    height: auto;
    line-height: normal;
    padding: 23.5px 0;
    white-space: break-spaces;
    border-radius: 100%;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #555555;
    background: #FFFFFF;
    margin: -42.5px auto 0;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}
.about-sect .more .aboutButtonBar {
    background: #52A9A4;
    width: 1px;
    height: 30px;
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.about-sect .more:hover .aboutButtonBar {
    background: rgb(82, 169, 164, 0.3);
    top: -15%;
}
.about-sect .more .aboutButtonCircle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg);
}
.about-sect .more .circleUnder {
    fill: none;
    stroke: #52A9A4;
    stroke-width: 1px;
    stroke-dasharray: 433px;
    stroke-dashoffset: 0px;
    animation: circleDownOff 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.about-sect .more .circleOver {
    fill: none;
    stroke: rgb(82, 169, 164, 0.3);
    stroke-width: 1px;
    stroke-dasharray: 433px;
    stroke-dashoffset: 0;
    animation: circleUpOff 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.about-sect .more:hover .circleUnder {
    animation: circleDownOn 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.about-sect .more:hover .circleOver {
    animation: circleUpOn 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes circleUpOn {
    0% {
        stroke-dashoffset: 433;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes circleDownOn {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -433;
    }
}
@keyframes circleUpOff {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 433;
    }
}
@keyframes circleDownOff {
    0% {
        stroke-dashoffset: -433;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
/* ------ sect5-ad ------ */
.sect5 {
    position: relative;
    display: block;
    width: 100%;
    height: 25rem;
    overflow: hidden;
    padding: 40px 0;
    margin: -80px 0 0;
    z-index: 1;
}
.sect5 .container {
    max-width: 1920px;
    padding: 0;
}
/* ------ sect2-news ------ */
.sect2 {
    position: relative;
    padding: 40px 0 30px;
}
.sect2::before {
    content: '';
    position: absolute;
    top: 168px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 168px);
    margin: 0 auto;
    background: url(../../images/common/index/bg.jpg);
}
.news-sect {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}
.news-sect .sect-title {
    padding: 45px 0 0;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 377px;
}
.news-sect .sect-title::before{
    content: '';
    position: absolute;
    top: -115px;
    left: -230px;
    width: 350px;
    height: 245px;
    background: url(../../images/common/index/news_left.png) no-repeat;
    background-size: cover;
}
.news-sect .sect-title span {
    line-height: 0.9;
}
.news-sect .sect-title h2 {
    margin-left: -25px;
}
.news-sect .sect-title span i {
    font-style: unset;
    display: block;
}
.news-sect .btn.more {
    position: absolute;
    display: block;
    text-align: left;
    top: 45%;
    left: 7%;
    width: 166px;
    height: 50px;
    line-height: 50px;
    color: #555555;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}
.news-sect .btn.more:hover {
    color: #52A9A4;
}
.news-sect .btn.more::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid rgb(82, 169, 164, 0.5);
    background: #fff;
    transition: all 0.3s ease;
}
.news-sect .btn.more::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-50%);
    width: 32.5px;
    height: 5px;
    background: url(../../images/common/index/arr.png) no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
}
.news-sect .btn.more:hover:after {
    right: 9px;
}
.news-list {
    margin: 0 -20px;
    width: calc(100% - 337px);
}
.news-list .item {
    width: calc(100% / 3);
    padding: 0 20px;
}
.news-list .item:nth-child(3n+1) {
    clear: left;
}
.news-list .box {
    max-width: 330px;
    position: relative;
    margin: 0 auto;
}
.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 .item{
    margin: 0 auto 40px;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}
.news-list .pic img{
    width: 100%;
}
.news-list .txt {
    position: relative;
    padding-left: 76px;
}
.news-list .date {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 56px;
    height: 70px;
    color: #52A9A4;
    border: 1px solid #52A9A4;
    background: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}
.news-list .date small {
    display: block;
    font-size: 15px;
}
.news-list .name {
    position: relative;
    box-sizing: border-box;
    color: #333333;
    font-size: 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 27px;
    margin: 0 0 2px;
    transition: all 0.3s ease;
}
.news-list .box:hover .name {
    color: #52A9A4;
}
.news-list .description {
    position: relative;
    box-sizing: border-box;
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}
.news-list .more {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 100px;
    color: #555555;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.9px;
    line-height: 30px;
    border-bottom: 2px solid #52A9A4;
    margin: 20px auto 0;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}
.news-list .item:hover .more {
    border-bottom-color: rgb(82, 169, 164, 0.3);
    color: #52A9A4;
}
/* ------ sect3-ad2 ------ */
.sect3 {
    position: relative;
    padding: 0;
}
.sect3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 50%);
    margin: 0 auto;
    background: url(../../images/common/index/bg.jpg);
}
.sect3 .container {
    max-width: 1920px;
    padding: 0;
}
.index-pic-sect {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
}
/* ------ sect4-products ------ */
.sect4 {
    position: relative;
    padding: 70px 0 50px;
}
.sect4 .container::before {
    content: '';
    position: absolute;
    bottom: -228px;
    left: -165px;
    width: 330px;
    height: 561px;
    background: url(../../images/common/index/product_left.png) no-repeat;
    background-size: contain;
    z-index: -1;
}
.sect4 .container::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -324px;
    width: 550px;
    height: 379px;
    background: url(../../images/common/index/product_right.png) no-repeat;
    background-size: contain;
    visibility: visible;
    z-index: -1;
}
.products-sect .sect-title::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 60px;
    background: #52A9A4;
}
.products-sect .sect-title {
    display: block;
    text-align: center;
}
.products-list {
    margin: 0 -1.7%;
}
.products-list .item {
    width: 25%;
    padding: 0 1.7% 3.4%;
}
.products-list .item:first-child {
    width: 50%;
}
.products-list .box {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}
.products-list .item:first-child .box {
    max-width: 693px;
}
.products-list .box.new:before {
    content: 'HOT';
    position: absolute;
    display: block;
    text-align: center;
    width: 60px;
    height: 30px;
    line-height: 30px;
    left: 15px;
    top: 15px;
    color: #52A9A4;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #DADADA;
    z-index: 5;
    font-family: 'Cormorant Garamond', serif;
}
.products-list .pic-box {
    position: relative;
    overflow: hidden;
}
.products-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}
.products-list .pic:before {
    content: '';
    background: url('../../images/common/products/hover.png') 50% 50% no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 100%;
    max-width: 90px;
    max-height: 90px;
    top: calc(50% + 100px);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.products-list .item:first-child .box .pic:before {
    max-width: 120px;
    max-height: 120px;
}
.products-list .box:hover .pic:before {
    top: calc(50% + 1px);
    opacity: 1;
}
.products-list li .txt {
    position: absolute;
    box-sizing: border-box;
    z-index: 5;
    right: 0;
    bottom: 0;
    display: block;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    pointer-events: none;
    width: 85%;
}
.products-list .name {
    position: relative;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 22px;
    margin: 0 35px 5px 0;
    transition: all 0.3s ease;
}
.products-list .box:hover .name {
    color: #52A9A4;
}
.products-list .description {
    position: relative;
    box-sizing: border-box;
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 20px;
    margin: 0 35px 0 0;
}
.products-list .btn-group {
    position: absolute;
    box-sizing: border-box;
    top: 48%;
    right: 20px;
    transform: translateY(-50%);
}
.products-list .btn-group .btn {
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    color: #333;
    font-size: 15px;
    pointer-events: visible;
    transition: all 0.3s ease;
}
.products-list .btn-group .btn .ic {
    vertical-align: text-bottom;
    font-size: 20px;
    margin: 0;
}
.products-list .btn-group .btn.detail {
    display: none;
}
.products-list .btn-group .btn.wish {
    font-size: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.products-list .btn-group .btn.wish i {
    color: #52A9A4;
    font-size: 30px;
    line-height: 35px;
    margin: 0;
    transition: all 0.3s ease;
}
.products-list .btn-group .btn.wish:hover i {
    color: #DA6994;
}
.products-list .box:hover .btn-group .btn.delete {
    color: #52A9A4;
}
/* ------ 拆單 ------ */
.shopping_way.hot{
    text-align: left;
    margin-top: 8px;
}
.shopping_way .general{
    border: 1px solid #aaa;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #aaa;
}
.shopping_way .cold{
    border: 1px solid #42b354;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #42b354;
}
.shopping_way .freezing{
    border: 1px solid #68a0da;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #68a0da;
}
.shopping_way span+span{
    margin-left:10px;
}
.pd-intro .btn-group .btn.general {
    border :1px solid #4e4e4e;
    color: #4e4e4e;
    background:#fff;
}
.pd-intro .btn-group .btn.general:hover {
    color: #fff;
    background: #4e4e4e;
}
.pd-intro .btn-group .btn.cold {
    border: 1px solid #42b354;
    color:#42b354;
    background:#fff;
}
.pd-intro .btn-group .btn.cold:hover {
    color:#fff;
    background:#42b354;  
}
.pd-intro .btn-group .btn.freezing {
    border:1px solid #68a0da;
    color:#68a0da;
    background:#fff;
}
.pd-intro .btn-group .btn.freezing:hover {
    color:#fff;
    background:#68a0da;  
}
/* ------ /拆單 ------ */
/* ------ rwd ------ */
@media screen and (max-width: 1280px) {
    /* sect2-news */
    .news-sect .sect-title {
        max-width: 320px;
    }
    .news-list {
        margin: 0 -10px;
        width: calc(100% - 300px);
    }
    .news-list .item {
        padding: 0 10px;
    }
    /* sect4-products */
    .products-list .box.new:before{
        left: 15px;
        top: 15px;
    }
    .products-list li .txt{
        padding: 15px;
    }
    .products-list .pic:before {
        max-width: 80px;
        max-height: 80px;
    }
}
@media screen and (max-width: 1000px) {
    /* banner */
    .banner .slick-dots li {
        margin: 5px 0;
    }
    /* common */
    .sect-title span {
        font-size: 45px;
    }
    .sect-title h2{
        font-size: 23px;
    }
    /* sect1-about */
    .sect1 {
        padding: 30px 0;
    }
    .about-sect .index-about-editor{
        padding: 30px 30px 80px;
    }
    .about-sect .index-about-editor .editor {
        letter-spacing: 1.5px;
        line-height: 1.75;
        -webkit-line-clamp: initial;
        height: auto;
    }
    /* sect5-ad */
    .sect5 {
        padding: 30px 0;
        margin: -100px 0 0;
        height: 10rem;
    }
    /* sect2-news */ 
    .sect2 {
        padding: 30px 0;
    }
    .news-sect {
        flex-direction: column;
    }
    .news-sect .sect-title {
        max-width: unset;
        padding: 0;
        flex-direction: column;
        align-items: center;
    }
    .news-sect .sect-title span i {
        display: inline-block;
    }
    .news-sect .sect-title h2 {
        margin-left: 0;
    }
    .news-sect .sect-title span {
        line-height: 1.2;
    }
    .news-list {
        margin: 0 -10px;
        width: 100%;
    }
    .news-list .item {
        margin: 0 auto 20px;
    }
    .news-sect .btn.more {
        position: relative;
        top: unset;
        left: 0;
        right: 0;
        margin: 0 auto 15px;
    }
    .news-list .name{
        font-size: 16px;
    }
    /* sect3-ad2 */
    .sect3 {
        padding: 0;
    }
    /* sect4-products */
    .sect4 {
        padding: 30px 0;
    }
    .products-sect .sect-title::before {
        top: -30px;
        height: 25px;
    }
    .products-list {
        max-width: 693px;
        margin: 0 auto;
    }
    .products-list .item{
        width: 50%;
        padding: 0 3% 3.4%;
    }
    .products-list .item:first-child{
        width: 100%;
    }
    .products-list .name{
        font-size: 16px;
    }
    .shopping_way .general,
    .shopping_way .cold,
    .shopping_way .freezing {
        padding: 3px;
        margin-left: 1px;
    }
}
@media screen and (max-width: 767px) {
    /* sect2-news */ 
    .news-list .item{
        width: 100%;
    }
    .news-list .item:nth-child(3n+1) {
        clear: both;
    }
    .news-list .item:nth-child(n+1) {
        clear: left;
    }
    .news-list {
        margin: 0;
    }
}
@media screen and (max-width: 693px) {
    /* sect4-products */ 
    .products-list .item {
        width: 100%;
        padding: 0 3%;
        margin: 0 auto 20px;
    }
    .products-list .box {
        max-width: unset;
    }
}