/**************** 居中布局样式 1180px ****************/
.main {
  width: 100%;
}

.content-template .center-container {
  width: 1180px;
  margin: 0 auto;
  padding: 30px 0;
}

/**************** 选项卡 ****************/
/* 选中效果 */
.active {
  color: #fff !important;
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
}

/* 选中效果2 */
.active2 {
  color: var(--primary-dark);
  border-color: var(--primary-dark) !important;
}

/* 选中效果2 内圆变色 */
.active2::after {
  background-color: var(--primary-dark) !important;
}

/* 浅灰色背景 */
.bg-lightgray {
  background-color: rgba(246, 246, 246, 0.8);
}

.slash {
  background-image: url(../img/slash.png);
  width: 100%;
  height: 100px;
}

/* 选项卡 */
.tab {
  min-width: 1180px;
  background-color: rgba(0, 0, 0, 0.05);
  height: 100px;
  width: 100%;
}

/* 选项卡居中容器 */
.tab .center-container {
  margin: 0 auto;
  width: 100%;
}

.tab .center-container ul {
  display: table;
  text-align: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* 一类选项卡 */
.tab .center-container ul .tab-li {
  width: 196px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

/* 一类选项卡文字 */
.tab .center-container ul .tab-li a {
  width: 80%;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 28px;
  background-color: #fff;
  cursor: pointer;
}

/* 选项卡背景时间条 */
.tab .center-container .timeline::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #b4b4b4;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

/* 二类选项卡 */
.tab .center-container ul .tab-li2 {
  width: 196px;
  height: 100px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

/* 灰色外环 */
.tab .center-container ul .tab-li2 .circle-gray {
  width: 20px;
  height: 20px;
  display: block;
  background-color: #fff;
  margin: 0 auto;
  border: 2px solid #b4b4b4;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  z-index: 5;
  margin-bottom: 6px;
  margin-top: 40px;
}

/* 灰色内圆 */
.tab .center-container ul .tab-li2 .circle-gray::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #b4b4b4;
  position: absolute;
  border-radius: 10px;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* 二类选项卡文字 */
.tab .center-container ul .tab-li2 .circle-gray p {
  width: 100%;
  position: absolute;
  top: 20px;
  left: 50%;
  width: 190px;
  transform: translateX(-50%);
}

/**************** 主要信息展示模板 ****************/
/* li一排两个 */
.li2 {
  width: 50%;
}

/* li一排三个 */
.li3 {
  width: 33.33%;
}

/* li一排四个 */
.li4 {
  width: 25%;
}

/* li一排五个 */
.li5 {
  width: 20%;
}

/* li一排8个 */
.li8 {
  width: 12.5%;
}

.top0 {
  margin-top: 0 !important;
}

.content-template {
  min-width: 1180px;
}

.content-template .center-container ul li {
  margin: 25px 0;
}

/* 居中标题、文字 */
.content-template .center-container .center-title,
.content-template .center-container .center-txt {
  text-align: center;
}

/* 居中标题 */
.content-template .center-container .center-title {
  font-size: 28px;
  color: #6a6a6a;
  font-weight: bold;
}

.content-template .center-container .center-txt {
  width: 750px;
  margin: 0 auto;
  font-size: 16px;
  color: #757575;
  padding: 28px 0;
  line-height: 28px;
  text-align: center;
}

/* 分页容器 */
.content-template .center-container .pagination {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 60px;
}

/* 自定义分页 */
.pagination-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  user-select: none;
}

.pagination-custom .pagination-info {
  margin-right: 10px;
  color: #888;
}

.pagination-custom .pagination-info b {
  color: var(--primary);
  font-weight: bold;
  margin: 0 2px;
}

.pagination-custom .pagination-btn {
  height: 34px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

.pagination-custom .pagination-btn:hover:not(:disabled) {
  color: var(--primary);
  border-color: var(--primary);
}

.pagination-custom .pagination-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
  background: #f5f5f5;
}

.pagination-custom .pagination-pages {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pagination-custom .pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  box-sizing: border-box;
}

.pagination-custom .pagination-num:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.pagination-custom .pagination-num.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  cursor: default;
}

.pagination-custom .pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #999;
  letter-spacing: 2px;
}

.pagination-custom .pagination-jump {
  margin-left: 8px;
  color: #888;
}

.pagination-custom .pagination-jump .pagination-input {
  width: 44px;
  height: 34px;
  padding: 0 6px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  color: #666;
  outline: none;
  box-sizing: border-box;
  margin: 0 4px;
}

.pagination-custom .pagination-jump .pagination-input:focus {
  border-color: var(--primary);
}

/**************** li列表模板 ****************/
.content-template .center-container ul li .li-span {
  width: 90%;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding-bottom: 24px;
}
.content-template.soft .center-container ul li:hover a {
  background-color: var(--primary-light) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}
/* 信息图片 */
.content-template .center-container ul li .li-span img {
  width: 100%;
  height: 170px;
  border-radius: 10px;
}

/* 信息内容容器 */
.content-template .center-container ul li .li-span span {
  width: 90%;
  margin: 0 auto;
  display: block;
}

/* /信息标题 */
.content-template .center-container ul li .li-span span .span-title {
  font-size: 17px;
  font-weight: bold;
  color: #7f7f7f;
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 信息内容 */
.content-template .center-container ul li .li-span span .span-txt {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 60px;
}

/* 查看更多 */
.content-template .center-container ul li .li-span span .span-a {
  display: inline-block;
  color: #686868;
  margin-top: 10px;
  padding: 5px 0;
  font-size: 14px;
  position: relative;
}

/* 查看更多下划线 */
.content-template .center-container ul li .li-span span .span-a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #aaa;
  position: absolute;
  bottom: 0;
  left: 0;
}

/**************** 其他方案 ****************/
.scheme-list {
  position: relative;
}

.scheme-list::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e6e6e6;
  position: absolute;
  top: 210px;
  z-index: 0;
}

/* 方案卡片列表 */
.scheme-list .center-container ul li {
  height: 320px;
  margin-top: 80px;
  text-align: center;
  overflow: hidden;
}

/* 方案卡片 */
.scheme-list .center-container ul li .scheme-span {
  width: 90%;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #4d4d4d;
  width: 62.5px;
  height: 62.5px;
  line-height: 62.5px;
  border-radius: 31.25px;
  position: relative;
  z-index: 3;
  background-color: #fff;
}

/* 卡片圆图标题 */
.scheme-list .center-container ul li .scheme-span .li-num {
  color: #4d4d4d;
  font-weight: bold;
}

/* 卡片圆图标题文字 */
.scheme-list .center-container ul li .scheme-span .li-num p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.scheme-list .center-container ul li .li-tit {
  font-size: 20px;
  font-weight: bold;
  color: #4d4d4d;
  padding: 15px 0;
}

.scheme-list .center-container ul li .li-img {
  width: 35px;
  height: 35px;
  margin: 5px 0;
}

.scheme-list .center-container ul li .sx {
  display: block;
  width: 2px;
  height: 15px;
  background-color: #aeaeae;
  left: 50%;
  margin-left: -1px;
  position: relative;
}

/* 卡片文本 */
.scheme-list .center-container ul li .li-txt {
  padding: 0 8px;
  font-size: 12px;
  line-height: 22px;
  color: #767676;
  letter-spacing: 1px;
}
