@charset "UTF-8";
.news_list li{
    opacity: 1;
}
.news_list li.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
}
.list-btn {
    margin: 20px 0 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.list-btn.is-btn-hidden{
  display:none;
}
.list-btn button {
    background-color: #ff9200;
    color: #fff;
    flex-wrap: bold;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    height: 32px;
    line-height: 32px;
    width: 200px;
    transition:all 0.3s;
    position: relative;
}
.list-btn button:hover {
    opacity:0.6;
}

.list-btn button:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 9px;
    height: 1px;
    margin: auto;
    background-color: #fff;
}

.list-btn button:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    right: 24px;
    width: 1px;
    height: 9px;
    margin: auto;
    background-color: #fff;
}