@charset "utf-8";
/* CSS Document */
/*右侧信息例表*/
.Items {
  max-width: 128rem;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  background: rgba(0, 0, 0, 0.3)
}
.Items-list {
  width: 40vw;
  margin: 0rem 0rem 0rem 3rem;
  padding: 1rem 3rem 1rem 1rem;
}
.Items-list h1 {
  color: #ecbe67;
  margin: 1rem 0;
  font-size: 2.8rem;
}
.Items-list h2 {
  color: #fff;
  margin: 0.2rem 0;
  font-size: 2.4rem;
}
.Items-list h4 {
  color: #000;
  font-weight: inherit;
  margin: 0.22rem 0;
}
.Items-list ul {
  width: auto;
  height: 34rem;
  padding: 1rem 0 0 2rem;
  border-top: 0.2rem solid #d6dde1;
}
.Items-list ul li {
  width: auto;
  color: #fff;
  border: 0;
  padding: 0.4rem;
  font-weight: 500;
  font-size: 1.6rem;
}
.Items-list p {
  color: #41596d;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 2rem 0 1rem 0;
}
.shop-btn {
  width: 14rem;
  height: 3rem;
  margin: 1rem 0.6rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 0.2rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.22rem;
  border: 0.2rem solid #fff;
  color: #fff;
  transition: all 0.3s linear;
  background-color: rgba(0, 0, 0, 0);
}
.shop-btn:hover {
  background-color: #bde2ff;
  cursor: pointer;
  transition: all 0.3s linear;
  color: #263e51;
}
.shop-btn.active {
  background-color: #bde2ff;
  cursor: pointer;
  transition: all 0.3s linear;
  color: #263e51;
}
.start-list {
  width: auto;
  justify-content: space-between;
  gap: 0;
  margin: 1rem 0 0 0;
}
.start-list-add {
  font-size: 2rem;
  width: auto;
  padding: 1rem 0;
  color: #fff;
  font-weight: 600;
  border: 0.2rem solid #c79252;
  background: #0b1720;
  text-align: center;
  cursor: pointer;
}
.start-list-shop {
  width: auto;
  margin: 0.5rem 0;
  padding: 1rem 2rem;
  font-size: 2rem;
  align-content: center;
  text-align: center;
  transition: all 0.3s;
  color: #fff;
  background: #5433eb;
  cursor: pointer;
}
.start-list-shop font {
  font-weight: 600;
  background: #fff;
  color: #8361f4;
  padding: 0.2rem;
  border-radius: 0.5rem;
}
.start-list-add:hover {
  background: #092b47;
  transition: background 0.2s;
}
.start-list-shop:hover {
  background: #6d4ff6;
  transition: background 0.2s;
}
.home-list {
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  margin: 0.2rem 0 0 0;
  padding: 0;
}
.home-list img {
  width: 3rem;
  padding: 0.2rem;
  margin: 0.2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.home-list img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.required {
  margin-top: 2rem;
  padding: 0;
}
.required label {
  font-size: 1.6rem;
  color: #fff;
}
.required input {
  width: 30rem;
  height: 3rem;
  margin: 1rem 1rem 0 0;
  border: 0.1rem solid #c79252;
  background: rgba(0, 0, 0, 0);
}
.required b {
  color: #FF0004;
  font-size: 1.6rem;
}
/*----YOU MIGHT ALSO LIKE---*/
.also-like {
  width: auto;
  padding: 2.5rem 0 15rem 0;
  margin-top: 4rem;
  text-align: center;
}
.also-like h1 {
  font-size: 3.5rem;
  margin: 3rem;
  color: #ecbe67;
  border-bottom: 0.2rem solid;
  border-image: linear-gradient(90deg, rgba(200, 158, 79, 0), #c79d4d, rgba(200, 158, 79, 0)) 10;
}
.button-group {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn {
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10%;
  display: grid;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(1);
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 2rem;
}
.button-shop {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  justify-content: flex-end;
  align-items: flex-end;
}
.button-shop-btn {
  width: 4.5rem;
  height: 4.5rem;
  color: aliceblue;
  opacity: 0;
  transform: scale(1);
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: rgba(255, 91, 91, 1);
  border-radius: 90% 0% 0% 0%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.button-shop-btn svg {
  width: 1.8rem;
  margin: 0rem;
  padding-right: 1rem;
  padding-bottom: 0.9rem;
}
.btn-container {
  transition: background-color 0.3s ease;
  position: relative;
  display: flex;
  justify-content: left;
}
.btn-container:hover .btn {
  opacity: 0.9;
  visibility: visible;
  transform: scale(1);
}
.btn-container:hover .button-shop-btn {
  opacity: 0.9;
  visibility: visible;
  transform: scale(1);
}
/* 商品价格 */
.product-price {
  font-size: 1.8rem;
  font-weight: 500;
  color: #e53935;
  text-align: center;
  align-content: center;
  padding: 1rem;
}
.product-price font {
  color: #bbb;
  text-decoration: line-through;
}
.product-price b {
  color: #9a9a9a;
}
.product-price-new {
  color: #bbbbbb;
  font-size: 1.8rem;
  align-content: center;
}
/* 商品介绍 */
.product-description {
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 1rem;
  overflow: hidden;
  height: auto;
}
.product-description img {
  padding: 0 0.5rem;
  width: 2rem;
}
/*产品列表页*/
.Navbar-label {
  display: flex;
  border: 0.1em solid #ecbe67;
  margin-bottom: 2rem;
}
.label {  
  display:flex;
  margin: 0;
  padding: 0;
  width: 70%;
  color: #ecbe67;
  font-weight: 600;
}
.tab-btn {
  font-size: 1.8rem;
  margin: 0;
  width: 24%;
  height: 6rem;
  font-weight: 600;
  background:none;
  color: #ecbe67;
  border: none;
  border-right: 0.1rem solid #ecbe67;
  padding: 0;
  outline: none;
  
}
.tab-btn:hover {
  color:#fff;
  background: #ecbe67
}
.tab-btn.active {
  color: #fff;
  background: #ecbe67;
}
.tab-btn.active::after {
  content: '';
  left: 0;
  width: 20rem;
  background: #3498db;
}
.Show-list {
  width: 30%;
  color: #c79252;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 0 4rem;
  justify-content: flex-end;
}
.Show-list span {
  width: auto;
  color: #e95455;
  font-weight: 500;
}
.button-container-replace {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.button-container-replace:hover {
  opacity: 1;
  transition: all 0.1s ease;
  z-index: 14;
}
.btn-container:hover {
  opacity: 0.9;
  visibility: visible;
  transform: scale(1);
}
/*页签*/
.label-list {
  width: auto;
  display: grid;
  justify-content: center;
  margin-top: 6rem;
}
.label-list div {
  width: 20rem;
  background: #375d9f;
  border-radius: 4rem;
  padding: 1rem 4rem;
  font-size: 1.6rem;
  text-align: center;
  text-align-last: justify;
  font-weight: 500;
  border: 0.2rem solid #db9f57;
  color: #db9f57;
}
.label-list span {
  padding: 0.2rem 0.65rem;
  background: #db9f57;
  border-radius: 100%;
  color: #fff;
}
@media (max-width: 320px) {
  .Items {
    display: grid;
  }
  .Items-list {
    width: auto;
    margin: 0rem 5rem;
    padding: 2rem 0;
  }
  .shop-btn {
    width: 24rem;
    height: 8rem;
    margin: 2rem 0rem 2rem 10rem;
  }
  .home-list {
    display: flex;
    justify-content: center;
    margin: 2rem 0rem 0rem 0rem;
    padding: 0rem;
  }
  .home-list img {
    width: 6rem;
    padding: 0.2rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  .required {
    display: grid;
  }
  .Items-list h1 {
    font-size: 3rem;
  }
  .Items-list h2 {
    font-size: 2.5rem;
  }
  .Items-list ul li {
    font-size: 2rem;
  }
  .required input {
    width: auto;
    height: 6rem;
    margin: 1rem 0rem;
    border: 0.1rem solid #c79252;
    background: rgba(0, 0, 0, 0.6);
  }
  .required b {
    color: #FF0004;
    font-size: 1.6rem;
  }
  .required label {
    font-size: 2rem;
    margin-top: 5rem;
  }
  .start-list-add {
    font-size: 4rem;
    padding: 2rem 0rem;
  }
  .start-list-shop {
    margin: 1rem 0rem;
    padding: 2rem 2rem;
    font-size: 4rem;
  }
}
/* Small Tablets */
@media (min-width: 321px) and (max-width: 767px) {
  .Items {
    display: grid;
  }
  .Items-list {
    width: auto;
    margin: 0rem 5rem;
    padding: 2rem 0;
  }
  .shop-btn {
    width: 24rem;
    height: 8rem;
    margin: 2rem 0rem 2rem 10rem;
  }
  .home-list {
    display: flex;
    justify-content: center;
    margin: 2rem 0rem 0rem 0rem;
    padding: 0rem;
  }
  .home-list img {
    width: 6rem;
    padding: 0.2rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  .required {
    display: grid;
  }
  .Items-list h1 {
    font-size: 3rem;
  }
  .Items-list h2 {
    font-size: 2.5rem;
  }
  .Items-list ul li {
    font-size: 2rem;
  }
  .required input {
    width: auto;
    height: 6rem;
    margin: 1rem 0rem;
    border: 0.1rem solid #c79252;
    background: rgba(0, 0, 0, 0.6);
  }
  .required b {
    color: #FF0004;
    font-size: 1.6rem;
  }
  .required label {
    font-size: 2rem;
    margin-top: 5rem;
  }
  .start-list-add {
    font-size: 4rem;
    padding: 2rem 0rem;
  }
  .start-list-shop {
    margin: 1rem 0rem;
    padding: 2rem 2rem;
    font-size: 4rem;
  }
}
/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
  .Items {
    display: grid;
  }
  .Items-list {
    width: auto;
    margin: 0rem 5rem;
    padding: 2rem 0;
  }
  .shop-btn {
    width: 24rem;
    height: 8rem;
    margin: 2rem 0rem 2rem 10rem;
  }
  .home-list {
    display: flex;
    justify-content: center;
    margin: 2rem 0rem 0rem 0rem;
    padding: 0rem;
  }
  .home-list img {
    width: 6rem;
    padding: 0.2rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  .required {
    display: grid;
  }
  .Items-list h1 {
    font-size: 3rem;
  }
  .Items-list h2 {
    font-size: 2.5rem;
  }
  .Items-list ul li {
    font-size: 2rem;
  }
  .required input {
    width: auto;
    height: 6rem;
    margin: 1rem 0rem;
    border: 0.1rem solid #c79252;
    background: rgba(0, 0, 0, 0.6);
  }
  .required b {
    color: #FF0004;
    font-size: 1.6rem;
  }
  .required label {
    font-size: 2rem;
    margin-top: 5rem;
  }
  .start-list-add {
    font-size: 4rem;
    padding: 2rem 0rem;
  }
  .start-list-shop {
    margin: 1rem 0rem;
    padding: 2rem 2rem;
    font-size: 4rem;
  }
}