body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  background-color: #f8f9fa;
}

:root {
  --e-global-color-primary: #262626;
  --e-global-color-secondary: #fff;
  --e-global-color-accent: #b50c09;
  --e-global-color-text: #707070;
  --e-global-color-light-blue: #1b2536;
  --e-global-color-dark-blue: #141e34;
  --e-global-color-dark-blue2: #192541;
  --e-global-color-soft-blue: #a4abbb;
  --e-global-color-very-dark-blue: #0e172a;
  --e-global-color-red: #c43d3a;
  --e-global-color-dark-blue3: #0a132a;
  --e-global-color-light-bluish: #959eb2;
  --e-global-color-yellow: #fbc729;
  --e-global-color-blue-f: #15203a;
  --e-global-color-blue-best: #0a152e;
  --e-header-height: 130px;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.text-indent-2 {
  text-indent: 2em; /* 首行缩进两个字符的宽度 */
}

.cat-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 30px 20px;
}

h1,
h2 {
  color: #002d72;
}

.h6-title {
  color: #002d72;
}

/* Grid Layout */
.cat-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.cat-list-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  display: block;
  position: relative;
  text-align: center;
  align-items: stretch;
}

.cat-list-item:hover {
  border-color: #002d72;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.part-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 65px;
  row-gap: 40px;
  margin-top: 20px;
}

.part-list-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px 5px 15px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  padding-left: 25px;
  box-shadow: 1px 1px 3px 0px #eee;
  text-align: center;
}

.part-list-item .part-img {
  z-index: 10;
  /* transform: translate(-50%, -50%); */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-46%, -50%);
  width: 100px;
}

.part-list-item:hover {
  border-color: #002d72;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  color: #002d72;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.9em;
  color: #666;
}

.breadcrumbs a {
  color: #002d72;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.qpt-form-control {
  display: block;
  width: 100%;
  height: 62px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--e-global-color-text);
  background-color: var(--e-global-color-secondary);
  background-clip: padding-box;
  border: 0;
  border-radius: 30px;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  padding: 18px 31px;
  box-shadow: 0 13px 41px 0 #e5eaef;
}

.arrow-box {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  background-color: var(--e-global-color-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.link-white a {
  color: #fff;
}

.hover-red:hover {
  color: var(--e-global-color-red) !important;
}

.text-xs {
  font-size: 12px;
}
.text-sm {
  font-size: 14px;
}
.text-base {
  font-size: 16px;
}
.text-lg {
  font-size: 18px;
}
.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 22px;
}

.text-3xl {
  font-size: 26px;
}

.text-4xl {
  font-size: 32px;
}

.text-red {
  color: var(--e-global-color-red);
}

.text-qpt-primary {
  color: var(--e-global-color-primary);
}

.not-border-color {
  border-color: transparent !important;
}

.bg-accent {
  background-color: var(--e-global-color-dark-blue);
}

.cursor-pointer {
  cursor: pointer;
}

.double-bar-decoration {
  position: relative;
  padding-left: 30px;
}

.double-bar-decoration:before {
  content: "";
  width: 10px;
  height: 25px;
  border-left: 3px solid var(--e-global-color-very-dark-blue);
  border-right: 3px solid var(--e-global-color-accent);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%) rotate(30deg);
}

@media screen and (max-width: 767px) {
  .double-bar-decoration {
    padding-left: 20px;
  }
  .double-bar-decoration:before {
    height: 20px;
  }

  .part-list-item {
    font-size: 14px;
  }

  .part-list-item .part-img {
    left: 6px;
    top: 50%;
    transform: translate(-46%, -50%);
    width: 70px;
  }
}

@media screen and (min-width: 768px) {
  .text-md-xs {
    font-size: 12px;
  }
  .text-md-sm {
    font-size: 14px;
  }
  .text-md-base {
    font-size: 16px;
  }
  .text-md-lg {
    font-size: 18px;
  }
  .text-md-xl {
    font-size: 20px;
  }
  .text-md-2xl {
    font-size: 22px;
  }
  .text-md-3xl {
    font-size: 26px;
  }
  .text-md-4xl {
    font-size: 32px;
  }
}
