:root {
  /* 主题色 */
  --theme-primary: #d51519; /* 品牌主色 */
  --theme-primary-dark: #0c3460; /* 品牌主色深色变体（hover） */

  /* 中性色 - 文本 */
  --text-primary: #212121; /* 一级文本（主标题） */
  --text-secondary: #666666; /* 二级文本（描述） */
  --text-tertiary: #333333; /* 三级文本（子标题） */
  --text-quaternary: #383838; /* 四级文本（图标/辅助） */
  --text-quinquenary: #999999; /* 五级文本（#999） */
  --text-white: #ffffff; /* 白色文本 */
  --text-white-transparent-60: rgba(255, 255, 255, 0.6); /* 白色半透明文本 */
  --text-black: #000000; /* 黑色文本（强调） */

  /* 中性色 - 背景/边框 */
  --bg-white: #ffffff; /* 白色背景 */
  --bg-light-gray: #f5f5f5; /* 浅灰色背景 */
  --bg-light-cyan: #f3ffff; /* 淡青色背景 */
  --bg-dark-cyan: #500d0e; /* 深色青色背景（页脚） */
  --bg-light-btn: #e3ffff; /* 浅色按钮背景 */
  --bg-white-transparent-60: rgba(255, 255, 255, 0.6);

  /* 透明色 - 渐变/阴影 */
  --black-transparent-0: rgba(0, 0, 0, 0); /* 黑色全透明 */
  --black-transparent-10: rgba(0, 0, 0, 0.1); /* 黑色10%透明（阴影） */
  --black-transparent-20: rgba(0, 0, 0, 0.2); /* 黑色20%透明（阴影） */
  --black-transparent-25: rgba(0, 0, 0, 0.25); /* 黑色25%透明（阴影） */
  --black-transparent-40: rgba(0, 0, 0, 0.4); /* 黑色40%透明（渐变） */
  --black-transparent-48: rgba(0, 0, 0, 0.48); /* 黑色48%透明（渐变） */
  --black-transparent-55: rgba(0, 0, 0, 0.55); /* 黑色55%透明（渐变） */
  --black-transparent-60: rgba(0, 0, 0, 0.6); /* 黑色60%透明（渐变） */
  --black-transparent-72: rgba(0, 0, 0, 0.72); /* 黑色72%透明（渐变） */
  --cyan-transparent-60: rgba(0, 78, 78, 0.6); /* 青色60%透明（渐变） */
  --white-transparent-80: rgba(255, 255, 255, 0.8); /* 白色80%透明（渐变） */

  /* element-ui */
  --el-color-primary: var(--theme-primary);
  --el-color-primary-light-3: var(--theme-primary-dark);
  --el-color-primary-dark-2: var(--theme-primary);
  /* swiper */
  --swiper-theme-color: var(--theme-primary);
}

html,
body {
  margin: 0;
  scroll-behavior: smooth;
  font-family: Arial;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  color: #666;
  text-decoration: none;
}
a:hover {
  color: var(--theme-color);
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-gap10 {
  display: flex;
  gap: 10px;
}

.container-main {
  background-color: #f6f6f6;
}

@media screen and (max-width: 768px) {
  .visible-pc {
    display: none !important;
  }
  .visible-mobile {
  }
  h1 {
    color: #212121;
    font-size: 1.4rem;
    font-weight: 700;
  }
  h3 {
    color: #212121;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
  }
}

@media screen and (min-width: 769px) {
  .visible-pc {
  }
  .visible-mobile {
    display: none !important;
  }
  h1 {
    color: #212121;
    font-size: 36px;
    font-weight: 700;
  }
  h3 {
    color: #212121;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
}

.el-button {
  border-radius: 0;
}

.el-popper {
  max-width: 100%;
}

.el-checkbox__label {
  padding: 0 8px;
}
