/* header */
header {
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  font-size: 14px;
}

header ul {
  padding: 10px 0;
  display: flex;
  align-items: center;

}

header ul li {
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #000;

}

.shop {
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop img {
  width: 30px;
  height: 30px;
}


.logo a {
  color: #000;
  padding: 5px 10px;
  font-size: 24px;
  letter-spacing: 1.5px;
}

.shopNum {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #5c98f1;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px
}


/* footer */

footer {
  width: 1400px;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: auto;
}

footer ul {
  width: 20%;
}

footer ul .title {
  margin: 0 0 20px;
}

footer ul li {
  margin: 10px 0;
  line-height: 1.5;
  font-size: 14px;
}

footer ul li a {
  color: #696969;
}

footer ul li .input {
  width: 300px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
}

.email {
  width: calc(100% - 80px);
  height: 100%;
  border: 0px !important;
  padding: 0 10px;

}

.email:focus {
  outline: none;
}

footer ul li .input .btn {
  width: 80px;
  padding: 5px 10px;
  background-color: #424242;
  color: #fff;
  cursor: pointer;
}

footer ul li .input input {
  background-color: transparent;
}