﻿
/* Reset & Base Styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: 1.1rem;
    color: #424242;
    overflow-x: hidden;
    background: #ebdac2;
}

h1, h2, h3 {
    display: none;
}

ol, ul {
    list-style: none;
}

a {
    color: #434343;
    text-decoration: none;
    outline: none;
}

    a:hover {
        text-decoration: none;
    }

    a:focus {
        outline: none;
    }

    a[href^="tel:"], a[href^="mailto:"] {
        text-decoration: underline;
    }

img {
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

img, div, section {
    box-sizing: border-box;
}

.b-box {
    box-sizing: border-box;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-spacing: 0;
}

a img {
    border: none;
}

/* Utility Spacing */
.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mb-7 {
    margin-bottom: 7rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pt-7 {
    padding-top: 7rem;
}

.pb-4 {
    padding-bottom: 7rem;
}

.pb-13 {
    padding-bottom: 13rem;
}
/* Animations */
@keyframes wave2 {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(10%);
    }
}

@keyframes scale {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes rotate2 {
    0% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(3deg);
    }
}

@keyframes bt-hover {
    0% {
        transform: scale(1) rotate(0);
    }

    25% {
        transform: scale(1.05) rotate(-10deg);
    }

    50% {
        transform: scale(1) rotate(15deg);
    }

    75% {
        transform: scale(1.05) rotate(-9deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}


/*PC
-----------------------------------------------------------------*/

/*主框架*/

/* 固定導覽高度自行替換 88px */
[data-spy-section] {
    scroll-margin-top: 88px;
}
.container {
    max-width: 100%;
    margin: auto;
    font-family: 'Noto Sans TC', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.line {
    position: fixed;
    right: 1%;
    bottom: 5%;
    z-index: 999;
}

    .line a {
        background: #42a22f;
        box-shadow: 0 0 8px rgba(0,0,0,0.5);
        border-radius: 10px;
    }

        .line a img {
            width: 85px;
        }

        .line a:hover {
        }

.block-center {
    max-width: 100%;
    max-width: 1300px;
    margin: auto;
    clear: both;
    position: relative;
}

.block-space {
    max-width: 100%;
    clear: both;
    height: 150px;
    position: relative;
    z-index: 4;
    margin-top: -80px;
}

.w1300 {
    max-width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}


/*主視覺*/
.block-main {
    max-width: 100%;
    clear: both;
    background: url(../Images/bg.jpg) #5abae0 center bottom;
    background-size: cover;
    display: flex;
    justify-content: center;
    height: 800px;
    position: relative;
}

    .block-main .title {
        width: 47vw;
        position: absolute;
        top: -7%;
        z-index: 9;
    }

.main-title {
    box-sizing: border-box;
    position: relative;
    background: url(../Images/main_bg2.jpg) no-repeat top center;
    background-size: cover;
    height: 640px;
}

.shine1 {
    position: absolute;
    left: 30%;
    top: 43%;
    width: 3vw;
    animation-name: scale;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

.shine2 {
    position: absolute;
    right: 31%;
    top: 40%;
    width: 2vw;
    animation-name: scale;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

.leaf-l {
    position: absolute;
    left: -2%;
    bottom: 0;
}

    .leaf-l.leaf1 {
        bottom: -10%;
        animation-name: rotate;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: reverse;
    }

    .leaf-l.leaf2 {
        bottom: -13%;
        animation-name: rotate2;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-direction: reverse;
    }

.leaf-r {
    position: absolute;
    right: -2%;
    bottom: 0;
}

    .leaf-r.leaf3 {
        bottom: -16%;
        animation-name: rotate;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: reverse;
    }

    .leaf-r.leaf4 {
        bottom: -7%;
        animation-name: rotate2;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-direction: reverse;
    }

.tree-l {
    position: absolute;
    left: -4%;
    bottom: 12%;
    animation-name: rotate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

.tree-r {
    position: absolute;
    right: -5%;
    bottom: 4%;
    animation-name: rotate2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

/*mobile menu*/
.black_bg {
    position: fixed;
    max-width: 100%;
    height: 100%;
    display: none;
    z-index: 10;
    top: 0px;
    left: 0;
    background-color: rgba( 0,0,0,0.4);
    transition: background-color 0.2s ease-in;
}

#menuBtn {
    display: none;
}

/*導覽列*/
.block-menu {
    clear: both;
    position: fixed;
    z-index: 10;
    top: 38%;
    right: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.menu-all {
    max-width: 100%;
    margin: 0 auto;
    background: rgb(255 255 255 / 90%);
    box-sizing: border-box;
}

    .menu-all ul {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        position: relative;
        align-items: center;
    }

    .menu-all li {
        padding: 0.4rem 1.5rem 0.4rem 1rem;
    }






    .menu-all a {
        text-align: center;
        position: relative;
        padding: 1rem 2rem;
        border-radius: 30px;
        font-size: 20px;
        text-align: center;
        display: block;
        font-weight: 500;
        letter-spacing: 1px;
        color: #484848;
    }

    .menu-all li:nth-child(1) a:hover, .menu-all li:nth-child(1) a.active {
        background: #FFA200;
        color: #fff;
    }

    .menu-all li:nth-child(2) a:hover, .menu-all li:nth-child(2) a.active {
        background: #3992D6;
        color: #fff;
    }

    .menu-all li:nth-child(3) a:hover, .menu-all li:nth-child(3) a.active {
        background: #BF9300;
        color: #fff;
    }



    .menu-all b {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 300;
        color: #f4a452;
        margin-top: 5px;
    }

    .menu-all img {
        width: 190px;
    }


#back-top {
    width: 25px;
    height: 25px;
    display: none;
    position: fixed;
    bottom: 50px;
    left: 50%;
    margin-left: 495px;
    padding: 8px;
    font-size: 0.8rem;
    line-height: 13px;
    text-align: center;
    color: #154b5c;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: #d8caa5;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.move {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.move2 {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}


.waves {
    position: absolute;
    bottom: 0;
    top: -60px;
    height: 63px;
    width: 100%;
}

.waves2 {
    position: absolute;
    bottom: 0;
    top: -30px;
    height: 63px;
    width: 100%;
}

.wave1 {
    background: url(../Images/wave1.png) repeat-x top;
    height: 63px;
    display: block;
    width: 100%;
    bottom: 0;
    position: absolute;
    z-index: 2;
    animation-name: wave2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.wave2 {
    background: url(../Images/wave2.png) repeat-x top;
    height: 63px;
    display: block;
    width: 100%;
    animation-name: wave2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    position: absolute;
    z-index: 2;
}

.block-product {
    clear: both;
    position: relative;
}

.absolute {
    position: absolute;
}

.path1 {
    left: -7%;
    top: 10%;
}

.path2 {
    left: 8%;
    top: 25%;
}

.path3 {
    left: -7%;
    top: 30%;
    z-index: -1;
}

.path4 {
    right: -7%;
    top: 16%;
    z-index: -1;
}

.path5 {
    right: 8%;
    top: 39%;
}

.path6 {
    left: -5%;
    bottom: 9%;
    width: 14%;
}

.path7 {
    left: 5%;
    bottom: 34%;
}

.path8 {
    right: -5%;
    bottom: 9%;
    width: 14%;
}

.path9 {
    right: 5%;
    bottom: 20%;
}

.block-Goods {
    background: url(../Images/gplaypattern.png);
}
/*商品*/
.product-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: inherit;
    z-index: 9;
}

    .product-title span {
        color: #EB5C01;
        font-size: 1.5rem;
        display: inline-block;
        border-bottom: 2px solid #EB5C01;
        font-weight: 600;
        padding: 8px 10px;
    }

    .product-title p {
        background: #FFA200;
        border: 4px solid #fff;
        color: #fff;
        text-align:center;
        font-size: 2rem;
        font-weight: 600;
        padding: 1rem 4rem 1rem 2rem;
        border-radius: 40px;
        position: relative;
    }

        .product-title p img {
            position: absolute;
            right: -16%;
            bottom: -27%;
        }

    .product-title.Goods p {
        background: #3992D6;
        padding: 1rem 2rem 1rem 5rem;
    }

        .product-title.Goods p img {
            position: absolute;
            left: -36%;
            bottom: -54%;
        }

    .product-title.Event p {
        background: #BF9300;
        padding: 1rem 2rem;
    }

.gift-list {
    text-align: center;
}

    .gift-list .gift img {
        position: relative;
    }

.gift p {
    max-width: 100%;
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.gift span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #875a00;
}
    .gift span i {
        display: block;
        font-size: 0.9rem;
        font-weight: 500;
        color: #424242;
        font-style: normal;
    }


.gift-second {
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

    .gift-second > img {
        position: absolute;
        left: 0;
        top: -35%;
        z-index: -1;
    }

    .gift-second .gift {
        width: 22%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 1.5rem 1rem;
    }

        .gift-second .gift .gift-img {
            max-width: 100%;
            height: 300px;
            border: 7px solid #fff;
            border-radius: 20px;
            box-shadow: 7px 8px 0 #0000002e;
            overflow: hidden;
        }

            .gift-second .gift .gift-img img {
                object-fit: cover;
                height: 100%;
            }



        .gift-second .gift p {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: -25px;
        }



/*金門選物*/
.block-Goods .block-center > p {
    background: #3992D6;
}

.goods-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

    .goods-list .goods {
        display: flex;
        width: 20%;
        height: 100%;
        align-items: center;
        flex-direction: column;
        background: #fff;
        border: 5px solid #fff;
        border-radius: 20px;
        margin: 2rem 1rem;
        overflow: hidden;
        text-align: center;
        box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
        transition: all 0.2s ease-out;
    }

        .goods-list .goods:hover {
            margin: 3rem 1rem 1rem 1rem;
        }

.goods:nth-child(odd) .goods-title p {
    display:inline-block;
    color: #EB5C01;
    border-bottom: 1px solid #EB5C01;
}

.goods:nth-child(even) .goods-title p {
    display: inline-block;
    color: #BF9300;
    border-bottom: 1px solid #BF9300;
}

.goods:nth-child(even) {
    position: relative;
    top: 25px;
}

.goods .goods-img {
    height: 265px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

    .goods .goods-img img {
        object-fit: cover; /* 填滿容器，可能裁剪 */
        max-width: 100%; /* 圖片寬度填滿容器 */
        height: 100%; /* 圖片高度填滿容器 */
    }

.goods:nth-child(odd) .goods-img span {
    background: #EB5C01;
}

.goods:nth-child(even) .goods-img span {
    background: #BF9300;
}

.goods .goods-img span {
    position: absolute;
    color: #fff;
    right: 0;
    bottom: 6%;
    padding: 10px 15px 10px 18px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.goods .goods-title {
    margin: 5px 0;
    padding: 0 10px;
}

    .goods .goods-title p {
        font-size: 1.1rem;
        padding: 5px 0;
    }

    .goods .goods-title span {
        display: block;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 10px 0;
    }

.goods .goods-buy {
    display: flex;
    align-items: center;
    background: #EEE3C0;
    border-radius: 15px;
    width: 100%;
    justify-content: center;
    padding: 5px 0;
}

    .goods .goods-buy span {
        margin: 0 5px 0 0;
    }

    .goods .goods-buy a {
        margin: 0 2px;
        display: flex;
    }

        .goods .goods-buy a:hover {
            opacity: 0.7;
        }


/*活動辦法*/
.Event-box {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2rem;
    margin: -2rem 0 0 0;
    position: relative;
}

.paragraph {
    padding: 2rem 0;
    border-bottom: 1px dotted #ccc;
}

.Event-box .img2 {
    position: absolute;
    right: 20%;
    top: -6%;
}

.Event-box .img3 {
    position: absolute;
    right: 2%;
    left: inherit;
    bottom: -3%;
    width: 10%;
}

.Event-box p {
    color: #EB5C01;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.Event-box span {
    display: block;
    font-size: 1.1rem;
    font-weight: normal;
    padding: 10px 0 10px 21px;
    align-items: baseline;
    line-height: 1.5;
    text-indent: -21px;
    text-align: justify;
}

    .Event-box span i {
        color: #FF9100;
        font-weight: 600;
    }

    .Event-box span img {
        margin-right: 5px;
    }

    .Event-box span a {
        background: #bf9300;
        border-radius: 5px;
        color: #fff;
        font-size: 1.1rem;
        padding: 2px 5px;
        margin: 0 2px;
    }

.footer {
    background: url(../Images/grass.svg) no-repeat center top;
    padding: 7rem 1rem 0rem 1rem;
    font-weight: 500;
    color: #2a2a2a;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

    .footer > img {
        position: absolute;
        right: 20%;
        top: -15%;
        animation-name: rotate2;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }

        .footer p {
            display: flex;
            vertical-align: middle;
            margin: 0 10px;
            background: #fff;
            border-radius: 70px;
            padding: 0.5rem 1rem;
            justify-content: center;
        }

        .footer p img {
            width: 85%;
        }

.footer2 {
    display: block;
    margin: 0 auto;
    color: #535353;
    background: #fff;
    padding: 1rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

    .footer2 span {
        margin: 0 10px;
    }

.footer-in {
    max-width: 1300px;
    max-width: 100%;
    margin: 0 auto 15px auto;
    text-align: center;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    padding: 5px 0 15px 0;
}

.footer2 a {
    color: #eb5c58;
    margin-left: 5px;
}





/*中間調度區
-----------------------------------------------------------------*/
@media screen and (max-width: 1026px) {
    html, body {
        max-width: 100%;
        min-height: 100%;
    }

    .block-main .title {
        width: 100vw;
        top: 2%;
    }

    .block-main {
        height: 900px;
    }

    .path1 {
        width: 20%;
        left: -9%;
        top: 46%;
    }

    .path2, .path5, .path7, .path9 {
        display: none;
    }

    .block-center {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .tree-l {
        position: absolute;
        left: -20%;
        bottom: 26%;
    }

    .tree-r {
        position: absolute;
        right: -27%;
        bottom: 24%;
    }

    .leaf-l {
        left: -7%;
    }

    .leaf-r {
        right: -7%;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    .pt-7, .pt-5 {
        padding-top: 5rem;
    }

    .block-menu {
    }

    .product-info {
        padding: 5px 0 5px;
        text-align: left;
        line-height: 1.5;
        display: block;
    }

        .product-info > span {
            padding: 10px 0;
        }

    .Event-box .img3 {
        position: absolute;
        right: 2%;
        left: inherit;
        bottom: -6%;
    }
}

@media screen and (max-width: 960px) {

    .move {
        display: none;
    }

    .gift-second .gift {
        width: 45%;
        margin: 1rem 0;
    }

        .gift-second .gift .gift-img {
            height: 280px;
            
        }

    .tab-group .event > img {
        margin: 0;
    }

    .gift-second .gift p {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -49px;
    }
}

@media screen and (max-width: 821px) {
    .goods-list .goods {
        width: 45%;
    }
}

/*平板
-----------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    .goods:nth-child(even){
        top:0;
    }
    .goods-list .goods:hover{
        margin:1rem;
    }
    .shine1 {
        left: 10%;
        top: 11%;
        width: 7vw;
    }

    .shine2 {
        right: 75%;
        top: 7%;
        width: 8vw;
    }

    .tree-r {
        right: -29%;
        bottom: 8%;
        width: 64%;
    }

    .tree-l {
        left: -20%;
        bottom: 12%;
        width: 59%;
    }


    .leaf-r.leaf3 {
        width: 48%;
        bottom: -20%;
    }

    .leaf-r.leaf4 {
        width: 23%;
    }

    .leaf-l.leaf2 {
        bottom: -20%;
        width: 50%;
    }

    .leaf-l.leaf1 {
        width: 22%;
    }

    .block-main {
        height: 470px;
    }

    img, .absolute {
        max-width: 100%;
        overflow-x: hidden;
    }

    .gift-second .gift {
        width: 80%;
    }

    .gift-second > img {
        position: absolute;
        left: 1%;
        top: -7%;
        width: 27%;
        z-index: -1;
    }

    .product-title p, .product-title.Goods p {
        font-size: 1.6rem;
        padding: 1rem 2rem;
    }

        .product-title p img {
            display: none;
        }

    .Event-box .img3 {
        position: absolute;
        right: 2%;
        left: inherit;
        bottom: -2%;
        width: 19%;
    }
    .Event-box .img2 {
        position: absolute;
        right: 4%;
        top: -4%;
        width: 40%;
    }

    .goods-list .goods {
        width: 80%;
        margin: 1rem;
    }

    .product-title.open {
        padding-top: 1rem;
    }

    .move {
        display: none;
    }

    .wave1 {
        height: 45px;
    }


    #menuBtn {
        display: block;
        position: fixed;
        top: 0%;
        right: 0;
        margin: 0 auto;
        cursor: pointer;
        z-index: 9999;
        text-align: center;
    }

        #menuBtn p {
            display: inline-block;
            vertical-align: -webkit-baseline-middle;
            background: #009cd4;
            color: #fff;
            font-size: 1.0rem;
            line-height: 1.8;
            border-bottom-left-radius: 18px;
            padding: 11px 15px;
            margin: -5px auto 10px auto;
        }

        #menuBtn span {
            display: flex;
            margin: 3px auto;
            height: 3px;
            width: 22px;
            background: #fff;
            border-radius: 10px;
            align-content: center;
            flex-direction: row;
            position: relative;
        }

        #menuBtn .line-2 {
            top: 1px;
        }

        #menuBtn .line-3 {
            top: 2px;
        }

        #menuBtn.active .line-1 {
            top: 9px;
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
            animation-name: none;
        }

        #menuBtn.active .line-2 {
            opacity: 0;
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
            animation-name: none;
        }

        #menuBtn.active .line-3 {
            top: -3px;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            animation-name: none;
        }

    .block-menu {
        display: block;
        position: fixed;
        top: 0;
        cursor: pointer;
        z-index: 100;
        max-width: 100%;
        background: #fff;
    }

    .button {
        position: inherit;
        display: block;
        vertical-align: baseline;
        border-radius: 5px;
        background: #e65907;
        box-shadow: 4px 4px 0 #ffb100;
        font-size: 1.4rem;
        color: #fff;
        line-height: inherit;
        padding: 20px 15px;
        margin: 20px 0;
        top: inherit;
        right: inherit;
        animation-name: none;
    }

        .button:hover {
            animation-name: none;
        }



    .menu-all ul {
        height: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        flex-wrap: nowrap;
    }

    .mobile_menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100%;
        width: 45%;
        background: #fff;
        flex-flow: column-reverse;
        z-index: 101;
        transition: right 0.3s ease-out;
        box-sizing: border-box;
        overflow-x: hidden;
        padding: 6rem 0rem 0rem 0rem;
    }

        .mobile_menu li.menu-logo {
            padding: 0;
            margin: 0;
            order: 1;
            background: none;
        }

        .mobile_menu .menu-but {
            border-bottom: 1px solid #ff7c00;
            width: 80%;
            text-align: center;
            padding: 20px 0;
            order: 2;
        }

    .menu-all li:last-child {
        position: inherit;
        border-bottom: none;
    }


    .menu-all span {
        color: #404040;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .menu-all b {
        font-size: 1rem;
        color: #fffa00;
    }

    .mobile_menu.focus {
        right: 0;
    }


    .main-title {
        height: 450px;
    }

    .footer > img {
        position: absolute;
        right: 20%;
        top: -19%;
        width: 44%;
    }

    .footer p {
        text-align: center;
        justify-content: center;
        padding: 5px 20px;
        line-height: 1.2;
    }

    .footer2 span {
        margin: 10px 0px;
        display: block;
    }
}

.download {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .download a {
        background: #913000;
        color: #fff;
        border-radius: 35px;
        margin: 5px 5px;
        padding: 10px 20px;
        display: flex;
        font-size: 1.2rem;
        align-items: center;
        justify-content: center;
    }

        .download a:first-child {
            background: #fff;
            color: #e65907;
        }

        .download a:hover {
            opacity: 0.8;
        }

        .download a img {
            width: 20px;
            margin-left: 5px;
        }

        .download a:last-child img {
            width: 20px;
        }
/*中間調度區
-----------------------------------------------------------------*/
@media (max-width:700px) {
    .download a {
        max-width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}


/*手機
-----------------------------------------------------------------*/

@media (max-width: 480px) {
    html,
    body {
        max-width: 100%;
        min-height: 100%;
    }

    .goods-list .goods {
        width: 80%;
        margin: 1rem 0;
    }
}

@media (max-width: 320px) {
}
