﻿/* CSS Document */

@charset "utf-8";
* {
    padding: 0;
    margin: 0;
    border: 0;
}

/*移动端*/

html {
    font-size: 625%;
    font-size: 100px;
    background-color: #eee;
}

body {
    font-size: 0.16rem;
}

body {
    font-family: Verdana, Arial, "Microsoft Yahei", "宋体";
}

html,
body {
    height: 100%;
}

blockquote,
body,
dd,
dir,
dl,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input[type=checkbox],
input[type=radio],
input[type=range],
listing,
menu,
ol,
p,
plaintext,
pre,
ul,
xmp {
    margin: 0;
}

button,
dir,
fieldset,
input,
input[type=button],
input[type=checkbox],
input[type=file],
input[type=hidden],
input[type=image],
input[type=password],
input[type=radio],
input[type=range],
input[type=reset],
input[type=search],
input[type=submit],
isindex,
legend,
menu,
ol,
textarea,
ul {
    padding: 0;
}

html * {
    outline: 0;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
}

input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    border: 0;
    border-radius: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button,
input,
select {
    color: inherit
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
}

address,
cite,
dfn,
em,
i,
var {
    font-style: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
iframe {
    border: 0;
}

ol,
ul {
    list-style: none
}

a {
    color: #333;
    text-decoration: none;
}

/*IE7不支持的清除浮动*/

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: ".";
    clear: both;
    height: 0;
}

* html .clearfix {
    zoom: 1;
}

/*全版本兼容清楚浮动*/

.clears {
    clear: both;
    line-height: 0px;
    overflow: hidden;
    font-size: 0px;
    height: 0px;
}

input,
textarea,
select {
    font-family: Verdana, Arial, "Microsoft Yahei", "宋体";
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

.mui-flex {
    /* display: -webkit-box;  */
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* display: -moz-box ;*/
    /* OLD - Firefox 19- (buggy but mostly works) */
    /* display: -ms-flexbox ;*/
    /* TWEENER - IE 10 */
    /* display: -webkit-flex ; */
    /* NEW - Chrome */
    /* display: flex ;*/
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* -webkit-flex-wrap: wrap;*/
    /* -ms-flex-wrap: wrap;*/
    /* flex-wrap: wrap*/
    display: flex;
    display: -webkit-flex;
}

.mui-flex .mui-flex {
    display: -webkit-box !important;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box !important;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox !important;
    /*TWEENER - IE 10 */
    display: -webkit-flex !important;
    /* NEW - Chrome */
    display: flex !important;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mui-flex,
.mui-flex *,
.mui-flex:after,
.mui-flex:before {
    box-sizing: border-box
}

.mui-flex.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.mui-flex.vertical.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.mui-flex.vertical>.cell {
    width: auto
}

.mui-flex.vertical>.cell>.inner {
    position: absolute;
    width: 100%;
    height: 100%
}

.mui-flex.horizental {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.mui-flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.mui-flex.justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.mui-flex.justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.mui-flex.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mui-flex.justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mui-flex.justify-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.mui-flex.align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.mui-flex.align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end
}

.mui-flex.align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.mui-flex.align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.mui-flex.align-stretch .cell {
    height: auto !important
}

.mui-flex.center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.mui-flex>.cell {
    flex: auto;
    -webkit-flex: auto;
    align-self: center;
    -webkit-align-self: center;
    display: flex;
    display: -webkit-flex;
}

.mui-flex>.cell>a {
    flex: auto;
    -webkit-flex: auto;
    align-self: center;
    -webkit-align-self: center;
}

/* 考虑浏览器兼容，不要乱写，这是无用代码 */

.mui-flex>.cellback {
    -webkit-box-flex: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;
    /* OLD - Firefox 19- */
    /*width: 20%;               /!* For old syntax, otherwise collapses. *!/*/
    -webkit-flex: 1;
    /* Chrome */
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width: 0;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
    display: block;
    padding: 0;
    position: relative
}

.mui-flex.vertical>.cell {
    width: auto;
    height: 0;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    /*max-height: 100%;*/
    /*max-width: inherit;*/
    display: block;
    padding: 0;
    position: relative
}

.mui-flex>.cell.fixed {
    -webkit-box-flex: 0 !important;
    -webkit-flex: none !important;
    -ms-flex: none !important;
    flex: none !important;
    width: auto
}

.mui-flex>.cell.self-start {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.mui-flex>.cell.self-end {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.mui-flex>.cell.self-center {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.cat {
    -webkit-box-flex: 3;
    -moz-box-flex: 3;
    -webkit-flex: 3;
    -ms-flex: 3;
    flex: 3;
}

/*common font*/

.f12 {
    font-size: .06rem;
}

.f14 {
    font-size: .07rem;
}

.f16 {
    font-size: .08rem;
}

.f18 {
    font-size: .09rem;
}

.f20 {
    font-size: .1rem;
}

.f22 {
    font-size: .11rem;
}

.f24 {
    font-size: .12rem;
}

.f26 {
    font-size: .16rem;
}

.f28 {
    font-size: .16rem;
}

.f30 {
    font-size: .15rem;
}

.f32 {
    font-size: .16rem;
}

.f34 {
    font-size: .17rem;
}

.f36 {
    font-size: .18rem;
}

.f38 {
    font-size: .19rem;
}

.f40 {
    font-size: .2rem;
}

/*comment margin-top*/

.m12 {
    margin-top: .06rem;
}

.m20 {
    margin-top: .1rem;
}

.m22 {
    margin-top: .11rem;
}

/*comment height*/

.h66 {
    height: .33rem;
}

.h88 {
    height: .44rem;
}

.pagination-wrap {
    background: #eee;
    padding: 8px 0px;
}

.header-left {
    float: left;
    margin-left: 10px;
    width: 120px;
    background-image: url(/Content/images/logo.png) !important;
    background-repeat: no-repeat !important;
    background-position: 0px center !important;
    background-size: contain !important;
    background-color: none !important;
}

.header-bar {
    background: #E7E2D9;
	background-image: url(/Content/images/bg.png) !important;
}

.header-right2 {
    line-height: 1;
    font-size: 16px;
    max-width: 212px;	
    overflow: hidden;
    height: 40px;
    text-overflow: ellipsis;
    word-spacing: initial;
    white-space: nowrap;	
}

.header-right2 em.delive {
    float: left;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #333;
}

.header-right2 .adv {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    vertical-align: top;
    overflow: hidden;
}

.header-right2 .adv img {
    width: 100%;
    height: 100%;
}

.header-right2 .userid {
    height: 30px;
    line-height: 30px;
    font-size: .16rem;
}

.header-right2 {
    line-height: .5rem;
	width:115px;
	background-image: url(/Content/images/right.png) !important;
    float: right;
    font-size: 18px;
    color: #8b4712;
    cursor: pointer;
    height: 50px;
    line-height: 23px;
    padding-top: 13px;
}

.header-right2 p.logs {
    float: left;
}

.header-right2 .adv {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    vertical-align: middle;
    overflow: hidden;
}

.header-right2 .adv img {
    width: 100%;
    height: 100%;
}

/*start bgs 背景遮罩*/

.login {
    display: none;
}

.bgs {
    opacity: 0.7;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-user-select: none;
    z-index: 10;
    background: rgb(0, 0, 0);
    /* display: none;*/
}

/*登录*/

.deng {
    width: 656px;
    height: 335px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    outline: 0px;
    z-index: 10;
    margin-left: -328px;
    margin-top: -167.5px;
}

.deng-top {
    width: 100%;
    height: 54px;
    background: #E7E2D9;
    line-height: 54px;
    color: #fff;
    font-size: 20px;
}

.deng .grids {
    width: 600px;
    margin: 0 auto;
}

.log-top span {
    cursor: pointer;
}

.log-top em {
    cursor: pointer;
}

.login-right {
    /*width: 220px;*/
    float: right;
    margin-top: 40px;
}

.login-right p {
    margin-top: 21px;
}

.enroll {
    width: 140px;
    height: 38px;
    border: 1px solid #E7E2D9;
    border-radius: 10px;
    line-height: 38px;
    text-align: center;
    font-size: 22px;
    font-family: 黑体;
    color: #E7E2D9;
    margin-top: 10px;
    cursor: pointer;
}

.login-left {
    width: 300px;
    margin-top: 40px;
    /*padding-right: 50px;*/
    border-right: 1px solid #efefef;
    float: left;
}

.fns {
    margin-bottom: 10px;
}

.fns em,
.lns em {
    float: left;
    float: left;
    line-height: 40px;
    font-size: 18px;
    color: #333;
}

.names i {
    padding-left: 58px;
    font-size: 12px;
}

.tex,
.pwd {
    width: 267px;
    height: 40px;
    border: 1px solid #a3a3a3;
    border-radius: 10px;
    outline: none;
    padding-left: 6px;
    font-size: 16px;
    font-family: '微软雅黑';
}

.deng-top .grids em {
    float: right;
}

.ways {
    padding-top: 66px;
}

.share-img {
    padding-left: 64px;
}

.ways .grids img {
    margin-right: 24px;
}

.protoco {
    line-height: 24px;
    text-align: center;
    margin-top: 28px;
    color: #a1a5a9;
}

.protoco span {
    width: 100%;
    display: inline-block;
    background: url(/Content/images/protoco.png) no-repeat 140px center;
    font-size: 16px;
}

.chk {
    margin: 8px 0 14px 0;
}

.chk span {
    font-size: 14px;
}

.chk i {
    color: #E7E2D9;
    font-size: 14px;
    margin-left: 97px;
    cursor: pointer;
}

.login-btn {
    width: 274px;
    height: 40px;
    line-height: 40px;
    background: #E7E2D9;
    border-radius: 10px;
    color: #fff;
    font-size: 22px;
    font-family: '微软雅黑';
    outline: none;
    margin-left: 52px;
}

.san-deng ul {
    padding: 17px 0;
    border-bottom: 1px solid #ddd;
}

.san-deng ul li {
    float: left;
    margin-right: 18px;
}

.san-deng ul li+li {
    margin-right: 0;
}

.san-deng ul li img {
    width: 62px;
    height: 62px;
}

/*start contris*/

.log {
    display: none;
}

.contris {
    width: 554px;
    height: 330px;
    background: #fff;
    position: fixed;
    left: 50%;
    top: 50%;
    outline: 0px;
    z-index: 10;
    margin-left: -295px;
    margin-top: -165px;
}

.grids2 {
    width: 484px;
    margin: 0 auto;
}

.contris-top {
    width: 100%;
    height: 54px;
    background: #E7E2D9;
    line-height: 54px;
    color: #fff;
    font-size: 20px;
}

.contris-top em {
    display: block;
    width: 22px;
    height: 24px;
    background: url(/Content/images/shan.png) no-repeat;
    background-size: cover;
    float: right;
    margin-top: 14px;
    cursor: pointer;
}

.contris-main-left {
    float: left;
    position: relative;
}

.contris-main-left img {
    position: absolute;
    top: -50px;
    left: 0;
    width: 180px;
    height: 323px;
}

.contris-main-right {
    width: 248px;
    float: right;
}

.name {
    padding-top: 44px;
}

.name span {
    display: block;
    color: #E7E2D9;
    font-size: 24px;
}

.name em {
    display: block;
    font-size: 20px;
    color: #7c7c7c;
    line-height: 1.5;
}

.name i {
    font-size: 20px;
    color: #7c7c7c;
    line-height: 1.5;
}

.img-ers {
    width: 100%;
    margin-top: 18px;
    height: 94px;
}

.img-ers .img-ers-left {
    width: 120px;
    text-align: center;
    line-height: 56px;
    padding-top: 22px;
    color: #fff;
}

.img-ers .img-ers-left span {
    display: block;
    width: 120px;
    height: 56px;
    background: #E7E2D9;
    border-radius: 8px;
}

.img-ers .img-ers-right {
    float: left;
}

.deng {
    width: 300px;
    margin-left: -150px;
}

.deng-top {
    padding-top: 30px;
    height: auto;
    line-height: 1.14;
    font-size: 16px;
    color: #666;
    text-align: center;
}

.deng .grids {
    width: 100%;
}

.deng-top {
    background-color: #fff;
}

.deng-top .close {
    position: absolute;
    padding: 10px;
    top: 0px;
    right: 0px;
    width: 14px;
    height: 14px;
    background-image: url(/Content/images/icon-close.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.deng-top .close:hover {
    background-image: url(/Content/images/icon-close_hover.png);
}

.login-left {
    margin-top: 20px;
    border-right: 0px;
    text-align: center;
}

.login-left>.clearfix {
    /* height: 58px; */
}

.tex,
.pwd {
    width: 210px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 2px;
    outline: none;
    padding-left: 25px !important;
    font-size: 14px;
    font-family: '微软雅黑';
    background-color: #f7f7f7;
    color: #bbb;
    display: block;
    margin: 0 auto;
}

.login-left .names {
    text-align: center;
}

.names i {
    margin: 0 auto;
    width: 220px;
    display: block;
    text-align: left;
    padding-left: 0;
    height: 17px;
    margin-top: 3px;
}

.login-left .names .tex {
    background-image: url(/Content/images/user.png);
    background-repeat: no-repeat;
    background-position: 7px 11px;
}

.login-left .pwd {
    background-image: url(/Content/images/lock.png);
    background-repeat: no-repeat;
    background-position: 7px 11px;
}

.login-btn {
    margin-top: 6px;
    width: 237px;
    height: 35px;
    line-height: 35px;
    background: #E7E2D9;
    border-radius: 2px;
    color: #793015;
    font-size: 16px;
    font-family: '微软雅黑';
    outline: none;
    margin-left: 0px;
    cursor: pointer;
    /* margin-left: 52px; */
}

.register {
    display: none;
}

.weui-mask {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.weui-mask_transparent {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.weui-actionsheet {
    position: fixed;
    left: 0;
    bottom: 0;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 5000;
    width: 100%;
    background-color: #EFEFF4;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.weui-actionsheet__title {
    position: relative;
    /* height:65px; */
    padding: 5px 20px;
    line-height: 1.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
    color: #888;
    background: #FCFCFD;
}

.weui-actionsheet__title:before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.weui-actionsheet__title .weui-actionsheet__title-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.weui-actionsheet__menu {
    background-color: #FCFCFD;
}

.weui-actionsheet__action {
    margin-top: 6px;
    background-color: #FCFCFD;
}

.weui-actionsheet__cell {
    position: relative;
    padding: 10px 0;
    text-align: center;
    font-size: 0px;
}

.weui-actionsheet__cell>.share-item {
    width: 20%;
    display: inline-block;
    text-align: center;
    
}
.weui-actionsheet__cell>.share-item button,
.weui-actionsheet__cell>.share-item a{
    display: inline-block;
    background-size: 100% 100%;
}
.share-item-text {
    font-size: 10px;
}

.weui-actionsheet__cell:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}


.weui-actionsheet__cell:first-child:before {
    display: none;
}

.weui-skin_android .weui-actionsheet {
    position: fixed;
    left: 50%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 274px;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: transparent;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.weui-skin_android .weui-actionsheet__action {
    display: none;
}

.weui-skin_android .weui-actionsheet__menu {
    border-radius: 2px;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
}

.weui-skin_android .weui-actionsheet__cell {
    padding: 13px 24px;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
}

.weui-skin_android .weui-actionsheet__cell:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.weui-skin_android .weui-actionsheet__cell:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.weui-actionsheet_toggle {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.fen-cont>a {
    background-size: 100% 100%;
}
.fen-cont a.weixin {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-image: url(/Content/images/fen-wei.png);
}

.fen-cont a.qzone {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-image: url(/Content/images/qzone.png);
}
.fen-cont a.qq {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-image: url(/Content/images/qq.png);
}
.fen-cont a.sina {
    width: 35px;
    height: 34px;
    line-height: 34px;
    background-image: url(/Content/images/fen-xinlang.png);
}
.fen-cont .i-copy {
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-image: url(/Content/images/copy-link.png);
    background-color: transparent;
}
.fen-cont span.collect-icon {
    display: inline-block;
    width: 35px;
    height: 34px;
    line-height: 34px;
    background: url(/Content/images/collection.png) no-repeat;
    background-size: 100% 100%;
}
.fen-cont span.collect-icon.collected{
    background-image: url(/Content/images/collection-2.png);
}
.bdshare-button-style0-16 a,
.bdshare-button-style0-16 .bds_more {
    display: inline-block;
    float: none !important;
    font-size: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.video-list-share-copy {
    display: none;
    font-size: 16px;
    padding: 20px;
}

.video-list-share-copy-link {
    margin-top: 10px;
    padding: 7px 10px;
    font-size: 14px;
    border: 1px dotted #d9d9d9;
    word-break: break-all;
}

.bdshare-button-style0-16 .copy-link {
    line-height: 1.14;
    height: auto;
    background-image: none;
    font-size: 10px;
    -webkit-tap-highlight-color: initial;
}

.sr-bdimgshare {
    display: none !important;
}

.videos {
    margin-top: 10px;
    z-index: 1;
}

.weui-actionsheet__cell>.publish-item {
    width: 25%;
    display: inline-block;
    text-align: center;
}
.publish-item a.pf-pic {
    background: url(../img/img.png) no-repeat;
}
.publish-item a.pf-video {

    background: url(../img/video.png) no-repeat;
}.publish-item a.pf-show {

    background: url(../img/girl.png) no-repeat;
}.publish-item a.pf-duanzi {
    background: url(../img/text.png) no-repeat;
}
.weui-actionsheet__cell>.publish-item a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background-size: 100% 100%;
}
.publish-item-text {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
}
.publish-cancel 
{   
    padding: 70px 0 20px;
    height: 40px;
    text-align: center;
}
.publishbar .weui-actionsheet__cell {
    background-color: transparent; 
}

#publishActionsheet {
    background-color: transparent;
}
.weui-actionsheet__menu.publishbar {
    background-color: transparent;

}


.wechat-qrcode {
    display: none;
    border: 1px solid #eee;
    position: absolute;
    z-index: 9;
    top: -205px;
    left: -84px;
    width: 200px;
    height: 192px;
    color: #666;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px #aaa;
    transition: all 200ms;
    -webkit-tansition: all 350ms;
    -moz-transition: all 350ms
}
.wechat-qrcode.t-big{
    width: 290px;
    height: 300px;
    font-size: 14px;
}
.wechat-qrcode.t-big .qrcode {
    margin-top: 20px;
    margin-bottom: 20px;
}
.wechat-qrcode.t-big .help p {
    line-height: 22px;
}
.wechat-qrcode.t-big h4 {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
}
.wechat-qrcode.t-big .v-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    background: url(/Content/images/icon-close.png) no-repeat;
    background-size: cover;
    cursor: pointer;
}
.wechat-qrcode.bottom {
    top: 40px;
    left: -84px
}
.wechat-qrcode.fixedbox{
    position: fixed;
    top: 45%;
    left: 50%;
    margin-top: -150px;
    margin-left: -145px;
    z-index: 11111;
}
.wechat-qrcode.fixedbox:after,
.wechat-qrcode.bottom:after {
    display: none
}

.wechat-qrcode h4 {
    font-weight: normal;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
    color: #777
}

.wechat-qrcode .qrcode {
    /* width: 105px; */
    margin: 10px auto
}

.wechat-qrcode .qrcode table {
    margin: 0 !important
}

.wechat-qrcode .help p {
    font-weight: normal;
    line-height: 16px;
    padding: 0;
    margin: 0
}

.wechat-qrcode:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -6px;
    bottom: -13px;
    width: 0;
    height: 0;
    border-width: 8px 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent
}
.one-warp {
    width: 100%;
    height: 100%;
}

.fcvert {
    width: 100%;
    height: 50px;
    /*	background: url(../../img/guanggao.png) repeat-x;
	background-size:cover; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.fcvert a {
    height: 50px;
    width: 100%;
    display: block;
    max-width: 165px;
    background-color: transparent !important
}

.fcvert a img {
    width: 100%;
    height: 50px;
}

.fcvert .advert-center {
    width: 96%;
    height: .495rem;
    margin: 0 auto;
}

/*start content*/
.content {
     width: 100%;
    padding: 98px 0 0 0;
    background: #eee;
}
.index-content {
    width: 100%;
    height: 100%;
    background: #eee;
    position: relative;
}
.minirefresh-wrap {
    top: 97px!important;
}
.one-content {
    width: 100%;
}

.grid {
    width: 95%;
    margin: 0 auto;
}

.grid-cont {
    width: 94%;
    padding: 0 3%;
    margin-top: .1rem;
}

.one-title {
    width: 100%;
    height: .285rem;
    line-height: .285rem;
}

.one-title a {
    display: block;
    width: 100%;
    height: 100%;
}

.one-title em {
    width: .285rem;
    height: 100%;
    float: left;
}

.one-title em img {
    width: .29rem;
    height: .29rem;
    border-radius: 50%;
}

.one-title i {
    display: inline-block;
    width: 80%;
    padding-left: .1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conts {
    /*line-height: 1.8;*/
    padding-top: .15rem;
    word-break: break-all;
    background: #fff;
    margin-bottom: 10px;
    line-height: 1.54;
}

/*start clicks*/


/*start more-evaluate*/

.more-evaluate {
    line-height: .42rem;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #E7E2D9;
}

/*start two-warp*/

.two-main {
    margin: .1rem 0;
    padding-bottom: .4rem;
}

.two-warp {
    width: 100%;
    height: 100%;
}

.grid2 {
    width: 94%;
    margin: 0 auto;
}

.fonts {
    line-height: 1.8;
    display: inline-block;
}

.one-title span {
    width: .285rem;
    height: 100%;
    float: left;
    padding-left: .1rem;
}

.one-title span img {
    width: .29rem;
    height: .29rem;
    border-radius: 50%;
}

.pinters {
    width: 100%;
    margin: .08rem 0 .11rem 0;
    overflow: hidden;
}

.mains {
    /* margin-right: -.11rem; */
    position: relative;
}

.pinters img {
    float: left;
    margin: 0rem .07rem .07rem 0rem;    
    width: 100%;
}

/*start clicks*/
.like {
    width: 100%;
}

.like ul li {
    float: left;
    width: 25%;
    line-height: .5rem;
    position: relative;
}

.like ul li:after {
    width: 2px;
    height: 80%;
    background: #ddd;
    position: absolute;
    top: 10%;
    right: 0;
}

.like ul li a {
    display: block;
    width: 100%;
    height: .5rem;
}

.like ul li i {
    display: block;
    float: left;
    width: .16rem;
    height: .16rem;
    background-size: .16rem .16rem;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 13px;
    margin-top: .17rem;
}

.like ul li span {
    float: left;
    padding-left: 8px;
}

.like ul li:nth-child(1) i {
    background-image: url("/Content/images/ico_like.png");
}

.like ul li.active:nth-child(1) i {
    background-image: url("/Content/images/ico_like_selected.png");
}

.like ul li:nth-child(2) i {
    background-image: url("/Content/images/ico_unlike.png");
}

.like ul li.active:nth-child(2) i {
    background-image: url("/Content/images/ico_unlike_select.png");
}

.like ul li:nth-child(3) i {
    background-image: url("/Content/images/iconfont-fenxiang.png");
}

.like ul li.active:nth-child(3) i {
    background-image: url("/Content/images/iconfont-fenxiang- select.png");
}

.like ul li:nth-child(4) i {
    background-image: url("/Content/images/iconfont-pinglun.png");
}

.like ul li.active:nth-child(4) i {
    background-image: url("/Content/images/iconfont-pinglun -section.png");
}

.fullimg-wrap {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 999;
    /* 防止其它层比较高，目的让这个最高 */
    background: #000;
}

.fullimg-wrap>.fullimg-item {
    display: block;
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.fullimg-wrap>.fullimg-item.w {
    width: 100% !important;
    height: inherit !important;
}

.fullimg-wrap>.fullimg-item.h {
    width: inherit !important;
    height: 100% !important;
}

@media screen and (min-width: 1px) {
    .fullimg-wrap>.fullimg-item {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
    .fullimg-item.long-pic {
        left: 0;
        top: 0;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
}

.test {
    /*height: 100%; width: 100%;*/
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
}

/*.all{
	width: 100%;
}*/

/*start two-wrap*/


.two-content {
    padding-top: .83rem;
}

/*.videos{
	width: 94%;
	padding: 0 3%;
	border-bottom: 1px solid #f3f3f3;
}*/

.videos-title {
    margin-top: .06rem;
    color: #666;
    background: url(/Content/images/videos.png) no-repeat 0 center;
    background-size: .2rem .13rem;
}

.videos-title span {
    padding-left: .3rem;
}

.video-more {
    width: 100%;
    padding: .1rem 0 .04rem 0;
}

.video-more ul {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
}

.video-more ul li {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex: 0;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 33.3333%;
    -webkit-flex: 0;
    -webkit-flex: 0;
    -webkit-flex-grow: 0;
    -webkit-flex-shrink: 0;
    -webkit-flex-basis: 33.3333%;
    -moz-flex: 0;
    -moz-flex: 0;
    -moz-flex-grow: 0;
    -moz-flex-shrink: 0;
    -moz-flex-basis: 33.3333%;
    -o-flex: 0;
    -o-flex: 0;
    -o-flex-grow: 0;
    -o-flex-shrink: 0;
    -o-flex-basis: 33.3333%;
    margin-bottom: .06rem;
    height: 1.14rem;
}

.video-more ul li img {
    width: 96.02%;
    height: 100%;
}

.video-more ul li:nth-child(3n-1) a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}

.video-more ul li:nth-child(3n) a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: flex-end;
    -o-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
}

.change {
    height: .42rem;
    width: 100%;
    display: flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    color: #E7E2D9;
}

/*登录*/

.login-warp {
    width: 100%;
    height: 100%;
    position: absolute;
}

.login-main {
    position: relative;
    top: 50%;
    height: 1.2rem;
    margin-top: -.6rem;
}

.login-ico {
    width: 100%;
}

.login-ico ul li {
    text-align: center;
}

.login-ico ul li a {
    width: 100%;
    height: 100%;
}

.login-ico ul li img {
    width: .64rem;
    height: .64rem;
}

.xieyi {
    width: 100%;
    color: #91969c;
    text-align: center;
    margin-top: .3rem;
}

.xieyi-main {
    width: 66%;
    margin: 0 auto;
}

.xieyi i {
    width: .19rem;
    height: .19rem;
    display: block;
    float: left;
    background: url(/Content/images/xieyi.png) no-repeat;
    background-size: .19rem .19rem;
}

/*****加载更多*******/

.loading {
    width: 100%;
    height: .45rem;
    background: #eeeeee;
}

.loading p {
    width: 100%;
    height: 100%;
    background: url(/Content/images/loading.png) no-repeat 1.45rem center;
    background-size: .12rem .12rem;
    text-align: center;
    line-height: .45rem;
    color: #999;
}

/************底部 advert-footer**************/

.advert-footer {
    width: 100%;
    height: .5rem;
    background: url(/Content/images/guanggao.png) repeat-x;
    background-size: cover;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    /*display: none;*/
}

.advert-footer a {
    height: .5rem;
    width: 100%;
    display: block;
}

/***********detail page***********/

.hot-content {
    width: 94%;
    padding: 0 3%;
    background: #fff;
}

.hot-content .hot-title {
    width: 100%;
    background: url(/Content/images/hot.png) no-repeat 0 center;
    background-size: .12rem .14rem;
    padding: .15rem 0;
    border-bottom: 1px solid #f3f3f3;
}

.hot-content .hot-title span {
    padding-left: .25rem;
}

.shen-conts {
    width: 100%;
    background: url(/Content/images/shen.png) no-repeat center center;
    background-size: .96rem .76rem;
    border-bottom: 1px solid #f3f3f3;
}

.normal-pin {
    border-bottom: 1px solid #f3f3f3;
}

/********404页面***************/

.content-null {
    width: 100%;
    height: 100%;
    position: relative;
}

.nulls {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.null-imgs {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}

.null-imgs img {
    width: 2.165rem;
    height: 2.255rem;
}

.content-null p {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    font-size: .15rem;
    color: #333;
    margin-top: .27rem;
}

.null-return {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    margin-top: .51rem;
}

.null-return a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    width: 1.27rem;
    height: .43rem;
    background: #E7E2D9;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    color: #fff;
    align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
}

/*竖屏*/

.ifshu {
    width: 50%;
    left: 25%;
    top: 25%;
    text-align: center;
    position: fixed;
    z-index: 1001;
    font-size: 20px;
    color: #fff;
}

.ifshu p {
    margin: 20px 0;
}

.ym {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    background-color: #eee;
}

@media only screen and (min-width:768px) {
    .ym span .cbtn::-webkit-scrollbar {
        width: 6px;
        border-radius: 3px;
    }
    .ym span .cbtn::-webkit-scrollbar-button:vertical {
        display: none
    }
    .ym span .cbtn::-webkit-scrollbar-track-piece {
        background: #fff
    }
    .ym span .cbtn::-webkit-scrollbar-thumb:vertical {
        background-color: #eee;
        border-radius: 3px;
    }
    .ym span .cbtn::-webkit-scrollbar-thumb:vertical:hover {
        background-color: #45abff
    }
}

.ym>a {
    width: 18%;
    margin: 12px 0 15px;
    display: inline-block;
    line-height: 35px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #b2b2b2;
    text-align: center;
    color: #333;
    font-family: Helvetica Regular, 'æ–¹æ­£ä¸­ç­‰çº¿', Microsoft YaHei, sans-serif, 'å®‹ä½“', Tahoma;
    font-size: 15px;
}

.ym>a:active,
.ym>span .cbtn a:active {
    background: #ddd
}

.ym>a:nth-child(2) {
    width: 17%
}

.ym>a:nth-child(4) {
    width: 17%
}

.ym>a.over {
    color: #bbb
}

.ym>span {
    width: 18%;
    margin: 12px 0 15px;
    display: inline-block;
    line-height: 35px;
    border-radius: 2px;
    text-align: center;
    background: #ffa015;
    color: #fff;
    font-size: 15px;
    font-family: Helvetica Regular, 'æ–¹æ­£ä¸­ç­‰çº¿', Microsoft YaHei, sans-serif, 'å®‹ä½“', Tahoma;
    position: relative;
}

.ym>span .cbtn {
    width: 100%;
    position: absolute;
    top: -35px;
    left: 0;
    z-index: 10;
    height: 107px;
    overflow-y: scroll;
    background: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 3px #bbb;
    -moz-box-shadow: 0 30 3px #bbb;
    box-shadow: 0 0 3px #bbb
}

.ym>span .cbtn a {
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin-bottom: 1px;
    float: left;
    width: 100%;
    background: #f6f6f6;
    font-size: 15px;
    font-family: Helvetica Regular, 'æ–¹æ­£ä¸­ç­‰çº¿', Microsoft YaHei, sans-serif, 'å®‹ä½“', Tahoma;
    color: #666
}

.ym>span .cbtn a.now {
    background: #45abff;
    color: #fff
}

/*start 注册成功*/

.point {
    padding: 0 10px 10px;
    width: 155px;
    background: #000;
    opacity: .8;
    position: fixed;
    z-index: 11;
    top: 50%;
    left: 50%;
    margin-top: -58px;
    margin-left: -77.5px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.point p {
    margin-top: 26px;
}

.point span {
    margin-top: 5px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: block;
}

.pinlun-title>.comment-support-y i {
    background: url(/Content/images/zan_y.png) no-repeat;
    background-size: contain;
}

.zhuan-conts {
    background-color: #fff;
}



/*start header*/

.header {
    height: 44px;
    width: 100%;
    border-bottom: 1px solid #ddd;
    background: #fff;
    /* line-height: .33rem;*/
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    margin-top: 50px;
}

.header ul {
    height: 100%;
    font-size: 0;
}

.header ul li {
    display: inline-block;
    width: 16.6666%;
    height: 100%;
}

.header ul li a {
    display: block;
    font-size: .16rem;
    height: 100%;
    line-height: 44px;
    box-sizing: border-box;
    border-bottom: 4px solid #fff;
}

.header ul li.active a {
    font-weight: bold;
    color: #ffa015;
    border-bottom: 4px solid #ffa015;
}




/*start clicks*/
.clicks {
    padding-top: 27px;
    background-color: #fff;
}
.clicks ul {
    padding-bottom: 15px;    
    font-size: 0;
}

.clicks ul li {
    width: 20%;
    font-family: Arial;
    font-size: .13rem;
    position: relative;
    display: inline-block;
}

.clicks ul li a,
.clicks ul li .support-btn {
    height: 18px;
    width: 100%;
    display: block;
    overflow: hidden;
    font-size: 0px;
    color: #999;
}

.clicks ul li.active span {
    color: #ffa015;
}

.clicks ul li .support-btn span,
.clicks ul li .show-share span,
.clicks ul li a span{
    vertical-align: 3px;
    font-size: 0.13rem;
    margin-left: 7%;
}

.clicks ul li:after {
    width: 1px;
    height: 18px;
    background: #eee;
    position: absolute;
    top: 0px;
    right: 0;
}

.clicks ul li:nth-child(1):after {
    content: " ";
}

.clicks ul li:nth-child(2):after {
    content: " ";
}

.clicks ul li:nth-child(3):after {
    content: " ";
}

.clicks ul li:nth-child(4):after {
    content: " ";
}
.clicks ul li i {
    height: 100%;
    display: inline-block;
    width: .18rem;
    height: .18rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /* margin-right: .12rem; */
    margin-left: 15%;
}
.clicks ul li i.t-collect {
    background-image: url(/Content/images/collection.png);
}
.clicks ul li i.t-collect.collected {
    background-image: url(/Content/images/collection-2.png);
}
/*.clicks ul li:nth-child(1) i {
  background-image: url("../../img/ico_like.png");
}*/

.support {
    background-image: url("/Content/images/zan.png");
}

.support_y {
    background-image: url("/Content/images/zan_y.png");
}

/*.clicks ul li.active:nth-child(1) i {
  background-image: url("../../img/ico_like_selected.png");
}*/

/*.clicks ul li:nth-child(2) i {
  background-image: url("../../img/ico_unlike.png");
}
.clicks ul li.active:nth-child(2) i {
  background-image: url("../../img/ico_unlike_select.png");
}*/

.nosupport {
    background-image: url("/Content/images/cha.png");
}

.nosupport_y {
    background-image: url("/Content/images/cha_y.png");
}

.clicks ul li:nth-child(3) i {
    background-image: url("/Content/images/iconfont-fenxiang.png");
}

.clicks ul li.active:nth-child(3) i {
    background-image: url("/Content/images/iconfont-fenxiang-select.png");
}

.clicks ul li:nth-child(5) i {
    background-image: url("/Content/images/iconfont-pinglun.png");
}

.clicks ul li.active:nth-child(5) i {
    background-image: url("/Content/images/iconfont-pinglun-section");
}

.pinlun {
    width: 100%;
    background: #f4f4f4;
}

.ping-bg {
    width: 100%;
    background: url(/Content/images/shen.png) no-repeat center center;
    background-size: .96rem .76rem;
}

.pin-main {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
}

.pinlun-left {}

.pinlun-left span img {
    width: .29rem;
    height: .29rem;
    border-radius: 50%;
    margin: .15rem .06rem 0;
}

.pinlun-right {
    flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -o-flex: 1;
}

.pinlun-title {
    margin-top: .15rem;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    -moz-justify-content: space-between;
    line-height: .29rem;
}

.pinlun-title>i {
    flex: 0;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 80%;
    -webkit-flex: 0;
    -webkit-flex: 0;
    -webkit-flex-grow: 0;
    -webkit-flex-shrink: 0;
    -webkit-flex-basis: 80%;
    -moz-flex: 0;
    -moz-flex: 0;
    -moz-flex-grow: 0;
    -moz-flex-shrink: 0;
    -moz-flex-basis: 80%;
    -o-flex: 0;
    -o-flex: 0;
    -o-flex-grow: 0;
    -o-flex-shrink: 0;
    -o-flex-basis: 80%;
    font-size: .16rem;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pinlun-title>span {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    margin-right: .04rem;
}

.pinlun-title>span i {
    display: block;
    width: .18rem;
    height: .18rem;
    background: url(/Content/images/zan.png) no-repeat;
    background-size: contain;
    margin-right: .07rem;
    margin-top: 0.05rem;
}

.pin-main:last-of-type {
    padding-bottom: .15rem;
}

.pin-font {
    margin-top: .05rem;
    margin-bottom: .05rem;
    line-height: 1.6;
    word-break: break-all;
}

.space {
    width: 100%;
    height: .1rem;
    background: #eee;
}

/*start more-evaluate*/

.more-evaluate {
    line-height: .42rem;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #E7E2D9;
}

/*start clicks*/


/*start two-wrap*/


/*.videos{
	width: 94%;
	padding: 0 3%;
	border-bottom: 1px solid #f3f3f3;
}*/

.videos-title {
    margin-top: .06rem;
    color: #666;
    background: url(/Content/images/videos.png) no-repeat 0 center;
    background-size: .2rem .13rem;
}

.videos-title span {
    padding-left: .3rem;
}

.video-more {
    width: 100%;
    padding: .1rem 0 .04rem 0;
}

.video-more ul {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
}

.video-more ul li {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex: 0;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 33.3333%;
    -webkit-flex: 0;
    -webkit-flex: 0;
    -webkit-flex-grow: 0;
    -webkit-flex-shrink: 0;
    -webkit-flex-basis: 33.3333%;
    -moz-flex: 0;
    -moz-flex: 0;
    -moz-flex-grow: 0;
    -moz-flex-shrink: 0;
    -moz-flex-basis: 33.3333%;
    -o-flex: 0;
    -o-flex: 0;
    -o-flex-grow: 0;
    -o-flex-shrink: 0;
    -o-flex-basis: 33.3333%;
    margin-bottom: .06rem;
    height: 1.14rem;
}

.video-more ul li img {
    width: 96.02%;
    height: 100%;
}

.video-more ul li:nth-child(3n-1) a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}

.video-more ul li:nth-child(3n) a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: flex-end;
    -o-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
}

.change {
    height: .42rem;
    width: 100%;
    display: flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    color: #E7E2D9;
}

/*登录*/

.login-warp {
    width: 100%;
    height: 100%;
    position: absolute;
}

.login-main {
    position: relative;
    top: 50%;
    height: 1.2rem;
    margin-top: -.6rem;
}

.login-ico {
    width: 100%;
}

.login-ico ul li {
    text-align: center;
}

.login-ico ul li a {
    width: 100%;
    height: 100%;
}

.login-ico ul li img {
    width: .64rem;
    height: .64rem;
}

.xieyi {
    width: 100%;
    color: #91969c;
    text-align: center;
    margin-top: .3rem;
}

.xieyi-main {
    width: 66%;
    margin: 0 auto;
}

.xieyi i {
    width: .19rem;
    height: .19rem;
    display: block;
    float: left;
    background: url(/Content/images/xieyi.png) no-repeat;
    background-size: .19rem .19rem;
}

/*****加载更多*******/

.loading {
    width: 100%;
    height: .45rem;
    background: #eeeeee;
}

.loading p {
    width: 100%;
    height: 100%;
    background: url(/Content/images/loading.png) no-repeat 1.45rem center;
    background-size: .12rem .12rem;
    text-align: center;
    line-height: .45rem;
    color: #999;
}

/************底部 advert-footer**************/

.advert-footer {
    width: 100%;
    height: .5rem;
    background: url(/Content/images/guanggao.png) repeat-x;
    background-size: cover;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    /*display: none;*/
}

.advert-footer a {
    height: .5rem;
    width: 100%;
    display: block;
}

/***********detail page***********/

.hot-content {
    width: 94%;
    padding: 0 3%;
    background: #fff;
}

.hot-content .hot-title {
    width: 100%;
    background: url(/Content/images/hot.png) no-repeat 0 center;
    background-size: .12rem .14rem;
    padding: .15rem 0;
    border-bottom: 1px solid #f3f3f3;
}

.hot-content .hot-title span {
    padding-left: .25rem;
}

.shen-conts {
    width: 100%;
    background: url(/Content/images/shen.png) no-repeat center center;
    background-size: .96rem .76rem;
    border-bottom: 1px solid #f3f3f3;
}

.normal-pin {
    border-bottom: 1px solid #f3f3f3;
}

/********404页面***************/

.content-null {
    width: 100%;
    height: 100%;
    position: relative;
}

.nulls {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.null-imgs {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}

.null-imgs img {
    width: 2.165rem;
    height: 2.255rem;
}

.content-null p {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    font-size: .15rem;
    color: #333;
    margin-top: .27rem;
}

.null-return {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    margin-top: .51rem;
}

.null-return a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    width: 1.27rem;
    height: .43rem;
    background: #E7E2D9;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    color: #fff;
    align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
}

/*竖屏*/

.ifshu {
    width: 50%;
    left: 25%;
    top: 25%;
    text-align: center;
    position: fixed;
    z-index: 1001;
    font-size: 20px;
    color: #fff;
}

.ifshu p {
    margin: 20px 0;
}

.ym {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    background-color: #eee;
}

@media only screen and (min-width:768px) {
    .ym span .cbtn::-webkit-scrollbar {
        width: 6px;
        border-radius: 3px;
    }
    .ym span .cbtn::-webkit-scrollbar-button:vertical {
        display: none
    }
    .ym span .cbtn::-webkit-scrollbar-track-piece {
        background: #fff
    }
    .ym span .cbtn::-webkit-scrollbar-thumb:vertical {
        background-color: #eee;
        border-radius: 3px;
    }
    .ym span .cbtn::-webkit-scrollbar-thumb:vertical:hover {
        background-color: #45abff
    }
}

.ym>a {
    width: 18%;
    margin: 12px 0 15px;
    display: inline-block;
    line-height: 35px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #b2b2b2;
    text-align: center;
    color: #333;
    font-family: Helvetica Regular, 'æ–¹æ­£ä¸­ç­‰çº¿', Microsoft YaHei, sans-serif, 'å®‹ä½“', Tahoma;
    font-size: 15px;
}

.ym>a:active,
.ym>span .cbtn a:active {
    background: #ddd
}

.ym>a:nth-child(2) {
    width: 17%
}

.ym>a:nth-child(4) {
    width: 17%
}

.ym>a.over {
    color: #bbb
}

.ym>span {
    width: 18%;
    margin: 12px 0 15px;
    display: inline-block;
    line-height: 35px;
    border-radius: 2px;
    text-align: center;
    background: #ffa015;
    color: #fff;
    font-size: 15px;
    font-family: Helvetica Regular, 'æ–¹æ­£ä¸­ç­‰çº¿', Microsoft YaHei, sans-serif, 'å®‹ä½“', Tahoma;
    position: relative;
}

.ym>span .cbtn {
    width: 100%;
    position: absolute;
    top: -35px;
    left: 0;
    z-index: 10;
    height: 107px;
    overflow-y: scroll;
    background: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 3px #bbb;
    -moz-box-shadow: 0 30 3px #bbb;
    box-shadow: 0 0 3px #bbb
}

.ym>span .cbtn a {
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin-bottom: 1px;
    float: left;
    width: 100%;
    background: #f6f6f6;
    font-size: 15px;
    font-family: Helvetica Regular, 'æ–¹æ­£ä¸­ç­‰çº¿', Microsoft YaHei, sans-serif, 'å®‹ä½“', Tahoma;
    color: #666
}

.ym>span .cbtn a.now {
    background: #45abff;
    color: #fff
}

.none-comment {
    /* display: none; */
    text-align: center;
    padding: 10px 0;
}
.none-comment-img {
    width: 53px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.none-comment-text {
    color: #999999;
    font-size: 14px;
}
.clicks span.ding,
.support-btn span.ding {
    padding-left: 0px;
    position: absolute;
    height: 20px;
    width: 20px;
    left: 40px;
    line-height: 20px;
    bottom: 0;
    background-color: #ffc63d;
    font-family: arial;
    color: #fff;
    font-size: 14px;
    z-index: 200;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: mymove 520ms linear 1;
    -moz-animation: mymove 520ms linear 1;
    -o-animation: mymove 520ms linear 1;
    animation: mymove 520ms linear 1
}

.funnyTextLink {
    display: inline-block;
}

@keyframes mymove {
    from {
        bottom: 0
    }
    to {
        bottom: 100px
    }
}

@-webkit-keyframes mymove {
    from {
        bottom: 0
    }
    to {
        bottom: 100px
    }
}

.clicks .nosupport_y+span,
.clicks .support_y+span,
.support-btn .nosupport_y+span,
.support-btn .support_y+span {
    color: #ffc63d;
}


/* 底部评论 */
.comment-wraper {
    padding: 10px 20px;
    background-color: #fff;
}
.comment-box {
    height: 52px;
    overflow: hidden;
    
}
.comment-input {
    margin-right: 60px;
    height: 100%;
}
.comment-input textarea {
    color: #666;
    background-color: #fafafa;
    border: 1px solid #e5e5e8;
    font-size: .16rem;
    line-height: 1.4;
    margin-right: 111px;
    padding: 5px;
    border-radius: 3px;
    display: block;
    width: 100%;
    resize: none;
    height: 100%;
    box-sizing: border-box;
}
.comment-btn {
    float: right;
    height: 100%;
    line-height: 52px;
    width: 48px;
    background: #E7E2D9;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    text-align: center;
}

.popbtn-box {
    position: fixed;
    bottom: 135px;
    right: 15px;
    z-index: 1;
}

.popbtn-box .popbtn {
    display: block;
    width: 49px;
    height: 49px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.popbtn.f-publish {
    background-image: url(../img/post.png);
}

.popbtn.f-top {
    background-image: url(../img/top.png);
}

.f-top-wraper {
    position: absolute;
    display: none;
    margin-top: 22px;
    height: 49px;
    width: 49px;
}

/* app推荐 */
.recommend-pop {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    z-index: 100;
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.15);
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.recommend-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 19px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;    
}
.vr-recommend {
    background-color: #fff;
    margin-top: 10px;
}
.vr-recommend .recommend-wrap .img-layout {
    width: 45px;
    height: 45px;
    margin-bottom: 0;
    margin-right: 10px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.vr-recommend .spread-txt {
    color: #333;
    line-height: 22px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 40px;
}
.clamp2 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-recommend h4 {
    font-size: 14px;
    color: #222;
    line-height: 24px;
}

.index-recommend p {
    font-size: 12px;
    color: #999;
    line-height: 19px;
}

.btn-import2 {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 16px;
    text-align: center;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.vr-recommend .btn-import2 {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 8px;
    margin-right: 8px;
    font-size: 12px;
    height: 28px;
    line-height: 26px;
    background-color: #E7E2D9;
    border: 1px solid #E7E2D9;
    min-width: 66px;
}
.img-layout img {
    width: 100%;
}

.vr-recommend .btn-close {
    padding: 6px;
    width: 18px;
    height: 18px;
    background: url(../img/close_click.png) center no-repeat;
    background-size: 13px;
}


.minirefresh-scroll .pagination-wrap{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 13px;
    z-index: 12;
}

.minirefresh-theme-default  .minirefresh-scroll .minirefresh-upwrap {
    display: block;
    padding: 0px 0 60px 0;
    background-color: #eee;
}

.minirefresh-scroll {
    background: none !important;
}

.x-video-container {
    position: relative;
    overflow: hidden;
    background: #000;
    font-size: 12px;
    vertical-align: middle;
}
.videos.vid {
    padding-top: 67.5%;
    height: 100%;
    width: 100%;
}
.video-js {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

 .navi-box {
    height: 44px;
    margin: 10px 0;
    padding: 12px 12.5px;
    overflow: hidden;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
}
.navi-box .navi-btn {
    display: inline-block;
    text-align: center;
    padding: 9px 0;
    font-size: 12px;
    width: 78px;
    border: 1px solid #f8aa30;
    color: #f8aa30;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
}

.navi-box .navi-btn.prev {
}
.navi-box .navi-btn.next {
    color: #fff!important;
    background-color: #f8aa30;
    margin: 0 10px;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    /* height: 44px; */
    padding: 13px 0;
    font-size: 14px;
}

.v-arrow {
    display: inline-block;
    width: 12.5px;
    height: 11px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    vertical-align: 0px;
}

.v-arrow.t-right {
    background-image: url(/Content/images/arrow_right.png)
}
.v-arrow.t-left {
    background-image: url(/Content/images/arrow_left_yellow.png)
}
.pic-wraper {
    position: relative;
}
.pic-wraper img {
    float: none;
    margin: 0 0;
}
.more-pic-tip {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 42px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    background-color: rgba(0,0,0,0.35);
}

.t-down-arrow {
    display: inline-block;
    margin-right: 5px;
    width: 14px;
    height: 12px;
    vertical-align: -1px;
    background: url(/Content/images/arrow_down.png) 0 0 no-repeat;
    background-size: 100% 100%;
}

.classify-title {
    padding-top: 22px;
    margin-bottom: 12.5px;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    font-weight: bold;
}

.classify-title::before {
    position: absolute;
    left: 0;
    top: 26px;
    content: " ";
    width: 5px;
    height: 14px;
    background-color: #fede00;
}

.sec-wrap {
    padding: 98px 7px 15px;
}

.classify-item {
    margin-bottom: 15px;
    display: inline-block;
    width: 33.333%;
    font-size: .16rem;
    padding: 0px 8px;
    box-sizing: border-box;
    text-align: center;
}
.classify-item a {
    font-size: 15px;
    background-color: #f6f6f6;
    display: block;
    /* height: 34px;
    line-height: 34px; */
    text-align: center;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    overflow: hidden;
    word-break:keep-all;       /* 不换行 */
    white-space:nowrap;        /* 不换行 */
    text-overflow: ellipsis; 
    color: #666;
    padding: 8px 0;
}
.classify-ctn {
    padding-top: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0;
}

.classify-article {
    font-size: .16rem;
}

.t-funny-type {
    position: relative;
    background-color: #fff;
    color: #ffa015;
    line-height: 40px;
    font-size: 15px;
    margin-top: 7px;
    margin-bottom: 10px;
    text-align: left;
    text-align: center;
    /* font-weight: bold; */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.t-funny-type span {
    position: absolute;
    font-size: 14px;
    color: #999;
}
.t-funny-type .t-left {
    left: 10px;
}
.t-funny-type .t-right {
    right: 10px;
}
.no-data-tips {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}


.alert_coll_page {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,.5);
    display: none
}

.alert_coll_page .alert_coll {
    width: 80%;
    height: 120px;
    background: #fff;
    position: absolute;
    left: 10%;
    top: 50%;
    margin-top: -60px
}

.alert_coll_page .alert_coll .alert_coll_text {
    width: 85%;
    height: 75px;
    line-height: 150%;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #999
}

.alert_coll_page .alert_coll .alert_coll_btn {
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #ffa015;
    font-weight: 900
}