@charset "UTF-8";
@import "./base.css";
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-horizontally-center {
  display: flex;
  justify-content: center;
}

.flex-vertically-center {
  display: flex;
  align-items: center;
}

.content-wrapper {
  width: var(--width-main-content);
  margin-left: auto;
  margin-right: auto;
}

.normal-btn {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #dedede;
  display: inline-block;
  color: #fff;
}

.normal-btn:hover {
  color: #fff;
  background: var(--color-primary);
}

.normal-btn-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
}
.normal-btn-fill:hover {
  color: #fff;
}

.column-banner > img {
  width: 100%;
}

.breadcrumbs {
  display: flex;
  height: 70px;
  align-items: center;
  border-bottom: 2px solid #e6e6e6;
  color: #999;
}
.breadcrumbs > a {
  color: #999;
  font-size: 14px;
}
.breadcrumbs > a:hover {
  color: var(--color-primary);
}

.text-ellipsis {
  display: inline-block;
  width: 100%;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis; /* 显示省略号 */
  word-break: break-all; /* 允许在单词内换行 */
}

.section-wrapper {
  margin-top: 60px;
}
.section-wrapper .double-title {
  position: relative;
  text-align: center;
}
.section-wrapper .double-title .bg-title {
  position: absolute;
  bottom: 45px;
  font-size: 75px;
  color: #f0f0f0;
  z-index: 1;
  width: 100%;
}
.section-wrapper .double-title h2 {
  position: absolute;
  z-index: 2;
}
.section-wrapper .section__header {
  padding-top: 56px;
  padding-bottom: 48px;
  text-align: center;
  color: var(--color-primary);
}
.section-wrapper .section__header h2 {
  position: relative;
  font-size: 36px;
  color: var(--color-primary);
  font-weight: bold;
}
.section-wrapper .section__header h2:after {
  display: block;
  content: "";
  width: 42px;
  height: 3px;
  background: #000;
  margin: 14px auto 0;
}
.section-wrapper .section__header p {
  color: #999;
  font-size: 18px;
  margin-top: 16px;
}

.section-wrapper {
  margin-top: 60px;
}
.section-wrapper .double-title {
  position: relative;
  text-align: center;
}
.section-wrapper .double-title .bg-title {
  position: absolute;
  bottom: 45px;
  font-size: 75px;
  color: #f0f0f0;
  z-index: 1;
  width: 100%;
}
.section-wrapper .double-title h2 {
  position: absolute;
  z-index: 2;
}
.section-wrapper .section__header {
  padding-top: 56px;
  padding-bottom: 48px;
  text-align: center;
  color: var(--color-primary);
}
.section-wrapper .section__header h2 {
  position: relative;
  font-size: 36px;
  color: var(--color-primary);
  font-weight: bold;
}
.section-wrapper .section__header h2:after {
  display: block;
  content: "";
  width: 42px;
  height: 3px;
  background: #000;
  margin: 14px auto 0;
}
.section-wrapper .section__header p {
  color: #999;
  font-size: 18px;
  margin-top: 16px;
}

/*# sourceMappingURL=common.css.map */
