﻿@charset "utf-8";
/*---------------------------------------------------------
list styles
---------------------------------------------------------*/

#container {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* 列表左侧 */
.list_left {
  width: 23%;
}

.list_left .list_left_content {
  border-radius: 5px;
  padding-bottom: 15px;
  overflow: hidden;
}

.list_left .list_left_content .list_title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 36px;
  padding-left: 25px;
  background: #0f7bd2;
}

.list_left .list_left_content .title_content {
  font-size: 16px;
  padding: 0 15px 15px;
  border: 1px solid #e4e4e4;
}

.list_left .list_left_content .title_content li {
  line-height: 36px;
  margin-top: 15px;
}

.list_left .list_left_content .title_content li a {
  color: #686868;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 列表右侧 */
.list_right {
  width: 75%;
}

.list_right .list_info,
.list_right .content_title {
  height: 36px;
  line-height: 36px;
}

.list_right .list_content {
  padding: 0 20px 10px;
  border: 1px solid #e4e4e4;
  border-top: 2px solid #0f7bd2;
}

.list_right .list_content .content_title span {
  display: inline-block;
  background: #0f7bd2;
  padding: 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.list_right .list_content .content_info {
  padding-top: 20px;
}

.list_right .list_content .content_info li {
  line-height: 45px;
}

.list_right .list_content .content_info li a {
  display: flex;
  justify-content: space-between;
}

.list_right .list_content .content_info li span:first-of-type {
  flex: 1 1 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_right .list_content .content_info li span:first-of-type:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #0f7bd2;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}

.list_right .list_content .content_info li:hover span:first-of-type {
  color: #0f7bd2;
}

.list_right .list_content .content_info .time {
  color: #999;
  padding-left: 20px;
}

/* 通用-列表分页 */
.list_right .list_content .page {
  line-height: 20px;
  text-align: center;
  margin: 20px 0;
}

.list_right .list_content .page span,
.list_right .list_content .page a {
  display: inline-block;
  border: 1px solid #DDDDDD;
  color: #696969;
  padding: 2px 8px;
  margin: 0 2px;
}

.list_right .list_content .page a:hover {
  background: #0f7bd2;
  color: #fff;
}

/* 手机端 */
@media (max-width: 480px) {
  #container {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }

  /* 主体内容 */
  .container {
    flex-direction: column;
  }

  .list_left,
  .list_right {
    width: 100%;
    padding: 0;
  }

  .list_right .content_title,
  .list_right .list_info {
    display: none;
  }

  /* 列表左侧 */
  .list_left,
  .list_right .list_content .page span,
  .list_right .list_content .page a {
    margin-bottom: 15px;
  }

  .list_left .list_left_content,
  .list_right .list_content .content_info {
    padding: 0;
  }

  .list_left .list_left_content .title_content {
    padding: 10px 15px;
  }

  .list_left .list_left_content .title_content ul {
    display: flex;
    flex-wrap: wrap;
  }

  .list_left .list_left_content .title_content li {
    width: 33.3%;
    padding: 5px;
    margin: 0;
  }

  .list_left .list_left_content .title_content .current a {
    color: #0f7bd2;
    font-weight: bold;
  }

  .list_right .list_content {
    padding: 10px 0 0;
  }

  .list_right .list_content .content_info .time {
    padding: 0 15px;
  }

  .list_right .list_content .page {
    margin: 20px 0 10px;
  }
}