@charset "UTF-8";
/**
 * 通用列表
 * date: 2024-12-12
 * author: jyxuan;
 */
/* 主容器 */
.sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sub-left {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 260px;
  border: 1px solid #e1e1e1;
}
.sub-right {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 20px;
  width: calc(100% - 280px);
  border: 1px solid #e1e1e1;
  border-top: 2px solid #4e7adb;
}

/* 菜单 */
.menu-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  background: url("../images/menu_hd_bg.png") no-repeat center;
}
.menu-hd-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 50px;
  height: 36px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 36px;
  background: url("../images/menu_hd_icon.png") no-repeat left center;
}
.menu-bd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
}
.menu-item.current .menu-title {
  background-color: #4e8ffa;
}
.menu-item.current .menu-title::after {
  background-image: url("../images/menu_arrow_icon_active.png");
}
.menu-item.current .menu-title-text {
  color: #fff;
  background-image: url("../images/menu_title_icon_active.png");
}
.menu-item.current .menu-sub {
  display: block;
}
.menu-item + .menu-item {
  margin-top: 10px;
}
.menu-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 25px;
  min-height: 48px;
  border-radius: 100px;
  background-color: #ebf2ff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.menu-title::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: url("../images/menu_arrow_icon.png") no-repeat center;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
.menu-title-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px 0 25px;
  color: #666;
  font-size: 18px;
  font-weight: bold;
  line-height: 25px;
  background: url("../images/menu_title_icon.png") no-repeat left center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-sub {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px 0 70px;
}
.menu-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 0;
  min-height: 40px;
  color: #666;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}
.menu-link:hover, .menu-link.current {
  color: #2069e1;
}
.menu-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 4px;
  height: 4px;
  background-color: #5b5b5b;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* tab */
.tab-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 57px;
  border-bottom: 1px solid #e1e1e1;
}
.tab-hd-item {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 18px;
  height: 32px;
  font-size: 18px;
  line-height: 32px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.tab-hd-item.current {
  color: #2069e1;
  font-weight: bold;
}
.tab-hd-item.current::after {
  content: "";
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  width: 16px;
  height: 12px;
  background: url("../images/tab_icon.png") no-repeat center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tab-bd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
}

/* 搜索 */
.search {
  position: absolute;
  top: 9px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-textbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px;
  width: 310px;
  font-size: 16px;
  border: 1px solid #cdcdcd;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.search-textbox:focus {
  border-color: #3b7dea;
}
.search-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 10px;
  padding: 0 19px;
  height: 38px;
  color: #fff;
  font-size: 16px;
  line-height: 38px;
  background-color: #3b7dea;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.search-btn:hover {
  opacity: 0.8;
}

/* 列表 */
.list .col-1 {
  width: 200px;
  text-align: center;
}
.list .col-2 {
  width: calc(100% - 360px);
}
.list .col-3 {
  width: 160px;
  text-align: center;
}
.list-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 47px;
  background-color: #84b5fa;
}
.list-hd-con {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 47px;
}
.list-hd-con + .list-hd-con {
  border-left: 1px solid #fff;
}
.list-bd-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 47px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.list-bd-item:nth-child(even) {
  background-color: #f8f9fb;
}
.list-bd-item:hover {
  background-color: #ebf1ff;
}
.list-bd-item:hover .list-bd-con {
  color: #2069e1;
}
.list-bd-con {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  color: #333;
  font-size: 15px;
  line-height: 47px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-bd-con + .list-bd-con {
  border-left: 1px solid #fff;
}

/* 分页 */
.pagination {
  margin-top: 10px;
  text-align: center;
}
.pagination .m-pagination-page li:hover a, .pagination .m-pagination-page li.active a {
  color: #fff;
  border-color: #4e8ffa;
  background-color: #4e8ffa;
}
.pagination .m-pagination-page li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 8px;
  min-width: 28px;
  height: 28px;
  color: #333;
  text-align: center;
  line-height: 26px;
}
.pagination .m-pagination-group input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 28px;
}
.pagination .m-pagination-group button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 28px;
}