@-webkit-keyframes shadow-drop-bottom {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
      -webkit-box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.13);
      box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.13);
    }
  }
  @keyframes shadow-drop-bottom {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
      -webkit-box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.13);
      box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.13);
    }
  }
  .list-conetnt-tab {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 0.5rem 0;
  }
  .list-conetnt-tab div {
    width: 1.75rem;
    height: 0.525rem;
    border: 0.025rem solid var(--color);
    color: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2125rem;
    cursor: pointer;
  }
  .list-conetnt-tab div:not(:first-child) {
    margin: 0 0 0 0.225rem;
  }
  .list-conetnt-tab div a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    font-size: 0.2rem;
    justify-content: center;
    color: var(--color);
  }
  .list-conetnt-tab div.selected a {
    color: #ffffff;
  }
  .list-conetnt-tab div.selected {
    background: var(--color);
    clip-path: polygon(
      0.125rem 0,
      100% 0,
      100% 0,
      100% 100%,
      100% 100%,
      0 100%,
      0 calc(100% - 0.125rem),
      0 0.125rem
    );
  }
  .list-conetnt {
    width: 19.275rem;
    padding: 1.275rem 0 1.275rem 0;
    margin: 0 auto;
    overflow: hidden;
  }
  .content-section {
    width: 100%;
  }
  .content-section ul li {
    height: 2.9875rem;
    box-sizing: border-box;
    margin: 0 0 0.375rem 0;
    border-bottom: 0.0125rem solid #c5c5c5;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content-section ul li:hover {
    border-bottom: 0.0125rem solid rgba(0, 0, 0, 0);
    -webkit-animation: shadow-drop-bottom 0.4s
      cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: shadow-drop-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
  }
  .content-section ul li:hover a p.title {
    color: var(--color);
  }
  .content-section ul li:last-child {
    margin-bottom: 0.9375rem;
  }
  .content-section ul li:hover p.img img {
    transform: scale(1.2);
  }
  .content-section ul li a {
width:100%;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
  }
  .content-section p.img {
    width: 3.475rem;
    height: 2.3125rem;
    overflow: hidden;
  }
  .content-section p.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
  }
  .content-section p.title {
    font-size: 0.2875rem;
    color: #333333;
    font-weight: bold;
  }
  .content-section p.content {
    font-size: 0.1875rem;
    color: #797979;
    line-height: 0.3rem;
    box-sizing: border-box;
  }
  .content-section p.time {
    font-size: 0.2rem;
    color: var(--color);
    font-weight: bold;
  }
  .content-section ul li .flex-right {
    width: calc(100% - 4rem);
    height: 1.8rem;
    padding: 0 0.6625rem 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .pages-content {
    margin-top: 0.9875rem;
  }