@charset "UTF-8";
html {
  font-size: 14px;
}

:root,
[data-bs-theme=light] {
  --bs-secondary: #939598;
  --bs-secondary-rgb: 147, 149, 152;
  --bs-blue: #1958f7;
  --bs-danger-rgb: 255, 87, 93;
}

.f-10 {
  font-size: 10px;
}

.f-11 {
  font-size: 11px;
}

.f-12 {
  font-size: 12px;
}

.f-13 {
  font-size: 13px;
}

.f-14 {
  font-size: 14px;
}

.f-15 {
  font-size: 15px;
}

.f-16 {
  font-size: 16px;
}

.f-17 {
  font-size: 17px;
}

.f-18 {
  font-size: 18px;
}

.f-19 {
  font-size: 19px;
}

.f-20 {
  font-size: 20px;
}

.f-21 {
  font-size: 21px;
}

.f-22 {
  font-size: 22px;
}

.f-23 {
  font-size: 23px;
}

.f-24 {
  font-size: 24px;
}

.f-25 {
  font-size: 25px;
}

.f-26 {
  font-size: 26px;
}

.f-27 {
  font-size: 27px;
}

.f-28 {
  font-size: 28px;
}

.f-29 {
  font-size: 29px;
}

.f-30 {
  font-size: 30px;
}

.f-31 {
  font-size: 31px;
}

.f-32 {
  font-size: 32px;
}

.f-33 {
  font-size: 33px;
}

.f-34 {
  font-size: 34px;
}

.f-35 {
  font-size: 35px;
}

.f-36 {
  font-size: 36px;
}

.f-37 {
  font-size: 37px;
}

.f-38 {
  font-size: 38px;
}

.f-39 {
  font-size: 39px;
}

.f-40 {
  font-size: 40px;
}

.f-41 {
  font-size: 41px;
}

.f-42 {
  font-size: 42px;
}

.f-43 {
  font-size: 43px;
}

.f-44 {
  font-size: 44px;
}

.f-45 {
  font-size: 45px;
}

.f-46 {
  font-size: 46px;
}

.f-47 {
  font-size: 47px;
}

.f-48 {
  font-size: 48px;
}

.f-49 {
  font-size: 49px;
}

.f-50 {
  font-size: 50px;
}

.f-70 {
  font-size: 70px;
}

.fw-1 {
  font-weight: 100;
}

.fw-2 {
  font-weight: 200;
}

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.bg-gray {
  background-color: #f3f6f7;
}

.w-35 {
  width: 35%;
}

form label {
  color: var(--bs-secondary);
}
form label.black {
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-black);
}
form input::-moz-placeholder {
  color: #c4c5c5;
  font-weight: normal;
  font-size: 14px;
}
form input::placeholder {
  color: #c4c5c5;
  font-weight: normal;
  font-size: 14px;
}
form textarea::-moz-placeholder {
  color: #c4c5c5;
  font-weight: normal;
  font-size: 14px;
}
form textarea::placeholder {
  color: #c4c5c5;
  font-weight: normal;
  font-size: 14px;
}
form input.noborder,
form select.noborder {
  background-color: transparent;
  border: none;
}
form input.noborder:focus,
form select.noborder:focus {
  outline: none;
}
form .form-control-lg {
  font-size: 14px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1.2rem;
}
form .form-select-lg {
  font-size: 14px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1.2rem;
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}

.text-bg-success {
  color: #278538 !important;
  background-color: rgb(223, 245, 227) !important;
}

.text-bg-danger {
  color: #db3939 !important;
  background-color: rgb(253, 233, 230) !important;
}

/* 自定义tooltip样式 */
.custom-tooltip {
  position: relative;
}

.custom-tooltip::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background-color: rgba(20, 18, 18, 0.605);
  color: white;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  margin-bottom: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

.paginator .info {
  font-size: 12px;
  color: var(--bs-gray);
}
.paginator .pagination .page-item .page-link {
  font-size: 12px;
  border: none;
  color: var(--bs-secondary);
  padding: var(--bs-pagination-padding-y) 1rem;
  border-radius: 4px;
}
.paginator .pagination .page-item .page-link.active {
  color: var(--bs-blue);
  background-color: #f3f7ff;
}
.paginator .pagination .disabled a{background: none;}
.paginator .pagination .disabled a span{color: #ddd;}
.table th {
  font-weight: normal;
  color: var(--bs-secondary);
}

.page {
  display: flex;
  background-color: rgb(250, 250, 250);
  height: 100vh;
  overflow: hidden;
}

.navbar {
  background-color: rgb(250, 250, 250);
}

/**侧边导航部分**/
.sidebar {
  background: rgb(242, 244, 246);
  width: 340px;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
}
.sidebar .logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .logo img {
  height: 44px;
  margin-left: -70px;
}
.sidebar .logo .logo-text {
  font-size: 22px;
  font-weight: bold;
  color: rgb(133, 133, 133);
  margin-left: 16px;
}
.sidebar .left-nav {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 16px;
}
.sidebar .left-nav .title {
  font-size: 18px;
  color: #939598;
}
.sidebar .left-nav .goto {
  background-color: var(--bs-white);
  border-radius: 12px;
  height: 86px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .left-nav .goto a {
  font-size: 18px;
  color: var(--bs-black);
  text-decoration: none;
}
.sidebar .left-nav .goto .icon {
  margin-right: 10px;
}
.sidebar .left-nav .nav-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}
.sidebar .left-nav .nav-list .list-item {
  align-items: center;
  margin-top: 16px;
  padding: 6px;
  border-radius: 15px;
}
.sidebar .left-nav .nav-list .list-item.active {
  background-color: var(--bs-blue);
}
.sidebar .left-nav .nav-list .list-item.active a span {
  color: var(--bs-white);
}
.sidebar .left-nav .nav-list .list-item a {
  text-decoration: none;
  align-items: center;
  display: block;
}


.sidebar .left-nav ul{padding-left: 0;}

/**left-nav-li**/
.sidebar .left-nav .nav-list .list-item a.nav_ps{

background: url("../images/icons/ps_white.png") no-repeat;
background-size: 42px 42px;

}
.sidebar .left-nav .nav-list .list-item a.nav_ps:hover{

background: url("../images/icons/ps_hover.png") no-repeat;
background-size: 42px 42px;

}
.sidebar .left-nav .nav-list .list-item a.nav_ps:hover span{color: var(--bs-blue);}
.sidebar .left-nav .nav-list .active a.nav_ps,.sidebar .left-nav .nav-list .active a.nav_ps:hover{
background: url("../images/icons/ps_hover.png") no-repeat;
background-size: 42px 42px;color: #fff;}
.sidebar .left-nav .nav-list .active a.nav_ps:hover span{color: #fff;}

/**left-nav-li**/




.sidebar .left-nav .nav-list .list-item a.nav_sp{

background: url("../images/icons/sp_white.png") no-repeat;
background-size: 42px 42px;

}

.sidebar .left-nav .nav-list .list-item a.nav_sp .nav_warning{
  background-color: #ff6f3d !important;  color: var(--bs-white) !important;  font-size: 12px;  height: 18px;  line-height: 18px;float: right;border-radius: 9px;padding: 0px 5px;font-style: normal;font-weight: 500;min-width: 26px;text-align: center;margin: 12px 10px;

}


.sidebar .left-nav .nav-list .list-item a.nav_sp:hover{

background: url("../images/icons/sp_hover.png") no-repeat;
background-size: 42px 42px;
}

.sidebar .left-nav .nav-list .list-item a.nav_sp:hover span{color: var(--bs-blue);}
.sidebar .left-nav .nav-list .active a.nav_sp,.sidebar .left-nav .nav-list .active a.nav_sp{
background: url("../images/icons/sp_hover.png") no-repeat;
background-size: 42px 42px;color: #fff;}
.sidebar .left-nav .nav-list .active a.nav_sp,.sidebar .left-nav .nav-list .active a.nav_sp:hover{
background: url("../images/icons/sp_hover.png") no-repeat;
background-size: 42px 42px;color: #fff;}
.sidebar .left-nav .nav-list .active a.nav_sp .nav_warning{
  background-color: #E4EAFA !important;  color: var(--bs-blue)!important;  font-size: 12px;  height: 18px;  line-height: 18px;float: right;border-radius: 9px;padding: 0px 5px;font-style: normal;font-weight: 500;min-width: 26px;text-align: center;margin: 12px 10px;

}
.sidebar .left-nav .nav-list .active a.nav_sp:hover span{color: #fff;}





.sidebar .left-nav .nav-list .list-item a.nav_orders{

background: url("../images/icons/orders_white.png") no-repeat;
background-size: 42px 42px;

}
.sidebar .left-nav .nav-list .list-item a.nav_orders:hover{

background: url("../images/icons/orders_hover.png") no-repeat;
background-size: 42px 42px;
}

.sidebar .left-nav .nav-list .list-item a.nav_orders:hover span{color: var(--bs-blue);}





.sidebar .left-nav .nav-list .list-item a.nav_pb{

background: url("../images/icons/pb_white.png") no-repeat;
background-size: 42px 42px;

}
.sidebar .left-nav .nav-list .list-item a.nav_pb:hover{

background: url("../images/icons/pb_hover.png") no-repeat;
background-size: 42px 42px;
}

.sidebar .left-nav .nav-list .list-item a.nav_pb:hover span{color: var(--bs-blue);}





.sidebar .left-nav .nav-list .list-item a.nav_dash{

background: url("../images/icons/dash_white.png") no-repeat;
background-size: 42px 42px;

}
.sidebar .left-nav .nav-list .list-item a.nav_dash:hover{

background: url("../images/icons/dash_hover.png") no-repeat;
background-size: 42px 42px;
}

.sidebar .left-nav .nav-list .list-item a.nav_dash:hover span{color: var(--bs-blue);}


.sidebar .left-nav .nav-list .list-item.active a.nav_dash:hover span{color: #fff;}





.sidebar .left-nav .nav-list .list-item a.nav_set{

background: url("../images/icons/set_white.png") no-repeat;
background-size: 42px 42px;

}
.sidebar .left-nav .nav-list .list-item a.nav_set:hover{

background: url("../images/icons/set_hover.png") no-repeat;
background-size: 42px 42px;
}

.sidebar .left-nav .nav-list .list-item a.nav_set:hover span{color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item.active a.nav_set:hover span{color: #fff;}








.sidebar .left-nav .nav-list .list-item a .icon {
  width: 42px;
  height: 42px;
}
.sidebar .left-nav .nav-list .list-item a .bi {
  color: var(--bs-black) !important;
  font-weight: bold;
}
.sidebar .left-nav .nav-list .list-item span {
  margin-left: 60px;
  line-height: 42px;
  font-size: 18px;
  color: var(--bs-black);
}
.sidebar .left-nav .nav-list .list-item .sub-list {
  list-style: none;
  margin-left: 20px;
  border-left: 1px solid #c7c8c9;
}
.sidebar .left-nav .nav-list .list-item .sub-list li {
  margin-top: 10px;
  padding: 5px 10px;
}
.sidebar .left-nav .nav-list .list-item .sub-list li.active {
  background-color: var(--bs-white);
  border-radius: 20px;
}
.sidebar .left-nav .nav-list .list-item .sub-list li.active a {
  color: var(--bs-blue);
}
.sidebar .left-nav .nav-list .list-item .sub-list li a {
  color: var(--bs-secondary);
}
.sidebar .left-nav .nav-list .list-item .sub-list li a .badge {
  float: right;
  color: var(--bs-white) !important;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  background-color: #ff6f3d !important;
}
.sidebar .left-nav .nav-list .list-item .sub-list li a img {
  width: 18px;
  height: 18px;
  margin-bottom: 4px;
}

.sidebar .left-nav .nav-list .list-item .sub-list li.sub_li{line-height: 18px;padding-top:10px;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;}



.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_store_order{ color: var(--bs-secondary);background: url("../images/icons/sub_so.png") no-repeat;
background-size: 18px 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_store_order:hover{ color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_store_order span{margin-left: 30px;color: var(--bs-secondary);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_store_order span:hover{margin-left: 30px;color: var(--bs-blue);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_store_order i.sub_warning{
  background-color: #ff6f3d !important;  color: var(--bs-white) !important;  font-size: 12px;  height: 18px;  line-height: 18px;float: right;border-radius: 9px;padding: 0px 5px;font-style: normal;font-weight: 500;min-width: 26px;text-align: center;}





.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_po{ color: var(--bs-secondary);background: url("../images/icons/sub_po.png") no-repeat;
background-size: 18px 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_po:hover{ color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_po span{margin-left: 30px;color: var(--bs-secondary);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_po span:hover{margin-left: 30px;color: var(--bs-blue);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_po i.sub_warning{
  background-color: #ff6f3d !important;  color: var(--bs-white) !important;  font-size: 12px;  height: 18px;  line-height: 18px;float: right;border-radius: 9px;padding: 0px 5px;font-style: normal;font-weight: 500;min-width: 26px;text-align: center;}






.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wo{ color: var(--bs-secondary);background: url("../images/icons/sub_wo.png") no-repeat;
background-size: 18px 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wo:hover{ color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wo span{margin-left: 30px;color: var(--bs-secondary);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wo span:hover{margin-left: 30px;color: var(--bs-blue);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wo i.sub_warning{
  background-color: #ff6f3d !important;  color: var(--bs-white) !important;  font-size: 12px;  height: 18px;  line-height: 18px;float: right;border-radius: 9px;padding: 0px 5px;font-style: normal;font-weight: 500;min-width: 26px;text-align: center;}






.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_in{ color: var(--bs-secondary);background: url("../images/icons/sub_in.png") no-repeat;
background-size: 18px 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_in:hover{ color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_in span{margin-left: 30px;color: var(--bs-secondary);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_in span:hover{margin-left: 30px;color: var(--bs-blue);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_in i.sub_warning{
  background-color: #ff6f3d !important;  color: var(--bs-white) !important;  font-size: 12px;  height: 18px;  line-height: 18px;float: right;border-radius: 8px;padding: 0px 5px;font-style: normal;font-weight: 500;min-width: 26px;text-align: center;}







.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wallet{ color: var(--bs-secondary);background: url("../images/icons/sub_wallet.png") no-repeat;
background-size: 18px 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wallet:hover{ color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wallet span{margin-left: 30px;color: var(--bs-secondary);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_wallet span:hover{margin-left: 30px;color: var(--bs-blue);font-size: 16px;line-height: 18px;}




.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mi{ color: var(--bs-secondary);background: url("../images/icons/sub_mi.png") no-repeat;
background-size: 18px 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mi:hover{ color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mi span{margin-left: 30px;color: var(--bs-secondary);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mi span:hover{margin-left: 30px;color: var(--bs-blue);font-size: 16px;line-height: 18px;}



.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mo{ color: var(--bs-secondary);background: url("../images/icons/sub_mo.png") no-repeat;
background-size: 18px 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mo:hover{ color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mo span{margin-left: 30px;color: var(--bs-secondary);font-size: 16px;line-height: 18px;}
.sidebar .left-nav .nav-list .list-item .sub-list li a.sub_mo span:hover{margin-left: 30px;color: var(--bs-blue);font-size: 16px;line-height: 18px;}










.sidebar .left-nav .nav-list .list-item .sub-list li.active{line-height: 18px;padding-left: 10px;color: var(--bs-blue);}
.sidebar .left-nav .nav-list .list-item .sub-list li.active span{margin-left: 20px!important;pline-height: 20px;padding: 10px;color: var(--bs-blue)!important;}




.container-fluid {
  flex-grow: 1;
  height: 100vh;
  overflow-y: auto;
  padding: 0;
  margin: 0 30px;
}

/**顶部导航部分**/
.navbar {
  height: 100px;
}
.navbar .page-breadcrumb .title {
  font-size: 24px;
  font-weight: bold;
}
.navbar .page-breadcrumb .breadcrumb .breadcrumb-item {
  color: gray;
}
.navbar .page-breadcrumb .breadcrumb .breadcrumb-item a {
  color: gray;
  text-decoration: none;
}
.navbar .page-breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #111;
  text-decoration: underline;
}
.navbar .icons .border {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  position: relative;
  margin: 0 10px;
  cursor: pointer;
}
.navbar .icons .border:hover{border-color: var(--bs-gray)!important;}
.navbar .icons .border.has-dot::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background-color: #FF6F3D;
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.navbar .icons .border .dropdown-menu .dropdown-item {
  font-size: 16px;
  padding-right: 32px;
  border-radius: 5px;
}
.navbar .icons .border .dropdown-menu .dropdown-item img {
  width: 42px;
  height: 28px;
  margin-right: 16px;
  margin-top: -2px;
}
.navbar .icons .border .dropdown-menu{
width: 292px;
height: 188px;
background: #FFFFFF;
box-shadow: 0px 4px 30px -10px rgba(0,0,0,0.2);
border-radius: 10px;
--bs-dropdown-border-color: none;
--bs-dropdown-padding-y: 0;
margin-top: 5px;
padding: 8px;
}

.navbar .icons .border .dropdown-menu .lan_choosed{
width: 18px;
height: 18px;
background: url("../images/icons/ok.png") no-repeat;
background-size: 18px 18px;
position: absolute;
right: 17px;
top: 20px;
z-index: 2001;
}
.navbar .icons .border .dropdown-menu li{position: relative;}
.navbar .icons .border .bi {
  color: var(--bs-gray);
  font-size: 24px;
}
.navbar .nav-user{border-left: 1px solid #D9DCDC;padding-left:40px;margin-left:32px!important;cursor: pointer;}
.navbar .nav-user .avatar {
  width: 50px;
  height: 50px;
}
.navbar .nav-user .info .nickname {
  font-size: 16px;
  font-weight: bold;
}
.navbar .nav-user .info .username {
  color: var(--bs-secondary);
}
.navbar .nav-user .dropdown-item img {
  width: 18px;
  height: 18px;
  margin-left: 10px;
}
.navbar .nav-user .dropdown-item{line-height: 42px;}
.navbar .nav-user .dropdown-item:hover {
  color: var(--bs-blue);
  line-height: 42px;
  border-radius: 5px;
}
.navbar .nav-user  .dropdown-menu{
width: 292px;
height: 296px;
background: #FFFFFF;
box-shadow: 0px 4px 30px -10px rgba(0,0,0,0.2), 0px 15px 50px -20px #EDEFF3;
border-radius: 10px;
--bs-dropdown-border-color: none;
--bs-dropdown-padding-y: 0;
margin-top: 5px;
padding: 8px;
}
/* 仪表板 */
.dashboard .account-icon {
  width: 54px;
  height: 54px;
  background: #111111;
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  font-size: 20px;
}
.dashboard .title {
  font-size: 14px;
}
.dashboard .number {
  font-size: 22px;
  font-weight: 600;
}

/* 设置页面 */
.settings .nav {
  width: 340px;
  border-right: 1px solid var(--bs-border-color);
  padding-right: 20px;
  flex-shrink: 0;
}
.settings .nav .nav-item {
  margin-bottom: 20px;
}
.settings .nav .nav-item .nav-link {
  height: 100%;
  border-radius: var(--bs-border-radius);
  padding: 15px;
  display: flex;
  color: #111111;
  flex-wrap: nowrap;
}
.settings .nav .nav-item .nav-link .icon {
  width: 54px;
  height: 54px;
  margin-right: 15px;
  font-size: 24px;
  text-align: center;
  line-height: 54px;
  background-color: #f3f6f7;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
}
.settings .nav .nav-item .nav-link.active {
  background: #f7f9fa;
}
.settings .nav .nav-item .nav-link.active .icon {
  color: var(--bs-white);
  background-color: var(--bs-blue);
}
.settings .nav .nav-item .nav-link .title {
  font-size: 18px;
}
.settings .nav .nav-item .nav-link .sub-title {
  color: var(--bs-secondary);
}
.settings .tab-content {
  flex: 1;
  padding: 20px;
}
.settings .tab-content .tab-pane h3 {
  font-size: 22px;
  border-bottom: 1px solid var(--bs-border-color);
  padding-bottom: 18px;
}

/* 头像上传 */
.avatar-upload {
  width: 140px;
  height: 140px;
  margin: 30px auto;
  position: relative;
}
.avatar-upload .bi {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  color: var(--bs-white);
  background-color: var(--bs-blue);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
}
.avatar-upload label {
  width: 100%;
  height: 100%;
}
.avatar-upload img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.address .bi-geo-alt {
  font-size: 16px;
}
.address .name {
  font-size: 16px;
}
.address .actions .bi {
  font-size: 18px;
}
.address .actions .bi:hover {
  color: var(--bs-blue);
}

.address-add {
  height: 60px;
  line-height: 60px;
  background: #f7f9fa;
  border-radius: var(--bs-border-radius);
  text-align: center;
}
.address-add a {
  text-decoration: none;
  color: var(--bs-blue);
}

.security .name {
  font-size: 16px;
}
.security .icon {
  font-size: 18px;
}
.security .edit {
  color: var(--bs-blue);
  font-size: 16px;
}

.wallet-card {
  height: 260px;
  border-radius: var(--bs-border-radius);
}
.wallet-card .icon {
  width: 54px;
  height: 54px;
  color: var(--bs-white);
  text-align: center;
  line-height: 54px;
  border-radius: 50%;
  font-size: 20px;
}
.wallet-card .title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}
.wallet-card .title span {
  color: #939598;
  font-size: 14px;
  margin-left: 10px;
}
.wallet-card .amount {
  font-weight: 600;
  font-size: 28px;
  color: #191514;
  line-height: 40px;
}
.wallet-card .btn {
  margin-top: 15px;
  padding: 0.375rem 1.2rem;
}

.withdraw .title {
  font-weight: 600;
  font-size: 22px;
  color: #191514;
  line-height: 26px;
  text-transform: uppercase;
}
.withdraw form {
  width: 580px;
  margin: 30px auto;
}
.withdraw form .custom-amount {
  background-color: #f3f6f7;
  border-radius: var(--bs-border-radius);
  padding: 16px;
}
.withdraw form .custom-amount span {
  color: var(--bs-blue);
  font-size: 20px;
  font-weight: 600;
}
.withdraw form .custom-amount input {
  border: none;
  background-color: transparent;
  margin-left: 6px;
  font-size: 20px;
}
.withdraw form .custom-amount input::-moz-placeholder {
  color: #c4c5c5;
  font-weight: 300;
}
.withdraw form .custom-amount input::placeholder {
  color: #c4c5c5;
  font-weight: 300;
}
.withdraw form .custom-amount input:focus {
  outline: none; /* 移除默认边框 */
}
.withdraw form .agree {
  text-align: center;
}
.withdraw form .agree a {
  color: #111111;
  text-decoration: none;
}
.withdraw form .amount {
  height: 60px;
  line-height: 60px;
  border-radius: var(--bs-border-radius);
  font-size: 30px;
  background-color: #f3f6f7;
  text-align: center;
  color: var(--bs-blue);
  font-weight: 600;
  cursor: pointer;
}
.withdraw form .amount.active {
  background-color: var(--bs-blue);
  color: #ffffff;
}
.withdraw form .amount span {
  font-size: 16px;
  padding-right: 5px;
}

.nav-line .nav-item a.nav-link {
  color: var(--bs-secondary);
  border-bottom: 1px solid var(--bs-secondary);
}
.nav-line .nav-item a.nav-link.active {
  margin-top: -1px;
  color: var(--bs-blue);
  border-bottom: 3px solid var(--bs-blue);
}

.sku-manger .cover {
  width: 70px;
  height: 70px;
}
.sku-manger .sku-cover {
  width: 30px;
  height: 30px;
}
.sku-manger .bg-light-gray {
  line-height: 30px;
}
.sku-manger a {
  color: var(--bs-secondary);
}
.sku-manger a:hover {
  color: var(--bs-blue);
}

.bg-light-gray {
  background-color: #f7f9fa !important;
}

.my-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  align-items: center;
}
.my-nav .nav-item .nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--bs-secondary);
}
.my-nav .nav-item .nav-link.active {
  color: var(--bs-black);
  border-bottom: 2px solid var(--bs-blue);
}
.my-nav .nav-item .nav-link i:hover {
  color: var(--bs-blue);
}

.wholesale-tile {
  background-image: url("../images/express.png");
  background-size: 331px 512px;
  background-repeat: no-repeat;
  background-position: 90% -30%;
}

.sourcing-btn {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
  width: 260px;
  background: linear-gradient(270deg, #f7f9fa 0%, #e3ebff 100%);
  font-size: 16px;
  text-align: start;
}
.sourcing-btn .bi {
  color: var(--bs-white);
  width: 40px;
  line-height: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bs-blue);
  display: inline-block;
  text-align: center;
  margin-left: 4px;
}
.sourcing-btn a {
  text-decoration: none;
  color: var(--bs-black);
}
.sourcing-btn a:hover{
  text-decoration: none;
  color: var(--bs-blue);
}

.bg-image-box {
  background-image: url("../images/box.png");
  background-repeat: no-repeat;
  background-position:3% 0%;
}

.bg-image-plane {
  background-image: url("../images/plane.png");
  background-repeat: no-repeat;
  background-position: 100% 3%;
  background-size: 225px 347px;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

#spec-list {
  height: 200px;
  overflow: hidden;
}

.product-list {
  position: relative;
}
.product-list .child:nth-child(n+4) {
  display: none;
}
.product-list .product-more {
  color: var(--bs-secondary);
  border: 1px solid var(--bs-border-color);
  border-top: none;
  border-radius: 0 0 3px 3px;
  height: 14px;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  padding: 0 8px;
  cursor: pointer;
}

.product-list.show-all .child:nth-child(n+4) {
  display: block;
}

.spec-more {
  border-top: 1px solid var(--bs-border-color);
  position: relative;
  margin-top: -29px;
  height: 10px;
  box-shadow: 0 -30px 30px -3px rgba(255, 255, 255, 0.5);
}
.spec-more .down {
  cursor: pointer;
  margin-left: 60px;
  padding: 0 20px;
  height: 15px;
  line-height: 12px;
  border: 1px solid var(--bs-border-color);
  border-top: none;
  border-radius: 0 0 3px 3px;
  color: var(--bs-border-color);
  background-color: var(--bs-white);
  margin-top: -1px;
  position: absolute;
}

/*buchong*/
.search_box{width: 776px;}
.search_btn{
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1.8rem;
    --bs-btn-font-size: 1.25rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
  }
.recommended_box{width: 1220px;
  margin: 0 auto;
  background: #FFFFFF;
box-shadow: 0px 20px 40px -15px #EDEEF2;
border-radius: 10px;
padding: 15px 30px;
}
.mt-160 {
  margin-top: 160px !important;
}
.mt-130 {
  margin-top: 130px !important;
}

.from_1688 {
  color: #1958F7 !important;
  border: 1px solid #1958F7!important;
  border-radius: 4px;
  font-size: 12px;
  padding: 1px 3px;
}

.from_jd {
  color: #FF5252 !important;
  border: 1px solid #FF5252!important;
  border-radius: 4px;
  font-size: 12px;
  padding: 1px 3px;
}

.from_yw {
  color: #FE8125 !important;
  border: 1px solid #FE8125!important;
  border-radius: 4px;
  font-size: 12px;
  padding: 1px 3px;
}
.pro_box{cursor: pointer;}
.pro_box_text a{color: #111;text-decoration: none;}
.pro_box_text a:hover{text-decoration: underline;}
.pro_big_title{font-weight: 500;}
.pro_info img{display: block;margin: 0 auto;}

.sp_select{float: left;width: 260px;text-align: center;padding:10px 0;}
.sp_select a{color: #111;text-decoration: none;}
.sp_select a:hover{text-decoration: underline;color: var(--bs-blue);cursor: pointer;}
.sp_select.active{float: left;border-radius: 30px;background: #F2F4FA;color: var(--bs-blue);}



.set_user{background: url("../images/icons/set_user.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;}
.active .set_user{background: url("../images/icons/set_user_blue.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;}

.set_address{background: url("../images/icons/set_address.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;
  min-height: 54px;
}
.active .set_address{background: url("../images/icons/set_address_blue.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;
  min-height: 54px;
}



.set_account{background: url("../images/icons/set_account.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;
  min-height: 54px;
}
.active .set_account{background: url("../images/icons/set_account_blue.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;
  min-height: 54px;
}


.set_terms{background: url("../images/icons/set_terms.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;
  min-height: 54px;
}
.active .set_terms{background: url("../images/icons/set_terms_blue.png") no-repeat;
  background-size: 54px;
  padding-left: 68px;
  min-height: 54px;
}
.input-group {
  margin-bottom: 10px; /* 可以根据需要调整数值 */
}

.set_box{min-height: 800px;}
.ps_box{min-height: 900px;}


/**3月10日更新 begin**/
.inventory_pro_box_window {
  width: 1728px;
  max-height: 360px;
  overflow: scroll;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.inventory_pro_box {
  background: #f7f9fa !important;
  padding: 20px;
  width: 728px;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
}

.inventory_pro_box .left_box {
  width: 70px;
  flex-shrink: 0;
}

.inventory_pro_box .right_box {
  flex: 1;
  padding-left: 8px;
}

.inventory_pro_box .right_box .title {
  color: #111;
  font-weight: 500;
}

.inventory_pro_box .right_box .sub_title {
  color: #888;
}

.inventory_pro_box .right_box .sub_title_price {
  color: #111;
}

.inventory_pro_box .left_box img {
  display: block;
}

.inventory_pro_box .right_box_plus {
  background: #fff;
  margin-top: 14px;
}
/**3月10日更新 end**/


/****3.13 update loading begin ****/

/****3.13 update loading end ****/

/* 表格字段居中对齐 */
.table-field {
  text-align: center;
}

/* 地址完整显示 */
.shipping-address {
  display: flex;
  align-items: flex-start;
  text-align: left;
  line-height: 1.4;
}

.shipping-address .address-text {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 5px;
}

.shipping-address a {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-block;
  position: relative;
}

.shipping-address a::before {
  content: "Edit Address";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background-color: rgba(28, 26, 26, 0.615);
  color: white;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  margin-bottom: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.shipping-address a:hover::before {
  opacity: 1;
  visibility: visible;
}

/* 商品标题两行显示 */
.f-16.fw-500.pb-2 {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  width: 50%;
}

.f-16.fw-500.pb-2 .title-text {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 5px;
}

/* 复制按钮样式 */
.copy-btn {
  padding: 0;
  margin-left: 8px;
  color: var(--bs-secondary);
  font-size: 14px;
  vertical-align: middle;
  position: relative;
}

.copy-btn:hover {
  color: var(--bs-blue);
}

.copy-btn i {
  font-size: 16px;
}

.copy-btn::after {
  content: "Copied!";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  margin-bottom: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.copy-btn.copied::after {
  opacity: 1;
  visibility: visible;
}

.copy-btn.copied i {
  color: var(--bs-blue);
}

.product-detail .store {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.product-detail .store .store-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.product-detail .store .information {

}

.product-detail .store .information .title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 16px;
  color: #111111;
  line-height: 22px;
  text-align: left;
  font-style: normal;
}

.product-detail .store .information .title .label {
  background: linear-gradient( 180deg, #E29044 0%, #E4944F 100%);
  border-radius: 9px;
  font-family: PingFangSC, PingFang SC;
  font-weight: normal;
  font-size: 12px;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  padding: 0 7px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.product-detail .store .information .title .label .icon {
  width: 8px;
  height: 10px;
}

.product-detail .store .information .rating {
  margin-top: 5px;
}

.product-detail .store .information .rating .icon {
  width: 16px;
  height: 16px;
}







