﻿/*
 *  作者:bamen-tzy
 *  邮箱:全局样式表
*/

/* 元素尺寸规则 & 删除轮廓 & 点击高亮颜色 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100%;
}

/* 页面 body 设置，默认14px字体大小 */
body {
    margin: 0;
    padding: 0;
    background-color: #F3F4F5;
    font-size: 0.28rem;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0;
    word-wrap: break-word;
    -webkit-touch-callout: none;
}

/*表单元素默认字体大小及字体*/
input,
select,
textarea {
    font-size: 0.28rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 取消超链接默认下划线 */
a {
    text-decoration: none;
}

h2{
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}
strong{
    font-weight: normal;
}
li{
    list-style: none;
}

/* 列式弹性盒子 */
.flex-col {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    -webkit-box-align: center;

    display: -ms-flexbox;
    -ms-flex-wrap: nowrap;
    -ms-flex-direction: row;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    -ms-flex-line-pack: center;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.flex-col-reserve {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-pack: start;
    -webkit-box-align: center;

    display: -ms-flexbox;
    -ms-flex-wrap: nowrap;
    -ms-flex-direction: row-reverse;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    -ms-flex-line-pack: center;

    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
/* 行式弹性盒子 */
.flex-row {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    -webkit-box-align: start;

    display: -ms-flexbox;
    -ms-flex-direction: column;
    -ms-flex-wrap: nowrap;
    -ms-flex-pack: start;
    -ms-flex-align: start;
    -ms-flex-line-pack: start;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

/* 弹性盒子弹性容器 */
.flex-col>*.flex-grow {
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.flex-col-reserve>*.flex-grow {
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.flex-row>*.flex-grow {
    height: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* 列式弹性盒子允许换行 */
.flex-col.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 列式弹性盒子居中对齐 */
.flex-col.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-col.flex-row-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* 列式弹性盒子两端对齐 */
.flex-col.flex-space {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* 列式弹性盒子顶部对齐 */
.flex-col.flex-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

/* 列式弹性盒子快速分栏 */
.flex-col.flex-col-2>* {
    width: 50%;
}

.flex-col.flex-col-3>* {
    width: 33.33333%;
}

.flex-col.flex-col-4>* {
    width: 25%;
}

.flex-col.flex-col-5>* {
    width: 20%;
}

.flex-col.flex-col-6>* {
    width: 16.66666%;
}

/* 字体对齐 */
.font-l {
    text-align: left;
}

.font-c {
    text-align: center;
}

.font-r {
    text-align: right;
}

/* 字体大小 */
.font-10 {
    font-size: 0.20rem;
}
.font-12 {
    font-size: 0.24rem;
}

.font-14 {
    font-size: 0.28rem;
}

.font-16 {
    font-size: 0.32rem;
}

.font-18 {
    font-size: 0.36rem;
}

.font-20 {
    font-size: 0.40rem;
}

.font-24 {
    font-size: 0.48rem;
}

.font-28 {
    font-size: 0.56rem;
}

.font-32 {
    font-size: 0.64rem;
}

/* 字体颜色 */
.font-primary {
    color: #303030;
}

.font-info {
    color: #606060;
}

.font-hint {
    color: #909090;
}

.font-success {
    color: #19be6b;
}

.font-error {
    color: #fa3534;
}

.font-warning {
    color: #ff9900;
}

.font-white {
    color: #ffffff;
}

.font-link {
    color: #0089FF;
}

.font-pink {
    color: #ff007f;
}

.rgb-32 {
    color: #323232;
}
.rgb-90 {
    color: #909090;
}
.rgb-d8 {
    color: #d8d8d8;
}
.rgb-50 {
    color: #505050;
}
.rgb-00{
    color: #000000;
}
/* 大厂们的主题色 */
.font-bd {
    color: #4e6ef2;
}

.font-tb {
    color: #ff4400;
}

.font-qq {
    color: #1479d7;
}

.font-jd {
    color: #e1251b;
}

.font-tm {
    color: #FF0036;
}

.font-mi {
    color: #ff6700;
}

.font-uni {
    color: #42b983;
}


/* 字体状态 */
.font-U {
    text-decoration: underline;
}

.font-B {
    font-weight: 700;
}

.font-I {
    font-style: italic;
}

/* 背景颜色 */
.bg-default {
    background-color: #F3F4F5;
}

.bg-fff {
    background-color: #ffffff;
}
.mar-16 {
    margin-bottom: 0.16rem;
}
/* 取消长按选中-加在body元素上则全站均不可长按选择文字复制 */
.cancel-select {
    -webkit-user-select: none;
    user-select: none;
}

/* 超出省略 */
.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.radius-4 {
    border-radius: 4px;
}

.radius-12 {
    border-radius: 12px;
}

.shadow-99{
    box-shadow:0 0.09rem 0.16rem 0 rgba(153,153,153,0.2);
}
.rgb-08d {
   color:  #0089FF;
}

/* 角标容器 */
.markers{
    position: relative;
    border-radius: 12px;
}
.markers>img{
    position: absolute;
    width: 100%;
    height: auto;
}
.markers>a{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
/*
 *  ---------------------
 *  -----全局样式结束-----
 *  ---------------------
*/



/*头部样式*/
.header-wrap {
    position: fixed;
    width: 7.2rem;
    top: 0;
    left: 50%;
    z-index: 20;
    margin-left: -3.6rem;
}

.header-wrap .header {
    width: 100%;
    height: 0.96rem;
    padding: 0 0.32rem ;
    background-color: #0089FF;
    background: linear-gradient(90deg,rgba(0,137,255,1) 0%,rgba(39,171,255,1) 100%);
}

.header-wrap .header .logo {
    display: block;
    width: 1.86rem;
    height: 0.56rem;
}

.header-wrap .header .mobile-icon {
    margin-left: 0.32rem;
    font-size: 0.48rem;
    line-height: 0.56rem;
    color: #ffffff;
}

.header-wrap .header .search-btn {
    line-height: 0.56rem;
    color: #ffffff;
}

.header-wrap .nav-wrap {
    position: relative;
    height: 0.96rem;
    border-bottom: 1px solid #d9d9d9;
    line-height: 1.1rem;
}

.header-wrap .nav-wrap>a {
    position: relative;
    height: 0.38rem;
    line-height: 0.38rem;
    color: #505050;
    margin: 0 0.25rem;
    z-index: 2;
}

.header-wrap .nav-wrap>a.active {
    color: #000;
    font-size: 0.36rem;
    font-weight: 500;
}
.header-wrap .nav-wrap .active::before {
    content: '';
    display: block;
    width: 100%;
    height: 0.16rem;
    background: #0089FF;
    position: absolute;
    bottom: -0.03rem;
    opacity: .9;
    z-index: -1;
    border-radius: 0.1rem;
}
.header-wrap .nav-wrap .pull-down {
    height: 0.96rem;
    line-height: 0.96rem;
    margin: 0 0.4rem;
}

.header-wrap .pull-down a {
    position: absolute;
    display: none;
    right: 0.3rem;
    top: 0.96rem;
    width: 1.3rem;
    background-color: #fff;
    line-height: 0.64rem;
    color: #505050;
    padding: 0 0.3rem;
    border: 1px solid #d9d9d9;
    border-top: none;
    text-align: center;
}

/*容器盒子*/

.container {
    position: relative;
    max-width: 7.2rem;
    background-color: #F3F4F5;
    margin: 0 auto;
}

/* 顶部间隔槽 */
.top-gap {
    width: 7.2rem;
    box-sizing: content-box;
    padding-top: 0.96rem;
    margin: 0 auto;
}

.top-gap.h {
    height: 1.1rem;
}

.top-gap.m {
    margin-bottom: 0.96rem;
}

.top_hide_app {
    height: 0 !important;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-in-out 0s;
    transition: height 0.3s ease-in-out 0s;
}
/*尾部样式*/
footer {
    width: 7.2rem;
    margin: 0 auto;
    padding: 0.32rem 0.32rem 0.24rem 0.32rem;
}
footer .menu-list  {
    padding-bottom: 0.24rem;
    border-bottom: 0.02rem solid #e8e8e8;
}
footer .menu-list .logo-icon {
    display: block;
    width: 0.80rem;
    height: 0.80rem;
}

footer .menu-list-plate a {
    margin: 0 0.16rem;
}
footer .footer-info  {
    padding-top: 0.16rem;
} 
footer .footer-nav {
    height: 0.34rem;
    line-height: 0.34rem;
    margin-bottom: 0.16rem;
}
footer .footer-nav a {
    display: block;
    height: 0.34rem;
    line-height: 0.34rem;
    margin:0 0.16rem;
    color: #323232;
}
footer  .authentication a {
    display: block;
    height: 0.5rem;
    margin: 0 0.1rem;
}
footer  .authentication  img {
    display: block;
    width: auto;
    height: 0.5rem;
}
footer .reference a{
    display: block;
    margin: 0 0.1rem;
}

/*面包屑样式*/
.crumbs-wrap {
    width: 7.2rem;
    height: 0.96rem;
    margin: 0 auto;
    padding: 0.29rem 0.32rem;
}
.crumbs-wrap>* {
    height: 0.38rem;
    line-height: 0.38rem;
}


.download-app-pop{
    width: 5.8rem !important;
    border-radius: 4px !important;
}
.download-app-pop>div.layui-m-layercont{
    padding: 0.9rem 0.4rem 0.3rem 0.4rem !important;
    position: relative;
    line-height: 0.36rem;
}

.download-app-pop .img{
    border-radius: 0.32rem;
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -0.65rem;
    margin-top: -0.65rem;
    background-size: cover;
}

/* 常用间隔槽 */
.gap-1{
    height: 0.16rem;
}
.gap-2{
    height: 0.24rem;
}
.gap-3{
    height: 0.32rem;
}

/* 微信下载提示 */
.download-shade{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,0.6);
    z-index: 100;
    top: 0;
    left: 0;
}

.download-shade>p{
    margin: 0;
    padding: 10px 100px 0 15px;
    font-size: 14px;
    color: #Fff;
}
.download-shade>img{
    width: 130px;
    height: auto;
    position: absolute;
    top: 10px;
    right: 15px;
}

/* 百度小程序覆盖隐藏下载按钮 */
.baiduMiniProgram *[data-push],
.baiduMiniProgram *[data-url],
.baiduMiniProgram .on-download,
.baiduMiniProgram .h5game,
.baiduMiniProgram a[href="/guide-page"],
.baiduMiniProgram .gift-btn,
.baiduMiniProgram .introduction a,
.baiduMiniProgram a.apply {
    display: none !important;
}

/* 下载 */
.header-wrap .menu {
    width: 100%;
    height: 1.1rem;
    align-items: center;
}

.header-wrap .menu .logo-icon {
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.08rem;
}

.header-wrap .menu .close {
    width: 0.50rem;
    height: 0.40rem;
    margin-left: 0.16rem;
    margin-right: 0.08rem;
    font-size: 0.5rem;
    line-height: 0.40rem;
    color: rgba(0, 0, 0, .5);
}

.header-wrap .menu .download {
    width: 1.86rem;
    height: 0.58rem;
    margin-right: 0.32rem;
    border-radius: 0.29rem;
    background-color: #0089FF;
    line-height: 0.58rem;
}


.share-archive-pop{
    width: 5.8rem !important;
    border-radius: 24px !important;
    height: 4.2rem;
}
.share-archive-pop>div.layui-m-layercont{
    padding: 0.48rem 0.32rem  0.4rem !important;
    position: relative;
}
.share-archive-pop .title {
    margin-bottom: 0.56rem;
}
.share-archive-pop .text {
    margin-bottom: 0.56rem;
}
.share-archive-pop .ordinary-download-pop-btn {
    display: none;
}
.share-archive-pop .download-btn {
    display: block;
    width: 4.6rem;
    height: 0.8rem;
    border-radius: 0.4rem;
    background-color: #0089ff;
    font-size: 0.32rem;
    color: #fff;
    text-align: center;
    line-height: 0.8rem;
    margin: 0 auto 0.24rem;
}
.share-archive-pop input[type="checkbox"] + label::before {
    content: ""; /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    width: 0.28rem;
    height:0.28rem;
    margin-top: -0.02rem;
    margin-right: 0.08rem;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/images/archive/no-checked.png');
}
.share-archive-pop input[type="checkbox"]:checked + label::before {
    background-image: url('/images/archive/checked.png');
}

.share-archive-pop input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
.share-archive-pop .archive-text {
    font-size: 0.24rem;
    line-height: 0.30rem;
    height: 0.30rem;
}

.perfect-download-pop{
    width: 5.8rem !important;
    border-radius: 24px !important;
    height: 4.2rem;
}
.perfect-download-pop>div.layui-m-layercont{
    padding: 0.48rem 0.32rem  0.4rem !important;
    position: relative;
}
.perfect-download-pop .title {
    margin-bottom: 0.56rem;
}
.perfect-download-pop .text {
    margin-bottom: 0.56rem;
}
.perfect-download-pop .ordinary-download-pop-btn {
    display: none;
}
.perfect-download-pop .download-btn {
    display: block;
    width: 4.6rem;
    height: 0.8rem;
    border-radius: 0.4rem;
    background-color: #0089ff;
    font-size: 0.32rem;
    color: #fff;
    text-align: center;
    line-height: 0.8rem;
    margin: 0 auto 0.24rem;
}
.perfect-download-pop input[type="checkbox"] + label::before {
    content: ""; /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    width: 0.28rem;
    height:0.28rem;
    margin-top: -0.02rem;
    margin-right: 0.08rem;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/images/archive/no-checked.png');
}
.perfect-download-pop input[type="checkbox"]:checked + label::before {
    background-image: url('/images/archive/checked.png');
}

.perfect-download-pop input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
.perfect-download-pop .archive-text {
    font-size: 0.24rem;
    line-height: 0.30rem;
    height: 0.30rem;
}


/* 实名顶部栏目 */
.realname-top-bar{
    width: 7.2rem;
    border-top: #529bff solid 0.08rem;
    background-color: #dfebff;
    box-sizing: content-box;
    display: none;
}
.realname-top-bar>div{
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 0.24rem;
    height: 0.8rem;
}
.realname-top-bar a{
    color: #0089FF;
}
.realname-top-bar img{
    display: block;
    width: auto;
    height: 0.32rem;
    cursor: pointer;
}
.icon_12377 {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.16rem;
}