.content {
  background: rgba(249 250 251/1);
}
.content .more {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  width: 160px;
  padding: 8px;
  margin-top: 40px;
  border-radius: 5px;
  background-color: rgba(var(--color-blue));
  color: #fff;
}
.content .title {
  text-align: center;
  padding: clamp(30px, 4vw, 60px) 0;
}
.content .title p {
  text-transform: uppercase;
}
.content .about {
  padding-bottom: 5%;
  overflow: hidden;
}
.content .about .about-fl-box {
  flex: 0 0 45%;
  margin-right: clamp(0px, 2vw, 50px);
  align-items: center;
}
.content .about .about-fl-box img {
  max-width: 100%;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}
.content .about .about-fr-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.content .about .about-fr-box p {
  font-size: var(--font-size-lg);
  color: var(--text-gray-600);
}
.content .about .about-fr-box .number {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.content .about .about-fr-box .number .iconfont {
  font-size: var(--font-size-xl);
  background: rgba(30, 64, 175, 0.1);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-right: 4%;
}
.content .about .about-fr-box .number .text-gray-800 {
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .content .container {
    flex-direction: column;
  }
  .content .about-fl-box {
    width: 100%;
    margin: 0;
  }
}
.content .product {
  background: rgba(249 250 251/1);
}
.content .product .product-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.content .product .product-item .product-item-box {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.content .product .product-item .product-item-box .pro-img {
  overflow: hidden;
}
.content .product .product-item .product-item-box .pro-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.content .product .product-item .product-item-box .product-info {
  padding: 20px 5%;
}
.content .product .product-item .product-item-box .product-info .align-left {
  text-align: left;
  width: 50%;
}
.content .product .product-item .product-item-box .product-info .align-right {
  text-align: right;
  width: 50%;
}
.content .product .product-item .product-item-box:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .content .product .product-item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .content .product .product-item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.content .product .more {
  margin: 0 auto;
}
