@charset "utf-8";

.title-date-list li,
.title-date-list li.views-row {
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #ddd;
}

.title-date-list .field-title,
.title-date-list .field-date {
    display: inline-block;
}

.title-date-list .field-title {
    max-width: 90%;
    float: left;
}

.title-date-list .field-title a {
    width: 100%;
    height: 24px;
    display: inline-block;
    font-size: 16px;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -moz-binding: url(ellipsis.xml#ellipsis);
    transition-duration: 0.4s;
}

.title-date-list .field-title a:hover {
    text-decoration: underline;
    color: #b92b2b;
    transition-duration: 0.4s;
}

.title-date-list .field-date {
    float: right;
    color: #777;
}


@media all and (max-width: 767px) {
    
    .title-date-list li.views-row {
        padding-bottom: 4px;
    }

    .title-date-list .field-title {
        max-width: 72%;
    }

    .title-date-list .field-title a {
        font-size: 15px;
    }
    
}

/* Tablets Portrait 的样式*/
@media all and (min-width:768px) and (max-width: 959px) and (orientation: portrait) {

    .title-date-list .field-title {
        max-width: 84%;
    }
    
}

/* Tablets Landscape 的样式 */
@media all and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

    .title-date-list .field-title {
        max-width: 84%;
    }
    
}