@charset "utf-8";

/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
    background: white;
    color: black;
}

/* 内外边距通常让各个浏览器样式的表现位置不同 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body, button, input, select, textarea {
    font: 12px \5b8b\4f53, arial, sans-serif;
}

input, select, textarea {
    font-size: 100%;
}

/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ie bug：th 不继承 text-align */
th {
    text-align: inherit;
}

/* 去除默认边框 */
fieldset, img {
    border: none;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}

/* 去掉 firefox 下此元素的边框 */
abbr, acronym {
    border: none;
    font-variant: normal;
}

/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: 500;
}

/* 去掉列表前的标识，li 会继承 */
ol, ul {
    list-style: none;
}

/* 对齐是排版最重要的因素，别让什么都居中 */
caption, th {
    text-align: left;
}

/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 500;
}

q:before, q:after {
    content: '';
}

/* 统一上标和下标 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* 让链接在 hover 状态下显示下划线 */
a:hover {
    text-decoration: none;
}

/* 默认不显示下划线，保持页面简洁 */
ins, a {
    text-decoration: none;
}

/* 去除 ie6 & ie7 焦点点状线 */
a:focus, *:focus {
    outline: none;
}

/* 清除浮动 */
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
    overflow: hidden;
}

.clearfix {
    zoom: 1; /* for ie6 & ie7 */
}

.clear {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
}

/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display: none;
}

.show {
    display: block;
}

/* 设置浮动，减少浮动带来的 bug */
.fl, .fr {
    display: inline;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* file: common.css */

/* 头部样式 */
#index-header {
    width: 100%;
    height: 80px;
    background: #f5f5f5;
}

#index-header .index-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 1200px;
    height: 100%;
    box-sizing: border-box;
}

#index-header .index-wrapper .m-list {
    display: none;
}

#index-header .index-wrapper .logo {
    flex: 0 0 172px;
    width: 172px;
}

#index-header .index-wrapper .logo img {
    width: 100%;
}

#index-header .index-wrapper .search {
    flex: 1;
    height: 36px;
}

#index-header .index-wrapper .search .search-box {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
    width: 40%;
    height: 100%;
    border-radius: 4px;
}

#index-header .index-wrapper .search .search-box .text {
    padding-left: 10px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 0;
}

#index-header .index-wrapper .search .search-box .button {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 16px;
    line-height: 36px;
}

#index-header .index-wrapper .download {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100px;
    width: 100px;
    height: 36px;
    line-height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
}

#index-header .index-wrapper .download .icon {
    color: #6ebff6;
}

#index-header .index-wrapper .download .text {
    padding-left: 5px;
    font-size: 12px;
    color: #333;
}

/* 导航样式 */
#index-nav {
    width: 100%;
    height: 36px;
    line-height: 36px;
    background: #333;
}

#index-nav .nav-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 1200px;
    height: 100%;
}

#index-nav .nav-wrapper a, #index-nav .nav-wrapper div.showNav {
    position: relative;
    left: 0;
    flex: 0 0 8%;
    width: 8%;
    height: 100%;
    text-align: center;
    font-size: 14px;
    color: #fff;
    transition: all .3s ease-in-out;
    z-index: 1;
}

#index-nav .nav-wrapper a:hover {
    background-color: #4b4b4b;
    color: #fff;
}

#index-nav .nav-wrapper a.active {
    background: #f04848
}

#index-nav .nav-wrapper a .hot {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: -5px;
    width: 18px;
    height: 15px;
}

#index-nav .nav-wrapper a .hot img {
    width: 100%;
    height: 100%;
}

#index-nav .nav-wrapper div.showNav .more-list {
    display: none;
    background: #333;
}

#index-nav .nav-wrapper div.showNav .more-list .list {
    display: flex;
    flex-wrap: wrap;
}

#index-nav .nav-wrapper div.showNav .more-list .list a {
    flex: 0 0 100%;
    width: 100%;
}

/* 底部样式 */
#index-footer {
    width: 100%;
    background: #333;
}

#index-footer .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    padding: 30px 0;
    width: 1200px;
    color: #ccc;
    font-size: 12px;
}

#index-footer .footer-wrapper a {
    color: #ccc;
    font-size: 12px;
}

#index-footer .footer-wrapper .footer-left {
    flex: 1;
}

#index-footer .footer-wrapper .footer-left section {
    margin-bottom: 30px;
}

#index-footer .footer-wrapper .footer-left section:nth-child(3n) {
    margin-bottom: 0;
}

#index-footer .footer-wrapper .footer-left .nav {
    display: flex;
    flex-wrap: wrap;
}

#index-footer .footer-wrapper .footer-left .nav a {
    margin-right: 30px;
}

#index-footer .footer-wrapper .footer-left .link .list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

#index-footer .footer-wrapper .footer-left .link .list a {
    margin: 0 3px 3px 0;
}

#index-footer .footer-wrapper .footer-right {
    margin-left: 10%;
    flex: 0 0 20%;
    width: 20%;
    flex-direction: column;
}

#index-footer .footer-wrapper .footer-right .item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#index-footer .footer-wrapper .footer-right .item i.icon {
    padding-right: 10px;
}

/* file: commonMedia.css */
@media screen and (min-width:320px) and (max-width:1024px) {
    html {

        /* iPhone6的375px尺寸作为16px基准，414px正好18px大小, 600 20px */
        font-size: calc(100% + 2 * (100vw - 375px) / 39);
        font-size: calc(16px + 2 * (100vw - 375px) / 39);
    }

    /* 遮罩 */
    #zz-filter {
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1000;
        left: 0;
        top: 0;
        transition: all .5s ease-out;
        display: none;
    }

    /* 适配pc端显示隐藏 */
    #index-header .index-wrapper .download, #index-header .index-wrapper .search, #index-footer .footer-wrapper .footer-right, #index-footer .footer-wrapper .footer-left .nav .su {
        display: none;
    }

    /* 头部 */
    #index-header {
        position: fixed;
        top: 0;
        z-index: 1
    }

    #index-header .index-wrapper {
        width: 100%;
    }

    #index-header .index-wrapper .m-list {
        display: block;
        flex: 0 0 3rem;
        width: 3rem;
        text-align: center;
    }

    #index-header .index-wrapper .m-list span {
        font-size: 1.0rem;
        color: #000;
    }

    #index-header .index-wrapper .logo {
        flex: 1;
        min-width: 0;
        width: auto;
        text-align: center;
    }

    #index-header .index-wrapper .logo img {
        width: 6rem;
        height: 2rem;
    }

    #index-header {
        height: 3rem;
    }

    /* 导航 */
    #index-nav {
        position: fixed;
        top: 3rem;
        left: -100%;
        width: 60%;
        height: 100%;
        overflow: auto;
        transition: all .5s ease-out;
        z-index: 1001;
        line-height: auto;
    }

    #index-nav .nav-wrapper {
        margin: 0;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
    }

    #index-nav .nav-wrapper a, #index-nav .nav-wrapper div.showNav {
        padding-left: 1.0rem;
        flex: 0 0 100%;
        width: 100%;
        height: 2.5rem;
        line-height: 2.5rem;
        text-align: left;
        box-sizing: border-box;
    }

    #index-nav .nav-wrapper a .hot {
        right: auto;
    }

    /* 尾部 */
    #index-footer .footer-wrapper {
        padding: 1.2rem 0.5rem;
        width: 100%;
        font-size: 0.5rem;
        box-sizing: border-box;
    }

    #index-footer .footer-wrapper a {
        font-size: 0.5rem;
    }

    #index-footer .footer-wrapper .footer-left section {
        margin-bottom: 1.2rem;
    }

    #index-footer .footer-wrapper .footer-left .nav a {
        margin: 0 2% 2% 0;
        flex: 0 0 32%;
        width: 32%;
    }

    #index-footer .footer-wrapper .footer-left .nav a:nth-child(3n) {
        margin-right: 0;
    }

    #index-footer .footer-wrapper .footer-left .link .list {
        margin-top: 0.5rem;
    }

    #index-footer .footer-wrapper .footer-left .link .list a {
        margin: 0 0.5rem 0.5rem 0;
    }

}

@media screen and (min-width:414px) and (max-width:1024px) {
    html {

        /* 414px-1000px每100像素宽字体增加1px(18px-22px) */
        font-size: calc(112.5% + 4 * (100vw - 414px) / 586);
        font-size: calc(18px + 4 * (100vw - 414px) / 586);
    }

}

@media screen and (min-width:600px) and (max-width:1024px) {
    html {

        /* 600px-1000px每100像素宽字体增加1px(20px-24px) */
        font-size: calc(125% + 4 * (100vw - 600px) / 400);
        font-size: calc(20px + 4 * (100vw - 600px) / 400);
    }

}

@media screen and (min-width:1000px) and (max-width:1024px) {
    html {

        /* 1000px往后是每100像素0.5px增加 */
        font-size: calc(137.5% + 6 * (100vw - 1000px) / 1000);
        font-size: calc(22px + 6 * (100vw - 1000px) / 1000);
    }

}

/* file: index.css */

/* index top */
#index-content {
    display: flex;
    margin: 30px auto;
    width: 1200px;
    flex-wrap: wrap;
}

#index-content .index-left {
    flex: 1;
}

#index-content .index-left .item-box {
    margin-bottom: 20px;
}

#index-content .index-left .item-box .item-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

#index-content .index-left .item-box .list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

#index-content .index-left .item-box .list .item {
    margin: 0 1.3% 1.3% 0;
    display: flex;
    flex-direction: column;
    flex: 0 0 24%;
    width: 24%;
}

#index-content .index-left .item-box .list .item .img {
    position: relative;
    padding-bottom: 60%;
    margin: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
}

#index-content .index-left .item-box .list .item .img img {
    position: absolute;
    width: 100%;
    height: 100%;
}

#index-content .index-left .item-box .list .item .title {
    margin-top: 5px;
    font-size: 14px;
    color: #2d374b;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#index-content .index-left .item-box .list .item:nth-child(4n) {
    margin-right: 0;
}

#index-content .index-right {
    margin-left: 5%;
    flex: 0 0 30%;
    width: 30%;
}

#index-content .index-right .userinfo {
}

#index-content .index-right .userinfo .user {
    display: flex;
    align-items: center;
}

#index-content .index-right .userinfo .user .avatar {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
}

#index-content .index-right .userinfo .user .avatar img {
    width: 100%;
    height: 100%;
}

#index-content .index-right .userinfo .user .info {
    margin-left: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #999;
}

#index-content .index-right .userinfo .user .info .text {
    display: flex;
    margin-bottom: 5px;
}

#index-content .index-right .userinfo .user .info .text:last-child {
    margin-bottom: 0;
}

#index-content .index-right .userinfo .user .info .text a {
    padding-right: 5px;
    color: #333;
}

#index-content .index-right .userinfo .button {
    margin-top: 10px;
    display: flex;
    height: 32px;
    line-height: 32px;
}

#index-content .index-right .userinfo .button a {
    margin-right: 2%;
    flex: 0 0 49%;
    width: 49%;
    height: 100%;
    text-align: center;
    color: #fff;
    background: #f04848;
}

#index-content .index-right .userinfo .button .send {
    background: #2e76a8;
}

#index-content .index-right .userinfo .button a:nth-child(2n) {
    margin-right: 0;
}

#index-content .index-right .item-box {
    margin-top: 30px;
}

#index-content .index-right .item-box h1.title {
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #dfdfdf;
}

#index-content .index-right .item-box h1.title span.text {
    padding-bottom: 10px;
    border-bottom: 2px solid #f04848;
}

#index-content .index-right .item-box h1.title a.more {
    float: right;
    color: #999;
    font-size: 12px;
    line-height: 29px;
}

#index-content .index-right .item-box .mult-nav-list {
    display: flex;
    flex-wrap: wrap;
}

#index-content .index-right .item-box .mult-nav-list a {
    flex: 0 0 33.3%;
    width: 33.3%;
}

#index-content .index-right .item-box .mult-nav-list a span {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    color: #666;
    font-size: 12px;
}

#index-content .index-right .item-box .mult-nav-list a span i {
    padding-right: 8px;
    color: #ffa09b;
}

#index-content .index-right .item-box .mult-nav-list a span i.icon-right_yuanjiantou {
    padding-left: 8px;
    padding-right: 0;
}

#index-content .index-right .item-box .mult-nav-list a span:hover {
    border: 1px solid #f04848;
    color: #f04848;
}

#index-content .index-right .item-box .mult-nav-list a span:hover i {
    color: #f04848;
}

#index-content .index-right .item-box .list .item, #index-content .index-right .item-box .list1 .item {
    display: flex;
    padding-bottom: 2%;
    margin-bottom: 2%;
    border-bottom: 1px solid #dfdfdf;
}

#index-content .index-right .item-box .list .item .img {
    position: relative;
    margin: 0;
    padding-bottom: 20%;
    flex: 0 0 30%;
    width: 30%;
    height: 0;
    overflow: hidden;
}

#index-content .index-right .item-box .list .item .img img {
    position: absolute;
    width: 100%;
    height: 100%;
}

#index-content .index-right .item-box .list .item .info {
    margin-left: 2%;
    position: relative;
    left: 0;
    flex: 1;
    min-width: 0;
}

#index-content .index-right .item-box .list .item .info .title, #index-content .index-right .item-box .list1 .item .title {
    font-size: 14px;
    color: #2d374b;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#index-content .index-right .item-box .list .item .info .bot {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    color: #666
}

#index-content .index-right .item-box .list .item .info .bot span {
    padding-left: 5px;
}

#index-content .index-right .item-box .list1 .item {
    flex-direction: column;
}

#index-content .index-right .item-box .list1 .item .img {
    position: relative;
    margin: 0 0 2% 0;
    padding-bottom: 50%;
    flex: 0 0 100%;
    width: 100%;
    height: 0;
    overflow: hidden;
}

#index-content .index-right .item-box .list1 .item .img img {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* index middle */
#index-tags {
    margin: 0 auto;
    width: 1200px;
}

#index-tags .tags-box {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

#index-tags .tags-box .tag {
    margin: 0 10px 5px 0px;
    font-weight: bold;
}

#index-tags .tags-box .text {
    padding: 8px 20px;
    margin: 0 5px 5px 0;
    color: #67798a;
    background: #F4F5F6;
}

/* index bottom */
#index-other {
    margin: 30px auto;
    width: 1200px;
}

#index-other .other-box {
    margin-bottom: 30px;
}

#index-other .other-box .other-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
}

#index-other .other-box .other-title span {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

#index-other .other-box .other-title a {
    font-size: 14px;
    color: #999;
}

#index-other .other-box .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#index-other .other-box .list .item {
    margin: 0 2% 1% 0;
    display: flex;
    align-items: center;
    flex: 0 0 32%;
    width: 32%;
}

#index-other .other-box .list .item:nth-child(3n) {
    margin-right: 0;
}

#index-other .other-box .list .item .title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #2d374b;
}

#index-other .other-box .list .item .time {
    flex: 0 0 50px;
    width: 50px;
    font-size: 14px;
    color: #666;
    text-align: right;
}

/* 资讯列表 */
#index-content .index-left .item-box .new-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

#index-content .index-left .item-box .new-list .item {
    margin: 0 0 2% 0;
    padding-bottom: 2%;
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

#index-content .index-left .item-box .new-list .item .img {
    position: relative;
    padding-bottom: 13.3%;
    margin: 0;
    flex: 0 0 20%;
    width: 20%;
    height: 0;
    overflow: hidden;
}

#index-content .index-left .item-box .new-list .item .img img {
    position: absolute;
    width: 100%;
    height: 100%;
}

#index-content .index-left .item-box .new-list .item .info {
    position: relative;
    left: 0;
    margin-left: 2%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

#index-content .index-left .item-box .new-list .item .info .title {
    font-size: 16px;
    color: #2d374b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#index-content .index-left .item-box .new-list .item .info .desc {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#index-content .index-left .item-box .new-list .item .info .time {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

/* file: indexMedia.css */
@media screen and (min-width:320px) and (max-width:1024px) {

    /* index top */
    #index-content {
        padding: 0 0.5rem;
        margin: 4rem 0 2rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    #index-content .index-left, #index-content .index-right {
        margin-left: 0;
        flex: 0 0 100%;
        width: 100%;
    }

    #index-content .index-left .item-box {
        margin-bottom: 1rem;
    }

    #index-content .index-left .item-box .item-title {
        font-size: 1rem;
    }

    #index-content .index-left .item-box .list {
        margin-top: 0.5rem;
    }

    #index-content .index-left .item-box .list .item {
        margin: 0 2% 2% 0;
        flex: 0 0 49%;
        width: 49%;
    }

    #index-content .index-left .item-box .list .item:nth-child(2n) {
        margin-right: 0;
    }

    #index-content .index-left .item-box .list .item .title {
        margin-top: 0.2rem;
        font-size: 0.88rem;
    }

    #index-content .index-right .userinfo .user .avatar {
        flex: 0 0 4.5rem;
        width: 4.5rem;
        height: 4.5rem;
    }

    #index-content .index-right .userinfo .user .info {
        margin-left: 1.0rem;
        font-size: 0.5rem;
    }

    #index-content .index-right .userinfo .user .info .text {
        margin-bottom: 0.3rem;
    }

    #index-content .index-right .userinfo .button {
        margin-top: 1.0rem;
        height: 2rem;
        line-height: 2rem;
    }

    #index-content .index-right .item-box {
        margin-top: 1.2rem;
    }

    #index-content .index-right .item-box h1.title {
        margin-bottom: 1.0rem;
        padding-bottom: 0.5rem;
        font-size: 1rem;
    }

    #index-content .index-right .item-box h1.title span.text {
        padding-bottom: 0.625rem;
    }

    #index-content .index-right .item-box h1.title a.more {
        font-size: 0.5rem;
    }

    #index-content .index-right .item-box .mult-nav-list a span {
        padding: 0.625rem 0;
        font-size: 0.5rem;
    }

    #index-content .index-right .item-box .mult-nav-list a span i {
        padding-right: 0.5rem;
        font-size: 0.5rem;
    }

    #index-content .index-right .item-box .list1 .item .img {
        margin: 0 0 0.5rem 0;
    }

    #index-content .index-right .item-box .list .item, #index-content .index-right .item-box .list1 .item {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    #index-content .index-right .item-box .list .item .info .title, #index-content .index-right .item-box .list1 .item .title {
        font-size: 0.88rem;
    }

    #index-content .index-right .item-box .list .item .img {
        padding-bottom: 5rem;
        flex: 0 0 8rem;
        width: 8rem;
    }

    #index-content .index-right .item-box .list .item .info {
        margin-left: 0.5rem;
    }

    #index-content .index-right .item-box .list .item .info .bot {
        font-size: 0.5rem;
    }

    /* index middle */
    #index-tags {
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    #index-tags .tags-box {
        margin-bottom: 1.2rem;
        font-size: 0.88rem;
    }

    #index-tags .tags-box .tag {
        margin: 0 1rem 0.5rem 0;
    }

    #index-tags .tags-box .text {
        padding: 0.5rem 1rem;
        margin: 0 0.5rem 0.5rem 0;
    }

    #index-other {
        padding: 0 0.5rem;
        margin: 1.2rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    #index-other .other-box {
        margin-bottom: 1.2rem;
    }

    #index-other .other-box .other-title {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    #index-other .other-box .other-title span {
        font-size: 1.0rem;
    }

    #index-other .other-box .other-title a {
        font-size: 0.88rem;
    }

    #index-other .other-box .list .item {
        margin: 0 0 1% 0;
        flex: 0 0 100%;
        width: 100%;
    }

    #index-other .other-box .list .item .title {
        font-size: 0.88rem;
    }

    #index-other .other-box .list .item .time {
        font-size: 0.88rem;
    }

    /* new list */
    #index-content .index-left .item-box .new-list .item {
        margin: 0 0 0.5rem 0;
        padding-bottom: 0.5rem;
    }

    #index-content .index-left .item-box .new-list .item .img {
        padding-bottom: 5rem;
        flex: 0 0 8rem;
        width: 8rem;
    }

    #index-content .index-left .item-box .new-list .item .info {
        margin-left: 0.5rem;
    }

    #index-content .index-left .item-box .new-list .item .info .title {
        font-size: 0.88rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    #index-content .index-left .item-box .new-list .item .info .desc {
        display: none;
    }

    #index-content .index-left .item-box .new-list .item .info .desc, #index-content .index-left .item-box .new-list .item .info .time {
        margin-top: 0.2rem;
        font-size: 0.5rem;
    }

}

/* file: base_new.css */
@media only screen and (max-width:800px) {
    .content-wrapper {
        display: block !important;
        margin: 4rem auto 2rem auto !important;
        max-width: 90% !important;
    }

    .content {
        margin-right: 0 !important;
    }

    .content h2 {
        font-size: 1.2rem !important;
    }

    .con-time {
        margin-top: 0.5rem !important;
    }

    .con-det {
        font-size: 1.0rem !important;
    }

    .con-det p {
        margin-top: 1rem !important;
        font-size: 1.0rem !important;
    }

    .content img {
        width: 100% !important;
        height: 100% !important;
    }

    .ad, .rel-article {
        margin-top: 1.0rem !important
    }

    .rel-article ul {
        font-size: 1rem;
    }

    .ad p, .rel-article p:first-child {
        padding-bottom: 0.5rem !important;
        font-size: 1.0rem !important;
    }

    .rel-article ul li, .hot-item ul li {
        margin-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .rel-article ul li .rel-img {
        flex: 0 0 8rem !important;
        width: 8rem !important;
        height: 5rem !important;
    }

    .hot .article img {
        width: 8rem !important;
        height: 5rem !important;
    }

    .rel-article ul li .rel-info {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .rel-article ul li .rel-info .rel-title {
        font-size: 0.8rem !important;
    }

    .rel-article ul li .rel-info .rel-time {
        margin-top: 0.5rem !important;
        font-size: 0.5rem !important;
    }

    .hot-item ul li span {
        margin-right: 0.5rem !important
    }

    .hot-item ul li img {
        margin-right: 0.5rem !important;
    }

    .hot-item ul li div {
        left: 8.5rem !important
    }

    .hot .article span {
        padding: 0.5rem 0 !important;
        height: auto !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.8rem;
        color: #666;
    }

    .rel-article ul li .rel-info .rel-title {
        display: -webkit-box !important;
        white-space: normal !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .hot .article div {
        bottom: 1rem;
        top: auto !important;
    }

    .content-wrapper .hot {
        margin-top: 0.5rem !important;
        flex: none !important;
        width: 100% !important;
    }

    .content-wrapper .hot-item p {
        font-size: 1.0rem !important;
    }

}

.content-wrapper {
    display: flex;
    margin: 45px auto 0 auto;
    max-width: 1050px;
}

.content {
    flex: 1;
    margin-right: 20px;
}

.con-desc {
    padding: 10px 15px 5px 15px;
    border: 1px solid #ddd;
    margin: 10px 0px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.content .nav {
    font-size: 14px;
    padding-bottom: 10px;
}

.content h1 {
    font-size: 24px;
    font-weight: bold;
}

.content h2 {
    font-size: 24px;
    font-weight: bold;
}

.con-time {
    margin-top: 10px;
    color: #00a499;
}

.con-det p {
    margin-top: 20px;
    line-height: 25px;
    font-size: 16px;
    color: #666;
}

.con-det img {
    max-width: 100%;
    object-fit: contain;
    display: block;
    height: auto !important;
    margin: 0 auto;
}

.content .tags {
    margin-top: 25px;
}

.content .tags-title {
    padding-bottom: 10px;
    font-size: 17px;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}

.content .tags-con {
    line-height: 30px;
    font-size: 14px;
}

.ad, .rel-article {
    margin-top: 20px;
}

.rel-article ul {

    /* display: flex;
    flex-wrap: wrap;*/
}

.rel-article ul li {
    margin-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;    /*width: 50%;
    flex: 0 0 50%;*/
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.rel-article ul li .rel-img {
    flex: 0 0 120px;
    width: 120px;
    height: 75px;
}

.rel-article ul li .rel-img img {
    width: 100%;
    height: 100%;
    border: 1px solid #e2e2e2;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.rel-article ul li .rel-info {
    margin-left: 10px;
    margin-right: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.rel-article ul li .rel-info .rel-title {
    display: block;
    width: 100%;
    color: #222;
    font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;    /*-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;*/
    text-align: justify;
}

.rel-article ul li .rel-info .rel-time {
    margin-top: 5px;
    color: #999;
    font-size: 12px;
}

.ad p, .rel-article p:first-child {
    padding-bottom: 10px;
    font-size: 17px;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}

.hot {
    flex: 0 0 300px;
    width: 300px;
}

.hot .article img {
    flex: 0 0 120px;
    width: 120px;
    height: 75px;    /*margin:10px 0px 0px 10px;*/
    border: 1px solid #e2e2e2;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.hot .article span {
    padding: 10px 0;
    height: 30px;
    flex: 1;
}

.hot .article div {
    flex: 1;
    color: #999;
}

.hot-item p {
    font-size: 17px;
    font-weight: bold;
}

.hot-item .article {
    margin: 0px 0;
}

.hot-item span {
    height: 40px;
    overflow: hidden;
}

.hot-item ul li {
    margin-top: 10px;
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
    left: 0;
    top: 0;
}

.hot-item ul li div {
    position: absolute;
    top: 50px;
    left: 130px;
}

.hot-item ul li img {
    margin-right: 10px;
}

.hot-item ul li span {
    margin-right: 10px;
}




article { margin-top: 20px;}
article .hotbox { height: 175px; padding: 10px 10px 10px 0; border-bottom: 1px solid #E5E5E5; margin-right:10px;}
article .hotbox .hotimg { width: 250px; height: 165px; float: left; display: inline; margin-right: 28px; position: relative;}
article .hotbox .hotimg .hotimgzz { position: absolute; top: 0px; left: 0px; width: 250px; height: 165px;}
article .hotbox .hotimg:hover .hotimgzz { background:#AA0012; opacity:0.5; -moz-opacity:0.5; filter:alpha(opacity=50);}
article .hotbox .hotimg .zzsz {  display: inline-block; *display: inline; zoom: 1; background:transparent; position: absolute; top: 40%; left: 40%; width: 43px; height: 43px;}
article .hotbox .hotimg:hover .zzsz { background: url(../images/symbol-26.png) no-repeat;}
article .hotbox .hotimg .standpoint { position: absolute; top: 0px; left: 0px; width: 68px; height: 30px; font-size: 14px; color: #fff; background-color: #AA0012; text-align: center; line-height: 30px;}
.standpoint a{color: #fff;}
.standpoint a:hover{color: #fff;}
article .hotbox .hotimg img { width: 250px; height: 165px; }
article .hotbox h3 a { color: #333; }
article .hotbox p a { color: #333; }
article .hotbox h3 { font-size: 18px; height: 35px; line-height: 35px; color: #333;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}/*2.25 */
article .hotbox h3:hover a { color: #AA0012; text-decoration:none;}
article .hotbox p { color: #666; font-size: 14px; height: 102px; line-height: 26px;} /* 2.25 */
/*.mainnews .newsl .hot .hotbox span { background: url(../images/symbol-9.png) no-repeat 0 4px; margin-right:20px; display: inline-block !important; *display: inline; zoom: 1; text-indent: 20px; color: #3e3e3e;}
.mainnews .newsl .hot .hotbox span+span { background: url(../images/symbol-11.png) no-repeat 0 4px;}*/

article .hotbox span { background: url(../images/symbol-11.png) no-repeat 0 0px; margin-right:20px; margin-top: 10px;display: inline-block !important; *display: inline; zoom: 1; text-indent: 20px; color: #999;} /* 2.25 */
article .hotbox span+span { background: url(../images/tab_icon.png) no-repeat 0 2px;color: #999;} /*2.25 */
article .hotbox span+span+span { background: url(../images/enjoy_icon.png) no-repeat 0 2px;background-size:14px 14px;float:right;color: #999} /*2.25 */
article .hotbox span a{color: #999;}/*2.25 */



.bottom_tags {
    display: none;
}

.tags {
    font-size: 13px;
    line-height: 30px;
    color: #979797;
    margin-top: 30px;
    padding-bottom: 25px;
}

.tags a {
    display: inline-block;
    background-color: #F4F5F6;
    color: #67798a;
    margin-right: 5px;
    padding: 0 20px;
    background-color: #F4F5F6;
    margin-bottom: 5px;
}

.tags a:hover {
    background-color: #eef0f1;
}




.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    /*padding: 6px 12px;*/
    margin-right:10px;
    margin-right:10px;
    padding:2px 12px;
    height:24px;
    line-height:24px;
    border:1px #cccccc solid;
    background:#fff;
    text-decoration:none;
    color:#808080;
    font-size:12px;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > span:hover, .pagination > li > span:focus {
    z-index: 2;
    color:#368ee0;
    background: white;
    border:1px #368ee0 solid;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
    z-index: 3;
    border: none;
    background: #368ee0;
    color: #fff;
    cursor: default;
}
.pagination a:hover {
    color:#368ee0;
    background: white;
    border:1px #368ee0 solid;
}
.pagination a.cur {
    border:none;
    background:#368ee0;
    color:#fff;
}



