@charset "UTF-8";

html,
body {
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
}

@media screen and (min-width: 1200px) {
    /* 内容区域 */
    .training-content {
        /* border: 1px solid #ccc; */
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 30px;
        height: auto;
    }

    /* 标题 */
    .training-title {
        width: 100%;
        margin: 0 auto;
    }

    .training-title h2 {
        font-size: 22px;
        color: #323232;
        text-align: center;
    }

    /* 简介部分 */
    .training-introduction {
        width: 100%;
        height: auto;
        background: #F7F7F7;
        margin-top: 15px;
    }

    .training-introduction-text {
        padding: 15px;
        color: #555555;
        font-size: 16px;
    }

    /* 列表区域 */
    .training-list {
        width: 1200px;
        background: #F7F7F7;
        margin-top: 15px;
        padding-bottom: 30px;
    }

    .training-list-title {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-bottom: 1px solid #E3E3E3;
    }

    .training-list-title h2 {
        color: #2d2d2d;
        font-size: 20px;
        line-height: 26px;
        border-left: 5px solid #C22B25;
        padding-left: 10px;
        display: block;
        width: 100%;
        margin-left: 15px;
        margin-bottom: 15px;
    }

    .training-list-content {
        width: 100%;
        height: auto;
    }

    .training-list-item {
        width: 95%;
        /* height: 78px; */
        border-bottom: 1px solid #d8d8d8;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-around;
        /* padding: 0 10px 0 10px; */
        margin: 0 auto;
    }

    .training-list-item h2 {
        /* float: left; */
        width: 85%;
        height: 100%;
        overflow: hidden;
        color: #333333;
        font-size: 16px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-align: justify;
        line-height: 45px;
        /* margin-bottom: 0; */
        font-weight: 500;

    }
    .training-list-item span{
        /* float: right; */
        width: 12%;
        color: #999999;
        font-size: 16px;
        height: 100%;
        overflow: hidden;
        text-align: right;
        /* line-height: 78px; */
    }

    /* 分页 */
    /* 分页导航样式 */
   .training-pagination {
      text-align: center;
      margin-top: 20px;
    }

   .training-pagination a {
      display: inline-block;
      padding: 5px 10px;
      margin-right: 5px;
      border: 1px solid #ccc;
      color: #333;
      text-decoration: none;
    }

   .training-pagination a.active {
      background-color: #e74c3c;
      color: white;
    }
}