/* 前台产品页简约扁平化美化样式 */

.systemproduct-layoutcontainer {
  background: #f8f9fc;
  padding: 40px 0;
}

.sk-title-container {
  text-align: center;
  margin-bottom: 30px;
}

.sk-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.sk-desc {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}

.systemproduct-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.systemproduct-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.systemproduct-category:hover,
.systemproduct-category.active {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #409eff;
}

.systemproduct-category-img {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin-bottom: 10px;
}

.systemproduct-category-name {
  font-size: 13px;
  color: #333;
  text-align: center;
}

.systemproduct-left-container {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.systemproduct-left-top {
  background-size: cover;
  background-position: center;
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.systemproduct-right-product {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.systemproduct-item {
  display: block;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.systemproduct-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.systemproduct-titleinfo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.systemproduct-country img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.systemproduct-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.systemproduct-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.systemproduct-tagline span {
  font-size: 12px;
  background: #f56c6c;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .systemproduct-right-product {
    grid-template-columns: 1fr;
  }

  .systemproduct-layoutcontainer {
    padding: 20px 10px;
  }

  .systemproduct-category {
    flex: 1 0 44%;
  }
}