body {
    background-color: #f8f8f8;
}

.goods-main {
    margin-bottom: 80px;
}

/* 商品信息 */
.goods-info {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: var(--background-white-color);
    margin-bottom: 20px;
    overflow: hidden;
}

.preview-wrap {
    padding-bottom: 20px;
}

.preview-wrap .preview {
    width: 352px;
    background-color: var(--background-page-color);
}

.preview-wrap .preview .main-img {
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
}

.preview-wrap .preview .main-img .cloudzoom-box {
    width: 300px;
    height: 300px;
}

.preview-wrap .preview .main-img img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.preview-wrap .preview .spec-list {
    width: 320px;
    margin: 0 auto;
    padding: 12px 10px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.preview-wrap .preview .spec-items {
    width: 100%;
}

.preview-wrap .preview .spec-items li {
    width: 70px;
    margin-right: 4px;
    cursor: pointer;
}

.preview-wrap .preview .spec-items li img {
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 4px;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
}

.preview-wrap .preview .spec-items li .cloudzoom-gallery-active {
    border: 2px solid var(--primary-color);
}

.preview-wrap .preview-bottom {
    width: 100%;
    align-items: center;
    margin-top: 20px;
}

.preview-wrap .preview-bottom .btn {
    line-height: 16px;
}

.preview-wrap .preview-bottom .btn .iconfont {
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 6px;
}

.preview-wrap .preview-bottom .btn {
    font-size: 13px;
}

.goods-info-wrap {
    flex: 1;
    margin-left: 30px;
    justify-content: space-between;
}

.goods-info-wrap .sku-name {
    width: 100%;
    line-height: 32px;
    font-size: 20px;
}

.goods-info-wrap .sub-name {
    width: 100%;
    line-height: 32px;
    font-size: 13px;
    color: var(--sub-color);
}

.goods-info-wrap .money-wrapper {
    margin-top: 18px;
    background: #f8f8f8;
    color: var(--background-black-color);
    margin-bottom: 20px;
    padding: 20px 0;
    box-sizing: border-box;
}

.goods-info-wrap .money-wrapper .money-wrap {
    flex: 1;
    min-width: 0;
    padding-left: 32px;
}

.goods-info-wrap .money-wrapper del {
    margin-bottom: 10px;
    font-size: 14px;
}

.goods-info-wrap .money-wrapper .price {
    font-size: 22px;
}

.goods-info-wrap .money-wrapper .price span {
    font-weight: 700;
    font-size: 30px;
}

.goods-info-wrap .money-wrapper .sales {
    position: relative;
    height: 100%;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 12px;
}

.goods-info-wrap .money-wrapper .sales:before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 12px;
    left: 0;
    width: 1px;
    border-left: 1px solid hsla(0, 0%, 100%, .24);
}

.goods-info-wrap .money-wrapper .sales .num {
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 18px;
    color: var(--sub-color);
}

.goods-info-wrap .money-wrapper .sales .unit {
    font-size: 13x;
    color: var(--sub-color);
}

.goods-info-wrap .row-wrap {
    margin-bottom: 20px;
}

.goods-info-wrap .row-wrap .name {
    font-size: 14px;
    color: var(--sub-color);
}

.goods-info-wrap .row-wrap .info {
    font-size: 14px;
    color: var(--title-color);
    margin-left: 20px;
}

/* 商品信息 end */

/*视频课程*/
.video-box {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.video-box .video-info {
    width: 100%;
    position: relative;
}

.video-box .video-poster {
    width: 100%;
}

.video-box .vjs-big-play-button {
    font-size: 3em;
    display: block;
    position: absolute;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: 0.06666em solid #fff;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    transition: all .4s;

    width: 80px;
    height: 80px;
    line-height: 70px;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
}

.video-box .vjs-big-play-button .iconfont {
    font-size: 30px;
    color: #fff;
    margin-left: 4px;
}

.video-box .vjs-big-play-button:focus, .video-box:hover .vjs-big-play-button {
    border-color: #fff;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5);
    transition: all 0s;
}

.video-box .video-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.video-mask-bg {
    width: 100%;
    height: 100%;
    background: var(--primary-black-color);
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-box .video-mask .video-mask-info {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-box .video-mask .video-mask-title {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    color: #ffffff;
}

.video-box .video-mask .video-mask-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.video-box .video-mask .single-buy, .video-box .video-mask .whole-buy, .video-box .video-mask .chapter-buy {
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    box-sizing: border-box;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 40px;
    text-align: center;
    margin: 0 10px;
    cursor: pointer;
}

.video-box .section-apply {
    position: relative;
    left: 0;
    top: 0;
}

.video-box .apply-bar {
    width: 100%;
    box-shadow: 0 3px 12px rgba(0, 36, 153, 0.06);
    border-radius: 12px;
    position: relative;
    left: 0;
    top: 0;
    margin-top: 24px;
    margin-bottom: 20px;
}

.video-box .apply-bar-main {
    width: 100%;
    padding: 0 20px;
    height: 96px;
    justify-content: space-between;
    border-radius: 12px;
    background: #fff;
    position: relative;
    left: 0;
    top: 0;
}

.video-box .apply-bar-main, .apply-bar-main .main-left {
    display: flex;
    align-items: center;
}

.video-box .apply-bar-main .main-left {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 48px;
    overflow: hidden;
}

.video-box .apply-bar-main .main-left .course-price {
    height: 48px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: var(--primary-color);
    margin-right: 17px;
}

.video-box .basic-bar-layout-main {
    height: 40px;
    line-height: 40px;
}

.video-box .basic-price-discount {
    display: flex;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: var(--primary-color);
}

.video-box .dividing {
    font-size: 14px;
    line-height: 20px;
    color: #c0c5cc;
}

.video-box .apply-promise {
    font-size: 14px;
    line-height: 20px;
    color: #8797a1;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.video-box .apply-promise .apply-promise-tt:first-child {
    margin-left: 14px;
}

.apply-promise .apply-promise-slash {
    margin: 0 5px;
}

.video-box .apply-btn-box {
    height: 48px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    border: unset;
    padding: 12px 36px;
    background-color: var(--primary-color);
    color: #ffffff;
    cursor: pointer;
}

/*tabs*/
.detail-tab-nav {
    width: 100%;
    background-color: #ffffff;
}

.detail-tab-nav .border-b {
    border-bottom: 1px solid #eee;
}

.detail-tab-nav .list-inline {
    padding-left: 0;
    list-style: none;
    margin: 0;
    padding-top: 20px;
}

.detail-tab-nav .list-inline.not-p > li {
    padding-left: 0;
    padding-right: 0;
}

.detail-tab-nav .tab-nav a {
    padding-bottom: 20px;
    margin-right: 2.3rem;
    display: inline-block;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.detail-tab-nav .tab-nav a:hover, .detail-tab-nav .tab-nav .active a {
    color: #333;
    font-weight: bold;
    border-bottom-color: var(--primary-color);
}

/* 商品详情 */
.detail-content-wrap {
    width: 100%;
    background: var(--background-white-color);
    box-sizing: border-box;
    box-shadow: 0 8px 16px 0 rgba(7, 17, 27, 0.05);
    padding: 15px 40px 30px 40px;
    position: relative;
}

.detail-content-title {
    width: 100%;
    background: var(--background-white-color);
    margin-bottom: 10px;
}

.detail-content-title .title {
    width: 110px;
    height: 60px;
    line-height: 60px;
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-black-color);
    margin: 0 auto;
    text-align: center;
}

.detail-content-title .title:after {
    display: block;
    content: "";
    width: 100px;
    height: 1px;
    position: absolute;
    background: var(--border-base-color);
    right: -100%;
    top: 30px;
}

.detail-content-title .title:before {
    display: block;
    content: "";
    width: 100px;
    height: 1px;
    position: absolute;
    background: var(--border-base-color);
    left: -100%;
    top: 30px;
}

.goods-detail-content {
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
}

.goods-detail-content img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.goods-detail-content .introduce-title {
    padding: 0 30px;
    margin: 20px 0;
    color: #999;
}

.goods-detail-content .introduce-params {
    padding: 0 30px;
    color: #999;
    font-size: 14px;
    line-height: 34px;
}

.goods-detail-content .introduce-params .introduce-params-item {
    display: flex;
    border-top: 1px solid #e8e9eb;
    border-bottom: 1px solid #e8e9eb;
    margin-top: -1px;
    line-height: 40px;
}

.goods-detail-content .introduce-params .introduce-params-item .item-label {
    flex: 0 0 150px;
    width: 160px;
    padding: 0 10px;
    border-right: 1px solid #e8e9eb;
}

.goods-detail-content .introduce-params .introduce-params-item .item-value {
    flex: 1;
    padding: 0 40px;
}

.goods-detail-content .introduce-desc {
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
}


p img {
    width: 100%;
}

/* 商品详情 end */
.price-wrap {
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.price-wrap .p-price {
    width: 100%;
}

.price-wrap .p-price .unit {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 4px;
}

.price-wrap .p-price .price {
    font-size: 30px;
    color: var(--primary-color);
}

.delivery-wrap {
    width: 100%;
    margin-top: 20px;
}

.delivery-wrap .delivery-name {
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    color: var(--primary-grey-color);
    margin-right: 20px;
}

.delivery-wrap .delivery-address {
    line-height: 30px;
    font-size: 15px;
    color: var(--primary-grey-color);
}

.buy-num-wrap {
    width: 100%;
    margin-top: 40px;
}

.buy-num-wrap .buy-num-name {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: var(--primary-grey-color);
    margin-right: 20px;
}

.buy-num-wrap .buy-num-box {
    border: 1px solid #d3d3d3;
}

.buy-num-wrap .buy-num-box .increase, .buy-num-wrap .buy-num-box .decrease {
    width: 44px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
}

.buy-num-wrap .buy-num-box .increase.disabled, .buy-num-wrap .buy-num-box .decrease.disabled {
    cursor: not-allowed;
    color: #d0d0d0;
}

.buy-num-wrap .buy-num-box .decrease {
    margin-right: 4px;
}

.buy-num-wrap .buy-num-box .increase {
    margin-left: 4px;
}

.buy-num-wrap .buy-num-box .input-box {
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-top: none;
    border-bottom: none;
}

.buy-num-wrap .buy-num-box .input-box .input-text {
    width: 64px;
    height: 36px;
    line-height: 36px;
    background-color: #ffffff;
    text-align: center;
    font-size: 15px;
}

/* 操作按钮 */
.choose-options {
}

.choose-options .btn {
    width: 158px;
    height: 50px;
    line-height: 33px;
    border-radius: 4px;
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 16px;
    border: 1px solid var(--primary-color);
}

.choose-options .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-white-color);
}

.choose-options .btn-primary:focus, .choose-options .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-white-color);
}

.choose-options .btn-default:focus, .choose-options .btn-default:hover {
    background-color: #ffffff;
    border-color: var(--primary-assist-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.choose-options .btn i {
    margin-right: 4px;
}

/* 工具栏 */
.TA_delay {
    transition: all 0.3s ease-in-out 0.2s;
    -moz-transition: all 0.3s ease-in-out 0.2s;
    -webkit-transition: all 0.3s ease-in-out 0.2s;
    -o-transition: all 0.3s ease-in-out 0.2s;
}

.nc-appbar {
    position: fixed;
    z-index: 1998;
    width: 50px;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
}

.nc-appbar-tabs {
    width: 50px;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    border-right: 6px solid #7A6E6E; /*box-shadow: -5px 0 3px rgba(0,0,0,0.35); background: #FEFCF5 url(../images/app_bar_bg.png) no-repeat top center;*/
}

.nc-hidebar {
    display: block;
    position: absolute;
    z-index: 3;
    bottom: 5px;
    /*right: -86px;*/
    right: -350px;
    cursor: pointer;
}

.nc-hidebar .nc-hidebar-bg {
    background: url(../images/toolbar.png) no-repeat -100px 0;
    width: 79px;
    height: 56px;
    position: relative;
    z-index: 1;
}

.nc-hidebar .nc-hidebar-bg .user-avatar,
.nc-hidebar .nc-hidebar-bg .frame,
.nc-hidebar .nc-hidebar-bg .show {
    background: url(../images/toolbar.png) no-repeat;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 10px;
    left: 15px;
}

.nc-hidebar .nc-hidebar-bg .user-avatar {
    background-position: -100px 0;
    z-index: 1;
}

.nc-hidebar .nc-hidebar-bg .user-avatar img {
    max-width: 36px;
    max-height: 36px;
}

.nc-hidebar .nc-hidebar-bg .frame {
    background-position: -100px -70px;
    z-index: 2;
}

.nc-hidebar .nc-hidebar-bg .show {
    display: none !important;
    background-position: -140px -70px;
    z-index: 3;
}

.nc-hidebar .nc-hidebar-bg:hover .show {
    display: block !important;
}

.nc-hidebar:hover {
    background-position: -100px -60px;
}

.nc-appbar-tabs .border-right-line {
    position: absolute;
    right: -6px;
    z-index: 99;
    background: #7A6E6E;
    width: 6px;
    height: 100%;
    top: 0;
}

.nc-appbar-tabs .user {
    text-align: center;
    width: 36px;
    position: absolute;
    z-index: 1;
    top: 40%;
    margin-top: -36px;
    cursor: pointer;
    height: 36px;
    overflow: hidden;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.nc-appbar-tabs .user .avatar {
    background-color: #7A6E6E;
    width: 36px;
    height: 36px;
    padding: 1px; /*margin: 0 auto 5px auto;*/
    float: right;
    border-radius: 3px 0 0 3px;
}

.nc-appbar-tabs .user .avatar img {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    margin: 2px 0 0 0;
}

.nc-appbar-tabs .user p {
    display: block;
    width: 80px;
    height: 36px;
    border-radius: 3px 0 0 3px;
    left: 0;
    line-height: 36px;
    color: #fff;
    background-color: #7A6E6E;
    text-align: center;
}

.nc-appbar-tabs .user:hover {
    background-color: var(--primary-color);
    width: 94px;
}

.nc-appbar-tabs .user:hover .avatar {
    background-color: var(--primary-color);
}

.nc-appbar-tabs .user:hover p {
    background-color: var(--primary-color);
}

.nc-appbar-tabs .tools {
    position: absolute;
    z-index: 1;
    top: 40%;
}

.nc-appbar-tabs .tools {
    margin-top: 0;
}

.nc-appbar-tabs .tools li {
    float: right;
    width: 36px;
}

.nc-appbar-tabs .tools a {
    display: block;
    width: 36px;
    height: 36px;
    float: right;
    position: relative;
    z-index: 1;
    margin-top: 3px;
}

.nc-appbar-tabs .tools a .tools_img {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 3px 0 0 3px;
    z-index: 3;
    background: url(../images/tollsbor_new.png) no-repeat #7A6E6E;
}

.nc-appbar-tabs .tools a i {
    font: 10px/12px Arial;
    color: #FFF;
    background-color: var(--primary-color);
    text-align: center;
    min-width: 12px;
    height: 16px;
    padding: 2px 6px;
    border-radius: 8px;
    position: absolute;
    z-index: 1;
    top: -5px;
    right: 2px;
}

.nc-appbar-tabs .tools a .new_msg {
    z-index: 3;
}

.nc-appbar-tabs .tools a span {
    display: block;
    width: 63px;
    height: 36px;
    border-radius: 3px 0 0 3px;
    left: 50px;
    line-height: 36px;
    color: #fff;
    background-color: #7A6E6E;
    text-align: center;
    position: absolute;
    z-index: 1;
}

.nc-appbar-tabs .tools li a:hover {
    width: 146px;
}

.nc-appbar-tabs .tools li a:hover .tools_img {
    background-color: var(--primary-color);
}

.nc-appbar-tabs .tools li a:hover span {
    background-color: var(--primary-color);
}

.nc-appbar-tabs .tools a.chat .tools_img {
    background-position: 0 0;
}

.nc-appbar-tabs .tools a.compare .tools_img {
    background-position: 0 -36px;
}

.nc-appbar-tabs .tools a.cart .tools_img {
    background-position: 0 -72px;
}

.nc-appbar-tabs .tools a.gotop .tools_img {
    background-position: 0 -108px;
}

.nc-appbar-tabs a.nc-appbar-hide {
    background: url(../images/appbar-hide.png) no-repeat 0 0 #7A6E6E;
    border-radius: 3px 0 0 3px;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 2;
    bottom: 5px;
    right: 0;
}

.nc-appbar-tabs a.nc-appbar-hide:hover {
    background-color: var(--primary-color);
}

#vToolbar .content-box {
    background-color: #F5F5F5;
    width: 240px;
    height: 100%;
    border-left: solid 1px #7C8994;
    position: absolute;
    z-index: 5;
    top: 0;
    right: -246px;
    bottom: 0;
    box-shadow: -4px 0 2px rgba(0, 0, 0, 0.25);
}

#vToolbar .content-box .top {
    padding: 9px 7px;
    border-bottom: dotted 1px #CCC;
    margin-bottom: 10px;
}

#vToolbar .content-box .top h3 {
    font: 16px/24px "microsoft yahei";
    color: #333;
    display: inline-block;
}

#vToolbar .content-box .top a.close {
    background: url(../images/toolbar.png) no-repeat -100px -120px;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    float: right;
    opacity: 0.6;
}

#vToolbar .content-box .goods-info {
    width: auto;
    margin: auto;
}

#vToolbar .cart-list {
    width: 100%;
    flex: 1;
}

#vToolbar .cart-list .goods-list {

}

#vToolbar .cart-list .goods-item {
    position: relative;
    overflow: hidden;

    padding: 10px 5px;
    margin-bottom: 10px;
    background: #fff;
}

#vToolbar .cart-list .goods-item .p-img {
    float: left;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    padding: 0;
    margin-right: 5px;
}

#vToolbar .cart-list .goods-item .p-img img {
    width: 50px;
    height: 50px;
}

#vToolbar .cart-list .goods-item .p-name {
    height: 32px;
    line-height: 16px;
    margin-bottom: 4px;
    overflow: hidden;
}

#vToolbar .cart-list .goods-item .p-name a {
    color: #333;
}

#vToolbar .cart-list .goods-item .p-price {
    height: 16px;
    padding-right: 65px;
    overflow: hidden;
    font: 12px/16px verdana;
    color: #666;
}

#vToolbar .cart-list .goods-item .p-price strong {
    font-size: 14px;
    color: #c81623;
    font-weight: 400;
}

#vToolbar .cart-list .goods-item .p-del {
    position: absolute;
    right: 10px;
    top: 52px;
    width: 35px;
    height: 16px;
    line-height: 16px;
    font-size: 14px;
    color: #005aa0;
    text-align: right;
    display: none;
}

#vToolbar .cart-list .goods-item:hover .p-del {
    display: block;
}

#vToolbar .cart-list .tbar-tipbox2 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -60px;
}

#vToolbar .cart-list .tbar-tipbox2 .tip-inner {
    text-align: center;
}

#vToolbar .cart-list .tbar-tipbox2 .tip-text {
    line-height: 30px;
    font-size: 12px;
    color: var(--primary-grey-color);
}

#vToolbar .cart-list .tbar-tipbox2 .tip-text a {
    color: var(--primary-color);
}

#vToolbar .cart-panel-footer {
    height: 50px;
    background-color: #eceaea;
}

#vToolbar .cart-panel-footer .cart-tbar-checkout {
    height: 50px;
    padding: 5px 110px 5px 5px;
    position: relative;
}

#vToolbar .cart-panel-footer .cart-tbar-checkout .cart-number {
    line-height: 20px;
    font-size: 12px;
}

#vToolbar .cart-panel-footer .cart-tbar-checkout .cart-number strong {
    color: #c81623;
}

#vToolbar .cart-panel-footer .cart-tbar-checkout .cart-sum {
    line-height: 20px;
    font-size: 12px;
}

#vToolbar .cart-panel-footer .cart-tbar-checkout .cart-sum strong {
    color: #c81623;
}

#vToolbar .cart-panel-footer .cart-tbar-checkout .cart-btn {
    position: absolute;
    right: 5px;
    top: 10px;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: rgb(255, 255, 255);
    background: var(--primary-color);
    font-size: 14px;
}

/* 工具栏 end */
/* 用户信息 */
.nc-appbar-tabs .user-info {
    background-color: #FFF;
    width: 320px;
    padding: 9px 19px;
    position: absolute;
    z-index: 2;
    top: 48%;
    margin-top: -120px;
    right: 50px;
    box-shadow: 0 8px 16px 0 rgba(7, 17, 27, 0.20);
}

.nc-appbar-tabs .user-info i.arrow {
    background: url(../images/toolbar.png) no-repeat -100px -150px;
    width: 7px;
    height: 13px;
    position: absolute;
    z-index: 3;
    top: 45px;
    right: -7px;
}

.nc-appbar-tabs .user-info .avatar {
    width: 88px;
    height: 88px;
    float: left;
    position: relative;
    z-index: 1;
}

.nc-appbar-tabs .user-info .avatar .frame {
    background: url(../images/point_bg.png) no-repeat 0 0;
    width: 88px;
    height: 88px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.nc-appbar-tabs .user-info .avatar img {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
}

.nc-appbar-tabs .user-info dl {
    display: block;
    float: left;
    margin: 10px 0 0 10px;
}

.nc-appbar-tabs .user-info dt {
    font: 600 14px/20px "microsoft yahei";
    margin-bottom: 6px;
}

.nc-appbar-tabs .user-info dd {
    line-height: 22px;
    font-size: 14px;
    color: var(--primary-grey-color);
}

/* 用户信息 end*/


/*模态框*/
.qrcode {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 99;
}

.qrcode .qrcode-bg {
    width: 100%;
    height: 100%;
}

.qrcode .block {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 394px;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    color: #333;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding-bottom: 50px;
}

.qrcode .block p {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 18px;
    color: #333;
}

.qrcode .block .code {
    width: 250px;
    margin: auto;
}

.qrcode .block .code img {
    width: 100%;
    height: 100%;
}

.qrcode .block span.close {
    position: absolute;
    right: 10px;
    top: 20px;
    color: var(--primary-black-color);
    cursor: pointer;
}

.show {
    display: none;
}

/* 详情tabs */
.detail-content-wrap .content-header-menu {
    padding: 0;
    height: 58px;
    border-bottom: 1px solid #ecedf0;
    display: flex;
    justify-content: space-between;
}

.detail-content-wrap .content-header-menu .tabs span.active, .detail-content-wrap .content-header-menu .tabs span:hover {
    border-bottom: 3px solid var(--primary-color);
}

.detail-content-wrap .content-header-menu .tabs .name {
    cursor: pointer;
    line-height: 58px;
    font-size: 14px;
    text-align: center;
    padding: 18px 0;
    margin-right: 24px;
    position: relative;
}

.detail-content-wrap .content-header-menu .tabs .total {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 5px;
}