body{
  padding: 0;
  margin: 0;
  font:16px;
  background-color: #EDF5F7;
}
a:valid,a:hover,a:link{
  text-decoration: none;
}
#inputsearch,#inputsearch:focus{
  border: 1px solid #46abe6;
  box-shadow: inset 0px 0px 5px #46abe6;
  outline: #46abe6;
}
.title{
  height: 40px;
  background-color: #f6f6f6;
  width: 100%;
  display: flex;
  align-items: center;
}
.title>div{
  width: 50%;
}
.title>div:nth-child(2){
  display: flex;
  align-items: center;
  height: 90px;
}
nav>div:nth-child(2)>div{
  padding: 1rem;
  border-radius: 0.3rem;
}
nav>div:nth-child(2)>div:hover{
  background-color: #46abe6;
  transition: 2.5s;
}
nav{
  width: 100%;
  height: 90px;
  display: flex;
  background-color: white;
  align-items: center;
  justify-content: space-around;
}
nav>div:nth-child(2)>div>a:hover{
  text-decoration: none;
}
nav>div:nth-child(3)>span{
  color: #46abe6;
  padding-left: 0.4rem;
}
nav>div:nth-child(3)>span:hover{
  cursor: pointer;
}
.image{
  width: 100%;
}
.image>img{
  width: 100%;
}
.productui{
  width: 82%;
  margin: 20px auto 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.productui>div{
  width: 48%;
  position: relative;
}
.productui>div>a>img{
  width: 100%;
  margin-bottom: 20px;
}
.productui>div>a>span{
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  color: white;
}
.footer{
  width: 100%;
  background-color: #10293c;
  display: flex;
  color: white;
  justify-content: space-around;
  align-items: center;
}
.footer>div>p,.footer>div>h4{
  text-align: center;
}
.footer>div:last-child>div{
  display: none;
}
.footer>div:last-child>div>ul{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer>div:nth-child(4)>p>a>img{
  height: 18px;
  margin: 0 0.5rem;
}
.footer>div:last-child>div>ul a{
  text-decoration: none;
  color: white;
}
@media screen and (min-width:992px){
  .baseboard{
    height: 130px;
  }
  .sotitle{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  .title>div:nth-child(1){
    padding-left: 8%;
  }
  .title>div:nth-child(2){
    padding-left: 30%;
  }
  .nav2,.nav2_div{
    display:none
  }
  nav>div:nth-child(1){
    width: 20%;
    height: 100%;
    padding: 0 2%;
  }
  nav>div:nth-child(1)>img{
    height: 100%;
  }
  nav>div:nth-child(2){
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 60%;
    font-size: 1.5rem;
    font-weight: bold;
  }
  nav>div:nth-child(3){
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
  }
  .footer{
    height: 200px;
  }
  .footer button{
    width: 20rem;
    height: 3.2rem;
    padding: 0.4rem 0.8rem;
    color: black;
  }
}
@media screen and (max-width:991px){
  .baseboard{
    height: 90px;
  }
  .sotitle{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0px;
    z-index: 999;
  }
  .title>div:nth-child(1){
    padding-left: 2%;
    font-size: 0.6rem;
    width: 75%;
  }
  .title>div:nth-child(2){
    width: 25%;
    font-size: 0.6rem;
  }
  .title>div:nth-child(2)>span:nth-child(2){
    display: none;
  }
  nav{
    display: none;
  }
  .nav2{
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    background-color: white;
  }
  .nav2_div{
    width: 100%;
    height: 500px;
    background: white;
    font-size: 2rem;
    font-weight: bold;
    display: none;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 99;
  }
  .nav2_div>div{
    padding: 1rem 1.5rem;
  }
  .nav2_div>div>a:hover{
    text-decoration: none;
  }
  .nav2>div{
    width: 50%;
    padding:0 2%;
  }
  .nav2>div:nth-child(2){
    text-align: right;
  }
  .footer>div:not(.footer>div:nth-child(5)){
    display: none;
  }
}