@charset "utf-8"; /* CSS Document */
.bannerArea:after {
    /* display:none; */
}

/*****分店外連結******/
.storeArea ul {
    text-align: center;
}

.storeArea ul li.col-3 {
    float: none;
    display: inline-block;
    margin: 0 -4px;
    padding: 50px;
    text-align: center;
}

.storeArea ul li a.item {
    display: block;
}

.storeArea ul li .Img {
    position: relative;
    overflow: hidden;
    width: 260px;
    height: 260px;
    border: 4px solid #d1d1d1;
    border-radius: 100%;
}

.storeArea ul li .Img img {
    display: block;
    width: 100%;
    border-radius: 100%;
}

.storeArea ul li .Img:after {
    content: "Detail";
    display: block;
    width: 100%;
    height: 100%;
    line-height: 260px;
    font-size: 22px;
    color: #FFFFFF;
    text-decoration: underline;
    text-align: center;
    background: rgba(15,4,0,0.8);
    border-radius: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    opacity: 0;
    transform: rotate(180deg);
    transition: all 0.4s ease;
}

.storeArea ul li .Txt {
    padding-top: 20px;
}

.storeArea ul li .Txt h2 {
    font-family: "微軟正黑體", "LiHei Pro", "新細明體", sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #363636;
}

.storeArea ul li .Txt h2 strong {
    font-weight: normal;
}

.storeArea ul li .Txt p {
    padding-top: 10px;
    height: 100px;
    font-size: 12px;
    line-height: 1.8;
    color: #7b7b7b;
}

.storeArea ul li a.item:hover .Img:after {
    left: 0;
    opacity: 1;
    transform: rotate(0deg);
}

/***關於我們**/
.aboutArea {
    padding: 60px 0;
    background: url(../img/bg_about.jpg) no-repeat fixed;
    background-size: 100% auto;
    transition: all 0.4s ease;
}

.aboutArea .Img {
    float: left;
}

.aboutArea .Img img {
    max-width: 100%;
}

.aboutArea .Txt {
    font-family: "微軟正黑體", "LiHei Pro", "新細明體", sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.8;
    overflow: hidden;
    text-align: center;
}

/***最新消息***/
.newsArea {
    clear: both;
    /* background: #fff; */
    background-size: cover;
    padding: 45px 0;
}

.newsArea h2 {
    background: url(../images/home/titleword_feature.png) no-repeat center top;
    height: 90px;
    margin-bottom: 80px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.newsArea ul {
    /* margin: 0 -20px; */
    text-align: center;
    /* width: 100%; */
}

.newsArea ul li {
    /* padding: 0 20px; */
    /* margin: 0 -2px; */
    display: inline-block;
    vertical-align: top;
    width: 25%;
    box-sizing: border-box;
    float: left;
}

.newsArea ul li .item {-webkit-transition: all 0.4s ease;-moz-transition: all 0.4s ease;-o-transition: all 0.4s ease;transition: all 0.4s ease;}

.newsArea ul li .Img {
    position: relative;
    /* min-height: 300px; */
    overflow:  hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: transparent;
}

.newsArea ul li .Img img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.newsArea ul li .Img::before {
}

.newsArea ul li .Img .word {
    font-size: 22px;
    color: #FFF;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:  999;
}

.newsArea ul li .Img .word strong {
    display: block;
    font-weight: normal;
}

.newsArea ul li .Img .word strong b {
    color: #ffee31;
}

.newsArea ul li .Img .word p {
    font-size: 15px;
    display: inline-block;
    margin: 0px 10px;
}

.newsArea ul li .Txt {
    margin-top: 15px;
    text-align: center;
    margin: 10px;
}

.newsArea ul li .Txt h3 {
    font-size: 20px;
    font-size: 22px;
    color: #ea5404;
    font-weight: normal;
}

.newsArea ul li .Txt p {
    margin-top: 10px;
    font-size: 15px;
    color: #666;
}

    .newsArea ul li .Img img {
        perspective:1000;
        transition: all 0.4s ease;
    }

    .newsArea ul li .Img .word strong {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .newsArea ul li .Img .word p {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s ease;
    }

    .newsArea ul li .item:hover .Img img {
        /* transform: rotateY(180deg); */
    }

    .newsArea ul li .item .Img:before {
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 998;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        overflow: hidden;
    }

    .newsArea ul li .item:hover .Img:before {
        background: rgba(158, 204, 48, 0.8);
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 998;
    }

    .newsArea ul li .item:hover .Img .word strong {
        opacity: 1;
        transform: translateY(0);
    }

    .newsArea ul li .item:hover .Img .word p {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1024px) {
    .newsArea ul li .Img .word p {
        display:none;
    }

    .newsArea ul li .item:hover .Img .word strong {
        font-size:1.5em;
    }
    
}

/***推薦商品***/
.feathureArea {
    /* background: url(../img/bg_about.jpg) no-repeat center bottom; */
    background-size: 100% auto;
    /* border-top: 1px solid #178e7b; */
    padding-bottom: 45px;
    /* background: #fff; */
}

.feathureArea h2 {
    text-align: center;
    width: 180px;
    margin: 0 auto;
    background: #178e7b;
    border-radius: 0px 0 180px 180px;
    height: 90px;
    margin-bottom: 45px;
    /* margin-top: -10px; */
    /* border: 10px solid #ffffff; */
    border-top: 0px;
}

.feathureArea h2 em {
    display: block;
    font-family: 微軟正黑體;
    font-size: 2em;
    color: #ffffff;
    font-weight: normal;
    letter-spacing: 2px;
    /* font-weight: bold; */
    padding-top: 8px;
}

.feathureArea h2 strong {
    font-size: 15px;
    font-weight: normal;
    color: #00cc89;
    font-family: "微軟正黑體";
    font-weight: bold;
}

.feathureArea ul {
    margin: 0 -20px;
}

.feathureArea ul li {
    padding: 0 20px;
}

.feathureArea ul li .Img {
}

.feathureArea ul li .Img img {
    display: block;
    width: 100%;
    /*border-radius:100%;*/
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /* border: 1px solid #990000; */
}

.feathureArea ul li .Img:hover img {
    opacity: 1;
    /* -webkit-transform:rotate(15deg); */
    -moz-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    /* transform:rotate(15deg); */
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.feathureArea ul li .Txt {
    padding: 10px 0px;
    text-align: center;
}

.feathureArea ul li .Txt h3 {
    font-family: "微軟正黑體", "LiHei Pro", "新細明體", sans-serif;
    font-size: 18px;
    font-weight: normal;
    min-height: 60px;
    /* width: 100%; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* display: -webkit-inline-box; */
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    border-radius: 4px;
    background: #178e7b;
    padding: 5px;
    /* line-height: 44px; */
}

.feathureArea ul li .Txt h3 a {
    display: block;
    font-weight: normal;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* font-weight: bold; */
    /* background: rgba(255, 255, 255, 0.8); */
    /* border-radius: 6px; */
}

.feathureArea ul li .Txt h3 a:hover {
    /* text-decoration:underline; */
    /* color: #178e7b; */
}

.feathureArea ul li .Txt .price {
    display: none;
    font-size: 13px;
    color: #727272;
    font-weight: normal;
    font-style: italic;
}

.feathureArea ul li .Txt .price b {
    font-size: 18px;
    color: #d91660;
}

.feathureArea ul li .Txt p {
    display: none;
    font-size: 13px;
    color: #010101;
    line-height: 1.8;
    max-height: 65px;
}

.feathureArea ul li .ribbon_new {
    display: inline-block;
    background: url(../img/ribbon_new.png) no-repeat;
    width: 40px;
    height: 30px;
    text-indent: -9999px;
}

.feathureArea ul li .ribbon_hot {
    display: inline-block;
    background: url(../img/ribbon_hot.png) no-repeat;
    width: 40px;
    height: 30px;
    text-indent: -9999px;
}

@media (max-width: 1160px) {
    .aboutArea {
        background-size:cover;
    }

    .feathureArea {
        background-size: cover;
    }

    .newsArea {
        background-size: cover;
    }

    .newsArea h3 {
        /* text-align: left; */
        font-size: initial;
        color: #ffffff;
        font-family: 微軟正黑體;
    }

    .newsArea h3 span {
        font-size: x-large;
    }

    .newsArea ul li {
        width: 100%;
        margin: 0 auto;
        padding: 0 0px 40px 0px;
    }

    .newsArea ul li:last-child {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .storeArea ul li.col-3 {
        display:block;
        width: 100%;
        margin: 0;
    }

    .storeArea ul li .Img {
        width: 100%;
        height: auto;
    }

    .storeArea ul li .Img:after {
        line-height: 100px;
    }

    .aboutArea .Img {
        float: none;
    }

    .feathureArea {
        /* background:url(../img/bg_about.jpg) no-repeat center bottom; */
        background-size: cover;
        padding: 0px;
        background: #fff;
    }

    .feathureArea ul li.col-4 {
        width: 50%;
        padding: 20px;
    }

    .newsArea {
        /* background:url(../img/bg_store.jpg) no-repeat center bottom; */
        background-size: cover;
        background: #fff;
    }
}

@media (max-width: 360px) {
    .aboutArea .Img {
        float:none;
        margin: 0 0 20px 0;
    }
}
