:root {
  --theme-color: #15a6a6;
  --theme-hover-color: #125a5a;
  --el-color-primary: var(--theme-color);
  --el-color-primary-light-3: var(--theme-hover-color);
  --el-color-primary-dark-2: var(--theme-color);
  --van-primary-color: var(--theme-color);
  --swiper-theme-color: var(--theme-color);
}

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;
}

.width100 {
  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) {
  /* 不可删 */
  .mobile-show {
  }
  .pc-show {
    display: none !important;
  }
  h1 {
    color: #212121;
    font-size: 1.5rem;
    font-weight: 700;
  }
  h3 {
    color: #212121;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
  }
}

@media screen and (min-width: 769px) {
  .mobile-show {
    display: none !important;
  }
  /* 不可删 */
  .pc-show {
  }

  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;
}

html[dir='rtl'] .el-form-item__error {
  right: 0 !important;
  left: auto !important;
}

html[dir='rtl'] .el-select__wrapper {
  text-align: right !important;
}
