/* header */
header {
  width: 1200px;
  padding: 15px 0;
  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-weight: 600;
  font-size: 30px;
}

.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 {
  height: 600px;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: auto;
  background: url(../image/foot.webp);
  color: #fff;
}

footer .left-w-box {
  width: 500px;
  height: 400px;
  background-color: #fff;
  padding: 50px;
  color: #000;
  text-align: center;
  line-height: 2;
}

footer .left-w-box .top-t {
  padding: 20px 0;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #000;
  margin: 20px 0;
}

footer ul {
  width: 20%;
}

footer ul .title {
  font-weight: 600;
}

footer ul li {
  margin: 10px 0;
  line-height: 1.5;
  font-size: 14px;
  color: #fff;
}

footer ul li a {
  color: #fff;
}

footer ul li .input {
  width: 300px;
  border: 1px solid #fff;
  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;
}