@charset "UTF-8"; @font-face {
    font-family: 'RiPlus-Black';
    src : unset;
}

@font-face {
    font-family: 'RiPlus-Regular';
    src : unset;
}

body {
    background: rgb(240, 244, 245);
    font-family: Lato,sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #525252;
}

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

img {
    max-width: 100%;
    height: auto;
}

.mdi {
    position: relative;
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*///////////container////////////*/
@media (min-width: 1200px) {
    .container {
        max-width:1280px
    }
}

/*///////////col-////////////*/
@media (max-width: 1024px) {
    [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    [class*="col-"] {
        padding-right: 7px;
        padding-left: 7px;
    }
}

.btn {
    font-family: RiPlus-Black;
    text-shadow: 0 1px 1px rgba(0,0,0,.1);
}

.badge-primary.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(40, 52, 66, 0.3)
}

.badge-secondary.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(243,245,249,0.3)
}

.badge-success.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(66,214,151,0.3)
}

.badge-info.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(105,179,254,0.3)
}

.badge-warning.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(254,165,105,0.3)
}

.badge-danger.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(243,71,112,0.3);
}

.badge-light.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(255,255,255,0.3)
}

.badge-dark.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(55,63,80,0.3)
}

.badge-accent.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(78,84,200,0.3)
}

.badge-secondary.badge-shadow,.badge-light.badge-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(0,0,0,0.25)
}

.btn-primary.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(254,105,106,0.3)
}

.btn-secondary.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(243,245,249,0.3)
}

.btn-success.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(66,214,151,0.3)
}

.btn-info.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(105,179,254,0.3)
}

.btn-warning.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(254,165,105,0.3)
}

.btn-danger.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(243,71,112,0.3)
}

.btn-light.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(255,255,255,0.3)
}

.btn-dark.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(55,63,80,0.3)
}

.btn-accent.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(78,84,200,0.3)
}

.btn-secondary.btn-shadow,.btn-light.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(0,0,0,0.3)
}

.btn-shadow:hover {
    box-shadow: none
}

/*///////////site-header////////////*/
.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    height: 68px;
    opacity: 1;
    background-color: #202935;
    -webkit-box-shadow: 0 0 25px rgba(0,0,0,.1);
    box-shadow: 0 0 25px rgba(0,0,0,.1);
}

.header.transition {
    transition: transform .3s cubic-bezier(0.35, 0, 0.25, 1), -webkit-transform .3s cubic-bezier(0.35, 0, 0.25, 1);
}

.header-gap {
    height: 68px;
}

.navbar-fixed .header {
    box-shadow: none;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
}

@media (max-width: 1024px) {
    .header-gap {
        height: 0;
        display: none;
    }
}

.logo {
    overflow: hidden;
    width: 140px;
    margin: 0;
    font-size: 18px;
    padding: 0;
    margin-right: 5rem;
}

.logo a {
    display: block;
    color: #fff
}

.logo a:hover {
    color: #007afb
}

.logo .fa {
    display: block;
    margin-bottom: 100px
}

.site-brand-txt {
    display: none;
    float: left;
    margin-top: 26px;
    margin-left: 15px;
    padding-left: 12px;
    font-size: 14px;
    height: 16px;
    line-height: 16px;
    color: rgba(255,255,255,0.88);
    border-left: 1px solid rgba(255,255,255,0.2)
}

.site-brand-txt span {
    display: block;
    letter-spacing: 2px
}

@media (max-width: 1360px) {
    .site-brand-txt {
        display:none
    }
}

.wel-navs-sign {
    position: relative;
}

.wel-navs-sign .wel-navs-item {
    position: relative;
}

.wel-navs {
}

.wel-navs .search-btn i {
    display: block;
    text-align: center;
    color: #fff;
    padding: .25rem .5rem;
    font-size: 1.5rem;
    line-height: 1;
}

.wel-navs .wel-navs-item {
    position: relative;
}

.wel-navs .wel-navs-item>a {
    display: block;
}

.wel-navs .wel-navs-item>a:hover {
    color: #007afb
}

.wel-navs .avatar_a {
    align-items: center;
    color: #eee
}

.wel-navs .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid #fff;
    overflow: hidden;
}

.wel-navs .login-panel {
    position: relative;
    font-family: RiPlus-Black;
    align-items: center;
}

.wel-navs .login-panel .login-hover {
    position: absolute;
    right: 0;
    top: 80%;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    z-index: 99;
}

.wel-navs .login-panel:hover .login-hover {
    top: 100%;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    padding-top: 18px;
}

.wel-navs .login-panel .login-hover .login-div {
    background: #fff;
    -webkit-box-shadow: 0 16px 32px 0 rgba(0,0,0,.06);
    box-shadow: 0 16px 32px 0 rgba(0,0,0,.06);
    -webkit-border-radius: 5px;
    overflow: hidden;
    width: 328px;
    border-radius: 5px;
}

.wel-navs .login-panel .login-hover .login-div .info {
    position: relative;
    padding: 30px 90px;
    background: #e6f2ff;
    background-image: url(/style/user-no-bg.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    -webkit-background-size: 20% 20%;
    background-size: 30%;
    padding-right: 0;
}

.wel-navs .login-panel .login-hover .login-div .info.vip {
    background: #e6f2ff;
    background-image: url(/style/user-no-bg.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    -webkit-background-size: 20% 20%;
    background-size: 30%;
}

.wel-navs .login-panel .login-hover .login-div .info h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
    height: 1.5em;
    overflow: hidden
}

.wel-navs .login-panel .login-hover .login-div .info h4 {
    font-size: 12px;
    color: #777;
    font-weight: 400;
    line-height: 1.5;
    height: 1.5em;
    overflow: hidden
}

.wel-navs .login-panel .login-hover .login-div .info .info-thumb {
    position: absolute;
    left: 20px;
    top: 30px;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 2;
}

.wel-navs .login-panel .login-hover .login-div .info .info-thumb .avatar {
    width: 50px;
    height: 50px;
}

.wel-navs .login-panel .login-hover .login-div .main {
    padding: 20px
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -20px
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu .item {
    width: 33.3333%;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0 5px
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu .item i {
    display: block;
    font-size: 20px;
    margin: 0 auto
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu .item i:before {
    margin: 0
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu .item a {
    display: block;
    padding: 10px 0;
    color: #666;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu .item a:hover {
    color: #fff;
    background: #3385ff
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu-2 {
    border-top: 1px solid #f3f3f3;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 15px;
    font-size: 14px
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu-2 a {
    color: #666
}

.wel-navs .login-panel .login-hover .login-div .main .main-menu-2 a:hover {
    color: #3385ff
}

.site-navbar {
    position: relative;
    font-family: RiPlus-Black;
}

.site-navbar>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0
}

.site-navbar>ul>li {
    display: inline-block
}

.site-navbar>ul>li>a {
    font-size: 15px;
    line-height: 68px;
    padding: 0 20px;
    color: #fff
}

.site-navbar>ul>li>a:hover {
    opacity: 0.8;
}

.site-navbar li {
    position: relative
}

.site-navbar li:hover {
    z-index: 2
}

.site-navbar a {
    display: block;
    -webkit-transition: color 0.25s, background-color 0.25s;
    -moz-transition: color 0.25s, background-color 0.25s;
    -ms-transition: color 0.25s, background-color 0.25s;
    -o-transition: color 0.25s, background-color 0.25s;
    transition: color 0.25s, background-color 0.25s
}

.site-navbar li.has-sub-menu {
    font-size: 14px
}

.site-navbar li.has-sub-menu>a {
    padding-right: 12px
}

.site-navbar li.has-sub-menu:hover>a::after {
    opacity: 0.8;
}

.site-navbar li.has-sub-menu:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 58px
}

.site-navbar li.has-sub-menu>a::after {
    position: relative;
    display: inline-block;
    margin-left: 3px;
    top: -3px;
    content: '';
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid #fff
}

.site-navbar li.active>a {
    opacity: 0.8;
}

.site-navbar li.active>a::after {
    opacity: 0.8;
}

.site-navbar .sub-menu {
    position: absolute;
    padding-top: 10px;
    visibility: hidden;
    opacity: 0;
    width: 140px;
    -webkit-transition: opacity 0.25s, top 0.25s, visibility 0.25s;
    -moz-transition: opacity 0.25s, top 0.25s, visibility 0.25s;
    -ms-transition: opacity 0.25s, top 0.25s, visibility 0.25s;
    -o-transition: opacity 0.25s, top 0.25s, visibility 0.25s;
    transition: opacity 0.25s, top 0.25s, visibility 0.25s;
    left: 50%;
    margin-left: -70px
}

.site-navbar .sub-menu ul {
    position: relative;
    background-color: #202934;
    -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.15);
    box-shadow: 0 1px 10px rgba(0,0,0,0.15);
    font-size: 14px;
    padding: 0;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.site-navbar .sub-menu ul::before,.site-navbar .sub-menu ul::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -3px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.site-navbar .sub-menu ul::before {
    border-bottom: 5px solid transparent;
}

.site-navbar .sub-menu ul::after {
    border-bottom: 5px solid transparent;
    margin-top: 1px;
}

.site-navbar .sub-menu li {
    float: none;
    margin: 0;
    text-align: center
}

.site-navbar .sub-menu li a {
    color: #fff;
    display: block;
    line-height: 14px;
    padding: 15px 0;
    text-align: center;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.site-navbar .sub-menu li a:hover {
    opacity: 0.5;
}

.m-mask {
    display: none
}

@media (max-width: 1200px) {
    .site-navbar>ul>li>a {
        padding:0 10px
    }
}

@media (max-width: 1024px) {
    .header {
        position:relative;
        height: 50px;
        text-align: center;
        background-color: #fff !important;
        box-shadow: 0 1px 5px rgba(0,0,0,0.07)
    }

    .header .container {
    }

    .header .header-warp {
        line-height: 50px;
        height: 100%;
    }

    .logo {
        font-size: 18px;
        width: 100px;
        text-align: center;
        margin: 0 auto;
        line-height: 50px;
    }

    .logo a {
        color: #202935;
        display: inline-block
    }

    .logo a .fa {
        text-shadow: 0.3px 0 0 #202935
    }

    .site-brand-txt {
        display: none;
        float: none;
        text-align: center;
        margin: 5px 0 0;
        padding: 0;
        font-size: 9px;
        line-height: 1;
        height: auto;
        color: #202935;
        opacity: 0.5
    }

    .site-navbar {
        display: none
    }

    .wel-navs,.wel-navs-sign {
        display: none !important;
    }

    .m-mask {
        display: block;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 90;
        background-color: #222;
        background-color: rgba(0,0,0,0.7);
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }
}

.mnav-back {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 15px;
    font-size: 24px;
    overflow: hidden;
    height: 50px;
    line-height: 54px
}

.mnav-search {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 15px;
    font-size: 24px;
    overflow: hidden;
    height: 50px;
    line-height: 54px
}

.mnav-back .mdi {
    font-weight: bold
}

.page-home .mnav-back {
    display: none
}

@media (max-width: 1024px) {
    .mnav-back,.mnav-search {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 544px) {
    .mnav-back,.mnav-search {
        padding:0 15px;
    }
}

/*///////////header - search////////////*/
.omnisearch {
    width: 100%;
    margin-top: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    opacity: 0;
    background-color: transparent;
    pointer-events: none;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.15s, -webkit-transform 0.3s;
    transition: opacity 0.15s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.15s;
    transition: transform 0.3s, opacity 0.15s;
    transition: transform 0.3s, opacity 0.15s, -webkit-transform 0.3s;
    font-family: RiPlus-Black;
}

@media (prefers-reduced-motion: reduce) {
    .omnisearch {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.omnisearch.show {
    opacity: 1;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.omnisearch .container {
    position: relative;
    height: 100%;
}

.omnisearch .omnisearch-form {
    display: block;
    position: relative;
    z-index: 700;
    background: #FFF;
    border-radius: 0.375rem;
    width: 680px;
    margin: auto;
}

.omnisearch .omnisearch-form .input-group-text {
    font-size: 1.875rem;
    background: transparent;
    color: #C0CCDA;
    background-color: #FFF;
    border: 1px solid #E0E6ED;
}

.omnisearch .omnisearch-form .form-control {
    display: block;
    height: 68px;
    font-size: 1.25rem;
    color: #454545;
    background-color: transparent;
    background-image: none;
}

.omnisearch .omnisearch-form .form-control::-webkit-input-placeholder {
    color: #C0CCDA;
}

.omnisearch .omnisearch-form .form-control:-ms-input-placeholder {
    color: #C0CCDA;
}

.omnisearch .omnisearch-form .form-control::-ms-input-placeholder {
    color: #C0CCDA;
}

.omnisearch .omnisearch-form .form-control::placeholder {
    color: #C0CCDA;
}

.omnisearch .omnisearch-suggestions {
    width: 680px;
    min-height: 150px;
    padding: 1.5rem;
    background: white;
    margin: auto;
    border-radius: 0.375rem;
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transition-delay: 0.21s;
    -o-transition-delay: 0.21s;
    transition-delay: 0.21s;
}

@media (prefers-reduced-motion: reduce) {
    .omnisearch .omnisearch-suggestions {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.omnisearch .omnisearch-suggestions:before {
    background: #FFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    content: "";
    display: block;
    height: 16px;
    width: 16px;
    left: 20px;
    position: absolute;
    bottom: 100%;
    -webkit-transform: rotate(-45deg) translateY(1rem);
    -ms-transform: rotate(-45deg) translateY(1rem);
    transform: rotate(-45deg) translateY(1rem);
    z-index: -5;
    border-radius: 0.2rem;
}

.omnisearch .omnisearch-suggestions .heading {
    color: #8492A6;
}

.omnisearch .omnisearch-suggestions .search-keywords {
    font-size: 15px;
    margin-bottom: 20px;
}

.omnisearch .omnisearch-suggestions .search-keywords a {
    display: inline-block;
    color: #6c757d;
    margin-right: 10px;
    background: #eaeaea;
    padding: 3px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.omnisearch .omnisearch-suggestions .search-keywords a:hover {
    color: #007afb;
}

.omnisearch .omnisearch-suggestions #search-ajax-res li {
    padding: 3px 0;
}

.omnisearch .omnisearch-suggestions .list-link {
    color: #6c757d;
}

.omnisearch .omnisearch-suggestions .list-link:hover {
    color: #007afb;
}

.omnisearch .omnisearch-suggestions .list-link i {
    padding: 5px 0px;
    padding-right: 5px;
    color: #2196F3;
}

.omnisearch .omnisearch-suggestions .list-link span {
    padding-left: 5px;
    font-size: 13px !important;
    color: #a7a7a7;
}

.omnisearch.show .omnisearch-form, .omnisearch.show .omnisearch-suggestions {
    pointer-events: auto;
}

.omnisearch.show .omnisearch-suggestions {
    opacity: 1;
}

@media (max-width: 992px) {
    .omnisearch .omnisearch-form {
        width: 100%;
    }

    .omnisearch .omnisearch-suggestions {
        width: 100%;
    }

    .omnisearch.show {
        -webkit-transform: translateY(10%);
        -ms-transform: translateY(10%);
        transform: translateY(10%);
    }

    .omnisearch .omnisearch-form .form-control {
        height: 40px;
        font-size: 0.875rem;
    }

    .omnisearch .omnisearch-suggestions .list-link {
        font-size: 14px;
    }
}

.omnisearch-open {
    overflow: hidden;
}

.mask-body {
    display: flex;
    position: fixed;
    z-index: 1040;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: .625em;
    overflow-x: hidden;
    background-color: transparent;
    -webkit-overflow-scrolling: touch;
}

.mask-body-dark {
    background: rgba(0,0,0,.4);
    background-color: rgba(25, 37, 49, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    transition-duration: .2s;
}

/*///////////登陆注册////////////*/
.page-template-login {
    background: #fff;
}

.bg-home {
    position: relative;
    background: #fff;
}

.home-center {
    display: table;
    width: 100%;
    height: 100%;
}

.home-desc-center {
    display: table-cell;
    vertical-align: middle;
}

.login-page {
    font-size: 15px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .25rem;
    background: #fff;
}

.login-page .forgot-pass {
    z-index: 99;
    position: relative;
    font-size: 13px;
}

.bg-cover {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.oauth {
    position: relative;
}

.oauth .oauth-btn {
    display: inline-block;
    margin: 0 10px;
    text-align: center;
    color: #fff;
    border-radius: 100px;
    vertical-align: top;
    padding: 10px;
    background: #eee;
    line-height: 1;
}

.oauth .oauth-btn.qq {
    background: #2196F3;
}

.oauth .oauth-btn.weixin {
    background: #8BC34A;
}

.oauth .oauth-btn.weibo {
    background: #F44336;
}

@media (max-width: 768px) {
    .login-page {
        font-size: 15px;
        box-shadow: none;
        border-radius: 0;
        background: #fff;
    }

    .bg-cover {
        background: #fff !important;
    }
}

/*/////////////////缩略图////////////////*/
.lazyload:not(.visible),.lazyloading:not(.visible) {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    -webkit-transition: opacity 0.3s cubic-bezier(0.77,0,0.175,1);
    -moz-transition: opacity 0.3s cubic-bezier(0.77,0,0.175,1);
    -o-transition: opacity 0.3s cubic-bezier(0.77,0,0.175,1);
    transition: opacity 0.3s cubic-bezier(0.77,0,0.175,1);
}

/*///////////home owl////////////*/
.home-owl .slider {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    height: 400px;
    position: relative;
}

.home-owl .slider .u-permalink {
    bottom: 0;
    left: 0;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 50;
}

.home-slider {
}

.home-slider .form-control {
    background: rgba(255, 255, 255, 0);
}

.home-slider .form-control:focus {
    box-shadow: unset;
}

.rounded-xl {
    border-radius: 10rem;
}

.text-shadow {
    text-shadow: 2px 2px 2px rgba(0,0,0,.1);
}

.search-bar {
    border-radius: 10rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 1rem rgba(0,0,0,.15)
}

.search-bar .form-group {
    position: relative;
    margin-bottom: 0
}

.search-bar .form-group:after {
    display: block;
    width: 1px;
    height: 60%;
    content: "";
    background: #ddd;
    position: absolute;
    top: 20%;
    right: 0
}

.search-bar .form-group.no-divider:after,.search-bar .form-group:last-of-type:after {
    display: none
}

.search-bar .form-control {
    height: calc(1.5em + 1rem + 2px)
}

.search-bar .input-label-absolute-right .label-absolute {
    right: 0
}

.search-bar.search-bar-with-tabs {
    border-radius: .4rem
}

@media(max-width: 991.98px) {
    .search-bar {
        border-radius:20px
    }

    .search-bar .form-group {
        margin-bottom: 1rem
    }

    .search-bar .form-group:after {
        display: block;
        width: calc(100% - 4rem);
        height: 1px;
        content: "";
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: #dee2e6;
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%
    }

    .search-bar .form-control {
        height: calc(1.6em + .75rem + 2px);
        padding: 10px 20px
    }

    .search-bar .input-label-absolute-right .label-absolute {
        right: 1rem
    }

    .search-bar .bootstrap-select {
        display: block!important;
        width: 100%!important;
        padding: 0
    }

    .search-bar .bootstrap-select button {
        display: block;
        width: 100%!important;
        padding: 10px 20px
    }
}

@media (max-width: 1024px) {
    .home-owl .slider {
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .home-owl .slider {
        height: 180px !important;
    }
}

/*/////.home-slider2/////////*/
.home-slider2 {
    position: relative;
}

.home-slider2 .pr--3 {
    padding-right: 1rem;
}

.home-slider2 .home-owl {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.home-slider2 .home-owl .slider {
    height: 400px;
}

.home-slider2 .home-owl .slider .u-permalink {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.01)), to(#000));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0, #000 100%);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.home-slider2 .home-owl .slider:hover .u-permalink {
    opacity: .3;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.home-slider2 .home-owl .title {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: left;
    text-shadow: 0 1px 3px #525252;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.3));
}

.home-slider2 .tuwen {
    height: 400px;
}

.home-slider2 .tuwen .item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.home-slider2 .tuwen .item:first-child {
    margin-bottom: 1rem;
}

.home-slider2 .tuwen .item a {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}

.home-slider2 .tuwen .item a::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    visibility: hidden;
    content: '';
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.01)), to(#000));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0, #000 100%);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.home-slider2 .tuwen .item a:hover::after {
    visibility: visible;
    opacity: .3;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.home-slider2 .tuwen .item a>i {
    display: block;
    height: 100%;
    background-size: cover;
    border-radius: 4px;
    overflow: hidden;
}

.home-slider2 .tuwen .item a>strong {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: .4em .8em .6em;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    letter-spacing: .5px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.6)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33000000', endColorstr='#99000000', GradientType=0);
    background-repeat: repeat-x;
    box-shadow: 0 -7px 15px rgba(0, 0, 0, 0.2);
}

.home-slider2 .owl-nav {
    position: unset;
    z-index: 99;
    cursor: pointer;
    left: unset;
    right: unset;
    bottom: unset;
    margin: 0;
}

.home-slider2 .owl-nav button.owl-prev,.home-slider2 .owl-nav button.owl-next {
    background-color: #34495e;
    color: #fff;
    font-size: 17px;
    height: 60px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: calc(50% - 30px);
    width: 30px;
    margin: 0;
}

.home-slider2 .owl-nav button.owl-prev {
    visibility: hidden;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 4px 4px 0;
}

.home-slider2 .owl-nav button.owl-next {
    visibility: hidden;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px 0 0 4px;
}

.home-slider2 .home-owl:hover .owl-nav button.owl-prev, .home-slider2 .home-owl:hover .owl-nav button.owl-next {
    visibility: visible;
}

.home-slider2 .owl-theme .owl-nav [class*=owl-]:hover {
    background: rgba(0, 0, 0, 0.2);
}

.home-slider2 .owl-theme .owl-dots,.home-slider2 .owl-theme .owl-nav {
    left: unset;
    right: 10px;
    bottom: 5px;
    top: unset;
}

.home-division2 {
    position: relative;
}

.home-division2 .item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    transition: all .2s ease-out;
    height: 0;
    padding-bottom: 56.8%;
}

.home-division2 .item:hover {
    transform: translateY(3px);
}

.home-division2 .item i {
    display: block;
    height: 100%;
    background-size: cover;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-division2 .item h5 {
    position: absolute;
    bottom: 0;
    color: #fff;
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.7)),to(transparent));
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    margin: 0;
    text-align: left;
    font-weight: bold;
}

@media (max-width: 992px) {
    .home-slider2 .home-owl .title {
        font-size: 13px;
        font-weight: normal;
    }

    .home-slider2 .tuwen .item a>strong {
        font-size: 12px;
        font-weight: normal;
    }

    .home-slider2 .pr--3 {
        padding-right: 0;
    }

    .home-slider2 .tuwen {
        height: 100px;
        margin-right: -7px;
        margin-left: -7px;
        margin-top: 10px;
    }

    .home-slider2 .tuwen .item {
        padding-right: 7px;
        padding-left: 7px;
    }

    .home-slider2 .tuwen .item:first-child {
        margin-bottom: 0;
    }

    .home-division2 .item h5 {
        font-size: 13px;
        font-weight: normal;
    }
}

/*///////////home owl item////////////*/
.home-division {
    position: relative;
    font-family: RiPlus-Black;
}

.home-division .item {
    position: relative;
}

.home-division .item>a>.item-icon {
    font-size: 3.5rem;
    margin-right: 10px;
    line-height: 0;
}

.home-division .item>a h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.home-division .item>a p {
    font-size: 15px;
}

.home-division .item>a h3 .badge {
    border-radius: 14px;
    font-size: 12px;
    text-transform: uppercase;
    vertical-align: top;
    padding-left: .8em;
}

@media (max-width: 1024px) {
    .home-division .item>a h3 .badge,.home-division .item>a p {
        display:none;
    }

    .home-division .item>a {
        flex-flow: column !important;
        padding: 1rem 0 !important;
    }

    .home-division .item>a>.item-icon {
        font-size: 2rem;
        margin: 0;
    }

    .home-division .item>a h3 {
        font-size: 0.875rem;
        line-height: 1;
        margin: 5px 0;
        color: #43484d;
        font-weight: 400;
    }
}

/*//////////home last post////////////*/
.home-last-post {
    position: relative;
}

.home-last-post .section-title {
    position: relative;
}

.section-title h2 {
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 0;
}

.section-title h2>strong {
    font-weight: 500;
}

.section-title h2>.sub-nav {
    display: inline-block;
    /*white-space: nowrap;*/
    margin-left: 20px;
    font-size: 0.875rem;
    overflow-x: auto;
    padding-top: 3px;
    vertical-align: top;
    line-height: 28px;
    font-family: RiPlus-Black;
}

.sub-nav::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

.sub-nav::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}

.sub-nav::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.section-title h2>.sub-nav a {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    margin: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #8f8f8f;
    vertical-align: top;
    line-height: 28px;
    background: #fff;
}

.section-title h2>.sub-nav a:hover {
    color: #fff;
    background: #3385fc;
}

.section-title h2>.sub-nav a.current {
    color: #fff;
    background: #3385ff;
}

.home-cat-post {
    position: relative;
}

/*/////////.vipinfo-part and page//////////*/
.vipinfo-part {
    position: relative;
    font-family: RiPlus-Black;
}

.vipinfo-part .slice {
    position: relative;
}

.vipinfo-part .vipinfo-page {
    background-color: #007afb;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.vipinfo-part .slice .container {
    max-width: 1080px;
}

.vipinfo-part .position-relative {
    position: relative !important;
}

.vipinfo-part .card {
    position: relative;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    border: 1px solid #EFF2F7;
    border-radius: 0.375rem;
}

.vipinfo-part .card-header {
    padding: 1rem 1.5rem;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid #EFF2F7;
}

.vipinfo-part .card-pricing .card-header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.vipinfo-part .card-pricing .list-unstyled li {
    padding: 0.3rem 0;
    font-size: 15px;
    opacity: 0.9;
}

.vipinfo-part .card-pricing.popular {
    z-index: 1;
}

.vipinfo-part .card-pricing.scale-110 {
    border: 1px solid #EFF2F7 !important;
    border-radius: 0.375rem !important;
}

@media (max-width: 991.98px) {
    .vipinfo-part .card-pricing.scale-110 {
        -webkit-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
        transform: scale(1) !important;
    }
}

.vipinfo-part .scale-110, .hover-scale-110:hover {
    -webkit-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;
}

.vipinfo-part .delimiter-top, .delimiter-bottom {
    position: relative;
    border: 0;
}

.vipinfo-part .delimiter-bottom:after {
    content: "";
    display: block;
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40%;
    height: 2px;
    background: -o-radial-gradient(center, ellipse, rgba(222, 228, 239, 0.8) 0, rgba(255, 255, 255, 0) 75%);
    background: radial-gradient(ellipse at center, rgba(222, 228, 239, 0.8) 0, rgba(255, 255, 255, 0) 75%);
}

.vipinfo-part .shape-container {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
}

.vipinfo-part .shape-container svg {
    fill: #FFF;
    pointer-events: none;
    vertical-align: baseline;
}

.vipinfo-part .shape-container[data-shape-position=bottom] {
    top: auto;
    bottom: 0;
    margin-bottom: -4rem;
}

.vipinfo-part .shape-container[data-shape-orientation=inverse] {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.vipinfo-part .shape-position-top {
    top: 0;
    margin-top: -1px;
}

.vipinfo-part .shape-position-bottom {
    bottom: 0;
    margin-bottom: -1px;
}

.vipinfo-part .shape-orientation-inverse {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.opacity-5, .hover-opacity-5:hover, .opacity-container:hover .hover-opacity-5 {
    opacity: 0.5;
}

.vipinfo-part .icon {
    min-width: 3rem;
    min-height: 3rem;
    line-height: 3rem;
}

.vipinfo-part .icon i {
    font-size: 2.75rem;
}

.vipinfo-part .icon-lg {
    min-width: 4rem;
    min-height: 4rem;
    line-height: 4rem;
}

.vipinfo-part .icon-lg i, .icon-lg svg {
    font-size: 3.75rem;
}

@media (max-width: 768px) {
    .home-last-post,.home-cat-post {
        background-color:#fff;
        padding-top: 0 !important;
        padding-bottom: 20px !important;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .section-title h2>.sub-nav {
        margin-top: 10px;
    }
}

/*/////////posts posts item//////////*/
.posts-wrapper {
    position: relative;
    display: block;
}

@media (max-width: 1024px) {
    .section-title h2>.sub-nav {
        display: block;
        margin-left: -5px;
        margin-top: 10px;
        padding-bottom: 10px;
    }

    .posts-wrapper {
        padding: 0 5px;
    }
}

@media (max-width: 576px) {
    .posts-wrapper {
        padding: 0 7.5px;
    }
}

.entry-media {
    position: relative;
}

.entry-media .placeholder {
    background-color: #FFF;
    height: 0;
    overflow: hidden;
}

.entry-media img {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.entry-media img:hover {
    opacity: 0.8;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.entry-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-bottom: 0;
    font-family: RiPlus-Black;
}

.entry-excerpt {
    font-size: 13px;
    color: #8f8f8f;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: RiPlus-Regular;
}

.post-grid {
    position: relative;
}

.post-grid .meta-VIP-tag {
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 5px;
    background: red url(/style/vip-1.svg) 50% no-repeat;
    background-size: 18px auto;
    box-shadow: 0 3px 5px rgba(51, 51, 51, 0.1);
    z-index: 1;
}

.meta-SVIP-tag {
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 5px;
    background: gold url(/style/vip-1.svg) 50% no-repeat;
    background-size: 18px auto;
    box-shadow: 0 3px 5px rgba(51, 51, 51, 0.1);
    z-index: 1;
}

.meta-FREE-tag {
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 5px;
    background: green url(/style/free-1.svg) 50% no-repeat;
    background-size: 18px auto;
    box-shadow: 0 3px 5px rgba(51, 51, 51, 0.1);
    z-index: 1;
}

.post-grid.card {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    border: none;
}

.post-grid.card:hover {
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.05);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.post-grid .entry-body {
    padding: 15px 20px;
}

.post-grid .entry-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 15px;
    height: 44px;
    line-height: 22px;
}

.post-grid .entry-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    margin: 5px 0;
    line-height: 22px;
    font-size: 13px;
    height: 44px;
}

.post-grid .entry-meta {
    display: flex;
    font-size: 12px;
    align-items: center;
    justify-content: flex-end;
    color: #bdbdbd;
    margin-top: 10px;
    letter-spacing: -0.2px;
}

.post-grid .entry-meta span:nth-child(1) {
    flex: 1;
    padding: 0;
}

.post-grid .entry-meta .meta-date {
    color: #bdbdbd;
}

.post-grid .entry-meta .meta-views {
    padding-left: 8px;
}

.post-grid .entry-meta .meta-comment {
    padding-left: 8px;
}

.post-grid .entry-meta .meta-price-VIP {
    margin-left: 8px;
    position: relative;
    display: inline-block;
    padding: 1px 6px;
    text-align: center;
    color: red;
    border-radius: 2px;
    line-height: initial;
    letter-spacing: 0;
}

.post-grid .entry-meta .meta-price-SVIP {
    margin-left: 8px;
    position: relative;
    display: inline-block;
    padding: 1px 6px;
    text-align: center;
    color: gold;
    border-radius: 2px;
    line-height: initial;
    letter-spacing: 0;
}

.post-grid .entry-meta .meta-price-FREE {
    margin-left: 8px;
    position: relative;
    display: inline-block;
    padding: 1px 6px;
    text-align: center;
    color: green;
    border-radius: 2px;
    line-height: initial;
    letter-spacing: 0;
}

.entry-category {
    position: relative;
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    font-family: RiPlus-Black;
}

.entry-category a {
    margin-right: .5rem;
    color: #888;
}

.entry-category a:before {
    content: "\F018";
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: .2rem;
}

.entry-category a:nth-child(1):before {
    color: #3385fc;
}

.entry-category a:nth-child(2):before {
    color: #ffc12b;
}

.entry-category a:nth-child(3):before {
    color: #4CAF50;
}

/*//////////video///////////*/
.post-video {
    position: relative;
}

.post-video .video-box-hand {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
}

.post-video .video-play {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.post-video .video-play video {
    position: relative;
    display: block;
    width: auto;
    height: 100%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.post-video .video-play embed {
    width: 340px;
    height: 192px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.post-video .show-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.post-video .show-image .meta-video-tag {
    content: ' ';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    background: url(/style/video1.png) 50% no-repeat;
    background-size: cover;
    z-index: 1;
}

.post-video .show-image img {
    width: 100%;
    height: 100%;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeSpeed;
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: nearest-neighbor;
}

.post-image .meta-image-tag {
    content: ' ';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    background: url(/style/image1.png) 50% no-repeat;
    background-size: cover;
    z-index: 1;
}

.post-video .meta-video-tag {
    content: ' ';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    background: url(/style/video1.png) 50% no-repeat;
    background-size: cover;
    z-index: 1;
}

@media (max-width: 768px) {
    .post-grid.card:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px);
    }

    .post-grid .entry-media {
        border-radius: 4px;
        overflow: hidden;
    }

    .post-grid .entry-body {
        padding: 10px 0;
        padding-bottom: 0;
    }

    .post-grid .entry-excerpt {
        display: none !important;
    }

    .post-grid .entry-meta {
        display: none !important;
    }
}

._404 {
    display: flex;
    height: calc(80vh - 200px);
}

._404 ._404-inner {
    margin: auto;
}

._404 .entry-title,._404 .entry-content {
    text-align: center;
    margin-bottom: 30px;
    color: #999;
}

._404 .entry-title {
    font-size: 28px;
    font-weight: 600;
    margin-top: 0;
}

._404 .search-form {
    margin: 45px auto 0;
    max-width: 350px;
}

@media (max-width: 768px) {
    ._404 {
        height:calc(60vh - 40px - 60px);
    }
}

.searchform {
    position: relative;
}

.searchform input[type="text"] {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 12px 15px;
    height: 45px;
    font-size: 14px;
    display: block;
    width: 100%;
    outline: none !important;
    padding-right: 45px;
}

.searchform input[type="submit"] {
    position: absolute;
    top: 5px;
    right: 10px;
    opacity: 0;
    width: 40px;
    height: 40px;
}

.searchform:after {
    content: "\F349";
    position: absolute;
    font-family: "Material Design Icons";
    right: 16px;
    top: 15px;
    font-size: 20px;
    line-height: 20px;
    pointer-events: none;
}

/*/////////archive//////////*/
.archive {
}

.archive-top {
    z-index: 0;
    position: relative;
    background: #666;
    overflow: hidden;
}

.archive-top .bg {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
}

.archive-top .bg .bg-img {
    position: absolute;
    left: -10%;
    top: -10%;
    right: -10%;
    height: 120%;
    width: 120%;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: 150% 150%;
    background-size: 150%;
    overflow: hidden;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.archive-top .bg .bg-img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.3);
}

.archive-top .container {
    text-align: center;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.archive-top h2 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    padding: 0;
    margin: 0;
    font-family: RiPlus-Black;
}

.archive-top h4 {
    margin: 0;
    margin-top: 10px;
}

.archive-top .btns .btn {
    border: 1px solid #fff;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    padding: 0 1.5em;
    line-height: 2;
    position: relative;
}

.archive-top .btns .btn:hover {
    background: hsla(0,0%,100%,.2);
    border-color: hsla(0,0%,100%,.2);
}

@media (max-width: 768px) {
    .archive-top .container {
        min-height: 120px;
    }

    .archive .archive .archive-top h2 {
        font-size: 22px;
    }

    .archive-top .btns .btn {
        border: none;
        font-size: 13px;
        line-height: normal;
    }
}

.archive-filter {
    position: relative;
    z-index: 0;
    font-size: 15px;
    color: #8f8f8f;
    line-height: 26px;
    background: #fff;
    font-family: RiPlus-Black;
}

@media (max-width: 768px) {
    .archive-filter {
        background:rgba(0,0,0,0);
        z-index: 50
    }
}

.archive-filter .container {
    overflow: visible
}

.archive-filter .filter {
    display: block;
}

@media (max-width: 768px) {
    .archive-selects .filter {
        display:none;
    }
}

.archive-filter a {
    color: #555;
    display: inline-block;
    padding: 4px 8px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-right: 20px;
    line-height: 1.2;
}

.archive-filter a:hover {
    color: #007afb;
}

.archive-filter .current a {
    color: #007afb;
    background: #f0f4f5;
}

.archive-filter .filter {
    overflow: hidden;
    border-bottom: 1px dashed #e2e2e2;
    position: relative;
    padding-top: 20px;
    overflow-x: auto;
    white-space: nowrap;
}

.archive-filter .filter::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

.archive-filter .filter::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}

.archive-filter .filter::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.archive-filter .filter li {
    display: inline-block;
    list-style: none;
    margin-bottom: 20px;
}

.archive-filter .filter li:first-child {
    margin-left: 0;
}

.archive-filter .filter:last-child {
    border-bottom: none
}

.archive-filter .filter:last-child {
    border-bottom: none
}

.archive-filter .filters .recent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.archive-filter .filters .recent a {
    background: unset;
}

.archive-filter .filters .recent .current a {
    background: unset;
    color: #007afb;
}

.archive-filter .filters .recent .filter li:last-child a {
    margin-right: 0;
}

@media (max-width: 768px) {
    .archive-filter .filters .recent {
        display:block;
    }

    .hidden-sm {
        display: none;
    }

    .archive-filter .filter {
        padding-top: 10px;
    }

    .archive-filter .filter li {
        display: inline-block;
        list-style: none;
        margin-bottom: 5px;
    }
}

.archive-main-top {
    display: block;
}

@media (max-width: 768px) {
    .archive-post {
        background: #fff;
    }
}

.breadcrumb {
    color: #8f8f8f;
    font-size: 15px;
    display: inline-block;
    padding: 0;
    margin: 0;
    background-color: unset;
    white-space: nowrap;
    overflow: hidden;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li a {
    color: #8f8f8f;
}

.breadcrumb li a:hover {
    color: #0079fb;
}

.breadcrumb>li+li::before {
    display: inline-block;
    padding: 0 .5rem;
    color: #8f8f8f;
    content: ">"
}

/*/////////.pagination//////////*/
.pagination {
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: RiPlus-Black;
    justify-content: center;
}

.pagination a,.pagination span {
    display: inline-block;
    box-shadow: inset 0 -1px 0 0 rgba(0,0,0,.05);
    overflow: hidden;
    transition: all .2s ease-in-out;
    vertical-align: top;
    color: #999;
    pointer-events: auto;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
    padding: .5rem .75rem;
    line-height: 1;
    margin: 0 5px;
    border-radius: 4px;
    border: 1px solid #f3f3f3;
}

.pagination .current {
    color: #fff;
    background: #3385fc
}

.pagination a:hover {
    cursor: pointer;
    text-decoration: none;
    color: #3385fc;
    background: #fff;
    border-color: #3385fc;
}

@media (max-width: 768px) {
    .pagination {
        margin-top: 0;
        padding-bottom: 10px;
    }

    .pagination a, .pagination span {
        background-color: #f0f4f5;
        border-color: #dee2e6;
        padding: 5px 10px;
        margin: 0 2px;
    }

    .pagination a,.pagination span {
        display: none
    }

    .pagination .next,.pagination .prev {
        display: inline-block;
        background-color: #f0f4f5;
        border-color: #dee2e6;
        padding: 5px 10px;
        margin: 0 2px;
        width: 40%;
        text-align: center;
        line-height: 1.5;
    }
}

/*/////////single//////////*/
.article-top {
    margin-bottom: 20px;
}

.single-top {
    z-index: 0;
    position: relative;
    background: #666;
    overflow: hidden;
}

.single-top .bg {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
}

.single-top .bg .bg-img {
    position: absolute;
    left: -10%;
    top: -10%;
    right: -10%;
    height: 120%;
    width: 120%;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: 150% 150%;
    background-size: 150%;
    overflow: hidden;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.single .seo-img {
    opacity: 0;
    width: .5px;
    height: .5px;
    overflow: hidden;
}

.single-top .bg .bg-img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

.single-top .container {
    text-align: center;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.single-top .article-header {
    position: relative;
    text-align: center;
}

.single-top .article-title {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    font-family: RiPlus-Regular;
    text-shadow: 0 2px 2px rgba(0,0,0,.2);
}

.single-top .article-meta {
    font-size: 14px;
    color: #c3c3c3;
}

.single-top .article-meta a {
    color: #c3c3c3;
}

.single-top .article-meta a:hover {
    color: #fff;
}

.single-top .article-meta span {
    display: inline-block;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .single-top .container {
        min-height: 90px;
    }

    .single-top .article-header {
        padding: 20px 0;
    }

    .single-top .article-title {
        font-size: 15px;
    }

    .single-top .article-meta {
        font-size: 12px;
    }

    .single-top .article-meta span {
        margin: 0 1px;
    }

    .single .single-top h2 {
        font-size: 22px;
    }

    .article-top {
        margin-bottom: 0;
    }
}

/*single-top-pay*/
.single-top-pay {
    border-radius: 4px;
}

.single-top-pay .img-box {
    position: relative;
}

.single-top-pay .img-box:after {
    position: absolute;
    right: -2px;
    bottom: 160px;
    width: 4px;
    height: 80px;
    background: #f0f4f5;
    content: '';
    border-radius: 10px;
    overflow: hidden;
}

.single-top-pay .img-box img {
    height: 320px;
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    overflow: hidden;
}

.single-top-pay .info-box {
}

.single-top-pay .article-meta span {
    display: inline-block;
    margin: 0 5px;
}

.single-top-pay .article-meta span:first-child {
    margin-left: 0;
}

.single-top-pay .article-meta ,.single-top-pay .article-meta span a {
    font-size: 14px;
    color: #888;
}

.single-top-pay .article-meta {
    padding: 5px 10px;
    background: #f0f4f5;
    border-radius: 4px;
}

.single-top-pay .other-info {
}

.single-top-pay .other-info ul li {
    position: relative;
    padding: 3px 16px;
    border-bottom: 1px solid #f0f5ff;
}

.single-top-pay .other-info ul li:before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #3da5f6;
    content: "";
}

.single-top-pay .other-info ul li span {
    font-size: 14px;
}

.single-top-pay .other-info ul li b {
    float: right;
    font-weight: 400;
    font-size: 14px;
}

@media (max-width: 768px) {
    .single-top-pay .img-box {
        display: none;
    }

    .m-bgfff {
        background: #fff
    }
}

/*/////////content-area//////////*/
.article-crumb {
    padding: 8px 30px;
    background: #fff;
    border-bottom: 1px dashed #f0f4f5;
    border-radius: 4px 4px 0 0;
}

.article-crumb .breadcrumb {
    display: block;
    line-height: 2;
}

.content-area {
    position: relative;
}

.content-area article {
    border-radius: 0 0 4px 4px;
    background: #fff;
    padding: 20px 30px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .content-area {
        background: #fff;
    }

    .article-crumb {
        display: none;
    }

    .content-area article {
        padding: 10px;
    }
}

/*/////////////.article-content////////////////*/
.article-content .h1,.article-content .h2,.article-content .h3,.article-content h1,.article-content h2,.article-content h3 {
    margin: 30px 0 20px;
    line-height: 1.4;
    font-weight: 700
}

.article-content h4,.article-content h5 {
    font-weight: 700;
    font-size: 1.17em;
    margin-bottom: .875rem;
}

.article-content .h1,.article-content h1 {
    font-size: 24px;
    color: #03A9F4;
}

.article-content .h2,.article-content h2 {
    padding-bottom: 12px;
    font-size: 20px;
    border-bottom: 4px solid #f0f4f5;
}

.article-content .h3,.article-content h3 {
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.2;
    border-left: 4px solid #0f81fb
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    word-wrap: break-word
}

@media (max-width: 768px) {
    .article-content p {
        text-align:justify
    }

    .article-content p.has-text-align-center {
        text-align: center
    }

    .article-content p.has-text-align-left {
        text-align: left
    }

    .article-content p.has-text-align-right {
        text-align: right
    }
}

.article-content>p {
    white-space: pre-wrap
}

.article-content p.has-drop-cap:not(:focus):first-letter {
    font-size: 3em;
    line-height: 1;
    font-weight: 100
}

.article-content figure {
    margin-bottom: 20px;
    margin-bottom: 1.66667rem
}

.article-content blockquote {
    position: relative;
    margin: 20px 0;
    padding: 10px 40px;
    border-radius: 3px;
    background-color: #f0f4f5;
}

.article-content blockquote:before {
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    width: 16px;
    height: 14px;
    background: url(/style/a.png) no-repeat;
    content: ''
}

.article-content blockquote:after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: block;
    width: 16px;
    height: 14px;
    background: url(/style/a.png) -16px 0 no-repeat;
    content: ''
}

.article-content blockquote p {
    margin: 0;
    padding: 10px;
}

.article-content ol,.article-content ul {
    padding-left: 2em;
    margin-bottom: 20px;
    list-style-position: outside;
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 10px
}

.article-content img {
    height: auto
}

.article-content audio,.article-content img,.article-content video {
    max-width: 100%;
    vertical-align: top
}

@media (max-width: 768px) {
    .article-content audio,.article-content video {
        display:block;
        width: 100%;
        height: auto
    }
}

.article-content video::-internal-media-controls-download-button {
    display: none
}

.article-content video::-webkit-media-controls-enclosure {
    overflow: hidden
}

.article-content video::-webkit-media-controls-panel {
    width: calc(100% + 30px)
}

.article-content embed,.article-content iframe {
    max-width: 100%;
    vertical-align: top
}

.article-content .wp-video {
    width: auto!important;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .article-content embed,.article-content iframe {
        display:block;
        width: 100%;
        min-height: 200px;
        max-height: 500px
    }
}

.article-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.article-content .aligncenter img {
    margin: 0 auto
}

.article-content .alignleft {
    float: none;
    margin-right: 10px;
    margin-bottom: 10px;
}

.article-content .alignright {
    float: none;
    margin-left: 10px;
    margin-bottom: 10px
}

.article-content .wp-caption,.article-content button,.article-content input,.article-content select,.article-content textarea {
    max-width: 100%
}

.article-content .wp-caption-text {
    padding-top: 5px;
    text-align: center;
    text-indent: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666
}

.article-content table {
    width: 100%;
    table-layout: fixed
}

.article-content table td,.article-content table th {
    padding: 5px 10px
}

.article-content .gallery {
    margin: 0 -10px;
    font-size: 0
}

.article-content .gallery .gallery-item {
    display: inline-block;
    padding: 5px;
    text-align: center;
    vertical-align: top
}

.article-content .gallery-columns-1 .gallery-item {
    width: 100%
}

.article-content .gallery-columns-2 .gallery-item {
    width: 50%
}

.article-content .gallery-columns-3 .gallery-item {
    width: 33.33333%
}

.article-content .gallery-columns-4 .gallery-item {
    width: 25%
}

.article-content .gallery-columns-5 .gallery-item {
    width: 20%
}

.article-content .gallery-columns-6 .gallery-item {
    width: 16.66667%
}

.article-content .gallery-columns-7 .gallery-item {
    width: 14.28571%
}

.article-content .gallery-columns-8 .gallery-item {
    width: 12.5%
}

.article-content .gallery-columns-9 .gallery-item {
    width: 11.11111%
}

.article-content .gallery .gallery-item img {
    width: 100%;
    height: 100%;
    vertical-align: top;
    border: 0;
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.article-content .gallery .gallery-item:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.article-content .gallery {
    margin: -5px!important;
}

.article-content .gallery .gallery-item {
    padding: 5px;
    margin: 0 !important;
    overflow: hidden;
    position: relative;
}

.article-content .gallery .gallery-item .gallery-icon:before {
    content: "";
    display: block;
    padding-top: 61.8%;
}

.article-content .gallery .gallery-item .gallery-icon {
    position: relative;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
    background: #eee;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
}

.article-content .gallery .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 0!important;
}

@media (max-width: 768px) {
    .article-content .gallery-columns-3 .gallery-item, .article-content .gallery-columns-4 .gallery-item, .article-content .gallery-columns-5 .gallery-item, .article-content .gallery-columns-6 .gallery-item, .article-content .gallery-columns-7 .gallery-item, .article-content .gallery-columns-8 .gallery-item, .article-content .gallery-columns-9 .gallery-item {
        width: 50%
    }
}

.article-content .blocks-gallery-grid,.article-content .wp-block-gallery {
    padding: 0!important;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important
}

.article-content .blocks-gallery-grid .blocks-gallery-image figure,.article-content .blocks-gallery-grid .blocks-gallery-item figure,.article-content .wp-block-gallery .blocks-gallery-image figure,.article-content .wp-block-gallery .blocks-gallery-item figure {
    margin-bottom: 0
}

.article-content .wp-block-quote {
    border-left-color: #e5e5e5
}

.article-content .wp-block-subhead {
    text-indent: 0
}

.article-content .wp-block-code {
    color: #eee;
    background: #2b303b;
    border-radius: 2px;
    border-color: #393939
}

.article-content .wp-block-tag-cloud {
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-content .wp-block-tag-cloud .tag-cloud-link {
    display: inline-block;
    margin: 0 .7% 1.4%;
    padding: 5px 12px;
    font-size: 12px!important;
    line-height: 1.2;
    text-align: center;
    color: #666;
    border: 1px solid hsla(0,0%,39%,.2);
    border-radius: 2px;
    text-decoration: none;
    background: hsla(0,0%,100%,.2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-content .wp-block-latest-posts {
    padding-left: 2em;
    margin-bottom: 10px;
    text-align: left
}

.article-content .wp-block-latest-posts.is-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: disc
}

.article-content .wp-block-table {
    width: 100%;
    margin-bottom: 20px
}

.article-content .wp-block-table td,.article-content .wp-block-table th {
    padding: 10px;
    border: 1px solid #e5e5e5
}

.article-content .wp-block-table.is-style-stripes td,.article-content .wp-block-table.is-style-stripes th {
    border: 0
}

.article-content .wp-block-table.aligncenter {
    display: table
}

.article-content .wp-block-table.left {
    float: none;
    text-align: left
}

.article-content .wp-block-table.alignright {
    float: none;
    text-align: right
}

.article-content .wp-block-cover-image-text {
    text-indent: 0
}

.article-content .wp-block-video {
    margin-bottom: 20px;
    text-align: center
}

.article-content .wp-block-audio,.article-content .wp-block-button {
    margin-bottom: 20px
}

.article-content .wp-block-embed {
    text-align: center
}

.article-content .wp-embedded-content {
    display: block;
    width: 100%
}

@media (max-width: 768px) {
    .article-content .wp-embedded-content {
        min-height:auto;
        max-height: none
    }
}

.article-content .wp-block-pullquote {
    padding: 3em 0;
    margin: 28px 0;
    text-align: center;
    border-top: 4px solid #e5e5e5;
    border-bottom: 4px solid #e5e5e5;
    color: #444
}

.article-content .wp-block-pullquote blockquote {
    margin: 0;
    padding: 0;
    background: none;
    border: 0
}

.article-content .wp-block-pullquote blockquote:before {
    display: none
}

.article-content .wp-block-verse {
    line-height: 2
}

.article-content .wp-block-image .aligncenter,.article-content .wp-block-image .alignleft,.article-content .wp-block-image .alignright,.article-content .wp-block-image.is-resized {
    display: table!important;
}

.article-content .wp-block-quote,.article-content blockquote {
    position: relative;
    padding: 30px 40px;
    background: #f0f4f5;
    font-family: RiPlus-Black;
}

.article-content .wp-block-code,.article-content pre {
    padding: 30px;
    background: #2b303b;
    border-radius: 3px;
    border: 0;
    color: #6fbb72;
    font-size: 14px;
}

.article-content .post-note {
    opacity: 1;
}

@media (max-width: 768px) {
    .article-content .wp-block-code,.article-content pre {
        padding:10px
    }
}

/*entry-page*/
.entry-page {
    display: block;
    position: relative;
    padding: 0;
}

.entry-page-next, .entry-page-prev {
    position: relative;
    padding: 60px 15px 10px;
    margin-bottom: 20px;
    color: #fff;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 4px;
    overflow: hidden;
    border: 10px solid #fff;
    font-family: RiPlus-Black;
}

.entry-page-next:hover, .entry-page-prev:hover {
    opacity: 0.8;
}

.entry-page-next:before, .entry-page-prev:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 100, 100, 0.5);
    content: "";
}

.entry-page-next a, .entry-page-prev a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #fff;
    font-size: 15px;
}

.entry-page-next a span, .entry-page-prev a span {
    display: block;
    padding: 10px 15px 0;
    height: 50px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

.entry-page-next .entry-page-info, .entry-page-prev .entry-page-info {
    position: relative;
    font-size: 14px;
    line-height: 16px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .entry-page {
        padding: 0 15px;
    }

    .entry-page-next, .entry-page-prev {
        margin-top: 10px;
        border: 0;
        text-shadow: 0 2px 2px rgba(0,0,0,.2);
    }
}

/*.entry-share*/
.entry-share {
    display: block;
    position: relative;
}

.entry-share .go-share {
    margin-left: 10px;
    border-radius: 50px;
    border: 1px solid #E6E6E6;
    width: 50px;
    height: 30px;
    text-align: center;
    display: inline-block;
    line-height: 28px;
    font-size: 18px;
}

.entry-share .go-share.share-weixin {
    color: #8BC34A;
}

.entry-share .go-share.share-qq {
    color: #2196F3;
}

.entry-share .go-share.share-weibo {
    color: #F44336;
}

.entry-share .share-link {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
}

@media (max-width: 768px) {
    .entry-share .share-link {
        margin-top: 10px;
    }
}

/*entry-tags*/
.entry-tags {
    position: relative;
}

.entry-tags>a {
    display: inline-block;
    padding: 5px 12px;
    margin-right: 8px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    color: #666;
    border: 1px solid hsla(0,0%,39%,.2);
    border-radius: 2px;
    text-decoration: none;
    background: hsla(0,0%,100%,.2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.entry-tags>a:nth-child(1) {
    color: #3385fc;
}

.entry-tags>a:nth-child(2n) {
    color: #ffc12b;
}

.entry-tags>a:nth-child(3n) {
    color: #4CAF50;
}

.entry-tags>a:nth-child(4n) {
    color: #555;
}

.entry-tags>a:before {
    content: "#";
    padding-right: 2px;
}

.entry-tags>a:hover {
    color: #fff;
    background: #007bff;
    border-color: #007bff;
}

/*entry-related-posts*/
.entry-related-posts {
    position: relative;
    display: block;
    margin-top: 30px;
}

.entry-related-posts .title {
    position: relative;
    padding: 0 0 0 12px;
}

.entry-related-posts .title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    content: "";
    background: #3ca5f6;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .entry-related-posts {
        padding: 0 15px;
    }

    .entry-share .justify-content-between {
        text-align: center;
        justify-content: center!important;
    }
}

/*//////////////comments//////////////*/
#comments {
    padding: 30px;
    background: #fff;
    margin-bottom: 20px;
    font-family: 'Riplus-Black';
}

.comment-reply-title,.comments-title {
    position: relative;
    font-size: 16px;
    margin: 20px 0 20px;
    color: #999;
    padding: 0 0 0 12px;
}

.comment-reply-title:before, .comments-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    content: "";
    background: #3ca5f6;
    border-radius: 2px;
}

.comment-notes {
    display: none
}

.comments-list {
    padding: 0;
    margin: 0 0 20px;
    list-style: none
}

.comments-list .comment {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f7f7f7;
    transition: all .3s ease-out 0s
}

.comments-list .comment-children {
    position: relative;
    margin: 15px 0 0;
    padding: 20px;
    list-style: none;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #f5f5f5;
}

.comments-list .comment-children:before {
    position: absolute;
    left: 10px;
    top: -19px;
    border: 10px solid transparent;
    border-bottom: 10px solid #f7f7f7;
    content: ""
}

.comments-list .comment-children .comment {
    border-bottom: 1px solid #eee
}

.comments-list .comment-children .comment:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

.comments-list .comment-children .comment-body .nickname {
    font-size: 13px;
    line-height: 19px
}

.comments-list .comment-children .comment-body .comment-time {
    line-height: 19px
}

.comments-list .comment-children .comment-text {
    font-size: 13px
}

.comments-list .reply {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    line-height: 20px;
    visibility: hidden
}

.comments-list .reply a {
    transition: none
}

.comments-list .comment>.comment-inner:hover>.reply {
    padding: 0 4px;
    visibility: visible;
    border-radius: 3px
}

@media (max-width: 768px) {
    #comments {
        padding: 10px;
        margin-top: 10px;
    }

    .comments-list .comment>.comment-inner:hover>.reply {
        background: #fff
    }
}

.comment-author {
    float: left;
    width: 40px;
    margin-right: 20px
}

@media (max-width: 768px) {
    .comment-author {
        width:30px;
        margin-right: 10px
    }
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%
}

@media (max-width: 768px) {
    .comment-author img {
        width:30px;
        height: 30px
    }
}

.comment-body .nickname {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #666
}

.comment-body .nickname a {
    color: #3ca5f6
}

.comment-body .comment-time {
    display: inline-block;
    position: relative;
    margin-left: 5px;
    padding-left: 9px;
    line-height: 22px;
    font-weight: 400;
    color: #ccc;
    vertical-align: top
}

.comment-body .comment-time:before {
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ccc;
    content: ""
}

.comment-body .comment-awaiting-moderation {
    color: #333;
    font-weight: 700
}

.comment-text {
    padding-left: 60px;
    font-size: 14px;
    line-height: 1.6;
    color: #333
}

.comment-text img {
    height: auto
}

.comment-text audio,.comment-text img,.comment-text video {
    max-width: 100%;
    vertical-align: top
}

@media (max-width: 768px) {
    .comment-text audio,.comment-text video {
        display:block;
        width: 100%;
        height: auto
    }

    .comment-text {
        padding-left: 0;
    }
}

.comment-text p:last-child {
    margin-bottom: 0
}

.comment-respond {
    margin-top: -30px;
}

.comments-list li .comment-respond {
    margin-top: 0;
}

.comment-respond span.required {
    color: red
}

.logged-in-as {
    margin-bottom: 10px
}

.reply-left {
    width: 260px;
    float: left
}

.comment-form {
    margin-top: 15px;
    border: 1px solid #f0f4f5;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.comment-form-comment textarea {
    width: 100%;
    height: 100px;
    padding: 15px;
    line-height: 22px;
    border: 0;
    border-bottom: 1px solid #f5f5f5;
    outline: 0;
    vertical-align: top;
    box-sizing: border-box;
    background: rgba(150, 150, 150, 0.1);
    resize: none
}

.comment-form-comment .error {
    border: 1px solid #a94442
}

.comment-form-author,.comment-form-email,.comment-form-url {
    position: relative;
    float: left;
    width: 33.33%;
    padding: 15px 15px 0;
    margin: 0;
    box-sizing: border-box
}

@media (max-width: 768px) {
    .comment-form-author,.comment-form-email,.comment-form-url {
        width:100%;
        float: none
    }
}

.comment-form-author label,.comment-form-email label,.comment-form-url label {
    position: absolute;
    left: 15px;
    top: 15px;
    line-height: 34px;
    width: 62px;
    color: #666;
    font-weight: 400;
    text-align: center
}

.comment-form-author input,.comment-form-email input,.comment-form-url input {
    display: block;
    height: 34px;
    width: 100%;
    line-height: 22px;
    padding: 6px 10px 6px 60px;
    border: 1px solid #efefef;
    outline: 0
}

.comment-form-author input.error,.comment-form-email input.error,.comment-form-url input.error {
    border-color: #a94442
}

.comment-form-author {
    border-right: 0
}

.comment-form-email {
    border-left: 0
}

.comment-form-cookies-consent {
    float: left;
    padding: 15px;
    margin: 0;
    font-size: 13px;
    color: #666
}

@media (max-width: 768px) {
    .comment-form-cookies-consent {
        width:100%;
        float: none
    }
}

.form-submit {
    padding: 10px 15px;
    margin: 0;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    overflow: hidden
}

.form-submit .avatar {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: top;
    border-radius: 50%
}

.form-submit .submit {
    float: right;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 7px 16px;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    background-color: #0f81fb;
    border: 0;
    outline: 0;
    border-radius: 3px;
}

.form-submit .submit:hover {
    opacity: 0.8
}

@media (max-width: 768px) {
    .form-submit .submit {
        display:block;
        float: none;
        width: 100%;
        padding: 10px
    }
}

@media (max-width: 768px) {
    .logged-in .form-submit .submit {
        display:inline-block;
        width: auto;
        padding: 7px 16px;
        float: right
    }
}

.comment-must-login {
    height: 100px;
    padding: 40px 30px;
    font-size: 14px;
    color: #999;
    border: 1px solid #efefef;
    border-bottom-color: #f5f5f5;
    box-sizing: border-box;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    vertical-align: top;
    text-align: center;
    background: #fff;
}

.form-submit-text {
    font-size: 13px;
    line-height: 30px;
    color: #666
}

.form-submit-text span {
    /* color: #0f81fb; */
}

/*/////////sidebar//////////*/
.widget-area .sidebar {
    position: relative;
}

.sidebar .widget {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    clear: both;
    overflow: hidden;
    margin-bottom: 20px;
    font-family: RiPlus-Black;
}

@media (max-width: 768px) {
    .widget-area {
        background: #fff;
    }

    .sidebar .widget {
        padding: 10px;
    }
}

.sidebar .widget+.widget {
    /*margin-top: 20px;*/
}

.widget-title {
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #999;
    padding: 0 0 0 12px;
    position: relative;
}

.widget-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    content: "";
    background: #999;
    border-radius: 2px;
}

.widget ol li,.widget ul li {
    position: relative;
    padding: 5px 10px;
}

.widget ol a,.widget ul a {
    color: #555;
    font-size: 15px;
}

.widget ol li,.widget ul li span {
    color: #ccc;
    font-size: 13px;
}

.widget ol a:hover,.widget ul a:hover {
    color: #007bff;
}

.widget ol li:before,.widget ul li:before {
    position: absolute;
    left: 0;
    top: 13px;
    content: "";
    width: 0;
    height: 0;
    line-height: 0;
    border: 4px solid transparent;
    border-left: 4px solid #ccc
}

.widget .tagcloud {
    font-size: 0
}

.widget .tagcloud a {
    display: inline-block;
    width: 32.39%;
    margin: 0 .7% 1.4%;
    padding: 5px 2px;
    font-size: 12px!important;
    line-height: 1.2;
    text-align: center;
    color: #666;
    border: 1px solid hsla(0,0%,39%,.2);
    border-radius: 2px;
    text-decoration: none;
    background: hsla(0,0%,100%,.2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.widget .tagcloud a:nth-child(1) {
    color: #3385fc;
}

.widget .tagcloud a:nth-child(2n) {
    color: #ffc12b;
}

.widget .tagcloud a:nth-child(3n) {
    color: #4CAF50;
}

.widget .tagcloud a:nth-child(4n) {
    color: #555;
}

.widget .tagcloud a:before {
    content: "#";
    padding-right: 2px;
}

.widget .tagcloud a:nth-child(3n+1) {
    margin-left: 0
}

.widget .tagcloud a:nth-child(3n+3) {
    margin-right: 0
}

.widget .tagcloud a:hover {
    color: #fff;
    background: #007bff;
    border-color: #007bff
}

.riplus-widget-down {
    position: relative;
}

.riplus-widget-down .go-star-btn {
    width: 2rem;
    height: 2rem;
    padding: 0 !important;
    transition: color 0.25s ease-in-out,background-color 0.25s ease-in-out,border-color 0.25s ease-in-out,box-shadow 0.2s ease-in-out;
    border: 0;
    border-radius: 50%;
    background-color: #f3f5f9;
    color: #373f50;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    color: #989898;
    font-size: 1.25rem;
}

.riplus-widget-down .go-star-btn.ok {
    color: #ffc12b;
}

.riplus-widget-down ol {
    display: block;
    width: 40%;
    height: 6px;
    background: #f0f4f5;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.1rem;
    border-radius: 10px;
}

.riplus-widget-down .other-info {
    overflow: hidden;
    border-radius: 4px;
}

.riplus-widget-down .other-info ul {
    background-color: #f3f7ff;
}

.riplus-widget-down .other-info ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px;
}

.riplus-widget-down .other-info ul li span {
    color: #6c757c;
    font-size: 14px;
}

#riplus_post_before_down {
    background: #f2f7ff;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

#riplus_post_before_down .other-info ul {
    padding: 0
}

#riplus_post_before_down .go-star-btn {
    display: none;
}

.riplus-widget-posts {
    position: relative;
}

.riplus-widget-posts .widget-posts {
    list-style: none;
}

.riplus-widget-posts .widget-posts li {
    height: auto;
    width: 100%;
    display: inline-block;
}

.riplus-widget-posts .widget-posts li+li {
    margin-top: 15px;
}

.riplus-widget-posts .widget-posts li .thumb {
    width: 80px;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.riplus-widget-posts .widget-posts li .title {
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 30px;
}

.riplus-widget-comments {
    position: relative;
    list-style: none;
}

.riplus-widget-comments a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
    color: #777;
    margin: 0;
    width: 100%;
    margin-bottom: 10px;
}

.riplus-widget-comments .inner {
    position: relative;
}

.riplus-widget-comments .avatar {
    float: left;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
}

.riplus-widget-comments time {
    display: block;
    margin-bottom: 10px;
    color: #bbb;
    font-size: 12px;
    font-weight: 500;
}

.riplus-widget-comments strong {
    margin-right: 10px;
    color: #bbb;
}

.riplus-widget-comments small {
    background-color: #f6f6f6;
    width: 100%;
    display: block;
    border-radius: 4px;
    padding: 4px 10px;
    position: relative;
    color: #bbb;
}

.riplus-widget-comments small:before {
    content: " ";
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-bottom-color: #f6f6f6;
    position: absolute;
    left: 5px;
    top: -10px;
}

/*/////////user page//////////*/
.user-profile {
}

.user-profile-top {
    z-index: 0;
    position: relative;
    background: #666;
    overflow: hidden;
}

.user-profile-top .bg {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
}

.user-profile-top .bg .bg-img {
    position: absolute;
    left: -10%;
    top: -10%;
    right: -10%;
    height: 120%;
    width: 120%;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: 150% 150%;
    background-size: 150%;
    overflow: hidden;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.user-profile-top .bg .bg-img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.3);
}

.user-profile-top .container {
    text-align: center;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    max-width: 1140px;
}

.user-profile-warp {
    position: relative;
    padding: 30px 0;
}

.user-profile-warp .post-grid.card {
    position: relative;
}

.user-profile-warp .post-grid.card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0);
    transform: none;
}

.user-profile-warp .post-grid .meta-VIP-tag {
    width: 20px;
    height: 20px;
    background-size: 12px auto;
}

.user-profile-warp .post-grid .entry-body {
    padding: 0;
    position: absolute;
    bottom: 0;
    padding: 10px;
    color: #fff;
    font-size: 15px;
    transition: all ease 0.3s;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%);
    transform: translateY(0%);
    height: auto;
    width: 100%;
}

.user-profile-warp .post-grid .entry-title {
    height: 30px;
    line-height: 15px;
}

.user-profile-warp .post-grid .entry-title a {
    color: #fff;
    font-size: 12px;
}

.user-profile-warp .author-card {
    background: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-family: RiPlus-Black;
}

.author-card .author-infos {
    padding: 20px 0;
    text-align: center;
}

.author-card .author-infos .author_avatar {
    width: 100px;
    height: 100px;
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.author_avatar .avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,.16);
    border: 8px solid #eee;
}

.author-card .author-infos .author {
    padding-top: 15px;
}

.author-card .author-infos .author h4 {
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.author-card .author-infos .author p {
    line-height: 30px;
    padding-top: 6px;
    margin: 0;
}

.author-card .down-info,.author-card .aff-info {
    padding: 20px 0;
    border-top: 1px solid #f0f4f5;
}

.edit-nav-links {
    display: block;
    text-align: center;
    list-style: none;
}

.edit-nav-links::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

.edit-nav-links::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}

.edit-nav-links::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.edit-nav-links li {
    display: inline-block;
    position: relative;
    list-style: none;
    padding: 0 30px;
}

.edit-nav-links li a {
    padding: 10px 0;
    display: block;
    text-align: center;
    border-bottom: 3px solid #fff;
    padding-right: 3px;
}

.edit-nav-links li:after {
    content: "";
    display: block;
    width: 0;
    height: 10px;
    border-right: 1px solid #dedede;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 0
}

.edit-nav-links li:last-child:after {
    display: none
}

.edit-nav-links li a:hover {
    color: #3385ff;
}

.edit-nav-links li a.active {
    border-bottom-color: #3385ff;
    color: #3385ff;
}

.author-nav {
    position: relative;
    padding-bottom: 20px;
}

.author-nav .edit-nav-links li a.active {
    border-bottom-color: transparent;
    color: #3385ff;
}

.author-nav .edit-nav-links li:after {
    display: none;
}

.user-profile-container {
    background: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 30px;
    min-height: 60vh;
    font-family: RiPlus-Black;
}

.user-profile-container .avatar img.avatar {
    height: 100px;
    width: 100px;
    border-radius: 50rem!important;
    box-shadow: 0 0 10px rgba(0,0,0,.16);
    border: 8px solid #fff;
}

.user-profile-container .add {
    position: relative;
}

.user-profile-container #addPic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.user-profile-container .payvip-header {
    color: #fff;
    background-repeat: no-repeat;
    margin: -30px;
    margin-bottom: 20px;
    border-radius: 4px 4px 0 0;
    padding: 30px;
}

.user-profile-container .payvip-header h4 {
    font-weight: 700;
}

.user-profile-container .payvip-header p {
    border: 1px solid rgba(255, 255, 255, .4);
    text-align: center;
}

.user-profile-container .payvip-header span {
    font-size: 18px;
    letter-spacing: 5px;
}

.user-profile-container .payvip-header span:nth-child(2) {
    margin: 0 54px 0 54px;
}

.user-profile-container .pay-vip-item {
    border: 2px solid #cacaca;
    border-radius: 5px !important;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.user-profile-container .pay-vip-item.ok {
    border: 2px solid #ffc107;
    background-color: rgba(255, 193, 43, 0.1);
}

.user-profile-container .pay-vip-item .vip-title {
    padding: 10px;
    margin: 0;
    font-weight: 500;
    font-size: 25px;
    text-align: center;
}

.user-profile-container .pay-vip-item .vip-text {
    margin: 0;
    text-align: center;
}

.user-profile-container .pay-vip-item .vip-price {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #ffc12b;
}

.user-profile-container .pay-vip-item .vip-price small {
    color: #3c3c3c;
}

.border-dashed {
    border-style: dashed !important;
    border: 2px dashed rgba(0,0,0,.125);
}

.image-line {
    width: 100%;
    height: 20px;
    background-image: url(/style/img_line.png);
    margin: 0 auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.user-profile-container .aff {
    position: relative;
}

.user-profile-container .aff .title {
    padding: 20px 0;
    font-size: 16px;
    color: #6c757c;
}

.avatars {
    display: inline-block;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.avatars > li {
    display: inline-block;
}

.avatars > li .avatar {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    border: 2px solid #f8f9fa;
    background: #f8f9fa;
    color: #fff;
}

@media (max-width: 768px) {
    .user-profile-top {
        display: none;
    }

    .user-profile-warp {
        padding: 10px 0;
        background: #fff;
    }

    .edit-nav-links {
        overflow: hidden;
        position: relative;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px;
    }

    .edit-nav-links li {
        padding: 0 10px;
    }

    .edit-nav-links li a {
        padding: 5px 0;
        font-size: 14px;
    }

    .edit-nav-links li a.active {
        border: none;
    }

    .author-card .author-infos {
        padding: 10px 0;
        display: flex;
        align-items: center;
        padding-left: 10px;
    }

    .author-card .author-infos .author_avatar {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .author-card .author_avatar .avatar {
        border: 4px solid #eee;
    }

    .author-card .author-infos .author {
        padding-top: 0;
        text-align: left;
        font-size: 12px;
    }

    .author-card .author-infos .author p {
        line-height: 1;
    }

    .author-card .author-infos .author h4 {
        font-size: 15px;
    }

    .author-card .down-info {
        padding: 10px 0;
    }

    .author-card .down-info .down-title {
        font-size: 14px;
    }

    .user-profile-warp .author-card {
        border-bottom: 1px solid #eee;
        border-radius: 0;
        background: #f7f7f7;
        margin: -7px;
        margin-bottom: 10px;
    }

    .user-profile-container {
        padding: 20px;
        min-height: 40vh;
    }

    .user-profile-container .pay-vip-item .vip-title {
        font-size: 15px;
        padding: 5px;
    }

    .user-profile-container .aff .card-body {
        padding: .875rem;
    }

    .user-profile-container .aff .card-title {
        margin-bottom: .2rem;
        font-size: 18px;
    }
}

/*/////////footer//////////*/
.site-footer {
    position: relative;
    margin-top: 20px;
}

.site-footer .footer-copyright {
    text-align: justify;
    background: #25282a;
    font-size: 13px;
    color: #676b6f;
    letter-spacing: 0.2px;
    padding: 1.5em 0;
}

.site-footer .footer-copyright p {
    float: left;
    margin-bottom: 0;
}

.site-footer .footer-copyright a {
    color: #676b6f;
    white-space: nowrap;
    margin: 0 5px;
}

.site-footer .footer-copyright a:hover {
    color: #fff;
}

.site-footer .footer-copyright .link-footer-bottom {
    float: right;
}

.site-footer .footer-copyright .link-footer-bottom li {
    display: inline;
    margin: 0 10px;
}

.site-footer .footer-widget {
    background-color: #333333;
    color: #adadad;
    padding: 30px 0;
    font-family: RiPlus-Black;
}

.site-footer .footer-info {
}

.site-footer .footer-info .logo {
    max-width: 180px;
}

.site-footer .footer-info .desc {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 30px;
    color: #676b6f;
}

.footer-widget .widget-title {
    font-size: 15px;
    font-weight: 600;
    color: #999;
}

.footer-widget .widget ol a,.footer-widget .widget ul a {
    color: #676b6f;
    font-size: 15px;
}

.footer-widget .widget ol li, .footer-widget .widget ul li {
    position: relative;
    padding: 3px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-widget .widget ol li:before, .footer-widget .widget ul li:before {
    border-left: 4px solid #676b6f;
}

.footer-widget .widget-warp .widget {
    max-width: 33%;
    margin: 0 auto;
}

.footer-widget .widget-warp .widget:first-child {
    /*margin-left: 20px;*/
}

.footer-widget .widget-warp .widget:last-child {
    margin-right: 0;
}

.footer-links {
    background: #2c2f31;
    color: #424649;
    font-size: 12px;
    padding: 15px 0;
    font-family: RiPlus-Black;
}

.footer-links a {
    color: #424649
}

.footer-links a:hover {
    color: #676b6f
}

.footer-links ul {
    display: inline
}

.footer-links h6,.footer-links li {
    font-size: 12px;
    font-weight: 400;
    display: inline;
    white-space: nowrap;
    margin: 0 8px
}

@media (max-width: 1024px) {
    .site-footer {
        margin-top: 1rem;
    }

    .site-footer .footer-copyright {
        text-align: center;
        font-size: 12px;
        padding: 1.5em 0;
    }

    .site-footer .footer-copyright .link-footer-bottom li {
        margin: 0 3px;
    }
}

.rollbar {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    text-shadow: 0 2px 2px rgba(0,0,0,.2);
}

.rollbar .rollbar-item {
    position: relative;
    margin-top: 10px;
    border-radius: 4px;
    background-color: #fff;
    color: #555;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / 15%);
    border-radius: 50%;
}

.rollbar .rollbar-item.tap-viplink {
    height: 100%;
    border-radius: 21px;
    display: block;
    padding: 15px 12px;
    line-height: 20px;
}

.rollbar .rollbar-item.tap-viplink .fa, .rollbar .rollbar-item.tap-viplink .mdi {
    line-height: 20px;
}

.rollbar .rollbar-item a {
    color: #555;
}

.rollbar .rollbar-item:hover {
    background-color: #ff6a00;
    color: #fff;
}
.rollbar .rollbar-item:hover a {
    color: #fff;
}

.rollbar .rollbar-item .fa,.rollbar .rollbar-item .mdi {
    font-size: 18px;
    line-height: 40px;
}



@media (max-width: 768px) {
    .rollbar {
        right: 10px;
        bottom: 80px;
        width: auto;
    }

    .rollbar .rollbar-item {
        display: none;
    }

    .rollbar .rollbar-item.back-to-top {
        display: block !important;
    }
}

.tongue {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    -webkit-transform: rotate(180deg) translateX(50%);
    -ms-transform: rotate(180deg) translateX(50%);
    transform: rotate(180deg) translateX(50%);
    width: 138px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #8492A6;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FFF' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E");
}

.tongue i {
    -webkit-animation: floating-sm 2s ease infinite;
    animation: floating-sm 2s ease infinite;
}

.tongue:hover i {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.tongue-primary {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%236e00ff' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E");
    color: #FFF;
}

.tongue-primary:hover {
    color: #FFF;
}

[class*=hover-] {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    [class*=hover-] {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

/*tagcloud*/
.tagcloud-s {
    position: relative;
}

.tagcloud-s a {
    min-height: 80px;
    margin-bottom: 30px;
    transition: all .3s ease;
    position: relative;
    width: 100%;
    padding: 20px;
    background-size: cover;
    background-position: center;
    color: #1b1b1b;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    overflow: hidden;
    min-height: 100px;
    transition: all ease 500ms;
}

.tagcloud-s a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.71), rgba(0, 0, 0, 0.32));
}

.tagcloud-s a:hover:before {
    background: none;
}

.tagcloud-s a .tag-name {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    padding: 5px 10px;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.tagcloud-s a .tag-count {
    background: #FF3A3A;
    position: absolute;
    right: 8%;
    top: 15%;
    width: 30px;
    font-size: 13px;
    text-align: center;
    border-radius: 50%;
    height: 30px;
    line-height: 30px;
}

.tagcloud-s:nth-child(1) a .tag-count {
    background: #3385fc;
}

.tagcloud-s:nth-child(2n) a .tag-count {
    background: #ffc12b;
}

.tagcloud-s:nth-child(3n) a .tag-count {
    background: #4CAF50;
}

.tagcloud-s:nth-child(4n) a .tag-count {
    background: #555;
}

/*/////////.m-menubar//////////*/
.m-menubar {
    display: none;
    z-index: 1040;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff
}

.m-menubar:before {
    content: '1';
    color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    display: block;
    overflow: hidden;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5)
}

.m-menubar ul {
    display: flex;
    text-align: center
}

.m-menubar li {
    flex: 1;
    text-align: center;
    font-size: 11px
}

.m-menubar li .mdi {
    margin-bottom: 3px;
    display: block;
    font-size: 22px;
    font-weight: normal
}

.m-menubar li a {
    display: block;
    height: 60px;
    padding-top: 12px;
    color: #657fa2
}

.m-menubar li.active a {
    color: #007afb
}

.m-menubar li.active a .mdi {
    color: #007afb
}

@media (max-width: 1024px) {
    body {
        padding-top:0 !important;
        padding-bottom: 60px !important
    }

    .m-menubar {
        display: block
    }
}

/*.moveing-warp */
.moveing-warp {
    width: 100%;
    height: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: -19px;
}

.moveing-warp .warp1, .moveing-warp .warp2, .moveing-warp .warp3 {
    -webkit-mask: url(/style/move.svg);
    mask: url(/style/move.svg);
    background-color: #f0f4f5
}

.moveing-warp .move {
    width: 200%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 350px 100%;
    transform-origin: 0 100% 0;
    animation-name: move;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.moveing-warp .warp1 {
    animation-delay: -5s;
    animation-duration: 15s;
}

.moveing-warp .warp2 {
    animation-delay: -2s;
    animation-duration: 8s;
}

.moveing-warp .warp3 {
    animation-delay: -1s;
    animation-duration: 3s;
}

@keyframes move {
    0% {
        transform: translate(-175px,0px) scale(1,1)
    }

    50% {
        transform: translate(-87px,0px) scale(1,0.5)
    }

    100% {
        transform: translate(0px,0px) scale(1,1)
    }
}

/*pay-swal2-popup*/
.swal2-popup .pay-button-box {
    padding: 12px 30px;
    z-index: 1;
    text-align: center;
}

.swal2-popup .pay-button-box .pay-item {
    width: 100%;
    height: 60px;
    border: 0;
    cursor: pointer;
    font-size: 1.25rem;
    display: inline-block;
    line-height: 60px;
    text-align: center;
}

.swal2-popup .pay-button-box .pay-item +.pay-item {
    border-top: 1px solid #e6e6e6;
}

.swal2-popup .pay-button-box .pay-item span {
    display: inline-block;
    text-align: center;
    width: 120px;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swal2-popup .pay-button-box .pay-item i.alipay {
    display: inline-block;
    width: 40px;
    height: 100%;
    vertical-align: middle;
    background: url(/style/alic.png) center no-repeat;
}

.swal2-popup .pay-button-box .pay-item i.weixinpay {
    display: inline-block;
    width: 40px;
    height: 100%;
    vertical-align: middle;
    background: url(/style/wxc.png) center no-repeat;
}

.swal2-popup .pay-button-box .pay-item i.paypal {
    display: inline-block;
    width: 40px;
    height: 100%;
    vertical-align: middle;
    background: url(/style/paypal.png) center no-repeat;
}

.swal2-popup .pay-button-box .pay-item:hover {
    opacity: 0.6;
    color: #1990fc;
    transition: all 0.3s ease;
}

.swal2-popup .qrcon {
    position: relative;
}

.swal2-popup .qrcon h5 {
    padding: 0;
    margin-top: 1.8em;
}

.swal2-popup .qrcon img.qr-pay {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 120px;
    text-align: center;
}

.swal2-popup .qrcon .title {
    font-size: 16px;
    margin: 10px auto;
}

.swal2-popup .qrcon .qrcode img {
    width: 200px;
    height: 200px;
}

.swal2-popup .qrcon .bottom {
    border-radius: 0 0 .3125em .3125em;
    width: 100%;
    background: #33465a;
    color: #f2f2f2;
    padding: 15px 0px;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

.swal2-popup .qrcon .bottom.alipay {
    background: #00a7ef;
}

.swal2-popup .qrcon .bottom.weixinpay {
    background: #08bb21;
}

.swal2-popup .swal2-image.poser {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

/*ads*/
.riplus_ads_wrap {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
    border: 10px solid #fff;
    background: #f0f4f5;
}

.riplus_ads_wrap:before {
    content: '公告';
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0,0,0,0.1);
    display: block;
    overflow: hidden;
    z-index: 1;
    padding: 1px 15px;
    font-size: 13px;
    color: #fff;
}

.riplus_ads_wrap:hover {
    opacity: 0.8;
    -webkit-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
}

.riplus_ads_wrap img {
    vertical-align: top;
    min-width: 100%;
    height: auto
}

@media (max-width: 768px) {
    .riplus_ads_wrap.mobile {
        margin: 15px 0;
        border-radius: 2px;
        border: 3px solid #eee;
        background: #fff;
    }
}

@media (max-width: 768px) {
    .dplayer-logo {
        display: none;
    }
}

/*bootstarp init*/
.badge {
    font-weight: 500;
}

/*//////////自适应尺寸////////////*/
@media (max-width: 576px) {
}

@media (max-width: 768px) {
}

@media (max-width: 992px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 1200px) {
}

/*中文字符确认无乱码*/
