@media screen and (min-width: 600px) {
  .articles_list_small {
    width: 1200px;
    height: auto;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .articles_list_small > ul {
    width: 46.5%;
    height: auto;
    flex-shrink: 0;
  }
  .articles_list_small > ul > li {
    width: 100%;
    height: 60px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
  }
  .articles_list_small > ul > li > a {
    color: #000000;
    display: block;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .articles_list_small > ul > li > a > i {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #c2c2c2;
    transition: all 0.5s;
    margin: 0 10px;
  }
  .articles_list_small > ul > li > a span {
    display: block;
    flex: 1;
    width: calc(100% - 25px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.3s;
  }
  .articles_list_small > ul > li > a:hover > i {
    background-color: #A23435;
    transform: rotateZ(135deg);
  }
  .articles_list_small > ul > li > a:hover > span {
    color: #A23435;
  }
}
@media screen and (max-width: 600px) {
  .articles_list_small {
    width: 92vw;
    margin: 0 auto 1rem;
  }
  .articles_list_small > ul {
    width: 100%;
    height: auto;
  }
  .articles_list_small > ul > li {
    width: 100%;
    height: 40px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
  }
  .articles_list_small > ul > li > a {
    color: #000000;
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .articles_list_small > ul > li > a > i {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #c2c2c2;
    transition: all 0.5s;
    margin: 0 10px;
  }
  .articles_list_small > ul > li > a span {
    display: block;
    flex: 1;
    width: calc(100% - 25px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.3s;
  }
  .articles_list_small > ul > li > a:hover > i {
    background-color: #A23435;
    transform: rotateZ(135deg);
  }
  .articles_list_small > ul > li > a:hover > span {
    color: #A23435;
  }
}