:root {
    --color-primary: #262324;
    --color-primary-muted: #666263;
    --color-secondary: #999697;
    --color-primary4: #CCCCCC;
    --color-primary5: #3C0000;
    --color-primary6: #000000;
    --color-primary7: #4C494A;
    --color-primary8: #FFC8C8;
    --color-highlight: #F03554;
    --color-highlight-link: #2776C1;
    --color-white: #FFFFFF;
    --background-primary: #F7F7F7;
    --background-white: #FFFFFF;
    --background-highlight: #F03554;
    --background-primary2: #262324;
    --background-primary3: #FAF0F0;
    --background-primary4: #F092A2;
    --color-border: #FFC8C8;
    --color-border2: #EDEDED;
    --color-border3: #E6E6E6;
    --color-border4: #F5F5F5;
    --color-border5: #ECECEC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "微软雅黑";
}

[v-cloak] {
    display: none;
}

body {
    font-size: 14px;
    color: var(--color-primary);
    background: #F7F7F7;
}

.container {
    width: 1300px;
    margin: 0 auto;
    position: relative;
}

.flex {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.jcc {
    justify-content: center;
}

.jca {
    justify-content: space-around;
}

.jcb {
    justify-content: space-between;
}

.jce {
    justify-content: flex-end;
}

.column {
    flex-direction: column;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

a, a:link, a:visited, a:hover, a:active {
    color: var(--color-primary);
    text-decoration: none;
}

input {
    outline: 0;
    border: none;
    font-size: 14px;
}

textarea {
    outline: 0;
    border: none;
    font-size: 14px;
    resize: none;
}

button {
    background: none;
    outline: 0;
    border: none;
    cursor: pointer;
}

.highlight {
    color: var(--color-highlight);
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

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

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
    display: table;
    content: " ";
    clear: both;
}

.pointer {
    cursor: pointer;
}

/*滚动条宽高及背景*/
.list-scroll::-webkit-scrollbar {
    width: 6px;
    background: var(--background-white);
}

/*滑块*/
.list-scroll::-webkit-scrollbar-thumb {
    background: var(--background-primary);
    border-radius: 3px;
}

/*滚动条轨道*/
.list-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05)
}

/*9.24*/
.noLog {
    display: block;
}

.isLog {
    display: none;
}

.header-wrapper {
    padding: 16px 0;
    color: var(--color-primary);
}

.header-wrapper .header-btn-wrapper {
    display: inline-flex;
    gap: 10px;
}

.header-wrapper .header-notice {
    position: relative;
    cursor: pointer;
    margin-right: 18px;
}

.header-wrapper .notice-count {
    display: none;
    position: absolute;
    top: -8px;
    left: 8px;
    min-width: 16px;
    height: 16px;
    line-height: 12px;
    text-align: center;
    padding: 0 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    background: var(--background-highlight);
    border-radius: 8px;
    border: 2px solid var(--background-white);
    box-sizing: border-box;
}

.logo-search-wrapper {
    margin-top: 20px;
}

.header-wrapper .logo {
    height: 40px;
    margin-top: 10px;
}

.header-wrapper .input-search-wrapper {
    display: flex;
    align-items: center;
    width: 640px;
    height: 44px;
    border-radius: 22px;
    border: 1px solid var(--color-border);
    background: var(--background-white);
    padding-left: 16px;
}

.header-wrapper .input-search-wrapper:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("https://static.9891.com/9891/img/01/icon-search-header.png") no-repeat;
    background-size: 100%;
    margin-right: 16px;
}

.header-wrapper .input {
    width: 90%;
}

.header-wrapper .input::placeholder {
    color: var(--color-primary);
}

.header-wrapper .download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 44px;
    color: var(--color-white);
    background: var(--background-highlight);
    border-radius: 22px;
    position: relative;
    cursor: pointer;
}

.header-wrapper .download:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url("https://static.9891.com/9891/img/01/icon-download.png") no-repeat;
    margin-right: 10px;
}

.header-wrapper .download:hover .download-dropdown {
    display: block;
}

.header-wrapper .download-dropdown {
    width: 160px;
    padding: 20px 0;
    background: var(--background-white);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-align: center;
    color: var(--color-primary);
    font-size: 12px;
    display: none;
    position: absolute;
    top: 44px;
    left: -5px;
    z-index: 1;
}

.header-wrapper .download-dropdown .code {
    width: 120px;
}

.header-wrapper .search_hot {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    max-width: 640px;
    white-space: nowrap;
    overflow: hidden;
    gap: 30px;
}

.header-wrapper .search_hot a {
    font-size: 12px;
    color: var(--color-primary5);
}

.global-search-wrapper {
    position: relative;
}

.global-search-res {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    width: 640px;
    max-height: 370px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
    background: var(--background-white);
    border-radius: 16px;
    padding: 10px;
    z-index: 1;
    overflow-y: scroll;
}

.global-search-res a {
    display: block;
    line-height: 34px;
    padding: 0 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.global-search-res a:hover {
    background: var(--background-primary);
    border-radius: 8px;
}

.global-search-res .res-null-tips {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 330px;
    color: var(--color-secondary);
    font-size: 16px;
}


/*侧边栏*/
.right-sidebar {
    position: fixed;
    top: 50%;
    right: 28px;
    width: 64px;
    transform: translateY(-50%);
    background: var(--background-white);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    z-index: 9;
}

.right-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.right-sidebar-item .icon {
    width: 24px;
}

.right-sidebar-item .text {
    font-size: 12px;
    margin-top: 10px;
    color: var(--color-primary);
}

.right-sidebar-item .haggle-count-wrapper{
    display: none;
}

.right-sidebar-item .haggle-count {
    position: absolute;
    top: -8px;
    left: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 2px;
    font-size: 12px;
    color: var(--color-white);
    background: var(--background-highlight);
    border-radius: 8px;
    border: 2px solid var(--background-white);
    box-sizing: border-box;
}

.right-sidebar-item:hover .download-dropdown-wrapper {
    display: block;
}

.right-sidebar-item .download-dropdown-wrapper {
    display: none;
    position: absolute;
    top: 50%;
    right: 64px;
    transform: translateY(-50%);
    width: 170px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.right-sidebar-item .download-dropdown {
    width: 160px;
    padding: 20px 0;
    background: var(--background-white);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-align: center;
    color: var(--color-primary);
    font-size: 12px;
    z-index: 1;
}

.right-sidebar-item .download-dropdown .code {
    width: 120px;
}

/*我要卖弹窗*/
.sell-dialog-mask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 99;
}

.sell-dialog-mask.show {
    display: block;
}

.sell-dialog-mask .dialog-sell-account {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 440px;*/
    padding: 30px;
    z-index: 100;
    background: var(--background-white);
    border-radius: 16px;
    overflow: hidden;
}

.dialog-sell-account .dialog-header {
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
}

.dialog-sell-account .dialog-sell-body {
    display: flex;
    gap: 20px;
}

.dialog-sell-account .icon {
    width: 60px;
}

.dialog-sell-account .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    height: 180px;
    padding: 26px 0;
    border-radius: 12px;
    cursor: pointer;
    color: var(--color-primary);
}

.dialog-sell-account .item.sell {
    background: #FFF7F8;
}

.dialog-sell-account .item.retrieve {
    background: #FFF9F2;
}

.dialog-sell-account .item-title {
    font-size: 18px;
    font-weight: 700;
}

.dialog-sell-account .item-desc {
    color: var(--color-secondary);
}

.dialog-sell-account .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}


/*页面导航*/
.nav-crumb {
    margin-bottom: 15px;
}

.nav-crumb .item {
    color: var(--color-primary);
}

.nav-crumb .item.disabled {
    color: var(--color-secondary);
}

/*登录相关*/
.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0, 0, 0);
    filter: alpha(opacity=60);
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}

.modal-form {
    width: 440px;
    height: 500px;
    background: #ffffff;
    z-index: 100;
    position: relative;
    color: #a1abbf;
    font-size: 14px;
}

.login-form, .bind-form, .register-form {
    display: none;
}

.modal-form a {
    font-size: 14px;
    color: #3377aa;
    cursor: pointer;
}

.form-form {
    padding: 0 50px;
}

.login_header {
    padding-top: 80px;
    text-align: center;
    height: 28px;
    box-sizing: content-box;
    margin-bottom: 40px;
}

.login_header .pwd_login, .login_header .mes_login, .login_header .wx_login {
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: #a1abbf;
}

.login_header .mes_login {
    margin-right: 106px;
}

.login_header a.on {
    font-weight: 700;
    color: #000000;
}

.login_header .pwd_login.on:after, .login_header .mes_login.on:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 26px;
    width: 50px;
    height: 2px;
    margin-left: -24px;
    box-sizing: content-box;
    background: #000000;
}

.login_content > div {
    display: none;
}

.login_content > div.on {
    display: block;
}

.login_content .pwd_login_box, .login_content .mes_login_box {
    display: none;
}

.login_content .pwd_login_box.on, .login_content .mes_login_box.on {
    display: block;
}

.form-form input {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    border: none;
    background: #f5f6f7;
    color: #000000;
    padding-left: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    outline: 0;
}

.form-form input.mobileCode {
    float: left;
    width: 220px;
}

.modal-form .getMobileCode {
    float: left;
    width: 110px;
    line-height: 44px;
    text-align: center;
    margin-left: 10px;
    background: #212b3d;
    color: #ffffff;
    cursor: pointer;
}

.modal-form .getMobileCode.disabled {
    background: #a7afbe;
    cursor: default;
}

.form-form input::placeholder {
    color: #d7d8d9;
}

/*滑块*/
.nc_scale {
    background: #f5f6f7 !important;
}

.nc-container {
    margin-bottom: 12px;
}

.nc-container .nc_scale span {
    box-sizing: content-box;
}

.nc-container.sm-pop-inner {
    position: relative;
}

.formBtn:hover {
    background: #ff4e78;
}

.formBtn:active {
    background: #ec325e;
}

.forgetTip {
    display: block;
    text-align: right;
    cursor: pointer;
}

.login_footer {
    position: absolute;
    bottom: 20px;
    right: 50px;
}

.login_header .loginWay {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.login_header .loginWay > div {
    display: none;
}

.login_header .loginWay > div.on {
    display: block;
}

.loginWay .loginWay_tips {
    display: inline-block;
    width: 106px;
    height: 24px;
    line-height: 24px;
    background: url("https://static.9891.com/mall/img/icons/bg_change.png") no-repeat;
    color: #986e32;
    position: absolute;
    top: 12px;
    right: 56px;
}

.sao_login_content {
    /*width: 240px;*/
    /*height: 240px;*/
    padding: 5px;
    /*margin: 0 auto;*/
    /*background: url(https://static.9891.com/mall/img/icons/bg_code.png) no-repeat;*/
}

.sao_login_content .tips {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}

.sao_login_content .tips img {
    vertical-align: middle;
    padding-right: 6px;
}

/*重置密码*/
.form-header {
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: #000000;
    position: relative;
}

.form-header-title {
    font-weight: 700;
    font-size: 22px;
}

.header-btn {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.submitBtn {
    margin-top: 38px;
}

/*重置密码成功*/
.forgot-success {
    text-align: center;
}

.forgot-success-wrapper {
    height: 180px;
    margin-top: 44px;
}

.forgot-success .title {
    font-size: 22px;
    color: #000000;
    font-weight: 500;
}

.forgot-success p {
    text-align: center;
}

/*注册账号*/
.register-form, .bind-form {
    height: 608px;
}

.agree-privacy {
    display: block;
    margin-bottom: 7px;
}

.form-footer {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
}

/*绑定手机*/
.header-tips {
    width: 100%;
    padding: 6px 16px;
    background: #fff9cf;
    color: #986e32;
    text-align: center;
    margin-bottom: 40px;
}

.modal-form input[type="checkbox"] {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 14px;
    position: relative;
    margin-right: 10px;
    margin-bottom: 0px;
    border-radius: 3px;
}

.formBtn {
    width: 100%;
    height: 44px;
    line-height: 44px;
    background: #ff3867;
    color: #ffffff;
    cursor: pointer;
    border: none;
    letter-spacing: 4px;
    margin: 12px 0 20px 0;
    outline: 0;
    font-size: 16px;
    font-weight: 700;
}

.formBtn2 {
    width: 100%;
    height: 44px;
    line-height: 44px;
    cursor: pointer;
    letter-spacing: 4px;
    margin-top: -8px;
    outline: 0;
    font-size: 16px;
    font-weight: 700;
    background: #ffffff;
    color: #000000;
    border: 1px solid #f0f1f2;
}

.formBtn3 {
    width: 100%;
    height: 44px;
    line-height: 44px;
    background: #ff3867;
    color: #ffffff;
    cursor: pointer;
    border: none;
    letter-spacing: 4px;
    margin: 38px 0 20px 0;
    outline: 0;
    font-size: 16px;
    font-weight: 700;
}

.formBtn4 {
    width: 304px;
    height: 44px;
    line-height: 44px;
    background: #ff3867;
    color: #ffffff;
    cursor: pointer;
    border: none;
    letter-spacing: 4px;
    margin: 38px 0 20px 120px;
    outline: 0;
    font-size: 16px;
    font-weight: 700;
}

.avatar-wrapper {
    height: 108px;
    background: url("https://static.9891.com/mall/img/icons/bg_headImg.png") no-repeat;
    text-align: center;
    margin-bottom: 12px;
    padding: 10px 0;
}

.avatar-wrapper img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
}

.avatar-wrapper p {
    color: #000000;
}

/*footer*/
.footer {
    background: #f5f6f8;
    padding-top: 100px;
}

.footer-item ul {
    margin-top: 30px;
}

.footer-item ul li {
    position: relative;
    color: #81858c;
    word-break: keep-all;
    cursor: pointer;
    height: 26px;
    line-height: 26px;
}

.footer-item ul a, .footer-footer .footer-about, .footer-footer .footer-about a {
    color: #81858c;
    font-size: 12px;
}

.footer .footer-item {
    float: left;
    width: 196px;
    margin-right: 32px;
    text-overflow: ellipsis;
    font-size: 14px;
}

.footer-item-wrap {
    margin-bottom: 40px;
}

.footer .contact_wrap {
    font-size: 12px;
    margin-top: 4px;
}

.footer .ico_tel {
    vertical-align: middle;
    margin-right: 8px;
}

.footer .ico_kefu {
    display: inline-block;
    background: url("https://static.9891.com/9891/img/bg_btn_kefu.png") no-repeat;
    width: 130px;
    height: 45px;
    background-size: 100%;
    font-size: 14px;
    text-align: center;
    margin-left: 30px;
}

.footer .ico_kefu span {
    display: inline-block;
    height: 16px;
    padding-left: 24px;
    margin-top: 8px;
    background: url("https://static.9891.com/9891/img/ico_qq.png") no-repeat;
    color: #ffffff;
}

.footer-footer .ff p {
    margin-bottom: 10px;
}

.footer-footer .ff {
    padding-bottom: 10px;
    border-bottom: 1px solid #e8eaed;
    margin-bottom: 20px;
}

.footer-footer .imgUl {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 14px;
}

.footer-footer .imgUl li {
    display: inline-block;
    padding-right: 30px;
}

.footer-footer .imgUl img {
    width: 83px;
    height: 30px;
}

.footer-item ul a:hover + .app_wrap {
    display: block;
}

.footer-footer .app_wrap {
    display: none;
    position: absolute;
    right: -50px;
    top: 0;
    text-align: center;
    padding: 20px;
    background: #ffffff;
    color: #2f3133;
    box-shadow: 0px 8px 8px 0px rgba(188, 194, 204, 0.2);
    border-radius: 10px;
    z-index: 1;
}

.footer_code {
    cursor: pointer;
    position: relative;
}

.footer_app_code {
    /*width: 300px;*/
    position: absolute;
    right: -2px;
    top: -2px;
    padding: 20px 10px;
    background: #ffffff;
    border-radius: 10px;
}

.footer_app_code > div {
    float: left;
    margin: 0 10px;
}

.footer_app_code p {
    font-size: 12px;
    text-align: center;
}

.footer_code:hover .footer_app_code {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.footer_code .footer_app_code {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .6s ease-out;
    -moz-transition: all .6s ease-out;
    transition: all .3s ease-out;
    transform-origin: 100% 0 0;
    box-shadow: 0px 8px 8px 0px rgba(188, 194, 204, 0.2);
}

/*底部广告*/
.footer_banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 200px;
    text-align: center;
    z-index: 10;
}

.footer_banner_wrap {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.footer_banner a img {
    display: block;
    height: 100%;
    margin: 0 auto;
}

.banner_close {
    position: absolute;
    right: 10px;
    bottom: 48px;
    cursor: pointer;
}

.footer_banner_btn {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #cf4094;
    padding: 28px 28px 28px 0;
    border-radius: 0 50% 50% 0;
    box-sizing: content-box;
    cursor: pointer;
    z-index: 10;
}

.footer_banner_txt {
    display: block;
    padding: 0 32px 0 10px;
    background: url("https://static.9891.com/9891/img/ico_right_white.png") no-repeat right;
}

.custom-confirm-dialog {
    border-radius: 16px !important;
    overflow: hidden;
}

.custom-confirm-dialog.layui-layer-dialog .layui-layer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 52px;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary);
}

.custom-confirm-dialog.layui-layer-dialog .tips {
    font-weight: normal;
    font-size: 14px;
    margin-top: 20px;
}

.custom-confirm-dialog .layui-layer-btn .layui-layer-btn0 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 44px;
    border-radius: 12px;
    color: var(--color-highlight);
    border: 1px solid var(--color-border);
    background: var(--background-white);
    font-size: 14px;
}

.custom-confirm-dialog .layui-layer-btn .layui-layer-btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 44px;
    border-radius: 12px;
    color: var(--color-white);
    background: var(--background-highlight);
    font-size: 14px;
    border: 0;
}

.custom-confirm-dialog .layui-layer-btn {
    padding-bottom: 30px;
}

.custom-confirm-dialog .layui-layer-setwin .layui-layer-close2 {
    width: 16px;
    height: 16px;
    top: 5px;
    right: 5px;
    background-image: url("https://static.9891.com/9891/img/01/icon-close.png");
    background-repeat: no-repeat;
    background-position: 0;
}

.custom-confirm-dialog .layui-layer-setwin .layui-layer-close2:hover {
    background-position: 0;
}

.dialog-mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0, 0, 0);
    filter: alpha(opacity=60);
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}

.dialog-mask .custom-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background: var(--background-white);
}

.custom-dialog .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: url("https://static.9891.com/9891/img/01/icon-close.png") no-repeat;
    cursor: pointer;
}