/*
Theme ID: ecms77
Author: 懒鸟飞移植
Author QQ：1430826160
Author Email：1430826160@qq.com
Author URL: http://www.lazybirdfly.com/
*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #f9f9f9;
    font-family: "Microsoft YaHei UI", Roboto, Noto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    padding: 0;
    margin: 0;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

input, button, select {
    outline: none;
    border: none;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

a:hover {
    color: #ff7f00;
    text-decoration: none;
}

p {
    margin: 6px;
}

::-moz-selection {
    background: #ff7f00;
    color: #fff;
}

::selection {
    background: #ff7f00;
    color: #fff;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #222;
}

::-webkit-scrollbar-track {
    background: #222;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.container {
    position: relative;
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.header + .container {
    margin-top: 60px;
}

@media (max-width: 1300px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 991px) {
    .container {
        width: 98%;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
    }

    .header + .container {
        margin-top: 50px;
    }
}

.header {
    position: fixed;
    display: flex;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    font-size: 0;
    background: transparent;
    z-index: 999;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 767px) {
    .header {
        height: 55px;
    }
}

.header.fixed {
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px #ddd;
}

@media (min-width: 767px) {
    .header.fixed {
        height: 55px;
    }

    .header.fixed a {
        color: #666;
    }

    .nav-bar {
        display: none;
    }
}

.nav-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}

.nav-bar.active {
    -webkit-transform: rotateZ(90deg) scale(0.8);
    -moz-transform: rotateZ(90deg) scale(0.8);
    -o-transform: rotateZ(90deg) scale(0.8);
    transform: rotateZ(90deg) scale(0.8);
}

.nav-bar span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 24px auto;
    width: 25px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.nav-bar span::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 0;
    width: 16px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.nav-bar span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 16px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.logo {
    display: inline-flex;
    justify-content: center;
    width: 150px;
    padding: 8px 0;
}

@media (max-width: 767px) {
    .logo {
        display: flex;
        margin-left: 10px;
        height: 48px;
        padding: 10px 0;
    }
}

.logo img {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
}

.nav {
    display: flex;
    margin-left: 20px;
    font-size: 14px;
    float: right;
}

@media (max-width: 767px) {
    .nav {
        flex-direction: column;
        position: fixed;
        top: 52px;
        right: 0;
        float: none;
        margin-left: 0;
        opacity: 0;
        visibility: hidden;
        text-align: right;
        z-index: 999;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav.show {
        opacity: 1;
        visibility: visible;
    }
}

.nav li {
    position: relative;
}

.nav.show li {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
}

.nav.show li:nth-child(even) {
    transition-duration: .4s;
}

.nav li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 50%;
    bottom: 0;
    background: #ff7f00;
    border-radius: 4px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav li.active::after, .nav li:hover::after {
    width: 100%;
    margin-left: -50%;
}

@media (max-width: 767px) {
    .nav li {
        right: -105%;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav li::after {
        display: none;
    }
}

.nav li a {
    display: inline-block;
    color: #eee;
    padding: 0 12px;
    height: 55px;
    line-height: 55px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.nav>li:hover .subnav{
    display: block;
}
.nav .subnav{
    position: absolute;
    background-color: #fff;
    width: 100%;
    display: none;
    border: 1px solid #eee;
}
.nav .subnav li{}
.nav .subnav li a{
    height: auto;
    line-height: normal;
    color: #333;
    padding:10px 0;
    width: 100%;
    display: block;
    text-align: center;
}

@media (max-width: 767px) {
    .nav li a {
        padding: 8px 8px 8px 15px;
        font-size: 14px;
        color: #666;
        height: auto;
        line-height: normal;
        margin: 3px 0;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 8px #ccc;
        border-radius: 25px 0 0 25px;
    }

    .nav li a:hover, .nav li.active a {
        color: #fff;
        background: #ff7f00;
        box-shadow: 0 0 8px #ff7f00;
    }
}

@media (min-width: 767px) {
    .transparent-mark {
        display: none;
    }
}

.transparent-mark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: #333 center center/cover;
}

@media (max-width: 767px) {
    .banner {
        height: 180px;
        padding-top: 25px;
    }
}

.search-type, .search-main {
    display: flex;
    width: 80%;
    max-width: 700px;
    overflow-x: auto;
}

@media (max-width: 480px) {
    .search-type, .search-main {
        width: 95%;
    }
}

.search-type .title {
    color: #ccc;
    padding: 6px 12px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .search-type .title {
        padding: 4px 10px;
    }
}

.search-type li {
    color: #ddd;
    padding: 6px 18px;
    border-radius: 4px 4px 0 0;
    margin-right: 4px;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 480px) {
    .search-type li {
        padding: 4px 12px;
    }
}

.search-type li:hover, .search-type li.active {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
}

.search-main .search-input {
    flex: auto;
    font-size: 15px;
    padding: 8px 15px;
    color: #555;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 480px) {
    .search-main .search-input {
        padding: 4px 12px;
        font-size: 14px;
    }
}

.search-main .search-btn {
    width: 100px;
    height: 45px;
    font-size: 15px;
    color: #fff;
    margin-left: -1px;
    border-radius: 0 4px 4px 0;
    background: rgba(255, 127, 0, 0.85);
    cursor: pointer;
}

@media (max-width: 480px) {
    .search-main .search-btn {
        height: 38px;
        width: 80px;
        font-size: 14px;
    }
}

.sort {
    position: fixed;
    top: 50%;
    left: 0;
    width: 32px;
    margin: 0;
    border-radius: 8px;
    z-index: 998;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.sort li {
    position: relative;
    margin: 4px 0;
}

.sort li a {
    position: relative;
    display: inline-block;
    height: 32px;
    text-align: right;
    background: rgba(255, 255, 255, .85);
    padding: 6px 8px 6px 6px;
    box-shadow: 0 0 8px #ccc;
    border-radius: 0 25px 25px 0;
    white-space: nowrap;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-100%) translateX(30px);
    -moz-transform: translateX(-100%) translateX(30px);
    -o-transform: translateX(-100%) translateX(30px);
    transform: translateX(-100%) translateX(30px);
}

.sort li a:hover, .sort li a.active {
    color: #fff;
    background: #ff7f00;
}

.sort li a:hover {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.main {
    float: left;
    width: calc(100% - 300px);
}

@media (max-width: 991px) {
    .main {
        width: 100%;
    }
}

.side {
    float: left;
    width: 300px;
    padding-top: 8px;
    padding-right: 8px;
}

@media (max-width: 991px) {
    .side {
        width: 100%;
        padding: 0;
        display: none;
    }
}

.side .card {
    margin: 0 0 8px;
}

@media (max-width: 991px) {
    .side .card {
        margin: 5px;
    }
}

.card {
    position: relative;
    background: #fff;
    box-shadow: 0 0 8px #eee;
    border-radius: 8px;
    margin: 8px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .card {
        margin: 5px;
    }
}

.card .card-head {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 15px;
    border-bottom: 1px solid #f2f2f2;
}

@media (max-width: 767px) {
    .card .card-head {
        font-size: 14px;
        padding: 10px 12px;
    }
}

.card .card-head i {
    margin-right: 6px;
}

.card .card-head .more {
    position: absolute;
    right: 8px;
    color: #666;
}

.card .card-body {
    padding: 8px;
    font-size: 0;
}

.card .card-body .item {
    display: inline-block;
    width: 14.2857143%;
    color: #666;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: font-weight, background, transform .3s;
    -moz-transition: font-weight, background, transform .3s;
    -o-transition: font-weight, background, transform .3s;
    transition: font-weight, background, transform .3s;
}

@media (max-width: 1300px) {
    .card .card-body .item {
        width: 16.6666667%;
    }
}

@media (max-width: 767px) {
    .card .card-body .item {
        width: 25%;
    }
}

@media (max-width: 480px) {
    .card .card-body .item {
        width: 33.3333333%;
        font-size: 13px;
    }
}

.card .card-body .item:hover {
    font-weight: 600;
    background: #eee;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.card .card-body .item .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.card .card-body .item:hover .icon {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

.card .card-body .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

@media (max-width: 480px) {
    .card .card-body .item .name {
        line-height: 20px;
    }
}

.card .card-body .content {
    font-size: 16px;
    padding: 10px 20px;
    line-height: 30px;
}

@media (max-width: 767px) {
    .card .card-body .content {
        font-size: 13px;
    }
}

.card .card-body .content .info {
    display: flex;
    justify-content: space-around;
    color: #888;
    font-size: 13px;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.card .card-body .content img {
    max-width: 100%;
    height: auto !important;
    border-radius: 4px;
}

.card .card-body .post {
    display: inline-flex;
    width: 50%;
    color: #555;
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 767px) {
    .card .card-body .post {
        width: 100%;
    }

.logo img {
    height: auto;
}

}

.card .card-body .post:hover {
    color: #555;
    background: #eee;
}

.card .card-body .post .pic {
    flex: none;
    width: 120px;
    height: 85px;
}

@media (max-width: 767px) {
    .card .card-body .post .pic {
        width: 95px;
        height: 70px;
    }
}

.card .card-body .post .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card .card-body .post .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
    padding: 4px 0;
}

.card .card-body .post .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 15px;
    height: 2.85714286em;
}

.card .card-body .post .info {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 12px;
}

.board {
    display: flex;
    height: 44px;
    padding: 12px 8px;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.board .icon {
    margin: 0 8px 0 4px;
}

.board span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top-grid {
    font-size: 0;
    padding: 8px;
}

.top-grid .item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 14.2857143%;
    color: #666;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px;
    -webkit-transition: font-weight, background, transform .3s;
    -moz-transition: font-weight, background, transform .3s;
    -o-transition: font-weight, background, transform .3s;
    transition: font-weight, background, transform .3s;
}

@media (max-width: 767px) {
    .top-grid .item {
        width: 20%;
    }
}

@media (max-width: 480px) {
    .top-grid .item {
        width: 25%;
        padding: 10px 5px;
        font-size: 13px;
    }
}

.top-grid .item:hover {
    background: #eee;
    font-weight: 600;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.top-grid .item .icon {
    width: 30px;
    height: 30px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 480px) {
    .top-grid .item .icon {
        width: 25px;
        height: 25px;
    }
}

.top-grid .item:hover .icon {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

.top-grid .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-grid .item .name {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.view-list a {
    display: flex;
    padding: 6px;
    line-height: 25px;
    font-size: 14px;
    color: #666;
    border-radius: 25px;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.view-list a:hover {
    background: #eee;
}

.view-list a .rank {
    flex: none;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    text-align: center;
}

.view-list a:nth-child(1) .rank {
    font-size: 0;
    background: url("../images/rank_1.png") no-repeat 50% 50%/85%;
}

.view-list a:nth-child(2) .rank {
    font-size: 0;
    background: url("../images/rank_2.png") no-repeat 50% 50%/85%;
}

.view-list a:nth-child(3) .rank {
    font-size: 0;
    background: url("../images/rank_3.png") no-repeat 50% 50%/85%;
}

.view-list a .icon {
    flex: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-right: 4px;
}

.view-list a .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-list a .name {
    flex: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.view-list a .view {
    flex: none;
    color: #ff7f00;
    font-size: 15px;
    font-style: italic;
    border-radius: 4px;
    margin-right: 6px;
}

.side-common {
    font-size: 14px;
}

.side-common p {
    margin: 12px 8px;
}

.side-latest.oz-timeline .oz-timeline-main {
    padding: 3px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.side-latest.oz-timeline .oz-timeline-main .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.side-latest.oz-timeline .oz-timeline-main .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-latest.oz-timeline .oz-timeline-main .name {
    line-height: 35px;
    vertical-align: middle;
}

.view-box {
    overflow: hidden;
}

.view-box div {
    padding: 0;
}

.view-box div:nth-child(2) .card {
    margin: 8px 0;
}

@media (max-width: 991px) {
    .view-box div:nth-child(2) .card {
        margin: 8px 8px 8px 0;
    }

    .view-box div:nth-child(3) .card {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .view-box div:nth-child(2) .card {
        margin: 5px !important;
    }
}

.part-side {
    float: left;
    width: 280px;
    padding: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .part-side {
        width: 100%;
        padding: 0;
        float: none;
    }
}

.part-side .site-img {
    width: 100%;
    height: 180px;
    margin-bottom: 5px;
    border-radius: 4px;
    box-shadow: 0 0 10px #ddd;
}

@media (max-width: 767px) {
    .part-side .site-img {
        position: absolute;
        top: 20px;
        left: 51%;
        width: 210px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .part-side .site-img {
        left: auto;
        right: 15px;
        width: 40%;
        height: 35%;
    }
}

.part-side .site-img img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.part-side .oz-btn {
    margin: 5px 0;
}

@media (max-width: 767px) {
    .part-side .oz-btn {
        width: 48%;
        margin: 1%;
        font-size: 14px;
    }
}

.part-main {
    display: inline-block;
    width: calc(100% - 280px);
    padding: 5px;
    font-size: 14px;
    vertical-align: top;
}

@media (max-width: 767px) {
    .part-main {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .part-main {
        font-size: 13px;
    }
}

.part-main .site-name {
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: normal;
    text-align: center;
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .part-main .site-name {
        width: 50%;
        padding-top: 0;
        font-size: 18px;
        line-height: 32px;
    }
}

.part-main span {
    line-height: 42px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1;
}

@media (max-width: 1300px) {
    .part-main span {
        line-height: 32px;
        padding: 6px;
    }
}

@media (max-width: 767px) {
    .part-main span {
        line-height: 26px;
        padding: 4px;
    }
}

.part-main img {
    vertical-align: middle;
    margin-top: -4px;
}

.links {
    clear: both;
}

.links .card-head::before {
    content: '';
    position: absolute;
    left: 5px;
    width: 4px;
    height: 22px;
    background: #ff7f00;
    border-radius: 2px;
}

.links a {
    display: inline-block;
    font-size: 13px;
    padding: 5px 12px;
    margin: 2px;
    color: #666;
    background: #eee;
    border-radius: 25px;
    -webkit-transition: color, background .3s;
    -moz-transition: color, background .3s;
    -o-transition: color, background .3s;
    transition: color, background .3s;
}

.links a:hover {
    color: #fff;
    background: #ff7f00;
}

.suspend {
    position: fixed;
    right: 2%;
    bottom: 5%;
}

.suspend li {
    position: relative;
    width: 32px;
    height: 32px;
    margin: 3px;
    line-height: 32px;
    font-size: 13px;
    text-align: center;
    color: #eee;
    background: rgba(0, 0, 0, .8);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.suspend li a {
    color: #eee;
}

.suspend li a:hover {
    color: #fff;
}

.suspend li:hover {
    color: #fff;
    background: #ff7f00;
}

.suspend li:hover .more {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.suspend .more {
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 0;
    right: 40px;
    height: 32px;
    padding: 0 10px;
    line-height: 32px;
    white-space: nowrap;
    background: rgba(0, 0, 0, .8);
    border-radius: 2px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.suspend .more::after {
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 5px);
    right: -4px;
    border-top: 5px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, .8);
    border-bottom: 5px solid transparent;
}

.suspend .more.weixin {
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    padding: 5px;
}

.suspend .more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-top {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.back-top.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.footer {
    text-align: center;
    margin-top: 8px;
    padding: 10px;
    font-size: 13px;
    background: #fff;
    box-shadow: 0 0 8px #eee;
}

#checkCodeImage {
    height: 36px;
    cursor: pointer;
}

.pagination {
    padding: 8px;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: inline-block;
    color: #666;
    background: #fff;
    border: 1px solid #ddd;
    padding: 4px 10px;
    margin: 0 2px;
    border-radius: 25px;
}

.pagination li a:hover {
    background: #eee;
}

.pagination .active a {
    color: #fff;
    background: #ff7f00;
    border: 1px solid #ff7f00;
}

.pagination .disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.ad {
    display: block;
}

.ad img {
    width: 100%;
}

.side .card .post {
    width: 100%;
}

.side .card .post .pic {
    width: 80px;
    height: 60px;
}

.side .card .post .text {
    padding: 0;
}

.side .card .post .title {
    font-size: 14px;
}

.side .card .post .info {
    font-size: 11px;
}

.side .card .post-view .post {
    position: relative;
    padding-left: 30px;
}

.side .post-view .post .rank {
    position: absolute;
    top: 50%;
    left: 2px;
    width: 25px;
    height: 25px;
    text-align: center;
    z-index: 1;
    transform: translateY(-50%);
}

.side .post-view .post:nth-child(1) .rank {
    font-size: 0;
    background: url("../images/rank_1.png") no-repeat 50% 50%/85%;
}

.side .post-view .post:nth-child(2) .rank {
    font-size: 0;
    background: url("../images/rank_2.png") no-repeat 50% 50%/85%;
}

.side .post-view .post:nth-child(3) .rank {
    font-size: 0;
    background: url("../images/rank_3.png") no-repeat 50% 50%/85%;
}

.side .side-sort {
}

.side .side-sort > a {
    display: inline-block;
    width: 50%;
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 10px 12px;
    border-radius: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.side .side-sort > a:hover, .side .side-sort > a.active {
    background: #eee;
}

.side .rand-site {

}

.side .rand-site a {
    display: inline-block;
    width: 50%;
    color: #666;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.side .rand-site a:hover {
    font-weight: 600;
    background: #eee;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.side .rand-site a .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.side .rand-site a .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}



/*****插入样式*****/
.col-xs-12 {
    float: left;
    width: 100%;
}

.col-md-8 {
    float: left;
    width: 66.666666666667%;
}
.col-md-4 {
    float: left;
    width: 33.333333333333%;
}
.fl {
    float: left;
}
.blur {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false);
}
.part .post-single .pic {
    width: 200px;
    height: 200px;
    background: #f1f5f8;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.part .post-single .pic .blur-layer {
    width: inherit;
    height: inherit;
    opacity: .2;
}
.part{background:#fff;margin:8px;
box-shadow: 0 0 8px #eee;
border-radius: 8px;}
.part .tt {padding: 20px 20px 5px 20px;
    line-height:16px;border-bottom: 1px solid #f1f4f9;
    background: #fff;z-index: 1;color:#6b7386;
    font-size:18px;font-weight:bold;}
.part .tt .info{color:#6b7386;}
.part .bar{position:relative;border-bottom: 1px solid #f1f4f9;}
.part .bar .tt{position:relative;width: 76%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;border: none;}
.part .r-intro{position:absolute;right:20px;top:18px;z-index:2;color:#6b7386;}
.part .r-intro .data,.part .r-intro .data .fa{font-weight:300;font-size:14px;padding:0 3px 0 18px;}
.part .r-intro .data .fa{font-size:12px;}
.part .tt a{display:inline-block;float:right;color:#6b7386;font-size:12px;font-weight:400;}
.part .r-intro a:hover{color:#ff3636}
.part .post-single .pic{width:200px;height:200px;background:#f1f5f8;position:relative;overflow:hidden;border-radius: 5px;}
.part .post-single .pic .blur-layer{width:inherit;height:inherit;opacity:.2;}
.part .post-single .pic img{height:52px;width:52px; position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;border: 2px solid rgba(255,255,255,.9);border-radius: 50%;animation: rotate 3s linear infinite;background: #fff;}
@keyframes rotate{from{transform: rotate(0deg)}to{transform: rotate(360deg)}}
.part .post-single .list{margin-left:230px;font-size:14px;margin-top: 5px;}
.ad_zone{}
.part .post-single .list p{padding:2px 0;}
.part .post-single .list .tag .padding{padding-right: 10px;}
.part .post-single .list .tag a,.art-tag a{color: #6b7386;background: #f1f5f8;text-align: center;height: 22px;line-height: 22px;border-radius: 50px;display: inline-block;padding: 2px 6px;font-size: 12px;}
.art-tag a{height: 24px;line-height: 24px;padding: 0px 8px;}
.art-tag{margin-top:20px;}
.part .post-single .list .tag a:hover{color: #333;background: #f1f5f8}
.part .post-single .list .seo a{padding-right:15px;}
.part .post-single .list .seo .fa{padding-right:3px;}
.part .post-single .list .btn{border:1px solid #dadfec;color:#6b7386;background:#f1f5f8;text-align:center;height:36px;line-height:36px;border-radius:3px;width:120px;display:block;margin-top: 5px;margin-bottom: 15px}
.part .post-single .list .btn:hover{border:1px solid #6b7386;background:#6b7386;color:#fff;}
.part .art-main{font-size:16px;padding: 20px 30px;}
.art-copyright{background:#f8f8f8;padding:1em 1.5em;margin-top:20px;font-weight:200;}
.art-copyright .copyright,.art-copyright .from{font-weight:200;padding-top:10px}
.part .art-main p{font-weight:200;}
.part .art-main h1{font-size:26px;padding:8px 0;}
.part .art-main h2{font-size:22px;padding:8px 0;}
.part .art-main h3{font-size:20px;padding:8px 0;}
.part .art-main h4{font-size:16px;padding:8px 0;}
.part .art-main h5{font-size:14px;padding:8px 0;}
.part .art-main h6{font-size:12px;padding:8px 0;}
.part .items{padding:20px;overflow:hidden;}
.part .item{position:relative; margin: 10px 0;}
.part .item .link .fa{position:absolute;right: 30px;top: 30px;color: #6b7386;font-size: 16px;border: 1px solid #6b7386;border-radius: 50%;width: 18px;height: 18px;text-align: center;padding-left: 2px;opacity:.6;}
.part .item .link:hover .fa{border: 1px solid #aaa;background:#eee;}
.part .item .a{transition: all .32s ease-in-out;display:block;width:100%;padding:26px 8%;box-sizing:border-box;}
.part .item .a:hover{/*background:#f8fbfc;*/box-shadow: 0px 5px 28px 0px rgba(65, 106, 123, 0.2);border-radius: 5px;}
.part .item .a img{box-shadow: 0 0px 1px 0 rgba(0,0,0,.2);float:left;width:32px;height:32px;border-radius:100%}
.part .item .a h3{max-width: 68%;font-weight: normal;margin-left:40px;color:#6b7386;font-size:16px;height:21px;line-height:21px;margin-bottom:8px;margin-top:3px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.part .item .a h3 i{color:#f84b44}
.part .item .a p{margin-left:41px;color:#abb0bd;font-size:12px;height:3em;line-height:1.5em;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.part .item .a:hover h3{opacity:1;}
.part .item .a:hover p{color:#abb0bd}
.top-show{color:#ff3636;padding-right:5px;}
/*文章格子*/
.part .art-item{background:#fff;margin-bottom:20px;border-radius: 5px;padding-bottom: 10px;box-shadow: 0px 1px 6px 0px rgba(65, 106, 123, 0.1);}
.part .art-item h3{margin:10px 20px;height: 21px;line-height: 21px;overflow: hidden;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;font-weight:normal;}
.part .art-item:hover{background:#fff;box-shadow: 0px 15px 28px 0px rgba(65, 106, 123, 0.2);border-radius: 5px;}
.part .art-item .art-a img{width:100%;height:152px;border-radius:5px;border-bottom-right-radius:0;border-bottom-left-radius:0;}
.part .art-item p{margin:10px 20px;color:#abb0bd;font-size:12px;height:3em;line-height:1.5em;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
@media (max-width:1240px){
    .quick-nav{display:none;}.part .art-item h3{height:42px;}
    .part .art-item .art-a img{height:92px;}
    .part .art-item h3{font-size:14px}
    .part .art-item h3,.part .art-item p{margin:10px;margin-top:0;}
}
@media (max-width:1199px){
.quick-nav{display:none;}    
.part .item .a{padding:12px 8px}
#banner-bear{height:35.1vh;}
.typing{width: 80%;top:30%;text-align: center;font-size: 1em;}
.part .item .link .fa{right: 20px;top: 20px;}
.part .bar .tt {line-height: 1.4;font-size:18px;position:static;border-bottom:none;width:100%;}
.part .bar,.night .part .bar{border-bottom:none;}
.part .bar{margin-bottom: 15px;}
.part .bar .tt{height: 2.4em;overflow: hidden;}
.part .r-intro{position: absolute;left: 16px;top: 18px;z-index: 2;color: #6b7386;padding-top: 20px;}
.flogo{display:none !important}
.breadnav{padding-bottom:0!important;}
.header .nav-bar li.active::before, .header .nav-bar li[class*="li-cate-"]::before{bottom:8px;}
.header .submit{display:none;}
.swiper-container{margin-bottom:10px!important;width:100%;height:45vw}
.swiper-slide .p{font-size:16px;bottom:1em}
.swiper-container-horizontal>.swiper-pagination{top:90%}
.swiper-button-prev{left:0}
.swiper-button-next{right:0}
.swiper-pagination-bullet{width:.5em;border-radius:100px}
.hidden-sm-md-lg{display:none;}
.primary-menus ul {overflow-x: scroll;white-space: nowrap;}
}
@media (max-width:991px){
.part .item .a{padding:14px 18px}
.same-height-r{padding-left:10px;}
.verify-wrap img{top:8px!important;}
#banner-bear .submit{/*display:block!important;*/font-weight: 300;color: #fff;position: absolute;top: 50%;left: 50%;z-index: 1;transform: translate(-50%, -50%);}
.typing{width: 90%;text-align: center;font-size: 18px;}
}
@media (max-width:767px){
.col-xs-12 {
    float: none;
    width: 100%;
}

.part h2{padding:16px 24px}
.part .items{padding:15px}
.part .item .a{padding:12px 0}
.part .item .link .fa{display:none;}
#divCommentPost input.text{width:100%!important;margin: 8px 0;}
.part .tt{padding:15px;border-bottom: 1px solid #eee;}

.part .r-intro .data{float:none;display: block;}
.part .r-intro .data, .part .r-intro .data .fa{padding: 5px 2px 0 0;}
.part .r-intro .data .info{padding-right:5px;}
.float-none{float:none!important;}
.part .post-single .pic{width:100%;height:100px;margin-bottom:4%}
.part .post-single .list{margin-left:0;}
.ad_zone{display: none;}
.part .art-main{padding: 0}
.msg img.avatar{width:32px!important;height:32px!important;padding:0px!important;}
ul.msg ul.msg{margin-top:10px!important;}

.footer-copyright p span{padding:0 2px!important;}
.footer-copyright p{margin-bottom: 0!important;line-height: 20px!important;}

li.msgarticle{margin-left:32px!important;padding-top:0!important;}
}




/********响应式区块********/
.col-lg-12,.col-md-12,.col-sm-12,.col-xl-12,.col-xs-12{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-12{float:left;width:100%}
@media (min-width:768px){.col-sm-12{float:left;width:100%}
}
@media (min-width:992px){.col-md-12{float:left;width:100%}
}
@media (min-width:1200px){.col-lg-12{float:left;width:100%}
}
@media (min-width:1620px){.col-xl-12{float:left;width:100%}
}
.col-lg-11,.col-md-11,.col-sm-11,.col-xl-11,.col-xs-11{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-11{float:left;width:91.666666666667%}
@media (min-width:768px){.col-sm-11{float:left;width:91.666666666667%}
}
@media (min-width:992px){.col-md-11{float:left;width:91.666666666667%}
}
@media (min-width:1200px){.col-lg-11{float:left;width:91.666666666667%}
}
@media (min-width:1620px){.col-xl-11{float:left;width:91.666666666667%}
}
.col-lg-10,.col-md-10,.col-sm-10,.col-xl-10,.col-xs-10{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-10{float:left;width:83.333333333333%}
@media (min-width:768px){.col-sm-10{float:left;width:83.333333333333%}
}
@media (min-width:992px){.col-md-10{float:left;width:83.333333333333%}
}
@media (min-width:1200px){.col-lg-10{float:left;width:83.333333333333%}
}
@media (min-width:1620px){.col-xl-10{float:left;width:83.333333333333%}
}
.col-lg-9,.col-md-9,.col-sm-9,.col-xl-9,.col-xs-9{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-9{float:left;width:75%}
@media (min-width:768px){.col-sm-9{float:left;width:75%}
}
@media (min-width:992px){.col-md-9{float:left;width:75%}
}
@media (min-width:1200px){.col-lg-9{float:left;width:75%}
}
@media (min-width:1620px){.col-xl-9{float:left;width:75%}
}
.col-lg-8,.col-md-8,.col-sm-8,.col-xl-8,.col-xs-8{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-8{float:left;width:66.666666666667%}
@media (min-width:768px){.col-sm-8{float:left;width:66.666666666667%}
}
@media (min-width:992px){.col-md-8{float:left;width:66.666666666667%}
}
@media (min-width:1200px){.col-lg-8{float:left;width:66.666666666667%}
}
@media (min-width:1620px){.col-xl-8{float:left;width:66.666666666667%}
}
.col-lg-7,.col-md-7,.col-sm-7,.col-xl-7,.col-xs-7{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-7{float:left;width:58.333333333333%}
@media (min-width:768px){.col-sm-7{float:left;width:58.333333333333%}
}
@media (min-width:992px){.col-md-7{float:left;width:58.333333333333%}
}
@media (min-width:1200px){.col-lg-7{float:left;width:58.333333333333%}
}
@media (min-width:1620px){.col-xl-7{float:left;width:58.333333333333%}
}
.col-lg-6,.col-md-6,.col-sm-6,.col-xl-6,.col-xs-6{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-6{float:left;width:50%}
@media (min-width:768px){.col-sm-6{float:left;width:50%}
}
@media (min-width:992px){.col-md-6{float:left;width:50%}
}
@media (min-width:1200px){.col-lg-6{float:left;width:50%}
}
@media (min-width:1620px){.col-xl-6{float:left;width:50%}
}
.col-lg-5,.col-md-5,.col-sm-5,.col-xl-5,.col-xs-5{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-5{float:left;width:41.666666666667%}
@media (min-width:768px){.col-sm-5{float:left;width:41.666666666667%}
}
@media (min-width:992px){.col-md-5{float:left;width:41.666666666667%}
}
@media (min-width:1200px){.col-lg-5{float:left;width:41.666666666667%}
}
@media (min-width:1620px){.col-xl-5{float:left;width:41.666666666667%}
}
.col-lg-4,.col-md-4,.col-sm-4,.col-xl-4,.col-xs-4{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-4{float:left;width:33.333333333333%}
@media (min-width:768px){.col-sm-4{float:left;width:33.333333333333%}
}
@media (min-width:992px){.col-md-4{float:left;width:33.333333333333%}
}
@media (min-width:1200px){.col-lg-4{float:left;width:33.333333333333%}
}
@media (min-width:1620px){.col-xl-4{float:left;width:33.333333333333%}
}
.col-lg-3,.col-md-3,.col-sm-3,.col-xl-3,.col-xs-3{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-3{float:left;width:25%}
@media (min-width:768px){.col-sm-3{float:left;width:25%}
}
@media (min-width:992px){.col-md-3{float:left;width:25%}
}
@media (min-width:1200px){.col-lg-3{float:left;width:25%}
}
@media (min-width:1620px){.col-xl-3{float:left;width:25%}
}
.col-lg-2,.col-md-2,.col-sm-2,.col-xl-2,.col-xs-2{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-2{float:left;width:16.666666666667%}
@media (min-width:768px){.col-sm-2{float:left;width:16.666666666667%}
}
@media (min-width:992px){.col-md-2{float:left;width:16.666666666667%}
}
@media (min-width:1200px){.col-lg-2{float:left;width:16.666666666667%}
}
@media (min-width:1620px){.col-xl-2{float:left;width:16.666666666667%}
}
.col-lg-1,.col-md-1,.col-sm-1,.col-xl-1,.col-xs-1{min-height:1px;padding-left:10px;padding-right:10px}
.col-xs-1{float:left;width:8.3333333333333%}
@media (min-width:768px){.col-sm-1{float:left;width:8.3333333333333%}
}
@media (min-width:992px){.col-md-1{float:left;width:8.3333333333333%}
}
@media (min-width:1200px){.col-lg-1{float:left;width:8.3333333333333%}
}
@media (min-width:1620px){.col-xl-1{float:left;width:8.3333333333333%}
}

/*****子栏目导航*****/
.subnavlist{
display: none;
}
.subnavlist a{
    margin-right: 10px;
    margin-left: 10px;
    font-weight: bold;
}
.subnavlist .on{
    color: #ff7f00;
}

@media (max-width: 767px) {
.subnavlist{
    display: block;
}

}