* {
    margin: 0;
    padding: 0;
}

body, html {
    background: #f0f2f5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*取消手机点击屏幕时，会出现的灰块*/
}

@media (min-width: 640px) {
    html {
        font-size: 85.33px !important;
    }
}
::-webkit-scrollbar {
    width:0px;
    height:0px;
    background:transparent;
}
.wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    position: relative;
    font-size: 0.34rem;
    min-height: 100vh;
}

.page {
}

    .page.article {
        min-height: 100vh;
        background:#fefefe;
    }
        /*有下载按钮需要padding底部*/
        .page.article.hasDownload {
            min-height: calc(100vh - 1.3rem);
            padding-bottom: 1.3rem;
        }

            .page.article.hasDownload .open_app {
                display: block;
            }

            .page.article.hasDownload .more_comment {
                display: block;
            }

.loading.page {
    width: 100%;
    max-width: 640px;
    height: 100%;
    display: block;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
}

.loading_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

    .loading_content img {
        display: block;
        width: .6rem;
        margin: 0 auto .2rem;
    }

/*.open_app {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}

.open_app_inner {
  max-width: 640px;
  height: 1.3rem;
  border-top: 1px solid #EAEAEA;
  background: #ffffff;
  padding: 0.26rem 0.24rem;
  box-sizing: border-box;
  margin: 0 auto;
}

.app_icon {
  width: 0.8rem;
  height: 0.8rem;
  background: url('../images/logo.png') no-repeat center;
  background-size: cover;
  float: left;
}

.open_disc {
  height: 0.8rem;
  margin: 0 1.6rem 0 0.96rem;
  color: #1788D7;
  font-size: .24rem;
}

.open_disc .app_name {
  font-size: .28rem;
  margin-top: 0.08rem;
}

.btn_open_app {
  width: 1.4rem;
  height: .5rem;  
  font-size: .24rem;
  color: #1788D7;
  border-radius: 0.08rem;
  outline: none;
  border: 1px solid #1788D7;
  background: #ffffff;
  float: right;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}*/

.clearBoth {
    position: relative;
}

    .clearBoth:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        clear: both;
    }

/*文本超出1行显示...*/
.limit-line1 {
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    
}

/*文本超出2行显示...*/
.limit-line2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align:left !important;
}

/*文本超出3行显示...*/
.limit-line3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left !important;
}

/*404错误*/
/*.notFound {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.notFoundInner {
  max-width: 640px;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
  background: #ffffff;
  text-align: center;
}

.notFound_content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
}

.notFound_content img {
  width: 4.48rem;
  display: block;
  margin: 0 auto .2rem;
}

.notFound_content p {
  font-size: .28rem;
  color: rgba(107, 107, 107, 1);
  line-height: .36rem;
}*/

iframe {
    display: block;
    width: 100%;
}

.article_comment {
    overflow: hidden;
    display: none;
}

.more_comment {
    display: none;
}

.noComment {
    text-align: center;
    margin-bottom: 0.4rem;
}

    .noComment img {
        width: 1.4rem;
        display: block;
        margin: 0 auto .36rem;
    }

    .noComment span {
        font-size: .2rem;
        color: rgba(219, 219, 219, 1);
    }


/***************************开始：普通404、底部OpenApp***************************************************/
/*404错误*/
.notFound {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}

.notFoundInner {
    max-width: 640px;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    background: #ffffff;
    text-align: center;
}

.notFound_content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
}

    .notFound_content img {
        width: 1.96rem;
        display: block;
        margin: 0 auto .2rem;
    }

    .notFound_content p {
        font-size: .28rem;
        color: rgba(107, 107, 107, 1);
        line-height: .36rem;
    }

.hasDownload {
    padding-bottom: 1.32rem;
}

    .hasDownload .open_app {
        display: block;
        z-index: 1000;
    }

/*******打开App*********/
.open_app {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    display: none;
}

.open_app_inner {
    max-width: 640px;
    height: 1.18rem;
    border-top: 1px solid #EAEAEA;
    background: #ffffff;
    padding: 0.12rem 0.32rem;
    box-sizing: border-box;
    margin: 0 auto;
}

.app_icon {
    width: 4.61rem;
    height: 0.94rem;
    background: url('../images/logo_bottom.png') no-repeat center;
    background-size: cover;
    float: left;
}
.open_app .open_close{
    position: absolute;
    right:0;
    top:0;
    width: .66rem;
    height: .56rem;
    background: url(../images/open_close.png) no-repeat right top;
    background-size: 50%;
}

.open_disc {    
    font-size: .24rem;
    line-height: .28rem;
    margin-left: .92rem;
    color:#BABCC2;
    width:4rem;
}

    .open_disc .app_name {
        font-size: .34rem;
        /*line-height:.82rem;*/
        color: #333;
        font-weight: bold;
        margin-right: .16rem;
        /*margin-top: 0.08rem;*/
        display: inline-block;
    }

    .open_disc .app_desc {
        color: #666;
        font-size: .28rem;
        /*padding-left: .16rem;*/
        /*border-left: 1px solid #666;*/
        display: inline-block;
    }

        .open_disc .app_desc:before {
            content: "|";
            width: .01rem;
            color: #666;
            margin-right: .16rem;
        }

.btn_open_app {
    width: 1.82rem;
    height: .64rem;
    /*width: 1.4rem;
            height: .5rem;*/
    /*line-height: .5rem;*/
    font-size: .26rem;
    line-height: .48rem;
    font-weight: 500;
    color: #ffffff;
    /*border-radius: 0.08rem;*/
    /*outline: none;*/
    /*border: 1px solid #1788D7;*/
    background: rgba(23,136,215,1);
    box-shadow: 0px 4px 18px 0px rgba(23,136,215,0.7);
    border-radius: .32rem;
    float: right;
    margin-top: 0.16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/***************************结束：普通404、底部OpenApp***************************************************/
