.banner {
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  object-fit: cover;
}

.banner .content {
  width: clamp(448px, 35vw, 672px);
  height: clamp(256px, 20vw, 384px);
  position: absolute;
  left: 10%;
  top: 28%;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: white;
  border-top: 3px solid #E81139;
  background: #003473CC;
  padding: clamp(51px, 4vw, 77px);
}

.banner .content .title {
  font-weight: bold;
  margin-bottom: 10px;
}

.banner .content .detail p {
  line-height: clamp(20px, 1.6vw, 30px)
}

.breadcrumbs {
  width: 100%;
  padding: clamp(13px, 1vw, 18px);
  background-color: #F1F3F6;
  display: flex;
  align-items: center;
}

.breadcrumbs .w1200 ul li {
  font-size: clamp(13px, 1vw, 18px);
  color: #9D9FAC;
  margin-right: 10px;
}

.breadcrumbs .w1200 ul li.active {
  color: #232323;
}

.breadcrumbs .w1200 ul li img {
  width: 15px;
  margin-right: 5px;
}

.main-content {
  margin: 40px auto;
}

.main-content .category-list {
  width: 350px;
}

.main-content .category-list ul {
  width: 300px;
  margin-bottom: 80px;
}

.main-content .category-list ul li.title {
  background: url('../images/product/category-bg.png') no-repeat center;
  background-size: 100% 100%;
  font-size: clamp(18px, 1.6vw, 24px);
}

.main-content .category-list ul li {
  width: 100%;
  font-size: clamp(14px, 1.2vw, 18px);
  padding: 20px;
  font-weight: bold;
  border-bottom: 1px solid #D6D6D6;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.main-content .category-list ul li.active {
  background-color: #F5F8FE;
}

.main-content .category-list ul li.active::after {
  content: url('../images/product/arrow.png');
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 25px;
  top: 25px;
}

.main-content .category-pic img {
  width: 80%;
}

.main-content .product-list {
  width: calc(100% - 400px);
}


.main-content .product-list .product-item {
  width: 30%;
  height: clamp(307px, 24vw, 461px);
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0 20px;
  cursor: pointer;
  position: relative;
  border: 1px solid #BEBEBE;
  margin-bottom: 40px;
}

.main-content .product-list .product-item:not(:nth-child(3n)) {
  margin-right: 5%;
}

.main-content .product-list .product-item .product-pic {
  text-align: center;
  height: 50%;
}

.main-content .product-list .product-item .product-name {
  font-size: clamp(16px, 1.4vw, 22px);
  padding: 0 20px;
  text-align: center;
}

.main-content .product-list .product-item .product-cover {
  width: 100%;
  height: 100%;
  background-color: #004292;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: white;
  padding: 10px 20px;
  opacity: 0;
  border-bottom: 4px solid #F00A3D;
}

.main-content .product-list .product-item .product-cover:hover {
  animation: fadeIn09 1s forwards;
}

@keyframes fadeIn09 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.8;
  }
}

.main-content .product-list .product-item .product-cover .title {
  font-size: clamp(16px, 1.4vw, 22px);
  margin-bottom: 10px;
}

.main-content .product-list .product-item .product-cover .desc {
  font-size: clamp(14px, 1vw, 18px);
  margin-bottom: 20px;
}

.main-content .product-list .product-item .product-cover .to-price {
  font-size: clamp(14px, 1vw, 18px);
  align-self: flex-start;
  padding: clamp(6px, 0.5vw, 9px) clamp(25px, 2vw, 38px);
  border-radius: 35px;
  border: 1px solid white;
  color: white;
}

.main-content .product-list .product-item .product-cover .product-link {
  width: 100%;
  text-align: right;
}

.main-content .product-list .product-item .product-cover .product-link a img {
  width: clamp(37px, 3vw, 58px);
}

.main-content .product-list .product-item .product-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 40px;
}

.contact {
  width: clamp(1280px, 100vw, 1920px);
  height: clamp(358px, 28vw, 537px);
  position: relative;
}

.contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact .content {
  position: absolute;
  left: clamp(128px, 10vw, 192px);
  top: clamp(128px, 10vw, 192px);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: white;
}

.contact .content .title {
  font-weight: bold;
  margin-bottom: clamp(13px, 1vw, 19px);
  font-size: clamp(24px, 2.2vw, 34px);
}

.contact .content .phone p {
  color: white;
  margin-bottom: clamp(25px, 2vw, 38px);
  font-size: clamp(14px, 1.2vw, 18px);
}

.contact .content .contact-link a {
  padding: clamp(8px, 0.6vw, 12px) clamp(25px, 2vw, 38px);
  color: white;
  border: 1px solid white;
  border-radius: 50vw;
  font-size: clamp(14px, 1.2vw, 18px);
}