*{
    padding: 0;
    margin: 0;
}

header{ background-color: black;
        height: 10vh;
        width:100%;
        position:fixed;
}

header h1{color: white;
          position: absolute;
          left: 10vw;
          top: 5px;
          line-height: 80px;
          background-image: url(image/LOGO.png);
          background-repeat: no-repeat;
          background-position: center;
          height: 80%;width: 20%;
          text-indent: -9999px;
}

header ul{
    position: absolute;
    right: 5vw;
    top:0;
    line-height: 80px;
    
}
header li{display: inline;margin-right: 4vw;}
header a{
    color: white;
    font-size: 18px;
    text-decoration: none;}

header a:hover{
    text-decoration: underline;}

.news{
    background-color: antiquewhite;
    height: 95vh;
    background-image: url(image/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.news h2{
    color: white;
    font-size: 75px;
}

.news p{
    color: aqua;
    font-size: 15px;
    margin: 15px;
}
.news a{
    color: white;
    text-decoration: none;
    border: 1px solid #acacac;
    padding: 8px;
    border-radius: 10px;
}

.slogan{
    background-color: #485652;
    height: 35vh;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    font-size: 25px;
}

.shop{
    display: flex;
}

.shop img{
    width: 50%;
}

.info{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info h2{
    font-size: 35px;
    margin: 20px;
}
.info p{
    text-align: center;
    line-height: 2em;
}

.product{
    background-color: #ede9db;
    height: 70vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}
.product div{
    width: 400px;
    text-align: center;
}
.product img{
    width: 100%;
    border-radius: 10px;
}
.product h3{
    font-size: 25px;
    margin: 15px;
}
.product p{
    line-height: 1.6em;
}

.newsletter{
    background-color: #485652;
    height: 80px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter p{
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}
.newsletter input,.newsletter button{
    background-color:transparent;
    color: white;
    border: 1px solid white;
    padding: 10px;
    border-radius: 5px;
}
.newsletter input{
    width: 200px;
    margin-right: 20px;
}
.newsletter button{
    width:60px;
    cursor: pointer;
}
input::placeholder{
    color: #dddddd;
}
input:focus{
    outline: none;
    border-color: bisque;
}

footer{
    background-color: black;
    height: 5vh;
    display: flex;
    color: #b7b7b7;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* 响应式设计语法 */