.product-page {
  min-height: calc(100vh - 100px);
  padding: 32px 0;
}

.product-container {
  padding: 0 40px;
  background-image: url('../img/product/top-bg.png');
  background-size: 60% 400px;
  background-position: top right;
  background-repeat: no-repeat;
}

.top-box {
  margin-bottom: 32px;
}

.product-info-box {
  margin-right: 80px;
  flex: 1;
}

.product-info-box .product-title {
  font-size: 40px;
  font-weight: 600;
  color: #303033;
  margin-bottom: 8px;
}

.product-info-box .product-sub-title {
  font-size: 26px;
  color: #303033;
  margin-bottom: 24px;
}

.product-info-box .product-desc {
  font-size: 16px;
  color: #606066;
  margin-bottom: 24px;
}

/* .product-btn-box {
} */

.detail-btn,
.more-btn {
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.detail-btn {
  background-color: #1c77ff;
  color: #ffffff;
  margin-right: 24px;
  box-shadow: 8px 8px 16px rgba(20, 92, 234, 0.35);
}
.detail-btn:hover {
  background-color: rgba(28, 119, 255, 0.8);
}
.detail-btn:active {
  background-color: rgba(28, 119, 255, 0.6);
}

.more-btn {
  background-color: #ffffff;
  color: #1c77ff;
  border: 1px solid #1c77ff;
}
.more-btn:hover {
  background-color: rgba(28, 119, 255, 0.1);
}
.more-btn:active {
  background-color: rgba(28, 119, 255, 0.15);
}

.product-img {
  width: 320px;
}

.product-highlight-box {
  margin-bottom: 32px;
}

.highlight-title-box {
  position: relative;
  padding: 0 16px;
  margin-bottom: 16px;
}

.highlight-title-box::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 3px;
  height: 32px;
  background-color: #1c77ff;
  border-radius: 3px;
}

.highlight-title {
  font-size: 30px;
  font-weight: 600;
  color: #303033;
}

/* .highlight-content-box {
  margin-bottom: 24px;
} */

.highlight-content-item {
  width: 30%;
  min-width: 280px;
  margin-right: 24px;
  padding: 16px;
}

.highlight-content-item:last-child {
  margin-right: 0;
}

.highlight-content-item-title {
  margin-bottom: 12px;
}
.highlight-content-item-title .highlight-icon {
  height: 22px;
  margin-right: 8px;
}

.highlight-content-item-title .item-title-text {
  font-size: 22px;
  font-weight: 600;
  color: #303033;
}

.highlight-content-item-desc {
  padding-left: 32px;
  font-size: 16px;
  color: #606066;
  margin-bottom: 12px;
}

.highlight-content-item-desc .device-img {
  height: 18px;
}

.more-link {
  font-size: 18px;
  color: #1c77ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-link:hover {
  text-decoration: underline;
}

.more-link:active {
  color: rgba(28, 119, 255, 0.8);
}

.more-icon {
  height: 18px;
  margin-left: 8px;
}

.demo-box .demo-item {
  width: 30%;
  min-width: 280px;
  margin-right: 22px;
}

.demo-box .demo-item:last-child {
  margin-right: 0;
}

.demo-box .demo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}