@charset "UTF-8";
/* 二级页面 */

/* MARK:通用列表 */
.list-header {
  font-size: 26px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 20px;
  color: rgba(20, 105, 201, 1);
}
.list {
  margin-bottom: 64px;
}
.list li {
}
.list li:nth-child(5) {
  border-bottom: 1px dashed #d6d6d6;
}
.list li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 20px;
  position: relative;
  font-size: 18px;
}
.list li span {
  float: right;
  padding-top: 20px;
  color: #808080;
  font-size: 18px;
}
.list li a:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #266bbf;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* MARK:通用子栏目列表 */
.channel-list {
  margin: 0 -15px;
}
.channel-list li {
  width: 16.666666%;
  float: left;
  padding: 0 15px;
  margin-bottom: 20px;
}
.channel-list li a {
  display: block;
  padding: 14px 10px;
  border: 1px solid #bcd1e8;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.channel-list li a:hover {
  background: #1469c9;
  color: #fff;
}

/* MARK:专题专栏页 */
.ztzl-list {
  margin: 0 -13px;
}
.ztzl-list li {
  float: left;
  width: 25%;
  padding: 0 13px;
  margin-bottom: 49px;
}
.ztzl-list li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  font-size: 18px;
  text-align: center;
}
.ztzl-list li a:hover {
  color: #1469c9;
}
.ztzl-list li img {
  width: 100%;
  height: 112px;
  margin-bottom: 6px;
}

/* MARK:网站地图 */
.map {
  padding: 10px;
}
.map .map-title {
  line-height: 40px;
  position: relative;
  padding: 0 13px;
  font-size: 18px;
  font-weight: bold;
  color: #025293;
}
.map .map-title:before {
  border-radius: 2px;
  content: '';
  width: 4px;
  height: 20px;
  background: #025293;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
}
.map .map-links {
  padding: 5px 15px;
}
.map .map-links li {
  display: inline-block;
  margin-right: 20px;
  line-height: 35px;
}

@media screen and (max-width: 500px) {
  .list-header {
    font-size: 22px;
    margin-top: 26px;
    margin-bottom: 15px;
  }
  .list li a {
    padding: 20px;
    font-size: 16px;
  }
  .list li span {
    padding: 18px;
    font-size: 16px;
  }
}

@media screen and (max-width: 1000px) {
  .channel-list li {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 500px) {
  .channel-list li {
    width: 50%;
  }
}