﻿@charset "utf-8";
/* 清除标签默认样式 开始 */
html {
    color: #000;
    background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}
/* 清除标签默认样式 结束 */

.content {
    padding: 20px;
}

    .content #share li {
        position: relative;
        overflow: hidden;
        padding: 15px;
        line-height: 24px;
    }

        .content #share li a {
            position: relative;
            z-index: 1;
            display: block;
            text-decoration: none;
        }

        .content #share li h4 {
            position: relative;
            overflow: hidden;
            margin-bottom: 10px;
            max-height: 48px;
            color: #337ab7;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-weight: 700;
            font-size: 16px;
            line-height: 24px;
        }

        .content #share li p {
            margin-bottom: 20px;
            color: #797979;
            font-size: 14px;
            line-height: 24px;
            word-break: break-all;
        }

            .content #share li p .md-orange {
                position: relative;
                padding: 5px 15px;
                display: inline-block;
                color: #fff;
                background-color: #ff9d08;
                cursor: pointer;
            }

            .content #share li p .md-blue {
                position: relative;
                padding: 5px 15px;
                display: inline-block;
                color: #fff;
                background-color: #2d8fff;
                cursor: pointer;
            }




        .content #share li:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #f0f3f8;
            z-index: 0;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
        }

        .content #share li:hover:after {
            width: 100%;
        }
/* 分页 新样式 */
.min_page {
    display: block;
    height: 40px;
    clear: both;
    display: table;
    margin: 0 auto;
}

    .min_page ul {
        height: 40px;
        padding: 20px 0;
        text-align: center;
    }

    .min_page .pages {
        font: 0/0 microsoft yahei;
        padding: 20px 0;
        text-align: center;
    }

        .min_page .pages a,
        .min_page .pages span {
            position: relative;
            display: inline-block;
            padding: 6px 12px;
            margin: 0 6px;
            line-height: 1.428571429;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            font-size: 16px;
            cursor: default;
        }

        .min_page .pages a {
            text-decoration: none;
        }

            .min_page .pages a:hover {
                z-index: 2;
                color: #fff;
                cursor: pointer;
                background-color: #428bca;
                border-color: #428bca;
            }

        .min_page .pages .current {
            z-index: 2;
            color: #fff;
            cursor: pointer;
            background-color: #428bca;
            border-color: #428bca;
        }

        .min_page .pages .disabled {
            color: #ccc;
            cursor: not-allowed;
        }