﻿@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Verdana, "Microsoft JhengHei", "微軟正黑體", "新細明體", "蘋果儷黑體", Arial, Helvetica, sans-serif;
}

body {
    background: #f7f7f7;
    font-family: Microsoft JhengHei, "微軟正黑體";
    letter-spacing: .05rem;
    font-size: 16px;
}

img {
    border: none;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: #323232;
}

h1 {
    color: #1e67a2;
    letter-spacing: .15rem;
    font-size: 1.6rem;
    text-align: center;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
}

#wrapper {
    margin: 0 auto;
    width: 100%;
	min-height: 70vh;
    padding: 1rem 0;						
}

.container {
    position: relative;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0;
    color: #505050;
}


/*清除浮動*/

.clean {
    clear: both;
    visibility: hidden;
}


/*文字超過設定範圍變...*/

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/*標題跟副標設定*/

.title h1 {
    color: #1e67a2;
    letter-spacing: .15rem;
    font-size: 1.6rem;
    text-align: center;
}

.title h1 span {
    color: #646464;
    display: block;
    font-size: 1.1rem;
    font-weight: lighter;
    margin-top: 6px;
}

.title.about h1 {
    margin: 3rem 0 1.5rem;
}

.about-content {
    padding-bottom: 2rem;
}

.about-content p {
    line-height: 2rem;
}

.about-content p>span:last-of-type {
    font-size: 16pt !important;
}

/*==================== 跑馬燈 =====================*/

        .marquee {
            margin: 0 auto;
            max-width: 960px;
        }
        
        
        .marquee .toutiao {
            height: 150px;
            overflow: hidden;
            margin: 10px auto;
        }
        
        
        .marquee .toutiao ul li {
            line-height: 40px
        }
        
        .marquee .toutiao p {
            line-height: 40px;
            overflow: hidden;
            text-align: center;
            font-family: Microsoft JhengHei UI Light;
            font-size: 1.25em;
            color: #d80000;
            font-weight: bolder;
        }
    
        .marquee .toutiao i {
            margin-right: 8px;
            color: #999
        }



/*==================== header =====================*/

.tab_head_panel_bottom {
    display: none;
}

header {
    padding-bottom: 10px;
    border-bottom: 2px solid #1e67a2;
}

.wrap_container {
    position: relative;
    background-color: #fff;
}

.wrap_header {
    font-size: .83rem;
    position: relative;
}

a[accesskey] {
    position: absolute;
    color: transparent;
}

.mobile_head {
    display: none;
}

.desktop_head {
    position: relative;
    z-index: 1;
}

.head_logo {
    width: 100%;
    max-width: 160px;
    position: absolute;
    left: 15px;
    top: 0;
    padding-top: 15px;
    text-align: center;
}

.head_logo a {
    display: block;
}

.head_logo img {
    width: 100%;
}

.logo_txt {
    margin-top: 5px;
    font-size: 1.25rem;
    letter-spacing: 12px;
    font-weight: bold;
    color: #1e67a2;
}


/*漢堡*/

#burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: transparent;
    height: 44px;
    border: 0;
    cursor: pointer;
    position: relative;
    width: 44px;
    padding: 10px 0;
}

.icon-bar {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: #fb992a;
    transition: .3s;
    position: absolute;
}

#burger .icon-bar:nth-of-type(1) {
    top: 10px;
}

#burger .icon-bar:nth-of-type(3) {
    bottom: 10px;
}

#burger.open .icon-bar:nth-of-type(1) {
    transform: rotate(45deg);
    top: 22px;
}

#burger.open .icon-bar:nth-of-type(2) {
    transform: scale(0);
}

#burger.open .icon-bar:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 20px;
}

.wrap_top {
    position: relative;
}

.head_panel_top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 15px;
}

.head_link {
    padding-right: 10px;
    display: flex;
    list-style: none;
}

.head_link a {
    color: #333;
    padding: 30px 10px;
    position: relative;
}

.head_link li {
    max-height: 60px; 
}

.head_link>li>a:hover::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fb8500;
    left: 0;
    bottom: 25px;
}

.head_link>li:after {
    content: '|';
    text-align: center;
    display: inline-block;
    font-size: 1rem;
    width: 16px;
    padding-left: 4px;
}

.head_link>li:last-of-type::after {
    content: '';
}

.dropDown:hover .menu_sub {
    max-height: 100%;
    opacity: 1;
}

.good_list svg {
    display: none;
}

.head_search {
    padding-right: 40px;
}

.form_search {
    border-radius: 5px;
    border: 1px solid #505050;
    overflow: hidden;
    position: relative;
}

.search_icon {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 3px;
    max-width: 30px;
    width: 100%;
}

.search_icon svg {
    color: #fa7808;
    font-size: 1rem;
}

.head_search .form_search input[type=text] {
    padding: 9px 12px;
    max-height: 35px;
    background-color: #fff;
    letter-spacing: 1px;
    width: 100%;
    border: none;
}

.hot_keyword {
    padding-top: 10px;
    font-size: .77rem;
    color: #232323;
}

.hot_keyword a {
    padding: 3px;
    color: #232323;
    text-decoration: underline;
    line-height: 1.5rem;
}

.CarNumber {
    padding: 0.1rem .2rem;
    font-size: .8rem;
    border-radius: 5px;
    background: #d80000;
    color: #fff;
}

/* 選單 */

.wrap_nav {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: 10px;
    text-align: center;
    background-color: #fb992a;
}

.menu_main {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.menu_main>li {
    width: 14%;
}

.menu_main>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.11rem;
    max-height: 60px;
    position: relative;
    padding: 19px 8px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
}

.menu_main>li>a>i {
    margin-left: 5px;
}

.menu_main>li>a.hover {
    display: block;
}

.menu_sub {
    display: flex;
    justify-content: center;
    list-style: none;
    background-color: #1e67a2;
    /* padding-top: 20px;
    padding-bottom: 40px; */
    padding-left: 0;
    margin: 0;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 86px;
    max-height: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    transition: .5s;
    width: 100%;
    opacity: 0;
}

.menu_sub.show {
    max-height: 1000px;
    transition: .5s;
}

.menu_sub li {
    text-align: left;
    width: 16.25%;
}

.menu_sub li a {
    display: block;
    color: #fff;
    padding: 10px;
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 30px;
    text-align: center;
    transition: .5s;
}

.menu_sub li a:hover {
    background-color: #fb8500;
}


/*大圖輪播*/

.item {
    opacity: 0.4;
    transition: .4s ease all;
    margin: 0 20px;
}

.item a img {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}

.active .item {
    opacity: 1;
    transform: scale(1);
}

.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.owl-controls {
    position: absolute;
    margin-top: 300px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fa7808;
}


/*最新消息*/

.news_tool {
    margin-top: 60px;
    padding: 0 75px;
}

.news_tool .title {
    margin-bottom: 30px;
}

.news_tool hr {
    background-color: #1e67a2;
    height: 1px;
    border: none;
}

.news_list {
    font-size: 1.1rem;
    display: flex;
    padding: 15px 0;
    border-bottom: 1px dotted #1e67a2;
}

.news_list:first-child {
    padding-top: 20px;
}

.news_list:last-child {
    border-bottom: 1px solid #1e67a2;
    padding-bottom: 20px;
}

.list_data {
    margin-right: 15px;
}

.list_txt {
    width: calc(100% - 125px);
}

.list_txt p {
    color: #1e67a2;
    display: inline-block;
    font-weight: 500;
}

.list_txt p:after {
    content: "";
    width: 2px;
    height: 15px;
    background-color: #1e67a2;
    display: inline-block;
    margin: 0 15px;
}

.list_txt span {
    display: inline;
    line-height: 25px;
}


/*限時搶購*/

.limit_tool {
    margin-top: 60px;
}

.limit_tool .title {
    margin-bottom: 30px;
}


/*
.limit_section{
    display: flex;
    justify-content: space-between;
}*/

.countdown {
    padding: 5px 20px;
    color: #1e67a2;
    border: 1px solid #1e67a2;
    border-radius: 15px;
    display: inline-block;
    transition: .3s;
}


/*
.countdown:hover {
    background-color: #1e67a2;
    color: #FFF;
}
*/

.limit_list h4 {
    margin: 15px 0;
    font-size: 1.2rem;
}

.limit_block {
    border: 1px solid #969696;
    max-height: 405px;
    overflow: auto;
}

.limit_block img {
    transition: .5s;
}

.limit_block:hover img {
    transform: scale(1.1, 1.1);
}

.limit_block .imgBox {
    max-height: 275px;
    overflow: hidden;
}

.limit_txt {
    padding: 15px;
    line-height: 24px;
    max-height: 180px;
    overflow: auto;
}

.limit_txt span {
    height: 45px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    /*限制三行*/
    -webkit-box-orient: vertical;
}


/*old price設定*/


/*.price{
    color: #d80000;
    font-size: 1.5rem;
    float: right;
    margin-top: 20px;
}

.price:before{
    content: "團購價";
    font-size: 1rem;
}

.price:after{
    content: "元";
    font-size: 1rem;
}*/

.price-tool {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: baseline;
}

.price-tool .original {
    text-decoration: line-through;
}

.price-tool .original:before {
    content: "原價";
    font-size: .8rem;
}

.price-tool .original:after {
    content: "元";
    font-size: .8rem;
}

.price {
    color: #d80000;
    font-size: 1.5rem;
    margin-left: 10px;
}

.price:before {
    content: "優惠價";
    font-size: 1rem;
}

.price:after {
    content: "元";
    font-size: 1rem;
}


/*推薦商品 + 餐飲美食*/

.recommend_tool {
    margin-top: 60px;
}

.recommend_tool .title {
    margin-bottom: 30px;
}

.recommend_list {
    position: relative;
}

.recommend_list .remark {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fa7808;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid #fa7808;
    padding: 5px 10px;
    z-index: 50;
}

.recommend_list .imgBox {
    overflow: hidden;
}

.recommend_list .imgBox img {
    transition: .5s
}

.recommend_list .imgBox:hover img {
    transform: scale(1.1, 1.1);
}

.recommend_txt h4 {
    margin: 15px 0;
    font-size: 1.2rem;
}

.recommend_txt .txt_content {
    line-height: 20px;
    height: 60px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    /*限制三行*/
    -webkit-box-orient: vertical;
}

.recommend_txt hr {
    background-color: #1e67a2;
    height: 1px;
    border: none;
    margin-top: 20px;
}

.owl-theme .owl-nav .disabled {
    position: absolute;
    opacity: 1;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #1e67a2;
    font-size: 2rem;
    background: none;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e67a2;
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 17%;
    left: -60px;
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 17%;
    right: -60px;
}


/*熱門商品*/

.popular_tool {
    margin-top: 60px;
}

.popular_tool h1 span {
    width: 100%;
    background-color: #1e67a2;
    color: #FFF;
    padding-top: 15px;
    padding-bottom: 80px;
    margin-bottom: -50px;
    /*推回去*/
}

.popular_section {
    position: relative;
}

.popular_list h4 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.popular_list hr {
    background-color: #1e67a2;
    height: 1px;
    border: none;
}

.popular_list .imgBox {
    overflow: hidden;
    background-color: #000000;
    position: relative;
}

.popular_list a:hover h4 {
    color: #fa7808;
    transition: .3s;
}

.popular_section img {
    transition: .5s;
}

.popular_section figure:hover img {
    opacity: 0.5;
    transform: scale(1.1, 1.1);
}

.popular_list figcaption p {
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    padding: 0 30px;
    display: inline-block;
    vertical-align: middle;
    line-height: 24px;
    opacity: 0;
    transition: .5s;
    color: #FFF;
}

.popular_section figure:hover p {
    opacity: 1;
}


/*友站連結*/

.usefuLink_tool {
    margin-top: 60px;
    margin-bottom: 100px;
}

.usefuLink_section {
    margin-top: 30px;
}


/*==================== footer =====================*/

footer {
    background-color: #434343;
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: .1rem;
}

footer p {
    color: #FFF;
}

.footer-left {
    float: left;
    margin: 20px 0px 30px 0px;
}

.footer-right {
    float: right;
    margin: 20px 0px 30px 0px;
}

.footer-right img {
    max-width: 100px;
}

footer .footer-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.copyright {
    text-align: center;
    font-size: .9rem;
    margin-top: 10px;
}


/*================== Scroll to top ====================*/

.scroll-up {
    position: fixed;
    display: none;
    bottom: 126px;
    right: 10px;
    z-index: 999;
}

.cart_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
}

.scroll-up a,
.cart_btn a {
    background: #fa7808;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 2rem;
    color: #fff;
    /* opacity: 0.6; */
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.cart_btn a {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.cart_btn a:last-of-type {
    margin-bottom: 0;
}

.cart_btn .shop {
    position: relative;
}

.cart_btn img {
    width: 100%;
}

.cart_btn .shop_num {
    position: absolute;
    top: -16px;
    left: -15px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d80000;
    color: #fff;
    font-size: .8rem;
}

.scroll-up a:hover,
.scroll-up a:active {
    opacity: 1;
    color: #000;
}

.scroll-up .shop {
    margin-bottom: .5rem;
    font-size: 1.5rem
}


/*==================== RWD =====================*/

@media(max-width:1024px) {
    /*大圖輪播*/
    .item {
        margin: 0;
        /*transform: scale(.9)*/
    }
}

@media(max-width:768px) {
    /*天+MEUN*/
    header {
        padding-bottom: 0;
    }
    .desktop_head {
        display: none;
    }
    .mobile_head {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 99;
        width: 100%;
        padding: 10px 30px;
        border-bottom: solid 1px #fb8500;
        background-color: #FFF;
    }
    .head_logo_m img {
        max-width: 150px;
    }
    #burger {
        display: flex;
    }
    .head_panel_bottom {
        order: 1;
        width: 80%;
        margin-top: 20px;
    }
    .wrap_top {
        position: fixed;
        z-index: 98;
        left: 0;
        right: 0;
        bottom: 0;
        top: 70px;
        background-color: #fff;
        height: 0%;
        overflow: hidden;
        transition: .5s;
    }
    .wrap_top.open {
        height: calc(100% - 70px);
        overflow-y: auto;
        border-top: 1px solid #fb8500;
    }
    .head_panel_top {
        /* padding-top: 0; */
        justify-content: center;
        flex-direction: column;
    }
    .head_link {
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        order: 2;
    }
    .head_link a {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        width: 100%;
        border-bottom: dashed 1px #ccc;
    }
    .head_link>li:after {
        content: "";
    }
    .head_link>li>a:hover::after {
        height: 0;
    }
    .head_search {
        padding-right: 0;
    }
    .form_search {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        position: relative;
    }
    .head_search .form_search input[type=text] {
        width: 100%;
    }
    .head_search .advanced_search {
        margin-top: 10px;
        margin-left: 10px;
    }
    .tab_head_panel_bottom {
        display: none;
    }
    .head_panel_bottom {
        display: none;
    }
    .head_social {
        padding-top: 20px;
        width: 100%;
        text-align: center;
    }
    .head_social>a {
        width: 44px;
        height: 44px;
    }
    .wrap_nav {
        margin-top: 20px;
        height: auto;
    }
    .menu_main {
        flex-wrap: wrap;
    }
    .menu_main>li {
        width: 100%;
        border-bottom: dashed 1px #fff;
    }
    .dropDown:hover .menu_sub {
        max-height: 0;
    }
    .dropDown.show .menu_sub {
        max-height: 100%;
        opacity: 1;
    }
    .good_list svg {
        display: block;
    }
    .dropDown.show .good_list svg {
        transform: rotate(180deg);
    }
    .menu_sub {
        position: inherit;
        top: 0;
        max-height: 0;
        height: auto;
        transition: .5s;
        flex-direction: column;
    }
    .menu_sub li {
        width: 100%;
    }
    /*大圖輪播*/
    #mass_banner {
        margin-top: 25px;
    }
    /*最新消息*/
    .news_tool {
        padding: 0;
    }
}

@media (max-width: 600px) {
    /*最新消息*/
    .news_list {
        flex-wrap: wrap;
    }
    .list_txt {
        width: 100%;
    }
    .list_data {
        margin-right: 0;
        margin-bottom: 10px;
    }
    /*推薦商品+餐飲美食*/
    .recommend_tool .container {
        width: 100%;
    }
    .recommend_tool .owl-nav {
        display: none;
    }
    .recommend_txt span {
        height: 40px;
        -webkit-line-clamp: 2;
        /*限制三行*/
    }
    /*footer*/
    .footer-left,
    .footer-right {
        float: none;
    }
}


/*1019 登入*/

.head_link {
    padding-right: 0;
}

.member {
    font-size: .8rem;
    line-height: 18px;
    letter-spacing: 1.5px;
    color: #FFF;
    background-color: #1e67a2;
    padding: 5px;
}

.member span {
    color: #ffe400;
    font-weight: bolder;
}

.head_search {
    padding-right: 20px;
}

@media(max-width: 1000px) {
    /*天+MEUN*/
    header {
        padding-bottom: 0;
    }
    .desktop_head {
        display: none;
    }
    .mobile_head {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 99;
        width: 100%;
        padding: 10px 30px;
        border-bottom: solid 1px #fb8500;
        background-color: #FFF;
    }
    .head_logo_m img {
        max-width: 150px;
    }
    #burger {
        display: flex;
    }
    .head_panel_bottom {
        order: 1;
        width: 80%;
        margin-top: 20px;
    }
    .wrap_top {
        position: fixed;
        z-index: 98;
        left: 0;
        right: 0;
        bottom: 0;
        top: 70px;
        background-color: #fff;
        height: 0%;
        overflow: hidden;
        transition: .5s;
    }
    .wrap_top.open {
        height: calc(100% - 70px);
        overflow-y: auto;
        border-top: 1px solid #fb8500;
    }
    .head_panel_top {
        /* padding-top: 0; */
        justify-content: center;
        flex-direction: column;
    }
    .head_link {
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        order: 2;
    }
    .head_link a {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        width: 100%;
        border-bottom: dashed 1px #ccc;
    }
    .head_link>li:after {
        content: "";
    }
    .head_link>li>a:hover::after {
        height: 0;
    }
    .head_search {
        padding-right: 0;
    }
    .form_search {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        position: relative;
    }
    .head_search .form_search input[type=text] {
        width: 100%;
    }
    .head_search .advanced_search {
        margin-top: 10px;
        margin-left: 10px;
    }
    .tab_head_panel_bottom {
        display: block;
        margin: 7rem 0 0;
    }
    .head_panel_bottom {
        display: none;
    }
    .head_social {
        padding-top: 20px;
        width: 100%;
        text-align: center;
    }
    .head_social>a {
        width: 44px;
        height: 44px;
    }
    .wrap_nav {
        margin-top: 20px;
        height: auto;
    }
    .menu_main {
        flex-wrap: wrap;
    }
    .menu_main>li {
        width: 100%;
        border-bottom: dashed 1px #fff;
    }
    .dropDown:hover .menu_sub {
        max-height: 0;
    }
    .dropDown.show .menu_sub {
        max-height: 100%;
        opacity: 1;
    }
    .good_list svg {
        display: block;
    }
    .dropDown.show .good_list svg {
        transform: rotate(180deg);
    }
	li.dropDown {
        position: relative;
    }		 
    .menu_sub {
        position: inherit;
        top: 0;
        max-height: 0;
        height: auto;
        transition: .5s;
        flex-direction: column;
    }
    .menu_sub li {
        width: 100%;
    }
    .member {
        font-size: 1rem;
        padding: 5px 20px;
        order: 3;
        margin-top: 30px;
        align-self: flex-end;
    }
    .member p {
        display: inline-block;
    }
    /*大圖輪播*/
    #wrapper {
    padding: 0;
    }
    #mass_banner {
        margin-top: 25px;
    }
    /*最新消息*/
    .news_tool {
        padding: 0;
    }
}