@charset "UTF-8";

/* reset css start ---------> */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
html,
body {
    height: 100%;
    color: #171826;
}

html > body {
    font-size: 12px;
    background-color: #F5F6F7;
}

input, textarea {
    caret-color: #2cb7ca;
}


/* 清除默认样式 */
ul,
ol {
    list-style: none;
}
/*清除输入框内阴影*/
input,
textarea,
select,
button {
    outline: none;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
}
button,
span,
div {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* -webkit-user-modify:read-only; */
}
img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
    text-decoration: none;
    color: #3d3d3d;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}
/*禁用长按页面时的弹出菜单(iOS下有效) ,img和a标签都要加*/
img,
a {
    -webkit-touch-callout: none;
}

input::placeholder {
    color: #C0C4CC;
}

/* reset css end ------ */

/* common css class start */
[v-cloak] {
    display: none!important;
}

.clearfix {
    zoom: 1;
}
.clearfix:after {
    clear: both;
    height: 0;
    overflow: hidden;
    display: block;
    visibility: hidden;
    content: '';
}
.left {
    float: left;
}
.right {
    float: right;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 超过2行省略号显示 */
.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* 超过3行省略号显示 */
.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.scrollbar-none::-webkit-scrollbar {
    display: none;
}

/* 禁止长按复制 加给body ---- */
.no-touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.j-pd {
    padding-left: 0.32rem;
    padding-right: 0.32rem;
}

.j-arrow {
    display: inline-block;
    width: 0.26rem;
    height: 0.26rem;
    border: 2px solid #5f5e64;
    border-bottom-color: transparent;
    border-right-color: transparent;
    background: 0 0;
    transform: rotate(-45deg);
}

.highlight-text {
    color: #2cb7ca!important;
}
.bg-white {
    background-color: #fff;
}
[class*=clickable]:active {
    background-color: #f2f3f5;
}

/*
    border-line-t 0.5px上边框
    border-line-b 0.5px下边框
*/
.border-line-t,
.border-line-b {
    position: relative;
}
.border-line-t:after,
.border-line-b:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleY(0.6);
    transform-origin: 0 0;
    background: rgba(0, 0, 0, 0.05);
    /* background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 65%, transparent 35%); */
}
.border-line-t:after {
    top: -1px;
}
.border-line-b:after {
    bottom: -1px;
}

/* common css class end ---- */

/* j-container布局  start ---- */
.j-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.j-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.j-header.jy-app-header {
    box-sizing: border-box;
    padding: 10.66667vw 3.2vw 0 3.2vw;
    height: 21.33333vw;
    background: #fff;
    z-index: 9;
}
.j-header.jy-app-header.wx-header,
.j-header.jy-app-header.h5-header {
  height: 10.66667vw;
  padding: 0 3.2vw;
}
.jy-app-header .icon-back::before,
.jy-app-header .icon-back-white::before {
   content: unset;
}
.jy-app-header .icon-back-white {
    display: none;
}
.jy-app-header.transparent-header .icon-back-white {
    display: inline-block;
}
.jy-app-header.transparent-header .icon-back {
   display: none;
}

.j-header .header-left,
.j-header .header-title,
.j-header .header-right {
    display: flex;
    align-items: center;
}

.j-header .header-left {
    height: .6rem;
    width: .6rem;
}
.j-header .header-left .j-icon {
    height: .4rem;
    width: .4rem;
}

.j-header .header-title {
    position: absolute;
    left: 50%;
    font-size: 17px;
    color: #171826;
    transform: translateX(-50%);
    white-space: nowrap;
}

.j-header .header-right {
    height: 100%;
    min-width: 0.4rem;
    font-size: .3rem;
}

.j-header .header-left.hide,
.j-header .header-right.hide {
    visibility: hidden;
}

/* 头部透明 */
.j-container .j-header.transparent-header {
    background-color: transparent;
}
.j-container .j-header.transparent-header:after {
    content: unset;
}
.j-header.transparent-header .header-right,
.j-header.transparent-header .header-left,
.j-header.transparent-header .header-title {
    color: #fff;
}
.j-header.transparent-header .header-title {
    font-size: 0;
}

.j-main {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    /* 所有都j-main开启ios-touch */
    -webkit-overflow-scrolling: touch;
}

.j-main.calc-height-1px {
    height: calc(100% + 1Px);
}

/* 单独关闭ios惯性滚动 */
.j-main.no-ios-touch {
    -webkit-overflow-scrolling: auto;
}

.j-footer {
    box-shadow: 0px -2px 8px rgba(54, 147, 179, 0.051);
}
/* j-container布局  end ---- */

@keyframes ballRotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ball-clip-rotate {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.ball-clip-rotate .ball {
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-bottom-color: transparent;
    background: 0 0;
    -webkit-animation: ballRotate 0.75s 0s linear infinite;
    animation: ballRotate 0.75s 0s linear infinite;
}

.j-mask {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.black {
    background: rgba(0, 0, 0, 0.6);
}

.j-loading {
    display: none;
}

.j-loading .j-toast {
    position: fixed;
    top: 45%;
    left: 50%;
    z-index: 1001;
    padding: 0.2rem;
    min-width: 2.2rem;
    max-width: 6.2rem;
    width: auto;
    height: auto;
    color: #fff;
    font-size: 0.28rem;
    text-align: center;
    background: rgba(18, 18, 18, 0.7);
    border-radius: 5px;
    transform: translate(-50%, -50%);
}

.j-loading .j-toast.icon {
    padding: 0.5rem 0.2rem;
}

.j-loading .j-toast.icon .j-toast_icon {
    display: inline-block;
    width: 38px;
    height: 38px;
}

.j-loading .j-toast .j-toast_icon {
    display: none;
}

.j-loading .j-toast .j-toast_content {
    text-align: center;
}

.j-loading-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: baseline;
    background: transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;
    background-size: 100%;
    -webkit-animation: ballRotate 1s steps(12) infinite;
    animation: ballRotate 1s steps(12) infinite;
}

.j-button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.16rem 0.32rem 0.24rem;
    background-color: #fff;
    box-sizing: border-box;
}

.j-button-confirm,
.j-button-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    height: 0.8rem;
    font-size: 0.32rem;
    line-height: inherit;
    text-align: center;
    border-radius: 0.16rem;
}

.single .j-button-confirm,
.single .j-button-cancel {
    height: 0.92rem;
}

.j-button-cancel {
    margin-right: 0.26rem;
    color: #5f5e64;
    background-color: #edeff2;
}

.j-button-confirm {
    color: #fff;
    background-color: #2cb7ca;
}

button[disabled] {
    opacity: 0.5;
}

.checkbox {
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-right: 0.2rem;
    -webkit-appearance: none;
    background: #fff;
}

.checkbox:checked {
    border: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAACpElEQVRogc1asa2DMBBlhIyQMpKNxAiMwAiMwAhswAgZgQrOHSVwLhiBERghvwCSwMdgOzYG6aQUhLw7v3u+Z+J5Bq4g724U6pCUTeIznlGGHQHsKcOBAPbT544yntOiTSnUoYnf/Rm0X7YRAXxShgMFfCkH4zkBjE8HTos21QYtCJ/xzDpwAhgTwN4k8OWK4GBlRYK8u1HGc2vA/yfSPaC+GwFPoQ6tVn1vNQoMfgJPyiYxzXXl3ijbSA88YOwa/BzKfUEKDK4C/hOSe8cD6vv1wOOLMhykGvtUtVFPotunDmDsHORBCPth1PoLUmeDStvUKdrUObgxqinE9xRt+q/6TjarZWW79cZFGXaiVQjy7va+0S/byDX4LYUhZZOIvrPoBafKw7BbVFOW1ozn7pt3B/xe9ed4QH33KNSho+pXv4CngC9SNon0zVcDTwFHNTqb/wTwqcX5TQry3KNHmmswfMYzEXif8Uz5mQwHT1r/55MGC+AJ4FPruVIJrJwRhToUbjA74LeATxuoHvg5gSMJFf24bO9YAy+7AgTwuQVAirfrmeULvBHxYDhINTEpm0SYhGgMsQ1+LG4v3f17B09rCyqa2Y0fzzCeq8pXJUpiPB/F6jTwc1GVJ1GNQ6dp3lJSLqkEyjbSG+YYDrKnBA+o77a8xruQunK219yeN/aGNaM0j9NTAvpmXqA2VsHDSigMWMrFdDnt1vY8xtpSep4hUz+qTGXbIG1K+iWMvW7137x1Y27UQtBzHyqd6A80qi/00AsqXfKETuWFh0OjLwSv/KLjSkkcbZjXTYLhoA3eeRI6tBFd86h8Inhzr1m/L+v7xESZQ6m8XCJnARckoketca+paNGmVuiievllG032tKKjtezf1f36u43PeEYAY1PV/gMeU6lGAhyHxgAAAABJRU5ErkJggg==) no-repeat center center;
    background-size: 100% 100%;
}

.checkbox.transparent:checked {
    border: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHBSURBVHgBzZiPcYIwFIeDE7hB6QR1gzqCG2g3cAPtBLqBdoK6Ae0EXCd4bmA3+PW9JlxTJEJCgnx37xQSku9IyL9MeQIg558FxxPHnGNqQvjmOJv45DhlWXZWKWCRFUcBf0p5VsWCC5tzEPpDvcT44SnHDvGRMqe+Mjn0q04FQffFzjKE9FCrFHQzEYZDWuFf801qThuOXA3HzNR5DfRnfS/mlUdmCZEa9u3YnHkAfZQ/EyOzGkjmyPHWcD+HPUYh7SdesbXqOzakF1VijvRs7dfB1wdHvgdJXCMtdZnljbxryfCOccgIh1v9h6CbM3Qa8ZX5rVMyXtoKhB7Bfd5kiIxwUTcSCbW5hq/38JdZwAPVkk4NUlt0l5nB3QJOobYHqKNUbxmYJqMuGaWCWoX23HeMICOUrlHTxbKh4n0kGeEUMjA2LxdUlMXdOnTq2CSQEfKqsAL+7CLLlK4O6lUI9C4itM/YrMRlnAs0w4u6H6+Nd9FtaojN3qkJPYkOsXqsILTtYjGmjeKAUmVnmVrzpehTUqbfYUNNTMYoQn8I1oawN0YspMMX8DgXypQn+DvSe1Z6IJWwj/QkPji+VMCR3g//T7SIqLP6vQAAAABJRU5ErkJggg==) no-repeat center center;
    background-size: 100% 100%;
}

.j-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.72rem;
    padding: 0 0.2rem;
    background-color: #f5f6f7;
    color: #5f5e64;
    border-radius: 0.08rem;
}

.j-button-item {
    position: relative;
    display: inline-block;
    color: #171826;
}

.j-button-item.active {
    color: #2abed1;
    background-color: #e8fafd;
}

.j-button-item.active:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0.24rem;
    height: 0.24rem;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKySURBVHgB7Zg/aNRQHMd/eXfWP6i9omJBhBOXa0W4bK6ni6Murro76Cgu1kF0aysOjnXTyTopLkEcHM8TxIMOHghFQfBAaUtp8/P9Qt+Rpnm99y+XBO6zXJJ7gc83v+S9XwIwZsyY0jIbdB54UFIuBF/mEfFu6QLUX7drR2qVeUC8RfulChDJT7KAbzbFsdIEaLxt19nBSL4eP16KADJ5ovAB9pMnCh1g9n276VVZgAA12RgGBaURdG4OkycKWYGZoHPHQ1hQGVu4CkSrq6I8UagKkDwgzOmcU5gAojUATXIPkGwNdMk1QFproEtuAYYtUKrkEsCVPDHyAC7liZEGUGkNdBnZQqbaGugykgrotAa6ZF4B3dZAlwpkiElrILg2PQVL/nm4ceYE/N3ahu6/jdRxmd1Cpq0BQfKPZs4O9inApY9fU8dWwTGiNUDD1iApT1AAGU4DDFoDRKPWIE2eePb9l/QcZ7eQ7QIlk7//7Qe8+flHep6TAHnJE9azUFJedfYQ2MgTVgGoNWAT7BPfnBbHnl6sw8mJA3C8WoErpyZhdWNTGsJWntM3XshkrQGJxyFBEk3iQJ7oGVWAWgOG8JxvHkr+93tzK7rycZKVcCTPn2B8px1gpzV4IvufJElWFqJx9LAbeU6IuKg1C+m0BrKrnIaJPLHmhVPKFaDWgMvfUx0vq0QSU3l++yyttPxXQ1dim9ZgeUdMVgljeU4I+JB+961A7KvBVTBEVgkbeURY7F5uvqRtaQVcvruKStw+dxqO8Wn28cqquTyfOtdZOCf2Ux9i1y/eriB59MJWt+X3xLE9C1mR5T0vvB6XJ3ZVIIuvBi5Iu/KCQQWy+mpgCz2w617op8kTUQWy/GpgSB8xfIEMFmTiAs/mxdshfX6te9zjM78pPqyx7eVey++rnPgfnLxxiLvERTEAAAAASUVORK5CYII=) no-repeat;
    background-size: contain;
}

/* 空状态 配合j-icons中的img-empty和j-img使用 */
/* 具体使用参考page_ent_follow.html */
.empty {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    padding-top: 1.34rem;
    width: 100%;
}
.empty .empty-img {
    padding: .2rem;
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 0.24rem;
    background-origin: content-box;
}
.empty .empty-text {
    font-size: .26rem;
    line-height: .4rem;
    color: #9B9CA3;
}

.preferential-tag {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    height: 18px;
    color: #fff;
    background: linear-gradient(102deg,#ffa674, #f01212 100%);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.preferential-tag::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 0;
    height: 0;
    border-top: 9px solid #f01212;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #f01212;
}

.shiyong_common {
    width: 5.92rem!important;
    height: 4.48rem;
}

.shiyong_common .van-dialog__header{
    font-size: 0.36rem;
    font-weight: bold;
    color: #000000;
}

.shiyong_common .van-dialog__message--has-title {
    padding-top: 0.36rem;
    padding-bottom: 0;
}

.shiyong_common .van-dialog__message--has-title .shiyong_text{
    line-height: 0.4rem;
    font-size: 0.28rem;
    text-align: justify;
    color: #5f5e64;
}

.shiyong_common .van-dialog__message--has-title .shiyong_buy{
    margin-top: 0.36rem;
    width: 100%;
    height: 0.8rem;
    background: #2ABED1;
    border-radius: 4px;
    color: #F7F9FA;
    font-size: 0.32rem;
}

.visited .visited-hd {
    color: #C0C4CC!important;
}
.visited .visited-ft {
    color: #9B9CA3!important;
}
.visited .visited-ft.visited-tag {
    background-color: #F7F9F9;
}

/**/
.j-container .freeShow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  width: 100%;
  height: 64px;
  box-sizing: border-box;
  background: #F5F6F7;
}
.j-container .freeShow .purchase_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  width: 100%;
  height: 44px;
  background: url('/jyapp/big-member/image/purchase_bg.jpg') no-repeat;
  background-size: 100% 100%;
  border-radius: 8px;
  box-sizing: border-box;
}
.j-container .freeShow .purchase_in .pur_text {
  font-size: 0.3rem;
}
.j-container .freeShow .purchase_in .pur_btn {
  padding: 3px 12px;
  line-height: 18px;
  text-align: center;
  background: linear-gradient(113.06deg, #3E3E52 0%, #2F2F3D 100%);
  font-size: 12px;
  color: #FAE7CA;
  border-radius: 32px;
}
.j-main .tip {
  font-size: 14px;
  padding: 5px 20px;
  margin-bottom: 20px;
}
.j-main .tip img {
  margin-right: 10px;
  height: 19.5px;
  width: 19.5px;
  vertical-align: sub;
}
.j-main .tip front {
  margin-left: 10px;
  color: #a0a0a0;
}
