*{
    padding: 0;
    margin:0;
    box-sizing:border-box;
}
main{
    background-color: antiquewhite;
}
body .container{
    width:100%;
}
/*-----至頂欄-----*/
header{
    height: 6vh;
    width:100%;
    background-color: hsl(42, 52%, 39%);
    position: fixed;
    }
.menu{
    display:none;
    }
header h1{
    color:rgb(255, 255, 255);
    font-size: 2.2em;
    position: absolute;
    left: 5vw;
    top:0;
    line-height: 6vh;
    background-image: url(#);
    background-repeat:no-repeat;
    background-position:center;
    /*text-inndent:-9999px;*/
    }
header ul{
    position:fixed;
    right:3vw;
    }
    header li{
        text-decoration: none;
        display: inline;
        line-height: 6vh;
    }
    header a{
    font-size: 1.2em;
    color:white;
    text-decoration: none;
    margin-right:2vw;
    font-weight: bold;
    }
/*第一印象*/
#block1{
    padding-top:10vh;
}
#box1 {
    background-color:rgb(255, 255, 255);
    height: 40vh; width:60%;
    margin:0 auto;
    background-image: url("img/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    border-radius:10px;
}
/*可點擊圖片*/
#block2{
    margin:5vh auto;
    display: inline-block;
    text-align: center;
}
    #block2 img{
        width:16%;
        margin: 0 2%;
        border-radius:20px;
    }
/*長圖片*/
#block3 {
    background-color:rgb(255, 255, 255);
    height:20vh;width:70%;
    margin:0 auto 5vh auto;
    background-image: url("img/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    border-radius:10px;
}
/*商品大標籤*/
.special{
    display: flex;
    justify-content: center;
    margin-bottom: 3vh;
}
    .special h2{
        padding:0.5% 1%;
        border-radius:10px;
        display:inline;
        font-size: 3em;
    }
/*商品欄位*/
.productsblock{
    display: flex;
    justify-content: center;
} 
.productsblock div{
    width:16vw;
    margin:0 0.5vw;
}
    .productsblock img{
        border-radius:10px;
        width:16vw;
    }
    .productsblock h3{
        text-align: center;
        font-size: 1.5em;
        margin:10px 0;
    }
    .productsblock p{
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        margin-bottom:2vh;
    }
/*結尾nav*/
footer nav{
    background-color: rgb(186, 127, 49);
    height: 80px;
    display:flex;
    align-items: center;
    justify-content:center;
}
footer ul{
    display:flex;
}
footer li{
    padding:5vw;
    list-style-type: none;
}
footer i{
    color:antiquewhite;
}

/*結尾欄*/
    footer p{
        background-color: hsl(42, 42%, 19%);
        color:rgba(175, 175, 175, 0.691);
        height:40px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:16px;
    }
/*響應式設計*/
@media screen and (max-width:700px){
    header{
        height:10vh;
    }
    header ul{
        display:none;

    }
    header h1{
        left:50%;
        top:20%;
        transform:translateX(-50%);
    }
    .menu{
        height:10vh;
        display:block;
        background-color: transparent;
        color: white;
        font-size:4vh;
        position: absolute;
        left:3vw;
        border:none;
        cursor:pointer;
    }
    #box1 {
        height: 30vh; width:100%;
        border-radius:0;
    }
    #block2 img{
        width:30%;
        margin: 0 1%;
        border-radius:5px;
    }
    #block3 {
        height:15vh;
        width:100%;
        border-radius:0;
    }
    #special h2{
        font-size: 2.5em;
        margin:0 0 4% 0;
    }
    .productsblock{
        display:flex;
        flex-wrap:wrap;
        justify-content: space-evenly;
    } 
    .productsblock div{
        width:40%;
        text-align: center;
    }
    .productsblock img {
        width:100%;
        display: block;
        margin: 0 auto;
    }
}