@-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 {
    width: 19.275rem;
    padding: 1.275rem 0 1.275rem 0;
    margin: 0 auto;
    overflow: hidden;
  }
  .list-conetnt .content-section {
    width: 100%;
  }
  .list-conetnt .content-section ul:not(:first-child){
   display:none;
  }

  .list-conetnt .content-section ul li {
    height: 2.25rem;
    border-bottom: .0125rem solid #c5c5c5;
    box-sizing: border-box;
  }
  .list-conetnt .content-section ul li:nth-child(10){
    margin-bottom: .9375rem;
  }
  .list-conetnt .content-section ul li:hover {
    border-bottom: .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;
  }
  .list-conetnt .content-section ul li:hover a p.title {
    color: var(--color);
  }
  .list-conetnt .content-section ul li a {
    display: block;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .list-conetnt .content-section ul li .time {
    width: 2.2875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .list-conetnt .content-section ul li .time::before {
    content: "";
    position: absolute;
    background: #c5c5c5;
    width: 1px;
    height: 1.375rem;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
  }
  .list-conetnt .content-section ul li .time span:nth-child(2) {
    font-size: 0.25rem;
    color: #333333;
    font-weight: bold;
  }
  .list-conetnt .content-section ul li .time span:nth-child(1) {
    font-size: 0.5375rem;
    font-weight: bold;
    color: var(--color);
  }
  .list-conetnt .content-section ul li .section {
    width: calc(100% - 2.2875rem);
    height: 1.2125rem;
    padding: 0 0 0 0.45rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .list-conetnt .content-section p.title {
    font-size: 0.2875rem;
    color: #333333;
    font-weight: bold;
  }
  .list-conetnt .content-section p.content {
    font-size: 0.1875rem;
    color: #797979;
    line-height: 0.3rem;
  }
  .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;
    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
    );
  }