@media only screen and (min-width: 0) {
    div.textList_odd {
        width     : 100%;
        float     : left;
        margin-top: 1em;
    }

    div.textListTitle_odd {
        width        : 100%;
        border-bottom: 1px solid #DDD;
        position     : relative;
        margin-bottom: 10px;
    }

    div.textListTitle_odd img {
        display: none;
    }

    div.textListTitle_odd h2 {
        border-bottom: 3px solid rgb(138, 198, 64);
        position     : relative;
        bottom       : -2px;
        padding-right: .5em;
    }

    div.textListTitle_odd span {
        display: none;
    }

    div.textListBtn_odd {
        width        : 100%;
        float        : left;
        /* margin-top: 10px; */
    }

    button.textListTagBtn_odd {
        padding      : 3px 5px;
        border       : 1px solid rgb(125, 185, 222);
        border-radius: 5px;
        margin-right : 5px;
        margin-bottom: 5px;
        transition   : linear 100ms;
        cursor       : pointer;
        font-size    : .9em;
    }

    button.textListTagBtn_odd:hover {
        background-color: rgba(125, 185, 222, .4);
    }

    button.textListTagBtn_odd[data-used] {
        background-color: rgba(125, 185, 222, .4);
        cursor          : default;
    }

    div.textListContent_odd {
        width: 100%;
        float: left;
    }

    div.textListContent_odd ul {
        float: left;
        width: 100%;
    }

    div.textListContent_odd ul li {
        width     : calc(100% - 10px);
        padding   : 10px 5px;
        float     : left;
        transition: linear 150ms;

    }

    div.textListContent_odd ul li::before {
        content: none;
    }

    div.textListContent_odd ul li:nth-child(2n) {}

    div.textListContent_odd ul li:nth-child(2n+1) {
        background-color: rgba(138, 198, 64, .1);
    }

    div.textListContent_odd ul li:hover {
        background-color: rgba(157, 207, 95, 0.4);
        font-weight     : bolder;
    }

    div.textListContent_odd ul li>span {
        float: left;
    }

    div.textListContent_odd ul li>span:nth-child(1) {
        width     : 6em;
        font-size : .7em;
        margin-top: .4em;
    }

    div.textListContent_odd ul li>span:nth-child(2) {
        width        : calc(100% - 6em * .7);
        overflow     : hidden;
        white-space  : nowrap;
        text-overflow: ellipsis;
    }

    div.textListContent_odd ul li>span:nth-child(2)>a {
        width: 100%;
    }

    div.textListContent_odd ul li>span:nth-child(2)>a:hover {
        text-decoration: underline;
    }

    div.textListBlock_odd {
        width     : 100%;
        margin-top: 1em;
    }
}