@media screen and (min-width: 600px) {
  .articles_content {
    width: 1200px;
    height: auto;
    margin: 30px auto 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .articles_content .articles_text_box {
    flex: 1;
  }
  .articles_content .articles_text_box .local {
    line-height: 50px;
  }
  .articles_content .articles_text_box .local a {
    color: #000;
    transition: all 0.3s;
  }
  .articles_content .articles_text_box .local a:hover {
    color: var(--main_color);
    text-decoration: underline;
  }
  .articles_content .articles_text_box .articles_title {
    width: 100%;
    text-align: center;
    line-height: 70px;
  }
  .articles_content .articles_text_box .articles_info {
    width: 100%;
    text-align: center;
    line-height: 30px;
    opacity: 0.75px;
  }
  .articles_content .articles_text_box .articles_info > span {
    display: inline-block;
    padding: 0 10px;
  }
  .articles_content .articles_text_box .articles_text {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
  }
  .articles_content .articles_text_box .articles_text img {
    vertical-align: top;
    display: inline-block;
    max-width: 1200px;
  }
  .articles_content .jump > div a {
    color: #000;
    transition: all 0.3s;
  }
  .articles_content .jump > div a:hover {
    color: var(--main_color);
    text-decoration: underline;
  }
}
@media screen and (max-width: 600px) {
  .articles_content {
    width: 92vw;
    height: auto;
    margin: 1rem auto;
  }
  .articles_content .articles_text_box {
    width: 100%;
  }
  .articles_content .articles_text_box .local {
    padding: 1px;
    font-size: 13px;
  }
  .articles_content .articles_text_box .local a {
    color: #000;
    transition: all 0.3s;
    font-size: 13px;
  }
  .articles_content .articles_text_box .local a:hover {
    color: #A23435;
    text-decoration: underline;
  }
  .articles_content .articles_text_box .articles_title {
    font-size: 1.25rem;
    width: 100%;
    text-align: justify;
    padding: 2rem 0 0.25rem;
  }
  .articles_content .articles_text_box .articles_info {
    width: 100%;
    text-align: left;
    opacity: 0.75px;
    padding: 0.5rem 0;
  }
  .articles_content .articles_text_box .articles_info > span {
    display: inline-block;
    margin-right: 2px;
  }
  .articles_content .articles_text_box .articles_text {
    padding: 1rem 0;
    width: 100%;
    box-sizing: border-box;
  }
  .articles_content .articles_text_box .articles_text img {
    vertical-align: top;
    display: inline-block;
    max-width: 92vw;
  }
  .articles_content .jump > div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    line-height: 200%;
  }
  .articles_content .jump > div:nth-of-type(1) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
  }
  .articles_content .jump > div a {
    flex: 1;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000;
    transition: all 0.3s;
  }
  .articles_content .jump > div a:hover {
    color: #A23435;
    text-decoration: underline;
  }
}