/* 基础 reset */
*, 
*::before,
 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --default-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    touch-action: manipulation;
}

/* // 使用 css 属性选择器 隐藏 dom */
[v-cloak] {
  display: none;
}


/* 列表（ul/ol/li）*/
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 链接（a）*/
.ceping__css a {
    /* 继承父元素颜色，避免默认蓝色 */
    color: inherit;
    /* 去掉下划线 */
    text-decoration: none;
    background-color: transparent;
    /* 移动端点击高亮 */
    -webkit-tap-highlight-color: transparent;

    transition: var(--default-transition);
}
    
.ceping__css a:hover {
    color: #1472ff;
}

/* 表单 / 按钮 / 输入，去掉浏览器默认外观但继承字体 */
.ceping__css button,
.sheet-content button,
.ceping__css input,
.ceping__css select,
.ceping__css textarea {
    font: inherit;
    /* color: inherit; */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    /* iOS/Chrome 表单默认样式 */
    -webkit-appearance: none;
    appearance: none;
    outline: none;

    cursor: pointer;
}

/* 图片和 svg 基础 */
img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.relative {
    position: relative;
}

.w-full {
    width: 100%;
}

.size-full {
    width: 100%;
    height: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.cursor-pointer {
    cursor: pointer;
}

.color__red {
    color: #fc4d4d;
}

.color__purple {
    color: #9174ff;
}

.pc__hide {
    display: block;
}

.mobile__hide {
    display: none;
}

.header__container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 20;
    height: 1.14rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e5f1ff;
    box-shadow: 0 2px 8px rgba(70, 97, 130, 0.19);
    padding: 0.24rem 0.43rem 0.24rem 0.53rem;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo--mobile {
    width: 0.64rem;
    height: 0.64rem;
}

.header__logo--pc {
    display: none;
}

.header__title {
    font-family: "FZLanTingHei-DB-GBK", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 0.42rem;
    color: #000000;
    line-height: 0.24rem;
    margin-left: 0.18rem;
}

.header__navWrap {
    display: none;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header__icon {
    width: 0.4rem;
    height: 0.4rem;
    color: #626e84;
}

.header__icon--search {
    width: 0.4rem;
    height: 0.4rem;
}

.header__icon--user {
    width: 0.44rem;
    height: 0.62rem;
}

.header__icon--menu {
    width: 0.41rem;
    height: 0.31rem;
}

.header__userInfo,
.header__loginWrap {
    display: none;
}

.main__container {
    flex: 1;
    /* padding: 0.4rem; */
    display: flex;
    flex-direction: column;
}

.footer__container {
    width: 100%;
    height: 1.46rem;
    /* margin-top: 0.65rem; */
    background: #161e30;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer__container p {
    font-weight: 400;
    font-size: 0.2rem;
    color: #f4f5fb;
}

.recommend__container {
    display: flex;
    flex-direction: column;
}

.recommend__title {
    margin-top: 1.89rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.4rem;
    color: #0f1829;
    line-height: 0.27rem;
}

.recommend__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.32rem;

    margin-top: 0.32rem;
}

.recommend__more {
    display: none;
}

.recommend__itemWrap {
    width: 6.9rem;
    height: 5.71rem;
    background: #ffffff;
    box-shadow: 0rem 2px 4px 0rem rgba(109, 126, 161, 0.1);
    border-radius: 0.16rem;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.recommend__itemImg {
    width: 100%;
    height: 3.64rem;
    border-top-left-radius: 0.16rem;
    border-top-right-radius: 0.16rem;
    overflow: hidden;
}

.recommend__itemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend__itemInfo {
    position: relative;
    flex: 1;
}

.recommend__itemTitle {
    font-weight: 400;
    font-size: 0.34rem;
    color: #333333;
    /* line-height: 0.17rem; */
    margin-left: 0.39rem;
    margin-top: 0.35rem;
}

.recommend__itemTextWrap {
    display: flex;
    align-items: center;
    margin-top: 0.58rem;
    margin-left: 0.39rem;
    gap: 0.4rem;
    color: #666666;
}

.recommend__itemText {
    font-weight: 400;
    font-size: 0.26rem;
}

.recommend__itemBtn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2.16rem;
    height: 1.05rem;
    background: #1472ff;
    border-radius: 0.36rem 0rem 0.18rem 0rem;

    font-weight: 400;
    font-size: 0.3rem;
    color: #ffffff;
    line-height: 0.17rem;
    transition: var(--default-transition);
}

.recommend__itemBtn:hover {
    /* color: #1472ff; */
    opacity: 0.8;
}

.recommend__mobile--hide {
    display: none;
}

.test__title {
    font-weight: bold;
    font-size: 0.36rem;
    color: #0f1829;
    line-height: 0.27rem;

    margin-left: 0.12rem;
}

.verticalBar {
    width: 0.09rem;
    height: 0.37rem;
    background: #1472ff;
    border-radius: 0.04rem;
}

/* ranking ---- star */
.test__ranking {
    display: flex;
    flex-direction: column;
    margin-top: 0.62rem;
    width: 6.9rem;
}

.test__rankingList {
    width: 100%;
    margin-top: 0.46rem;
    padding: 0.35rem 0.33rem;
    box-shadow: 0rem 2px 4px 0rem rgba(109, 126, 161, 0.1);
    background: #ffffff;
    border-radius: 0.08rem;

    display: flex;
    flex-direction: column;
}

.test__rankingItem {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 0.24rem;
    border-bottom: 0.01rem solid #dee2eb;
    margin-bottom: 0.31rem;
}

.test__rankingItem:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.test__rankingLeft {
    display: flex;
    gap: 0.14rem;
    align-items: flex-start;
}

.test__rankingIndex {
    width: 0.36rem;
    height: 0.36rem;

    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.26rem;
    color: #8c92b2;
    font-style: italic;
}

.test__rankingIndex img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.test__rankingDesc {
    display: flex;
    flex-direction: column;
    gap: 0.23rem;
}

.test__rankingName {
    /* height: 0.36rem; */
    font-weight: 400;
    font-size: 0.28rem;
    color: #010101;
    line-height: 0.36rem;
}

.test__rankingData {
    font-weight: 400;
    font-size: 0.22rem;
    color: #666666;

    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.test__rankingBtn {
    width: 1.38rem;
    height: 0.46rem;
    background: rgba(22, 30, 48, 0);
    border-radius: 0.23rem;
    border: 0.01px solid #1472ff;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 400;
    font-size: 0.22rem;
    color: #1472ff;

    transition: var(--default-transition);
}

.test__rankingBtn:hover {
    background: #1472ff;
    color: #ffffff;
}
/* ranking ---- end */


/* mobile nav ------------- start */
.mobileNav__container {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(70, 97, 130, 0.19);
    display: none;
    z-index: 100;
}

.mobileNav__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;

    padding: 0.37rem 0;
}

.mobileNav__item {
    width: 3.3rem;
    height: 0.7rem;
    background: #FFFFFF;
    border: 0.01px solid #C9C9C9;
}

.mobileNav__item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 400;
    font-size: 0.3rem;
    color: #000000;
}
/* mobile nav ------------- end */


/* PC 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .pc__container {
        width: 15rem !important;
        margin: 0 auto !important;
    }

    .pc__header {
        justify-content: flex-start;
    }

    .pc__hide {
        display: none;
    }

    .mobile__hide {
        display: block;
    }

    .recommend__mobile--hide {
        display: flex;
    }

    .header__container {
        /* position: fixed; */
        /* top: 0;
        right: 0;
        left: 0; */
        height: 0.65rem;
        background: #e5f1ff;
        box-shadow: 0 2px 8px rgba(70, 97, 130, 0.19);
        /* box-shadow: 0rem 0rem 0rem 0rem rgba(70, 97, 130, 0.19); */
    }

    .header__logo--mobile {
        display: none;
    }

    .header__logo--pc {
        display: block;
        width: 0.42rem;
        height: 0.41rem;
    }

    .header__title {
        font-family: "FZLanTingHei-DB-GBK";
        font-weight: bold;
        font-size: 0.28rem;
        color: #000000;
        line-height: 0.16rem;
        margin-left: 0.12rem;
    }

    .header__navWrap {
        display: block;
        margin-left: 1.5rem;
    }

    .header__navWrap ul {
        display: flex;
        align-items: center;
        gap: 0.56rem;
    }

    .header__nav--item {
        font-weight: 400;
        font-size: 0.18rem;
        color: #000000;
        line-height: 0.09rem;
    }

    .header__nav--item.active {
        color: #1472ff;
    }

    .header__right {
        display: none;
    }

    .header__loginWrap {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0.12rem;
    }

    .header__loginIcon {
        width: 0.32rem;
        height: 0.32rem;
        border-radius: 50%;
        overflow: hidden;
    }

    .header__loginText {
        font-weight: 400;
        font-size: 0.14rem;
        color: #666666;
        line-height: 0.09rem;
    }

    .header__userInfo {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0.12rem;
    }

    .header__userAvatar {
        position: relative;
        width: 0.32rem;
        height: 0.32rem;
        border-radius: 50%;
        /* overflow: hidden; */
    }

    .vip__icon{
        position: absolute;
        width: 0.16rem;
        height: 0.16rem;
        bottom: -0.04rem;
        right: -0.04rem;
    }

    .header__userName {
        font-weight: 400;
        font-size: 0.14rem;
        color: #000000;
        line-height: 0.09rem;
    }

    .mobileNav__container {
        display: none !important;
    }

    .footer__container {
        height: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.32rem;
        padding-bottom: 0.3rem;

        /* padding: 0.48rem 0 0.3rem; */
        /* height: 1rem; */
        /* flex-direction: row; */
    }

    .footer__logoWrap {
        margin-top: 0.48rem;
        width: 15rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__container .header__title {
        font-weight: 400;
        font-size: 0.3rem;
        color: #D6E3FE;
    }

    .footer__links {
        display: flex;
        gap: 0.4rem;
        color: #fff;
        font-weight: 500;
        font-size: 0.15rem;
        color: #D6E3FF;
    }


    .footer__container p {
        font-size: 0.14rem;
    }

    .recommend__title {
        margin-top: 1.25rem;
        font-weight: bold;
        font-size: 0.36rem;
        color: #0f1829;
        line-height: 0.27rem;
    }

    .recommend__list {
        position: relative;
        margin-top: 0.37rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.2rem;
        align-items: center;
    }

    .recommend__more {
        display: block;
        position: absolute;
        top: -0.34rem;
        right: 0;
        font-weight: 400;
        font-size: 0.16rem;
        color: #6e747e;
    }

    .recommend__itemWrap {
        width: 3.6rem;
        height: 3.28rem;
        border-radius: 0.08rem;
    }

    .recommend__itemImg {
        height: 1.9rem;
        border-top-left-radius: 0.08rem;
        border-top-right-radius: 0.08rem;
    }

    .recommend__itemTitle {
        font-weight: 400;
        font-size: 0.18rem;
        color: #333333;
        margin-left: 0.28rem;
        margin-top: 0.29rem;
    }

    .recommend__itemTextWrap {
        display: flex;
        align-items: center;
        margin-top: 0.47rem;
        margin-left: 0.28rem;
        gap: 0.19rem;
        color: #666666;
    }

    .recommend__itemText {
        font-size: 0.14rem;
    }

    .recommend__itemBtn {
        width: 1.1rem;
        height: 0.55rem;
        font-size: 0.16rem;
        border-radius: 0.19rem 0rem 0.08rem 0rem;
    }

    .test__title {
        font-size: 0.28rem;
    }

    .verticalBar {
        width: 0.07rem;
        height: 0.3rem;
    }

    .test__rankingList {
        margin-top: 0.3rem;
        padding: 0.24rem 0.23rem;
    }

    .test__rankingItem {
        padding-bottom: 0.14rem;
        margin-bottom: 0.14rem;
    }

    .test__rankingIndex {
        width: 0.25rem;
        height: 0.25rem;

        font-size: 0.18rem;
    }

    .test__rankingDesc {
        gap: 0.11rem;
    }

    .test__rankingName {
        font-size: 0.18rem;
        /* height: 0.25rem; */
        line-height: 0.25rem;
    }

    .test__rankingData {
        font-size: 0.14rem;
        gap: 0.21rem;
    }

    .test__rankingBtn {
        width: 0.8rem;
        height: 0.32rem;
        font-size: 0.14rem;
    }

}


/* pc login css ---- start */
/* weixin login */
.marks { width: 100%; height: 100%; min-height: 550px; overflow: hidden; zoom: 1; position: fixed; top: 0; left: 0; z-index: 300; background-color: #000000; opacity: 0.5; filter: alpha(opacity=50); display: none;}

.wqlogin {position: fixed;z-index: 999;width: 720px;height: 480px;border-radius: 7px;left: 50%;top: 50%;margin-left: -345px;margin-top: -220px;}
.wqlogin .leftpic {float: left;height: 480px;width: 240px;background: url(../images/leftpic.png) no-repeat;}
.wqlogin .rightmain { background-color: #fff;height: 480px;width: 480px;float: right;border-top-right-radius: 10px;border-bottom-right-radius: 10px; }

.wqlogin .middleline {height: 1px;border-bottom: 1px solid #cccccc;width: 272px;margin: 26px auto 0;position: relative;}
.wqlogin .middleline span {width: 118px;height: 30px;top: -15px;background-color: #fff;position: absolute;left: 77px;line-height: 30px;text-align: center;font-size: 14px;}
.wqlogin .power {margin-top: 0px}
.wqlogin .logotitle {background: url(../images/wqlogo.png) center top no-repeat;width: 100%;height: 80px;margin-top: 35px;font-weight: 900; }
.wqlogin .logotitle font {color: #2776fc}

.clearfix:after {content: ".";display: block;height: 0;visibility: hidden;clear: both;}
.clearfix {zoom: 1;}

.closeb { display: block; width: 32px;height: 32px; background-position: -58px -371px;cursor: pointer; }
.closeb:hover {opacity: 0.85;}
.wqlogin .closeb, .phonelogin .closeb, .vnPopPayBox .closeb { position: absolute;right: -40px;top: -40px; }

.vnIocn { background-image: url('../images/vniocn.png'); }

.logotitle { text-align: center; font-size: 20px; color: #121212;line-height: 30px;padding-top: 44px;margin-bottom: 7px;}

.qrcodee { width: 300px;margin: 0 auto; height: 200px;overflow: hidden; position: relative;}
.weprewlogin {background-position: 0 -353px;right: 15px;top: 38px;}

i, em {font-style: normal;}

.other {display: block;text-align: center;font-size: 0;}
.other a { display: inline-block; width: 80px;text-align: center; line-height: 1;margin: 0 39px;font-size: 14px; cursor: pointer; padding-bottom: 20px;position: relative;}
.other a span { display: block; width: 40px;height: 40px;margin: 0 auto 10px;border-radius: 50%; position: relative;}
.other {padding-top: 30px;}
.wqlogin .other {padding-top: 20px;}
.other .qqlogin span {background: url(../images/qq.png)}
.other .qqlogin:hover span {background: url(../images/qq_hover.png)}
.other .phlogin span {background: url(../images/phone.png)}
.other .phlogin:hover span {background: url(../images/phone_hover.png)}
.other .welogin span {background: url(../images/wechat.png)}
.other .welogin:hover span {background: url(../images/wechat_hover.png)}
.other .prewlogin { right: -36px;top: 0; }
.other .qqlogin .prewlogin { background-position: 0 -332px; }
.other .phlogin .prewlogin { background-position: 0 -374px; }

.power {width: 100%;text-align: center;color: #a7a7a7;margin-top: 14px; font-size: 12px;}
.power a {color: #26a5fe;}
.power a:hover {color: #0982f8;}

.prewBtn { display: none; width: 50px;height: 20px; position: absolute; }


/* phone login */
.phonelogin input {outline: none;}
.phonelogin {position: fixed;z-index: 999;width: 430px;height: 490px;border-radius: 7px;background-color: #fff;left: 50%;top: 50%;margin-left: -215px;margin-top: -245px;}
.phonelogin .logotitle {background: url(../images/wqlogo.png) center center no-repeat;width: 100%;height: 50px; }
.phonelogin .phoneno {height: 50px;width: 272px;line-height: 50px;border: 1px solid #e0dfdf;font-size: 14px;border-radius: 7px;text-indent: 16px;outline: none;margin: 25px auto 0;display: block;}
.phonelogin .capt {height: 52px;width: 274px;padding: 0px;margin: 15px auto 0;}
.phonelogin .capt .captinput {float: left;width: 128px;border: 1px solid #e0dfdf;height: 50px;line-height: 50px;font-size: 14px;border-radius: 7px;text-indent: 16px;padding: 0px;}
.phonelogin .capt .getcaptbtn {float: left;border: 1px solid #e0dfdf;width: 128px;height: 50px;text-align: center;cursor: pointer;line-height: 50px;color: #000;float: left;border-radius: 7px;margin-left: 12px;font-size: 14px;}
.phonelogin .capt .getcaptbtn:hover {color: #0982f8;border-color: #0982f8;}
.phonelogin .capt .getcaptbtn.noclick {border-color: #e0dfdf;color: #000;}
.phonelogin .capt .getcaptbtn.noclick:hover {border-color: #e0dfdf;color: #000;}
.phonelogin .msg {height: 25px;line-height: 25px;color: #f00;width: 100%;text-align: center;line-height: 25px;font-size: 14px;}
.phonelogin .sub {height: 50px;width: 272px;cursor: pointer;display: block;text-align: center;line-height: 50px;border: 1px solid #0982f8;font-size: 18px;border-radius: 7px;outline: none;background-color: #0982f8;color: #fff;letter-spacing: 5px;margin: 0 auto;}
.phonelogin .middleline {height: 1px;border-bottom: 1px solid #cccccc;width: 272px;margin: 26px auto 0;position: relative;}
.phonelogin .middleline span {width: 118px;height: 30px;top: -15px;background-color: #fff;position: absolute;left: 77px;line-height: 30px;text-align: center;font-size: 14px;}
.phonelogin .other {padding-top: 20px;}
.phonelogin .power {margin-top: 0;}

sub {vertical-align: text-bottom;}

.phonelogin .logotitle {
    margin-top: 20px;
}
/* pc login css ---- end */

/* mobile login css ----------------- start */
/* 手机号一键登录 ---- start */
/* 遮罩层（黑色半透明背景）保持不变 */
.dialog-type-container {
    display: none;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    z-index: 1000;

    /* display: flex; */
    justify-content: flex-end;
    flex-direction: column;
}

/* 内容层：改成底部抽屉 */
.dialog-type-inner-content {
    position: static !important;
    bottom: 0 !important;
    transform: translateX(0) !important;
    width: 100% !important;
    height: 8.12rem !important;
    border-radius: .28rem .28rem 0 0;
    background-color: #FFF;

    display: flex;
    flex-direction: column;
    /* padding: .24rem 0.52rem 0.96rem !important; */
    padding-top: .24rem !important;
}

.dialog-title {
    position: absolute !important;
    top: .24rem !important;
    font-size: .24rem !important;
    font-weight: bold !important;
    /* text-align: center; */
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.number-con-wrap {
    color: #3D3D3D;
    margin-top: 1.20rem !important;
    margin-bottom: .86rem !important;
    letter-spacing: .01rem !important;
}

.number-con {
    position: relative !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.phone-tooltip {
  position: absolute;
  bottom: calc(100% + .40rem);      
  left: calc(50% - .35rem);
  transform: translateX(-50%);
  background: #4B4B4B;
  color: #F6F6F6;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: .24rem;
  white-space: nowrap;
}

.phone-tooltip::after {
  content: "";
  position: absolute;
  top: 100%; /* 箭头指向输入框 */
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #4B4B4B;
}

.number-con input {
    font-size: 32px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    line-height: 12px !important;

    background-color: #F7F7F7 !important;
    padding: 0 !important;

    width: .70rem !important;
    height: .96rem !important;
    border: 0 !important;
    border-radius: 8px !important;
    caret-color: #277eff;
}

.submit-disabled.submit-btn {
    background: #277eff !important;
    overflow: hidden !important;
}

.submit-btn {
    display: none !important;
    margin-top: .4rem !important;
    margin-bottom: .4rem !important;
    background: #277eff !important;
    border-radius: .24rem !important;
    font-weight: bold !important;
    overflow: hidden !important;
}

.agreement {
    display: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.checke-0,
.checke-1 {
    width: .4rem !important;
    height: .4rem !important;
}

.checked-img,
.unchecked-img {
    width: .4rem !important;
    height: .4rem !important;
}

.custom-agreement {
    display: flex;
    /* align-items: center; */
    font-size: .24rem;
    font-weight: 8rem;
    color: #A2A2A2;
    line-height: .34rem;
}

.custom-check-box {
    display: none;
}

.custom-check-box__label {
    overflow: hidden;
    position: relative;
}

.custom-agree-content {
    flex: 1;
}

.unchecked-img,
.checked-img {
    position: absolute;
    width: .32rem !important;
    height: .32rem !important;
    transition: all .2 ease-out;
}

.custom-check-box__label.checke-0 .unchecked-img {
    opacity: 1;
}

.custom-check-box__label.checke-1 .unchecked-img {
    opacity: 0;
}

.custom-check-box__label.checke-0 .checked-img {
    opacity: 0;
}

.custom-check-box__label.checke-1 .checked-img {
    opacity: 1;
}

.custom-agree-content a {
    color: #277EFF;
}

.custom-agree-content-tip {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* background-color: #24bf37; */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.custom-agree-content-tip__content {
    width: 80%;
    padding: .36rem;
    background-color: #fff;
    border-radius: .48rem;
    color: #3D3D3D;
    font-size: .28rem;
}

.custom-agree-content-tip__content a {
    color: #277EFF;
}

.tip-btn_container {
    margin-top: .4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tip-btn__cancel,
.tip-btn__confirm {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    padding: .2rem 0;
    border-radius: .24rem;
}

.tip-btn__cancel {
    background-color: #F8F9FB;
    color: #717278;
}

.tip-btn__confirm {
    background-color: #277EFF;
    color: #fff;
}

.custom-submit {
    width: 100%;
    height: .96rem;
    margin-top: .24rem;
    margin-bottom: .4rem;
    background: #277eff;
    border-radius: .48rem;
    font-weight: bold;
    overflow: hidden;
    transition: all 0.3 ease-out;
    font-size: 0.36rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-submit.custom-submit-disabled {
    background-color: #8AB9FF;
}

.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 10rem;
    font-size: .24rem;
    color: #D8D8D8;
    line-height: .34rem
}

.line-with-text::before,
.line-with-text::after {
    content: "";
    flex: 1;
    border-top: 1px solid #F3F3F3
}

.line-with-text::before {
    margin-right: 8px
}

.line-with-text::after {
    margin-left: 8px
}

.other-logins {
    display: flex;
    justify-content: space-around;
    margin-top: .4rem;
}

.other-login-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .16rem
}

.other-login-item img {
    width: .88rem;
    height: .88rem
}

.other-login-item span {
    font-weight: 10rem;
    font-size: .24rem;
    color: #A2A2A2;
    line-height: .34rem;
    text-align: center
}

/* 手机号一键登录 ---- end */

/* 全局 loading 遮罩层 ---- start */
.global-loading-mask {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* loading 动画 */
.global-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* 文字样式 */
.global-loading-text {
    margin-top: 12px;
    color: #fff;
    font-size: 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 全局 loading 遮罩层 ---- end */

/* noteLogin v2 ---- start */
.noteLogin-sheet {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.noteLogin-sheet .sheet-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.noteLogin-sheet .sheet-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    /* max-height: 50%; */
    overflow-y: auto;
    /* padding: 20px; */
}

/* 显示状态 */
.noteLogin-sheet.active {
    pointer-events: auto;
}

.noteLogin-sheet.active .sheet-mask {
    opacity: 1;
}

.noteLogin-sheet.active .sheet-content {
    transform: translateY(0);
}

.noteLogin-close {
    position: absolute;
    width: .48rem;
    height: .48rem;
    right: .32rem;
    top: .2rem;
}

.noteLogin-title {
    line-height: .88rem;
    text-align: center;
    color: #1b2532;
    font-size: .28rem;
    font-weight: bold;
}

.noteLogin-contentWrap {
    font-size: .32rem;
    padding: .48rem;
}

.noteLogin-phoneWrap {
    position: relative;
    border-radius: .56rem;
    margin-bottom: .4rem;
    width: 100%;
    font-size: .32rem;
    background-color: #f7f9fa;
    display: flex;
    align-items: center;
}

.phone-prefix {
    display: flex;
    margin-left: .32rem;
    align-items: center;
}

.noteLogin-phone {
    flex: 1;
    height: .96rem;
    font-size: .32rem;
    line-height: .96rem;
    padding: 0 .32rem;
    background: none;
    border: none;
    outline: none;
    --webkit-appearance: none;
}

.noteLogin-phone::placeholder,
.noteLogin-code::placeholder {
    color: #A2A2A2;
}

.noteLogin-codeWrap {
    position: relative;
    border-radius: .56rem;
    margin-bottom: .4rem;
    width: 100%;
    font-size: .32rem;
    background-color: #f7f9fa;
    display: flex;
    align-items: center;
}

.noteLogin-code {
    flex: 1;
    height: .96rem;
    font-size: .32rem;
    line-height: .96rem;
    padding: 0 .32rem;
    background: none;
    border: none;
    outline: none;
    --webkit-appearance: none;
}

#getCodeBtn {
    font-size: .32rem;
    color: #277EFF;
    padding-right: .32rem;
    white-space: nowrap;
    background-color: transparent;
}

#getCodeBtn,
#getCodeBtn:focus,
#getCodeBtn:active {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.noteLogin-agreement {
    display: flex;
    align-items: center;
    color: #A2A2A2;
    font-size: .24rem;
    line-height: .32rem;
    gap: .12rem;
    margin-bottom: .4rem;
}

#noteLogin-agree {
    display: none;
}

.noteLogin-checkboxWrap {
    position: relative;
    width: .32rem;
    height: .32rem;
}

.hidden {
    display: none !important;
}

.noteLogin-agreement__textWrap a {
    color: #277EFF;
}

.sheet-content .noteLogin-submit {
    width: 100%;
    background-color: #277EFF;
    border-radius: .62rem;
    font-size: .32rem;
    line-height: .44rem;
    font-weight: bold;
    color: #fff;
    height: .96rem;
    box-shadow: 4px 4px 10px 0px rgba(40, 82, 250, 0.28);
    margin-bottom: .4rem;
}

.noteLogin-submit:disabled {
    background-color: #8AB9FF;
}

.noteLogin-submit,
.noteLogin-submit:focus,
.noteLogin-submit:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.noteLogin-agreement-tipPop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.noteLogin-agreement-tipPop__container {
    padding: .18rem .36rem .24rem;
    /* width: 4.56rem; */
    height: 3.04rem;
    border-radius: .08rem;
    background-color: #fff;
}

.noteLogin-agreement-tipPop__title {
    font-weight: bold;
    font-size: .28rem;
    color: #3D3D3D;
    line-height: .56rem;
    text-align: center;
}

.notoLogin-agreement-tipPop-text {
    font-size: .24rem;
    color: #A2A2A2;
    line-height: .48rem;
}

.notoLogin-agreement-tipPop-text a {
    color: #277EFF;
}

.noteLogin-agreement-tipPop-confirm {
    margin-top: .22rem;
    background-color: #277EFF;
    border-radius: .08rem;
    font-size: .24rem;
    line-height: .48rem;
    font-weight: bold;
    color: #fff;
    height: .7rem;
    box-shadow: 4px 4px 10px 0px rgba(40, 82, 250, 0.28);
    display: flex;
    justify-content: center;
    align-items: center;
}

.noteLogin-agreement-tipPop-cancel {
    margin-top: .2rem;
    font-size: .24rem;
    color: #CACACA;
    line-height: .34rem;
    text-align: center;
}
/* noteLogin v2 ---- end */
/* mobile login css ----------------- end */


/* 测试生成报告 弹窗 ----------------- start */
.complete-pop__img {
    width: 3.67rem;
    height: 2.3rem;
    object-fit: cover;
    margin: auto;
    margin-top: 0.3rem;
}
/* 测试生成报告 弹窗 ----------------- end */


/* 限时尝鲜 弹窗 ------------ start */
.member_dialog{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 21;
}
.member_dialog.member_dialoghide{display:none !important;}
.member_dialog .content{background-image: url(/styles/images/test-image/wenku-member.png);width: 100%;
    height: 9.6rem;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;}
.member_dialog .content .normalp{position: absolute;top:2.1rem;left:1rem;color:#fff;text-shadow: 3px 3px 0px #FC6445;font-size: 0.6rem;
    right: 1rem;
    text-align: center;}

.member_dialog .content .nowp{position: absolute;top:3rem;left:1rem;right:1rem;text-align: center;}
.member_dialog .content .nowp em{font-size:1rem;color:#fff;text-shadow: 3px 3px 0px #FC6445;}
.member_dialog .content .nowp span{font-size:0.25rem;color:#fff;text-shadow: 1px 2px 0px #FC6445;}
.member_dialog .content .info{
    width: 100%;
    position: absolute;
    bottom: 0rem;
    height: 2.5rem;
}
.member_dialog .content .info .jiesuobtn{
    width:100%;
    background:url(/styles/images/test-image/wenku-jiesuobtn.png) center center no-repeat;
    background-size: 87% 100%;
    height: 1.8rem;
    color:#fff;
    font-size:0.33rem;
    text-align:center;
    line-height: 1.4rem;
    margin-bottom: 10px;
    margin-top: 0rem;
    float: left;
    background-position: center -0.2rem;
}
.member_dialog .content .countdown {
    width: 2.16rem;
    height: .4rem;
    position: absolute;
    top: 0.04rem;
    right: 0.2rem;
    background: #FDE18C;
    border-radius: 12px 12px 12px 0px;
    background-size: cover;
    color: #a7211e;
    font-family: PingFang SC;
    font-size: .2rem;
    font-weight: 400;
    line-height: .2rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.member_dialog .content .countdown .time {
    font-size: .24rem;
    line-height: .24rem;
    font-weight: 500;
}
.member_dialog .content .info .agreement{
    color: #75778e;display:block !important;
    -webkit-font-feature-settings: "liga" off, "clig" off;
    font-feature-settings: "liga" off, "clig" off;
    font-family: PingFang SC;
    font-size: .2rem;
    font-style: normal;
    font-weight: 400;
    line-height: .28rem;
    width: 100%;
    position: absolute;
    top: 1.5rem;
    z-index: 49;
}
.member_dialog .content .info .agreement .checkicon{display:inline-block;position: relative;width:0.25rem;height:0.25rem;margin-right: 0.1rem;}
.member_dialog .content .info .agreement input[type="checkbox"]{display:none;}
.member_dialog .content .info .agreement .checkbg{position: absolute;left:-0.275rem;top:-0.275rem;width:0.8rem;height:0.8rem;margin-right:0.05rem;padding:0.275rem}
.member_dialog .content .info .agreement #checkagent + .checkbg i{display:block;width:0.25rem;height:0.25rem;background:url(/styles/images/test-image/icon-unchecked.png);background-size:100% 100%;}
.member_dialog .content .info .agreement #checkagent:checked + .checkbg i{display:block;width:0.25rem;height:0.25rem;background:url(/styles/images/test-image/icon-checked.png);background-size:100% 100%;}
.member_dialog .content .info .agreement p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.member_dialog .content .info .agreement .xf{
    margin-top: .02rem;
}
.member_dialog .content .btn-close {
    position: absolute;
    top: -.5rem;
    right: .4rem;background:url(/styles/images/test-image/wenku-close.png) center center no-repeat;background-size:100% 100%;width: .4rem;height: .4rem;
}

.member_dialog .content .info .agreement p a{
    color: #777;
}

.member_dialog .content .info .agreement .line{
    margin-left: 5px;
}

.checkagent-uncheck{position: fixed;left:0;top:0;right:0;bottom:0;z-index:50;display: none;}
.checkagent-uncheck .bg{position: fixed;left:0;top:0;right:0;bottom:0;z-index:51;background-color:#000;opacity:0.8;}
.checkagent-uncheck .closed{background:url(/styles/images/test-image/wenku-close2.png);background-size:100% 100%;position: fixed;top:4rem;right:0.5rem;width:0.5rem;height:0.5rem;z-index:54;}
.checkagent-uncheck .checkagent-uncheck-box{position: fixed;width:80%;height:6rem;z-index:52;top:4rem;left:10%}
.checkagent-uncheck .checkagent-uncheck-box .titbg{float:left;width:100%;height:3rem;background:url(/styles/images/test-image/kacheckbg.png);background-size:100% 100%;}
.checkagent-uncheck .checkagent-uncheck-box .titbg .tit{float:left;width:100%;color:#FD4A35;font-size:0.6rem;text-align: center;margin-top:2.2rem}
.checkagent-uncheck .checkagent-uncheck-box .checkagent-uncheck-box-body{float:left;width:100%;background-color:#fff;margin-top: -1px;padding-bottom:1rem;border-bottom-left-radius:0.4rem;border-bottom-right-radius:0.4rem;}
.checkagent-uncheck .checkagent-uncheck-box .checkagent-uncheck-box-body .info{display:block;width:100%;box-sizing:border-box;padding:0.5rem;font-size:0.3rem;margin:0rem;}
.checkagent-uncheck .checkagent-uncheck-box .checkagent-uncheck-box-body .info a{color:#246ED6}
.checkagent-uncheck .checkagent-uncheck-box .checkagent-uncheck-box-body .btn{display:block;width:70%;border-radius:1rem;height:1.2rem;background-color: #FD4A35;text-align: center;line-height: 1.2rem;color:#fff;font-size:0.35rem;margin-left:15%;}

/* 限时尝鲜 弹窗 ------------ end */