@charset "utf-8";

/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}

html,
body {
    height: 100%;
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
    resize: none;
    border: none;
}

/* 取消链接高亮  */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* 图片自适应 */
img {
    width: 100%;
    height: auto;
    width: auto\9;
    /* ie8 */
    display: block;
    -ms-interpolation-mode: bicubic;
    /*为了照顾ie图片缩放失真*/
}

/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font: 12px/1.5 '苹方 粗体', 'Microsoft YaHei', '宋体', Tahoma, Arial, sans-serif; */
    color: #555;
    background-color: #F7F7F7;
}

em,
i {
    font-style: normal;
}

ul,
li {
    list-style-type: none;
}

strong {
    font-weight: normal;
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}

a {
    text-decoration: none;
    color: #969696;
    font-family: '苹方-简 常规体', 'Microsoft YaHei', Tahoma, Arial, sans-serif;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
}

input {
    /* font-family: 'Microsoft YaHei'; */
}

/*单行溢出*/
.one-txt-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*多行溢出 手机端使用*/
.txt-cut {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
}

/* 移动端点击a链接出现蓝色背景问题解决 */
a:link,
a:active,
a:visited,
a:hover {
    background: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

.w50 {
    width: 50%;
}

.w25 {
    width: 25%;
}

.w20 {
    width: 20%;
}

.w33 {
    width: 33.333333%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.db {
    display: block !important;
}

.dn {
    display: none;
}

/* iOS接入U-LINK弹窗样式 */
.downloadStyle {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.shadow_wrapper {
    display: flex;
    justify-content: flex-end;
    /* align-items: flex-end; */
    color: #FFFFFF;
    font-size: 15px;
    padding-right: 20px;
    padding-top: 20px;
}

.shadow_t {
    padding-top: 20px;
}

.shadow_img {
    width: 40px;
    height: 32px;
    margin-left: 6px;
}


/* 头部打开app开始 */

.catalogue {
    width: 100%;
    background-color: #F7F7F7;
}

.mb-top {
    position: fixed;
    /* height: 60px; */
    background-color: #fff;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.06);
}

.mb-container {
    width: 100%;
    /* max-width: 850px; */
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 0.31rem 0.46rem;*/
    padding: 0.3rem;
}

.mb-container-l {
    display: flex;
    align-items: center;
    padding-bottom: 0.15rem;
}

.mb-logo {
    margin-right: 10px;
    height: 1rem;
    width: 1rem;
}

.mb-text {
    color: #202020;
    font-size: 0.35rem;
    line-height: 0.46rem;
}

.mb-text1 {
    color: #888888;
    font-size: 0.25rem;
    /*padding-top: 0.15rem;
    line-height: 0.46rem;*/
}

.mb-open {
    cursor: pointer;
    background-color: #2d8dee;
    padding: 0.15rem 0.46rem;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 0.33rem;
}

/* 头部打开app结束 */

.main {
    padding-top: 1.84rem;
}

/* // 单行溢出 */
.c_line1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

/* //2行溢出 */
.c_line2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* //3行溢出 */
.c_line3 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}


@media screen and (min-width: 1000px) {
    .main {
        max-width: 750px;
        margin: 0 auto;
        /* padding-top: 100px; */
    }
}


/* -----------------------------------------------提示弹窗----------------------------------------------- */
.dialog {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.dialog_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.2rem;
    background-color: #ffffff;
    width: 7.75rem;
    padding-top: 0.6rem;
}

.d_t_title {
    padding: 0 0.8rem 0.4rem;
    font-size: 0.43rem;
    font-weight: bold;
    color: #333333;
    line-height: 0.6rem;
    text-align: center;
}

.d_cont_d1 {
    font-size: 0.38rem;
    color: #333333;
    line-height: 0.6rem;
    text-align: center;
    padding: 0 0.5rem 0.4rem;
}

.d_cont_d1 .sp_bold {
    font-weight: bold;
}

.d_cont_d1 .sp_num {
    color: #1678FF;
}

.d_cont_d1 .num {
    color: #E03E33;
}

.d_btn_wrap_1 {
    display: flex;
    border-top: 1px solid #F1F3F4;
}

.d_btn_wrap_1 .d_btn_1 {
    flex: 1;
    padding: 0.25rem;
    text-align: center;
    font-size: 0.38rem;
    color: #888888;
    line-height: 0.53rem;
    cursor: pointer;
}

.d_btn_wrap_1 .d_btn_1.d_btn_2 {
    color: #1678FF;
}

.d_btn_wrap_1 .d_btn_1:nth-child(2) {
    border-left: 1px solid #F1F3F4;
}

/* -----------------------------------------------提示弹窗----------------------------------------------- */


.dialog_tooltip {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    padding: 0.246rem 0.41rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.123rem;
    z-index: 1003;
    max-width: 8rem;
    width: max-content
}

/* -----------------------------------------------分享面板-----开始------------------------------------------ */
.rule_dialog {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rule_dialog .share_dialog {
    width: 7rem;
    /* height: 8rem; */
    margin-top: -2.3rem;
}

.rule_dialog .b_share {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F7F7F7;
    border-radius: 0.25rem 0.25rem 0rem 0rem;
}

.rule_dialog .b_share .b_share_title {
    text-align: center;
    padding: 0.5rem;
    color: #333333;
    font-size: 0.43rem;
    font-weight: bold;
    line-height: 0.6rem;
}

.rule_dialog .b_share .share_ul {
    display: flex;
    padding-bottom: 0.5rem;
}

.rule_dialog .b_share .share_ul>li {
    flex: 1;
    justify-content: space-between;
    cursor: pointer;
}

.rule_dialog .b_share .share_ul>li .share_li_d1 {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
    padding: 0.2rem;
    margin: 0 auto;
    background-color: #FFFFFF;
}

.rule_dialog .b_share .share_ul>li .share_li_d1>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rule_dialog .b_share .share_ul>li .share_li_d2 {
    color: #333333;
    font-size: 0.3rem;
    text-align: center;
    line-height: 0.35rem;
    margin-top: 0.3rem;
}

.rule_dialog .b_share .b_share_cancel {
    text-align: center;
    padding: 0.35rem;
    color: #333333;
    font-size: 0.38rem;
    background-color: #FFFFFF;
    cursor: pointer;
    line-height: 0.45rem;
}

/* -----------------------------------------------分享面板----结束------------------------------------------- */

/* -----------------------------------------------邀请好友复制-提示弹窗----------------------------------------------- */


.invite_tooltip {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 3.2rem;
    height: 3.2rem;
    transform: translate(-50%, -50%);
    color: #ffffff;
    padding: 0.6rem 0.9rem 0.9rem;
    background-color: #4C4C4C;
    border-radius: 0.25rem;
    z-index: 1003;
    text-align: center;
}

.invite_tooltip .invite_tooltip_img {
    width: 1.2rem;
    display: inline-block;
    margin: 0 auto;
}

.invite_tooltip .invite_tooltip_copy {
    font-size: 0.4rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.55rem;
    text-align: center;
}

/* // 单行溢出 */
.c_line1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

/* //2行溢出 */
.c_line2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* //3行溢出 */
.c_line3 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}



/*base code*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

/*the animation definition*/
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.filter {
    filter: grayscale(1);
}