* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
#header {
  position: sticky;
  top: 0;
  z-index: 9;
}
#container {
  min-height: 100vh;
  background-color: #fff;
  /* 主容器 */
  /* 响应式断点 */
  /* 侧边栏样式 */
  /* 产品列表 */
  /* 分页 */
  /* 空状态 */
  /* 加载状态 */
  /* 响应式布局 */
  /* 移动端筛选栏 */
  /* 抽屉样式 */
  /* 类型筛选样式 */
  /* 内容区域 */
  /* 遮罩层 */
}
#container .banner {
  margin-bottom: 1.875rem;
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
  position: relative;
  /* 如果需要的话 */
}
#container .banner .image {
  width: 100%;
  height: 30.3125rem;
  overflow: hidden;
}
@media (max-width: 48rem) {
  #container .banner .image {
    transition: 0.3s;
    width: 100%;
    overflow: hidden;
  }
}
#container .banner .img-word {
  position: absolute;
  display: flex;
  width: 50%;
  justify-content: space-evenly;
  align-items: center;
}
#container .banner .img-word .small_img {
  width: 15.75rem;
  height: 15.75rem;
  margin-right: 30px;
}
@media (max-width: 900px) {
  #container .banner .img-word .small_img {
    width: 10.75rem;
    height: 10.75rem;
    transition: 0.3s;
    margin-right: 30px;
  }
}
#container .banner .img-word .right_img_word {
  color: #fff;
}
#container .banner .img-word .right_img_word .right_top_title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.9375rem;
}
#container .banner .img-word .right_img_word .right_center_content {
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
}
#container .banner .img-word .right_img_word .right_center_content p {
  margin-bottom: 0.3125rem;
}
#container .banner .img-word .right_img_word .right_down_btn {
  display: inline-block;
  padding: 0.3125rem 1.25rem;
  font-size: 0.875rem;
  text-align: center;
  background-color: #fff;
  color: #175292;
  border-radius: 1.25rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 800px) {
  #container .banner .img-word .right_img_word .right_top_title {
    font-size: 0.825rem;
  }
  #container .banner .img-word .right_img_word .right_center_content {
    font-size: 0.575rem;
  }
  #container .banner .img-word .right_img_word .right_down_btn {
    font-size: 0.575rem;
  }
}
@media (max-width: 31.25rem) {
  #container .banner .image {
    transition: 0.3s;
    width: 100%;
    height: 10.75rem;
    overflow: hidden;
  }
  #container .banner .img-word {
    display: none;
  }
}
@media (max-width: 660px) {
  #container .banner {
    margin-bottom: 0;
  }
}
#container .main-container {
  display: flex;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #container .aside-bar-container,
  #container .type-filter-container {
    display: none;
  }
  #container .filter-bar-container {
    display: flex !important;
  }
  #container .search-input {
    display: flex;
  }
  #container .search-input .el-input__inner {
    width: 140px;
  }
}
@media (min-width: 769px) {
  #container .filter-bar-container {
    display: none !important;
  }
}
#container .aside-bar-container {
  padding: 32px 16px 32px 8px;
  border-right: 1px solid #115899;
  box-sizing: border-box;
  z-index: 1;
  background: #fff;
}
#container .aside-bar-container .search-input {
  margin-bottom: 30px;
  height: 40px;
}
#container .aside-bar-container .search-input .el-input__inner {
  height: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding-left: 10px;
}
#container .aside-bar-header {
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #115899;
  margin-bottom: 20px;
}
#container .search-input .icon {
  cursor: pointer;
}
#container .item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
#container .title {
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #115899;
  margin-bottom: 14px;
  cursor: pointer;
}
#container .product-list {
  flex: 1;
}
#container .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
#container .product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
#container .product-card:hover {
  transform: translateY(-5px);
}
#container .product-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
#container .product-info {
  padding: 15px;
}
#container .product-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#container .product-category {
  font-size: 14px;
  color: #666;
}
#container .pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
#container .page-btn {
  padding: 8px 12px;
  margin: 0 5px;
  border: 1px solid #dcdfe6;
  background-color: white;
  cursor: pointer;
  border-radius: 4px;
}
#container .page-btn.active {
  background-color: #409eff;
  color: white;
  border-color: #409eff;
}
#container .empty-state {
  text-align: center;
  padding: 50px 0;
  color: #999;
}
#container .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media (max-width: 992px) {
  #container .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#container .item .list {
  height: 12px;
  line-height: 12px;
  color: #606266;
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
  list-style: none;
  margin-bottom: 10px;
}
#container .filter-bar-container {
  background-color: #fff;
  padding: 10px 5px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.075);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  margin-bottom: 20px;
}
#container .filter-bar-container .list {
  position: relative;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  font-weight: 300;
  color: #606266;
  padding-right: 16px;
  cursor: pointer;
}
#container .filter-bar-container .list::before {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 5.5px 0 5.5px;
  border-color: #858585 transparent transparent transparent;
  content: '';
}
#container .el-drawer {
  border-radius: 10px 10px 0 0;
  overflow-y: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90%;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}
#container .el-drawer.active {
  transform: translateY(0);
}
#container .el-drawer__header {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e7ed;
}
#container .drawer-title {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  margin: 0;
}
#container .category-drawer .item {
  padding: 15px 0;
}
#container .category-drawer .title {
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #115899;
  margin-bottom: 13px;
  cursor: pointer;
}
#container .category-drawer .column {
  font-size: 12px;
  line-height: 12px;
  font-weight: 300;
  color: #606266;
  margin-bottom: 12px;
  cursor: pointer;
  list-style: none;
}
#container .type-drawer .item {
  margin-bottom: 20px;
  padding: 15px 0;
}
#container .type-drawer .title {
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  color: #303133;
  margin-bottom: 9px;
}
#container .type-drawer .column {
  background-color: #e4e7ed;
  border-radius: 99em;
  margin: 0 8px 8px 0;
  padding: 5px 15px;
  display: inline-block;
  cursor: pointer;
}
#container .type-drawer button {
  flex: 1;
  height: 40px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
#container .button-group {
  display: flex;
  width: 90%;
  margin: 0 auto;
}
#container .button-group .button-primary {
  background-color: #469ffc;
  color: white;
}
#container .button-group .button-blue {
  background-color: #3a5996;
  color: white;
}
#container .type-filter-container {
  padding: 0 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
#container .type-filter-container .button-primary {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
#container .type-filter-container .button-danger {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
#container .type-filter-container .item {
  /* position: relative;
		min-height: 23px; */
  display: flex;
  /* padding: 20px 0 20px 89px; */
  border-bottom: 1px dashed #e4e7ed;
}
#container .type-filter-container .label {
  /* position: absolute;
		height: 23px; */
  /* line-height: 23px; */
  font-size: 12px;
  width: 60px;
  text-transform: uppercase;
  color: #606266;
  margin-right: 20px;
  /* top: 20px;
		left: 0; */
  z-index: 1;
}
#container .type-filter-container .checkbox-group {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}
#container .type-filter-container .checkbox-item {
  display: flex;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 10px;
}
#container .type-filter-container .checkbox-input {
  margin-right: 6px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}
#container .type-filter-container .checkbox-label {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #606266;
  user-select: none;
}
#container .type-filter-container .button-group {
  /* padding: 30px 0; */
  display: flex;
  justify-content: center;
}
#container .type-filter-container .button {
  width: 120px;
  height: 30px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
#container .type-filter-container .button-primary {
  background-color: #469ffc;
  color: white;
}
#container .type-filter-container .button-danger {
  background-color: #f56c6c;
  color: white;
}
#container .content-area {
  flex: 1;
  padding: 20px;
}
#container .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
@media (max-width: 68.75rem) {
  footer {
    transition: 0.3s;
    display: none;
  }
}
