 
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.fullscreen-bg {
  background: fixed url('./images/join-bg.jpg') #222 no-repeat center;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;

  /* 使用视窗高度单位使容器占据全屏高度 */
}

.input-field {
  width: 30vw;
  /* 输入框宽度，30%的视口宽度 */
  height: 2vw;
  /* 输入框高度，4%的视口高度 */
  padding: 0 1vw;
  /* 内边距，1%的视口宽度 */
  border: 1px solid #ccc;
  /* 边框 */
  border-radius: 5px 0 0 5px;
  /* 左侧圆角 */

  color: #333;
  /* 文字颜色 */
  background-color: #fff;
  /* 背景颜色 */
  /* 平滑过渡效果 */
}

.search-button {
  width: 4vw;
  height: 2vw;
  border: none;
  margin-left: 10px;
  border-radius: 10px;
  color: #333;
  background-color: #f2f2f2;

  cursor: pointer;


}

.shopping-cart {
  width: 8vw;
  height: 2vw;
  border: none;
  margin-left: 10px;
  border-radius: 10px;
  background-color: #ffffff;
  cursor: pointer;


}

.search-button:hover {
  background-color: #e6e6e6;
  border-color: #66afe9;
}

.input-field:hover {
  border-color: #66afe9;
}

.login {
  margin-left: 5vw;
  width: 5vw;
  line-height: 45px;
  cursor: pointer;
}

.content {
  flex: 1;
}



.content .body {
  margin-bottom: 4vw;
}

.content section {
  margin: 1.5vw
}

.el-select {}

.shopping-cont {
  width: 70vw;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin: 30px  0 50px;
}

.cont-pading {
  padding: 0 15vw;
}

.shopping-item {
  text-align: center;
  ;

}

.shopping-title {
  margin: 20px;
}

.shopping-list {
  margin: 3vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.shopping-item .shoping-img {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 20px;
}



.el-carousel__container {
  width: 70vw;
  height: 40vh;
}
.el-popup-parent--hidden{
  padding-right:0 !important;
}
.banner-img {
  width: 100%;
  height: 50vh;
  margin-bottom: 20px;
}

.detail-img {
  width: 12vw;
  height: 12vw;
  border-radius: 50px;
  margin-right: 1vw;
}

.detail-title {
  font-weight: bold;
  font-size: 20px;

}

.el-message .el-icon-success {
  display: none;
}


@media only screen and (max-width: 1024px) {
  .container {
    font-size: 2vw;
  }

  .content {
    flex-direction: column;
    justify-content: flex-start;
    width: 90vw;
    padding: 4vw 0;
  }

  .content .body {
    width: 100%;
  }

  .content .figure img {
    width: 16vw;
    margin: 4vw 0;
  }

  .splite-line {
    display: none
  }
}

@media only screen and (max-width: 767px) {
  .container {
    font-size: 1.5vw;
  }
}
 