body {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Tahoma, "PingFang SC", "Microsoft Yahei", Arial, "Hiragino Sans GB", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #333;
  margin: 0;
  padding-top: 60px;
}
a {
  text-decoration: none;
  color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.container {
  width: 1280px;
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.container.small {
  width: 1000px;
}
.container.tiny {
  width: 800px;
}
.bold {
  font-weight: bold;
}
.center {
  text-align: center;
}
.red {
  color: #e22;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.flex.row {
  flex-direction: row;
}
.flex.start {
  align-items: flex-start;
}
.flex.stretch {
  align-items: stretch;
}
.flex.gap-20 {
  gap: 20px;
}
.flex .auto {
  flex: 1;
}
header {
  background-color: #fff;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
header .logo h3 {
  font-size: 30px;
  display: inline-block;
  color: #e22;
}
header .menu a {
  display: inline-block;
  padding: 20px 0;
  font-weight: bold;
  font-size: 16px;
}
header .menu a.active {
  border-bottom: 2px solid #e22;
}
@media (max-width: 640px) {
  header .logo h3 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  header {
    padding: 0 10px;
  }
  header .logo h3 {
    font-size: 16px;
  }
  header .menu a {
    font-size: 14px;
  }
}
.banner {
  padding: 40px 0;
}
.banner h1,
.banner h2 {
  font-size: 36px;
  text-align: center;
}
.banner .text {
  line-height: 1.5;
  font-size: 16px;
}
.banner .link {
  text-align: center;
  color: #fff;
  background: #e22;
  padding: 10px 15px;
  border-radius: 5px;
}
.banner .link:hover {
  background: #c00;
}
.product .tab-link {
  border-bottom: 2px solid #eee;
  text-align: center;
}
.product .tab-link a {
  display: inline-block;
  font-weight: bold;
  margin: 0 15px;
  padding: 15px 0;
}
.product .tab-link a.active {
  border-bottom: 2px solid #e22;
}
.breadcrumb a,
.breadcrumb span {
  display: inline-block;
}
.breadcrumb a {
  font-weight: bold;
}
.breadcrumb span {
  margin: 0 10px;
}
.filter {
  align-items: flex-start;
}
.filter .bold {
  padding: 3px 0;
}
.filter .auto {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter .item {
  padding: 3px 10px;
  border-radius: 5px;
  background: #eee;
}
.filter .item:hover,
.filter .item.active {
  color: #fff;
  background: #e22;
}
.filter .item.more {
  display: none;
}
.filter .item.more.show {
  display: block;
}
.filter a#more-brand {
  padding: 3px 10px;
  color: #e22;
}
@media (max-width: 640px) {
  .filter.row {
    flex-direction: column;
  }
}
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}
.product-list .item {
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 5px;
  position: relative;
}
.product-list .item:hover {
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.product-list .item:hover .entrance {
  background: #f32;
}
.product-list .item .tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e22;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.product-list .item img {
  width: 100%;
  height: 100%;
}
.product-list .item h4 {
  font-weight: bold;
}
.product-list .item .price {
  color: #e22;
  font-weight: bold;
}
.product-list .item a.entrance {
  background: #e22;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
}
@media (max-width: 1080px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .product-list {
    grid-template-columns: 1fr;
  }
}
.pagination {
  padding: 30px 0;
  text-align: center;
}
.pagination .pagination-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}
.pagination .pagination-controls {
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .page-btn {
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 5px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.pagination .page-btn:hover {
  border-color: #e22;
  color: #e22;
  background: #fff;
}
.pagination .page-btn.active {
  background: #e22;
  color: #fff;
  border-color: #e22;
  font-weight: bold;
  cursor: default;
}
.pagination .page-btn.disabled {
  color: #ccc;
  cursor: not-allowed;
  border-color: #eee;
  background: #f5f5f5;
}
.pagination .page-btn.disabled:hover {
  border-color: #eee;
  color: #ccc;
  background: #f5f5f5;
}
.pagination .page-btn.ellipsis {
  border: none;
  background: none;
  cursor: default;
  pointer-events: none;
}
.pagination .page-btn.ellipsis:hover {
  border: none;
  background: none;
  color: #333;
}
.faq {
  padding: 40px 0;
}
.faq h3,
.faq h2 {
  font-size: 24px;
}
.faq .question {
  font-weight: bold;
}
.faq .answer {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  padding: 10px;
  border-radius: 5px;
  background: #eee;
}
footer {
  margin-top: 40px;
  padding: 30px 0;
  border-top: #e3e3ee 1px solid;
  text-align: center;
}
.detail {
  padding: 50px 0;
}
.detail .header {
  align-items: flex-start;
}
.detail .header img {
  width: 600px;
  height: 600px;
  object-fit: cover;
}
.detail .header .price {
  font-size: 24px;
  color: #e22;
}
.detail .header .btn {
  background: #e22;
  border: #e22 1px solid;
  padding: 10px;
  color: #fff;
  text-align: center;
  width: 240px;
  max-width: 100%;
  box-sizing: border-box;
}
.detail .header .btn:hover {
  background: #f32;
}
.detail .header .btn.plain {
  background: none;
  color: #e22;
}
.detail .header .btn.plain:hover {
  background: none;
  border-color: #f32;
}
.detail .title {
  font-size: 24px;
  font-weight: bold;
}
.detail .feedback .item {
  background: #f0f0fa;
  padding: 15px;
  border-radius: 5px;
}
.detail .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.detail .grid-3 img {
  width: 100%;
  height: 320px;
}
@media (max-width: 1080px) {
  .detail .header img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 720px) {
  .detail .header img {
    width: 50%;
    height: 50%;
  }
}
@media (max-width: 640px) {
  .detail .header.row {
    flex-direction: column;
  }
  .detail .header.row img {
    width: 100%;
    height: 100%;
  }
  .detail .grid-3 {
    grid-template-columns: 1fr;
  }
}
.how-to h2 {
  font-size: 32px;
}
.how-to h4 {
  font-size: 22px;
}
