:root {
  --color-primary: #d97706;
  --color-blueLight: #e8f0ff;
  --font-sans: "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.product-page-wrap {
  background-color: #ffffff;
  font-family: var(--font-sans);
  color: #1f2937;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  object-cover: cover;
}
a {
  text-decoration: none;
}

.bg-gradient-bottom {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}
.step-line {
  height: 2px;
  background: #d0d7e3;
  flex: 1;
  margin-top: 12px;
}

.process-dashed-line {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 2px;
  z-index: 0;
  background-image: linear-gradient(90deg, #d0d7e3 0%, #d0d7e3 50%, transparent 50%, transparent 100%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.max-w-6xl {
  max-width: 1152px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-6 {
  gap: 1.5rem;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.text-gray-500 {
  color: #6b7280;
}
.text-white {
  color: #ffffff;
}
.text-primary {
  color: var(--color-primary);
}
.leading-relaxed {
  line-height: 1.625;
}
.rounded-sm {
  border-radius: 0px;
}
.rounded-md {
  border-radius: 0.375rem;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-gray-300 {
  border-color: #d1d5db;
}
.w-full {
  width: 100%;
}
.w-10 {
  width: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}
.inline-block {
  display: inline-block;
}
.bg-primary {
  background-color: var(--color-primary);
}
.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.transition {
  transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.text-clamp-2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.text-clamp-1 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}