/* 颜色 */
:root {
    --bs-blue: #388DFF;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #f55A6A;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #388DFF;
    --bs-secondary: #75888d;
    --bs-success: #35c38f;
    --bs-info: #50A5f1;
    --bs-warning: #f1b55c;
    --bs-danger: #f55A6A;
    --bs-light: #f8f9fa;
    --bs-dark: #343a50;
    --bs-primary-rgb: 82, 108, 230;
    --bs-secondary-rgb: 117, 136, 141;
    --bs-success-rgb: 53, 195, 143;
    --bs-info-rgb: 80, 165, 241;
    --bs-warning-rgb: 241, 181, 92;
    --bs-danger-rgb: 245, 90, 106;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 52, 58, 80;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color: #353a50;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-border-color:#E1E2E3;
}
html { height: 100%; }
body {
    margin: 0;
    font-size:15px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    min-height: 100%;
}

::-webkit-scrollbar {width:5px; height:10px; background-color:#F5F5F5;}
::-webkit-scrollbar-track{-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5;}
::-webkit-scrollbar-thumb{-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,.3); background-color: #555555;}

.btp-body{min-height:calc(100vh - 172px); height:auto; width:100%; overflow: hidden;}
@media (min-width:992px){
    .btp-body{min-height:calc(100vh - 180px);}
}

.cursor-pointer{cursor:pointer;}

.text-gray {
    color: rgb(100, 115, 138);
}
.text-gray-light {
    color: rgba(100, 115, 138, 0.6);
}
.text-blue {
    color: var(--bs-blue);
}
.text-red{
    color: var(--bs-red);
}

.lead{color:rgb(100, 115, 138); font-size:16px;}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6{font-weight:500;}

.text-active{color:var(--bs-primary) !important; font-weight:600;}

.cursor-pointer {
    cursor: pointer
}

.container{margin:0 auto;}
.center-by-margin{margin:0 auto;}

.fs075{font-size:0.75rem;}

/* 尺寸 */
.row {
    --bs-gutter-x:15px;
    --bs-gutter-y:15px;
}
@media (min-width:992px){
    .w-lg-75{width:75%;}
}

/* 图片 */
.image{background:no-repeat center center; background-size:cover; width:100%; min-height:20px; flex-shrink:0;}

/* 间距 */
h1,h2,h3,h4,h5,h6{margin:0;}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height:1.5em;
}
p{margin:0;}

.common-padding {
    padding: 0 25px;
}

.common-margin {
    margin: 0 25px;
}

.common-padding-x {
    padding: 0 25px;
}

.common-margin-x {
    margin: 0 25px;
}

/* 动画 */
@keyframes bp-animate-breathe {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: .8;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bp-animate-width-group {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes bp-animate-height-group {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes bp-animate-rotate90 {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(90deg);
    }
}

/* alert */
.alert {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border: none;
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-size:0.88rem;
}
.alert-success {
    color: #157656;
    background-color: #d3f3e9;
    border-color: #bdeedd;
}

.alert i {
    font-size: 15px;
    line-height: 18px;
    margin-right: 6px;
}

.alert-danger {
    color: #912f2f;
    background-color: #fcdcdc;
    border-color: #fbcaca;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.88rem;
    font-size: 13px;
}

/* 对话框 */
.modal {
    background: rgba(0, 0, 0, 0);
    color: #495057;
}

.modal-content {
    border: none;
}

.bp-center-message {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 1);
    width: auto;
    box-shadow: #65758b1f 0 10px 15px;
}

.bp-center-message span {
    font-size: 15px;
}

.bp-toast-icon {
    font-size: 20px;
    padding-top: 2px;
}

/* modal */
#bp-modal-body {
    background-color: rgba(255, 255, 255, 1);
}

#bp-modal-body h5 {
    border-bottom: 1px solid #edf1f5;
    line-height: 1.5em;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

#bp-modal-body>.content {
    padding: 1rem;
    font-size: 15px;
    line-height: 1.6em;
    padding-bottom: 22px;
}

#bp-modal-body>.modal-footer {
    border-top: 1px solid #edf1f5;
}

#bp-modal-body-bg {
    background: #edf1f5;
    width:95%;
    box-shadow: #65758b1f 0 10px 15px;
    padding: 8px;
}

@media (min-width:992px){
    #bp-modal-body-bg {width: 500px;}
}

/* 按钮 */
a{color:#353a50;}
a:hover{color:#388DFF;}
a,
button {
    text-decoration: none;
    outline: none !important;
}

.btn {
    font-size: 15px;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0.75rem;
}

.btn .spinner-border{width:15px; height:15px;}

.btn-sm {
    font-size: 13px;
    padding: 0.3rem 0.66rem !important;
}

.btn-sm .bi {
    font-size: 12px !important;
}

.btn .bi {
    font-size: 16px;
}

.btn span {
    margin: 0 5px;
    letter-spacing: 1px;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--bs-secondary);
    border-color: ar(--bs-secondary);
}

.btn-success,
.btn-success:hover,
.btn-success:focus {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

.btn-danger,
.btn-danger:hover,
.btn-danger:focus {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}

.btn-warning,
.btn-warning:hover,
.btn-warning:focus {
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}
.btn-warning *{color:#FFFFFF;}
.btn-info,
.btn-info:hover,
.btn-info:focus {
    color: #fff;
    background-color: var(--bs-info);
    border-color: var(--bs-info);
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    box-shadow: none;
}
.btn-link{text-decoration: none;}

/* 水波纹效果横向扩展 */
.water-ripple-horizontal {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.water-ripple-horizontal::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    opacity: 1;
}
.water-ripple-horizontal:active::after {
    animation: bp-animate-width-group 100ms ease-in forwards;
}

/* 水波纹效果 缩放 */
.water-ripple-scale {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.water-ripple-scale::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(200, 200, 200, 0.1);
    background-repeat: no-repeat;
    transform: scale(0);
}
.water-ripple-scale:active::after {
    transform: scale(3.6);
    transition: 1.2s;
}
.btn-outline-info {
    --bs-btn-hover-color: #FFFFFF;
    --bs-btn-active-color: #FFFFFF;
}

h5 {font-size:15px;}
h4 {font-size:16px;}
h3 {font-size:18px;}
h2 {font-size:20px;}
h1 {font-size:22px;}
@media (min-width: 1400px){
    h5 {font-size:16px;}
    h4 {font-size:18px;}
    h3 {font-size:20px;}
    h2 {font-size:22px;}
    h1 {font-size:28px;}
}
.text-14{font-size:14px; line-height:2.2em;}

@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1180px;
    }
}
@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1180px;
    }
}

/* header */
.header-size-box{height:50px;}
.logo{height:26px;}
@media (min-width:992px){
    .header-size-box{height:55px;}
    .logo{height:26px;}
}

.navbar{background-color:rgba(255, 255, 255, 0.95); --bs-navbar-padding-y:5px;}
.navbar-toggler {
    padding:.38rem .38rem; 
}
.navbar-toggler-icon{font-size:1em; width:1em; height: 1em;}
.navbar-nav-wrap, .navbar-toggler{
    color: #677788;
    border-color: rgba(33,50,91,.1);
}
.navbar-toggler-icon{
    color: #677788;
}
.nav-link{
    color:#577788;
    padding:12px 15px !important;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color:#388DFF;
}
.nav-link:hover{color:#388DFF;}
.navbar-nav{justify-content:flex-end; align-items:center;}
.navbar-line {
    width: 1px;
    height: 0.3em;
    margin: 0 15px;
    overflow: hidden;
    padding: 0 !important;
    opacity: 0.5;
}

.footer{margin-top:66px; background:rgba(247,250,255, 1); padding:15px; text-align:center;}
.footer *{font-size:13px; line-height:1.38em; color:#71869d;}

@media (min-width:992px){
    .footer *{font-size:15px;}
}

/* 默认卡片 */
.card {
    border-width: 0;
    box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}
.card-body{padding:15px 10px;}
.card-face{width:100%; height:200px; background:center center no-repeat; background-size:cover;}
.card-title{font-size:1.1em; color: #232323;}
.card-text{height:3em; line-height:1.5em; font-size:.85em; overflow:hidden; color:#909090}


/* 文章列表 */
.article-list{padding-bottom:15px; margin-bottom:15px; border-bottom:1px solid rgba(0,0,0,0);}
.article-list h6{font-size:15px;}
.article-list .image{width:23%; height:66px; border-radius:3px;}
.article-list .images{width:31%; height:66px; border-radius:3px;}
.article-list .row-body{width:73%;}
.article-list .footer-item{padding:5px 0; font-size:13px; color:#71869d; display:flex; align-items:center; flex-wrap:nowrap;}
.article-list .footer-item i{font-size:13px; line-height:1.5em; margin-right:5px; color:#71869d;}
.article-list .footer-item span{font-size:13px; line-height:1.5em; color:#71869d;}
.article-list .lead{font-size:14px; margin-top:10px;}
.article-list:hover{border-bottom:1px solid rgba(0,0,0,.033);}
@media (min-width:992px){
    .article-list{padding-bottom:25px; margin-bottom:25px;}
    .article-list .row-body{width:75%;}
    .article-list h6{font-size:18px;}
    .article-list .image{width:22%; height:118px;}
    .article-list .images{width:31.5%; height:138px;}
}
.article-items{padding:15px 0;}
.article-items *{color:#727272; margin-right:10px; font-size:13px;}
/* 热门文章 */
.ring-title{padding:6px 0; padding-left:18px; line-height:1.5em; position: relative; font-size:14.5px; margin-bottom:8px; display: block; color:#292826;}
.ring-title::after{content:""; 
    display: block;
    width: 8px;
    height: 8px;
    border:1px solid #b3ccf4;
    border-radius: 100%;
    position: absolute;
    top:12px;
    left:0px;
    z-index: 1;
}
/* 分页 */
.page-link {
    font-size: 15px;
    color:#71869d;
}
/* 标签按钮 */
.btn-tags {
    color: #71869d;
    background-color: rgba(113,134,157,.1);
    border-color: transparent;
    font-size: .75rem;
    padding: 0.3rem 0.8rem;
}
.btn-tags:hover{color:#fff;background-color:#71869d;border-color:transparent}
.btn-tags.active{color:#fff;background-color:#71869d;}
/* 新闻页面右侧广告 */
.new-right-banner{height:112px; display: block; border-radius:2px; position:relative;}
.new-right-banner .title{height:35px; background:rgba(0,0,0,.3); line-height:35px; font-size:12px; color:#FFFFFF; position:absolute; z-index:1; left:0; bottom:0; width:100%; text-align:center; padding:0 10px;}

/* 编辑器内容展示 */
.bs-editor-display{padding:0;}
.bs-editor-display p {font-size:15px; color:#262626; line-height:2.2em; margin-top:5px;}
.bs-editor-display h5 {font-size:18px; margin-top:20px; margin-bottom: 8px; font-weight:bold;}
.bs-editor-display h4 {font-size:20px; margin-top:30px; margin-bottom: 8px; font-weight:bold;}
.bs-editor-display h4:first-child{margin-top:18px !important;}
.bs-editor-display h3 {font-size:22px; margin-top:50px; margin-bottom: 8px; font-weight:bold;}
.bs-editor-display h3:first-child{margin-top:18px !important;}
.bs-editor-display h2 {font-size: 26px; margin-top:50px; margin-bottom: 8px; font-weight:bold;}
.bs-editor-display h1 {font-size: 30px; margin-top:50px; margin-bottom: 8px; font-weight:bold;}
.bs-editor-display blockquote {font-size:15px; line-height:2.2em; padding:18px; background:#e7f8ff; text-indent:0; margin:16px 0; border-radius: 2px;}
.bs-editor-display-pre-circle {width: 8px; height: 8px; border-radius: 10px; background: rgb(236 106 95); margin-right: 5px;}
.bs-editor-display-pre-header {padding: 15px; width: 100%; position: absolute; left:0px; top:0px; background-color:#F3F3F3; border-top-left-radius: 6px; border-top-right-radius: 6px;}
.bs-editor-display pre{background:#F6F7F8; font-size:15px; line-height:1.4em; padding:38px 5px 5px 5px; border-radius: 6px; margin: 5px 0; width: 100%; position: relative; white-space: pre-wrap; margin-top:15px;}
.bs-editor-display a{color:#388DFF;font-size:16px;line-height:2.5em}
.bs-editor-display img{border-radius:3px;width:100% !important;margin:18px 0}
.bs-editor-copy{width:120px;height:38px; position:absolute;z-index:2;right:15px;top:0;font-size:14.5px!important;text-align:center;line-height:38px;cursor:pointer;text-align:right; font-family:"Pingfang SC", Microsoft Yahei, sans-serif, Helvetica; display:flex; flex-direction:row; flex-wrap:nowrap; justify-content:flex-end;  align-items:center;}
.bs-editor-copy span{padding-left:5px; padding-bottom:2px;}
.bs-editor-display *{word-break:break-all;word-wrap:break-word}
.bs-editor-display strong{font-size:15px;}
.bs-editor-display iframe{width:100%; height:300px;}
.bs-editor-display .spline{padding-top:20px;}
.bs-editor-display .spline .bi{color:#d5d5d5; font-size:30px; line-height:38px;}
.bs-editor-display table{width:100% !important; border-top:1px solid #F1F1F1; border-left:1px solid #F1F1F1; margin:15px 0;}
.bs-editor-display td{padding:10px; line-height:1.3em; border-bottom:1px solid #F1F1F1; border-right:1px solid #F1F1F1; word-break: break-all;}
.bs-editor-display thead td{background:#F1F4F5; font-weight:700;}
.bs-editor-display th{background:#F1F4F5; font-weight:700; padding:10px;}

/*
HighLight.css
*/
pre code.hljs{display:block;overflow-x:auto;padding:1em; font-family:'Fira Code',Consolas, 'Courier New', monospace;}
code.hljs{padding:3px 5px}
.hljs-comment{color:#098658; font-family:PingFangSC-Regular,Arial,Helvetica; font-size:14px;}
.hljs-attribute,.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-name,.hljs-selector-tag{font-weight:700}
.hljs-deletion,.hljs-number,.hljs-quote,.hljs-selector-class,.hljs-selector-id,.hljs-string,.hljs-template-tag,.hljs-type{color:#0531FA;}
.hljs-section,.hljs-title{color:#0531FA; font-weight:700}
.hljs-link,.hljs-operator,.hljs-regexp,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#0531FA}
.hljs-literal{color:#FF0036;}
.hljs-addition,.hljs-built_in,.hljs-bullet,.hljs-code{color:#098658}
.hljs-meta, .hljs-string{color:#0531FA; font-family:PingFangSC-Regular,Arial,Helvetica !important; font-size:14px;}
.hljs-meta .hljs-string{color:#0531FA;}
.hljs-emphasis{font-style:italic}
.hljs-strong{font-weight:700}

/* 发送短信按钮 */
.send-phone-message-button{width:115px; right:6px; top:10px; padding:8px; font-size:13px; z-index:1; font-weight:400; display:none;}

/* 表格 */
.btp-table{border: none !important;}
.btp-table td, .btp-table th{padding:15px 5px; font-size:14.5px; line-height:28px; color:#888888; border:none; border-bottom:1px solid #f1f1f1;}
.btp-td-text{color:#303030 !important;}

.btp-common-table{border: none !important;}
.btp-common-table td{padding:6px 6px 6px 0; font-size:14.3px; line-height:26px; color:#888888; border:none;}

/* 表单 */
form {
    margin-top: 0;
    margin-block-end: 0;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1e2022;
    background-color: #fff;
    background-clip: padding-box;
    border:0.0625rem solid rgba(33,50,91,.1);
    appearance: none;
    border-radius:0.3125rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* 为空展示 */
.btp-empty{padding:50px 30px; text-align:center;}
.btp-empty .bi{font-size:50px; color: rgba(113,134,157,.3);}

/* 账户中心 */
.account-area{background:#FFFFFF;}
.account-menu{position:fixed; top:50px; left:0; width:100%; height:100%; bottom:0; z-index:99; overflow-y:auto; display:none;}
.account-menu ul{list-style:none; padding:0; margin:0; margin-top:6px;}
.account-menu h5{padding:8px 0 8px 20px; font-weight:500;}
.account-menu ul li a{display:flex; padding:6px 0 8px 20px; border-left:3px solid #FFFFFF; font-size:14.5px; color:#21325b; margin-top:8px;}
.account-menu ul li a .bi{margin-right:12px;}
.account-menu .active{color:var(--bs-blue); border-color:var(--bs-blue);}
.account-banner{background-image:url(/static/images/front/wave-bg.svg); background-color:#0d6efd; padding:38px 0 128px 0;}
@media(min-width:992px){
    .account-area{border-radius:6px; box-shadow:0 0.2rem 1rem 0 rgb(140 152 164/13%);}
    .account-container{margin-top:-90px; overflow:hidden;}
    .account-menu{position:static; height:auto; display:block;}
}
.account-avatar-img{width:88px; height:88px; border-radius:100%;}
/* 右下角菜单按钮 */
.btp-h5-menu-button{width:50px; height:50px; position:fixed; right:15px; bottom:50px; background-color:#FFFFFF; z-index:999; text-align:center; font-size:28px; line-height:50px; border-radius:25px;}

/* 展示 */
.hide{display:none;}

/* 收藏 */
i {font-style:normal; margin:0; padding:0;}
#collection{ cursor: pointer;}
#collection *{line-height:25px;}
#collection{padding:8px 12px; display:flex; align-items:center; width:128px; border-radius:8px; justify-content: center; background-color:rgba(247,250,255, 1);}
#collection .bi{color:#71869d; font-size:15px;}
#collection .text{font-size:14px; margin-left:8px; color:#71869d; padding-bottom:3px;}
.collected{background-color:var(--bs-blue) !important;}
.collected *{color:#FFFFFF !important;}

/* 通用列表 */
.dataLoading *{color:rgba(100, 115, 138, 0.6);}
.common-list{padding:0;}
.common-list .item{padding:12px 0; border-bottom: 1px dotted var(--bs-border-color);}
.common-list .item:last-child{border:none;}
.common-list .title{font-size:14.5px; display: block; position: relative; line-height:1.5em; padding-left:18px;}
.common-list .title::after{content:""; 
    display: block;
    width: 8px; 
    height: 8px;
    border:1px solid #b3ccf4;
    border-radius: 100%;
    position: absolute;
    top:6px;
    left:0px;
    z-index: 1;
}
.common-list .bottom{display:flex; justify-content:space-between; margin-top:8px;}
.common-list .bottom *{font-size:14px;}
.common-list .bottom span{font-size:14px; color:rgba(100, 115, 138, 0.6); cursor:pointer;}
.common-list .bottom span:hover{color:#FF0036;}
.common-list .bottom div{color:rgba(100, 115, 138, 0.6); font-size:12px;}

/* 通用标题 */
.common-title{display:flex; flex-direction:row; flex-wrap:nowrap; justify-content:space-between; align-items:center;}
.common-title-text{font-size:18px; color: #282828; padding-left:8px;}

/* 通用图标 */
.icon-image{width:15px; height:15px; background:no-repeat 50% #fff; background-size:cover;}
.icon-image-oblique{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAcCAYAAACUJBTQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNAay06AAAAGMSURBVEiJnZSxTsNAEERn7iIBSSToCV+QAhQiqKlowu9GdKlBgJTCX0DoQTImCraXwlIS+/aI1y733ni8HnsI5Zovs1HxW7435wRXs+ngwso7zUQK3Kpz4qkLr5qUooscRDU5xKsmRKmKQK+aHOIDExHxAK8VRdHzx69d+MDk8W0zFpFBqJHk/pLfXfjAJEeurk5QfVVt+MCEkRAR+bLa8Erwoot8TzVpw3N/vkhkmK6zL4jUzcl0Numfkiy78LXDdLOeBgIAFHlpGlh4Vz8s9NXhInm04+tPITTVSVu+ueqNejOPZ3Xekt+azJfZSETOmzzB1cNV/6M5t/BbkzKPPBX1LSy8251F6jrSvBZ+t0mkSX2keS28A/5v0pMjW/NqvAOqJoXIMNRIcjdm2hxbeQcApeR6iEI9dCNfmURCdNB/QivvAICxJoXevGZ+kcgw/ck+AfH1E6azSf+MZLE/tvIA4NLNehoIsG3SQGDlAcChLNQQSaf3lZUH4IhIk0ZCtPJAFbwu8lGRlccfB1QD5X3kZ5gAAAAASUVORK5CYII=);}

/* 评论 */
.comment-area{border: 1px solid #ddd; border-radius: 2px; overflow:hidden;}
.comment-area textarea{background-color:#FFFFFF; padding:15px; font-size:15px; line-height:25px; height:88px; width:100%; border:none; outline:none; resize: none; margin:0;}
.comment-control{display: flex; justify-content:space-between; align-items:center; padding:0; padding-left:12px; background: rgba(245,247,249,.8); font-size:14px;}
.comment-control a{color:var(--bs-blue);}
.comment-control .face{height:25px; width:25px; border-radius:50%; background:no-repeat 50% #fff; background-size:cover;}
.comment-control .nickname{font-size:14.5px; padding-left:10px; color:var(--bs-blue);}
.comment-list{padding:5px 0;}
.comment-list .item{display:flex; flex-direction:row; flex-wrap: nowrap; padding:15px 0; margin-bottom:8px;}
.comment-list .item .face{height:35px; width:35px; border-radius:50%; background:no-repeat 50% #FFFFFF; background-size:cover; flex-shrink:0;}
.comment-list .item .body{margin-left:14px; flex-grow:1;}
.comment-list .item .body .nickname{font-size:14.2px; color:var(--bs-blue);}
.comment-list .item .body .content{font-size:14.2px; color:#565758; margin-top:10px; overflow:hidden; word-break:break-all;}
.comment-list .item .body .time{font-size:12px; color:#a6a7a8;}
.comment-list .item .body .operateItem{font-size:13px; color: #a6a7a8; padding:0 5px; cursor: pointer;}
.comment-list .item .body .active{color:var(--bs-blue);}
.comment-control .reply{padding:5px 8px; border-radius:2px; cursor:pointer; background:#e1e9f6; font-size:13px; line-height:18px; margin-left:8px; color:var(--bs-blue);}
.comment-reply-body{padding:5px 10px; background-color:rgba(245,247,249,.8); margin-top:15px; border-radius:2px;}
.comment-reply-body .content{margin-top:5px !important;}
.comment-reply-body .item{border-bottom:1px dashed #DDDDDD; padding:10px 0;}
.comment-reply-body .item:last-child{border:none;}
/* 选项卡 */
.btp-tab-navs-wrap{overflow-x:auto;}
.btp-tab-navs{border-bottom:2px solid #f5f8fa; height:46px; display:flex; flex-direction:row; flex-wrap:nowrap; align-items:center; width:100%; }
.btp-tab-navs > .item{line-height:36px; border-bottom:2px solid #f5f8fa; margin-right:28px; padding-bottom:10px; font-size:14.5px; cursor:pointer; flex-shrink:0;}
.btp-tab-navs > .active{border-bottom:2px solid var(--bs-primary) !important; color:var(--bs-primary) !important;;}
.btp-tab-contents > .item{display:none;}

/* 搜索框 */
.search-wrap{width:85%; padding:36px 0; margin:0 auto;}
@media (min-width:992px){
    .search-wrap{width:55%; padding:66px 0;}
}
.input-card {
    display: flex;
    background-color: #fff;
    padding: 0.5rem;
    box-shadow:0 0.3rem 1rem 0 rgb(140 152 164 / 13%);
    border-radius: 0.5rem;
}
.input-card .form-control {
    border-width: 0;
}
.form-select {
    display: block;
    width: 100%;
    padding:0.6125rem 2.3rem 0.6125rem .05rem;
    -moz-padding-start: calc(1rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1e2022;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size:16px 12px;
    border:none;
    border-radius:0.3125rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none;
}
.form-select-sm {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: .875rem;
    border-radius: 0.3125rem;
}

/* 子菜单 */
.nav-has-sub{position:static;}
.nav-has-sub > .nav-link{display:flex; align-items:center;}
.nav-has-sub > .nav-link span{display: inline-block;}
.nav-has-sub > .nav-link .bi{
    display:inline-block;
    font-size:10px;
    padding-left:8px;
    line-height:16px;
    margin-top:2px;
    color:rgba(0, 0, 0, 0.5);
}
.sub-menus{list-style:none; padding:0; margin:0; background:#FFFFFF; width:100%; padding:10px 0; border-top:4px solid #388DFF; display:none;}
.sub-menus li{width:100%; padding:0 10px;}
.sub-menus li a{display:block; width:100%; line-height:1.5rem; padding:9px; font-size:14.5px; border-radius:3px;}
.sub-menus li a:hover{background:#F2F3F6;}
.nav-item{display:block; width:100%;}
.nav-item .badge{font-size:10px; padding:0.2em 0.4em; font-weight:400; border-radius:10px;}
@media(min-width:992px){
    .nav-has-sub{position:relative;}
    .nav-item{display:list-item; width:auto;}
    .sub-menus{position:absolute; z-index:9; top:52px; box-shadow:0 .125rem .25rem rgba(0,0,0,.075); border-bottom-left-radius:5px; border-bottom-right-radius:5px;}
    .sub-menus li{text-align: center;}
}

/* 可选标签 */
.select-tag{display:flex; flex-direction:row; flex-wrap:wrap;}
.select-tag > .item{
    margin:6px 12px 0px 0;
    display:flex; flex-direction:row; flex-wrap:nowrap; align-items:center;
    border: 1px solid #d5d5d5;
    padding:1px;
    cursor:pointer;
    border-radius:2px;
}
.select-tag > .item > .img{width:30px; height:30px; background-size:cover; border-radius:2px;}
.select-tag > .item > .tag{font-size:12px; line-height:30px; padding:0 12px; color: #333;}
.select-tag .active{border-color:var(--bs-primary) !important; }
.select-tag .active .tag{color:var(--bs-primary) !important;}
.select-tag-large > .item > .tag{font-size:14.5px; line-height:32px; padding:5px 18px;}

/* 弹窗 */
.popover-window {
    width: 95%;
    padding: 15px;
    border-radius: 8px;
    box-shadow: #65758b1f 0 10px 15px;
}
@media(min-width:992px){
    .popover-window {
        width:50%;
        max-width:750px;
        padding:25px;
        border-radius: 8px;
        box-shadow: #65758b1f 0 10px 15px;
    }
}

/* 购物车 */
.shoppingcart-image{width:60px; height:60px; margin-right:15px; border:1px solid #d5d5d5; border-radius:3px;}
.shoppingcart-name{font-size:15px; line-height:1.5em; color: #323232;}
/* 地址 */
.user-adddress{list-style-type:none; padding:0; margin:0; max-height:200px; overflow-y:auto;}
.user-adddress li{padding:12px; background:#f6f7f8; margin-bottom:6px; font-size:13px; line-height:1.6em; cursor: pointer; border-radius:3px; position: relative; overflow:hidden;}
.user-adddress li span{font-size:12px; color: #323232; margin-left:6px;}
.user-adddress .active{background-color:var(--bs-primary); color:#FFFFFF;}
.user-adddress .active *{color:#FFFFFF;}
.user-adddress li .operate{position:absolute; z-index:1; right:0; bottom:0;}
.user-adddress li .operate .item{font-size:13px; line-height:22px; padding:8px; cursor: pointer; float: left; display:flex; flex-wrap:nowrap; align-items:center;}
.adddress-select{margin-right:15px;}
.adddress-select .form-select{padding-left:8px; min-width:120px;}

/* 订单列表 */
#order-list{padding:20px 0;}
.order-item{margin-bottom:25px; border:1px solid #F1F1F1;}
.order-title{background-color:#f5f5f5; padding:8px; display:flex; justify-content:space-between; align-items:center; flex-wrap:nowrap; overflow: hidden; font-size:14px;}
.order-title span{margin-right:10px; }
.order-items{padding:0; list-style-type:none; margin:0;}
.order-items li{margin:0; padding:10px; margin-bottom:3px; display:flex; flex-wrap:nowrap; align-items:flex-start;}
.order-item-image{width:80px; height:80px; margin-right:15px;}
.order-item-name{line-height:25px; font-size:14px;}
.order-item-text{line-height:25px; font-size:13px;}
.order-bottom{display:flex; justify-content:space-between; align-items:center; flex-wrap:nowrap; overflow: hidden; padding-bottom:8px; padding:5px 13px 10px 13px; font-size:13px;}
.order-bottom .space{padding:0 6px;}

.text-white::before{color:#FFFFFF !important;}
.small-page{max-width:880px; margin:0 auto;}

/* 通用顶部定位 */
.common-fixed-top{top:55px; left:0; right:0; z-index:99; background-color:#FFFFFF; padding-top:20px; overflow: hidden;}
.common-fixed-top-size-box{height:44px;}
@media (min-width:992px){
    .common-fixed-top{top:55px; padding-top:30px;}
    .common-fixed-top-size-box{height:55px;}
}

/* 上传 */
.btp-upload{padding:8px 0; display:flex;}
.btp-upload .add-button{border:1px dashed #E1E1E1; width:66px; height:66px; line-height:66px; text-align:center; cursor: pointer; overflow:hidden; position: relative;}
.btp-upload .add-button input{width:200px; height:200px; position:absolute; z-index:1; left:0; top:0; overflow:hidden; opacity:0;}
.btp-upload .add-button i{display:block; overflow:hidden;}
.btp-upload .images .items{width:66px; height:66px; line-height:66px; text-align:center; font-size:20px; position:relative; margin-right:10px; border-radius:6px; background-size: cover;}
.btp-upload .images .items .close{width:22px; height:22px; font-size:18px; color:#FF0036; line-height:22px; position:absolute; z-index:2; right:3px; top:3px; cursor:pointer;}
.btp-upload .files{padding:8px 0; margin-top:5px;}
.btp-upload .files .items{font-size:13px; line-height:28px; position:relative; display:flex; flex-direction:row; flex-wrap:nowrap; align-items:center; background-color:#f6f7f8; padding:12px; border-bottom:1px solid #FFFFFF;}
.btp-upload .files .close{font-size:16px; color:#FF0036; padding-right:10px; position:static; cursor:pointer;}