/* 注册自定义字体 - 放在CSS最开头，确保字体优先加载 */
@font-face {
  font-family: 'MaoKenWangXingYuan';
  /* 指向根目录的字体文件，./ 表示项目根目录 */
  src: url('./ChuangKeTieJinGangTi-2.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* 优化字体加载体验，避免文字闪烁 */
}

/* 页面基础样式 */
.main-title {
  font-size: 0.28rem;
  color: #171725;
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
}
.cart-des {
  padding: 0.1rem;
  border-radius: 0.03rem;
  border: 1px solid #0080FF;
  box-sizing: border-box;
  overflow-y: auto;
  margin-bottom: 0.24rem;
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
}
.cart-des * {
  all: revert;
}
.main-content-box {
  box-sizing: border-box;
  padding-bottom: 0.1rem;
  width: 100%;
  border-radius: 0.03rem;
}
.search-input {
  width: 3.2rem;
}
.search-input .el-input__inner {
  height: 0.46rem !important;
  line-height: 0.46rem;
}
.search-btn {
  margin-left: 0.1rem;
  width: 0.8rem;
  height: 0.46rem;
  background: var(--color-primary);
  border-radius: 0.03rem;
  border: none;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.9);
}
.second-desc {
  height: 0.4rem;
  font-size: 0.14rem;
  color: var(--color-danger);
  background: rgba(220, 45, 45, 0.1);
  margin-top: 0.24rem;
  border-radius: 0.04rem;
}
.shopping-box {
  box-sizing: border-box;
  margin-top: 0.24rem;
  min-height: 3rem;
}
.goods-list-div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 0.2rem;
  column-gap: 0.2rem;
}
.shopping-item {
  position: relative;
  box-sizing: border-box;
  min-height: 2.75rem;
  border: 1px solid #EDEDED;
  border-radius: 0.08rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0.16rem;
}
.shopping-item .client-box {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0080FF; /* 同步适配导航按钮颜色 */
  padding: 0 0.08rem;
  color: #fff;
  font-size: 14px;
  border-radius: 0px 0px 0px 8px;
}
.shopping-item .goods-name {
  margin-top: 0.18rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.3rem;
  padding: 0 0.16rem;
}
.shopping-item .goods-name .goods-name-text {
  font-size: 16px;
  font-weight: 700;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
}
.shopping-item .goods-name .qty-box {
  font-size: 12px;
  color: #CFD2E1;
  flex-shrink: 0;
  position: relative;
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
}
.shopping-item .goods-name .qty-box img {
  position: absolute;
  top: -0.2rem;
  right: 0;
  width: 0.55rem;
  height: 0.48rem;
}
.shopping-item .goods-name.sold-out .goods-name-text {
  color: #CFD2E1;
}
.shopping-item .goods-name.sold-out .qty-box {
  width: 0.55rem;
}
.shopping-item .goods-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shopping-item .goods-active {
  margin-top: 0.12rem;
  padding: 0 0.16rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.08rem;
  row-gap: 0.08rem;
}
.shopping-item .goods-active .active-name {
  font-size: 12px;
  color: #0080FF; /* 同步适配导航按钮颜色 */
  background: rgba(135, 206, 250, 0.1);
  padding: 0.03rem 0.08rem;
  border-radius: 2px;
}
.shopping-item .goods-tag {
  box-sizing: border-box;
  height: 0.36rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.08rem;
  column-gap: 0.16rem;
  background: rgba(135, 206, 250, 0.15); /* 同步适配导航按钮颜色 */
  padding: 0 0.16rem;
}
.shopping-item .goods-tag .tag-item {
  position: relative;
  font-size: 12px;
  flex-shrink: 0;
  color: #0080FF; /* 同步适配导航按钮颜色 */
  padding-left: 0.08rem;
}
.shopping-item .goods-tag .tag-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.04rem;
  height: 0.04rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(135, 206, 250, 0.45); /* 同步适配导航按钮颜色 */
}
.shopping-item .goods-description {
  box-sizing: border-box;
  padding: 0.24rem 0.21rem 0.22rem 0.16rem;
  max-height: 400px;
  min-height: 150px;
  flex: 1;
  overflow: auto;
  font-size: 14px;
  white-space: normal;
  background: #FFF;
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
}
.shopping-item .goods-description * {
  all: revert;
}
.shopping-item .goods-description ul {
  padding-left: 0.16rem;
  margin: 0;
}
.shopping-item .goods-description img {
  max-width: 100%;
}
.shopping-item .goods-description::-webkit-scrollbar {
  width: 0px;
}
.shopping-item .goods-description:hover::-webkit-scrollbar {
  width: 4px;
}
.shopping-item .price-box {
  margin-top: 0.18rem;
  padding: 0 0.16rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.1rem;
}
.shopping-item .price-box .price-box-left {
  text-align: right;
  display: flex;
  align-items: flex-end;
  column-gap: 0.04rem;
}
.shopping-item .price-box .original-price {
  font-size: 12px;
  color: #CFD2E1;
  text-decoration: line-through;
}
.shopping-item .price-box .item-price {
  font-size: 24px;
  color: var(--color-price-text);
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
}
.shopping-item .price-box .item-price .item-price-prefix {
  font-size: 12px;
}
.shopping-item .price-box .item-price .item-price-cycle {
  font-size: 14px;
  color: #485169;
}
/* 购买按钮 - 修改为#0080FF */
.shopping-item .price-box .buy-btn {
  height: 0.3rem;
  border-radius: 8px;
  background-color: #0080FF; /* 购买按钮背景色 */
  color: #ffffff; /* 文字白色，提升可读性 */
  border: none; /* 去除默认边框 */
  cursor: pointer; /* 鼠标悬浮手型 */
}
.tips {
  color: #8692b0;
  font-size: 0.13rem;
  text-align: center;
}
.domain-box .domain-search {
  margin-top: 0.32rem;
  position: relative;
  display: flex;
  align-items: center;
}
.domain-box .domain-search .el-input {
  height: 0.56rem;
}
.domain-box .domain-search .el-input .el-input__inner {
  height: 0.56rem;
  line-height: 0.56rem;
}
.domain-box .domain-search .el-input-group__append {
  padding: 0;
  background: #ffffff;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.domain-box .domain-search .input-btn {
  width: 1.7rem;
}
.domain-box .domain-search .suffix-box {
  width: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2B2B2B;
  font-size: 0.16rem;
  cursor: pointer;
}
.domain-box .domain-search .suffix-box .el-icon-arrow-down {
  font-size: 0.14rem;
  color: #8692b0;
  margin-left: 0.1rem;
}
.domain-box .domain-search .search-button {
  height: 0.56rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 0 8px 8px 0; /* 搜索按钮圆角 */
  background: #0080FF; /* 同步适配导航按钮颜色 */
  color: #ffffff;
  font-size: 0.16rem;
}
.domain-box .domain-search .suffix-list {
  z-index: 2;
  position: absolute;
  top: 0.56rem;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2.7rem);
  padding: 0.3rem 0.23rem 0.3rem 0.46rem;
  background: #feffff;
  box-shadow: 0rem 0.05rem 0.1rem 0.01rem rgba(0, 0, 0, 0.1);
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
}
.domain-box .domain-search .suffix-list .suffix-item {
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  width: 1.1rem;
  height: 0.4rem;
  border: 0.01rem solid #e6eaed;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.16rem;
  color: #2B2B2B;
  cursor: pointer;
  border-radius: 8px; /* 后缀选项圆角 */
}
.domain-box .domain-search .suffix-list .suffix-item:hover {
  background: rgba(135, 206, 250, 0.08); /* 同步适配导航按钮颜色 */
}
.domain-box .domain-search .suffix-list .suffix-active {
  background: rgba(135, 206, 250, 0.08); /* 同步适配导航按钮颜色 */
  border: 0.01rem solid #0080FF; /* 同步适配导航按钮颜色 */
  color: #0080FF; /* 同步适配导航按钮颜色 */
}
.domain-box .batch-search-box {
  margin-top: 0.32rem;
}
.domain-box .batch-search-box .batch-tips {
  box-sizing: border-box;
  color: #8692b0;
  font-size: 0.14rem;
  padding: 0.16rem;
  border-radius: 0.04rem;
  border: 0.01rem solid #EAEAEA;
}
.domain-box .batch-search-box .batch-tips .input-batch .el-textarea__inner {
  height: 1.3rem;
  border: none;
  padding: 0;
}
.domain-box .batch-search-box .batch-btn {
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.domain-box .batch-search-box .batch-btn .upload-btn {
  display: flex;
  align-items: center;
  column-gap: 0.08rem;
  font-size: 0.12rem;
  color: #0080FF; /* 同步适配导航按钮颜色 */
  cursor: pointer;
}
.domain-box .batch-search-box .batch-btn .el-button {
  height: 0.36rem;
  border-radius: 8px; /* 批量查询按钮圆角 */
  background-color: #0080FF; /* 同步适配导航按钮颜色 */
  border: none;
  color: #ffffff;
}
.domain-box .domain-content {
  margin-top: 0.24rem;
  display: flex;
  column-gap: 0.4rem;
}
.domain-box .domain-content .domain-left {
  flex: 1;
}
.domain-box .domain-content .domain-left .domain-one {
  height: 100%;
}
.domain-box .domain-content .domain-left .domain-one .domain-one-list {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.domain-box .domain-content .domain-left .domain-one .search-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.16rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .domain-one .start-search {
  margin-top: 0.24rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 93%;
  border-radius: 8px;
  border: 0.01rem solid #EAEAEA;
}
.domain-box .domain-content .domain-left .domain-one .start-search img {
  width: 0.58rem;
  height: 0.57rem;
}
.domain-box .domain-content .domain-left .domain-one .start-search p {
  text-align: center;
  margin-top: 0.19rem;
  font-size: 0.18rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .domain-one .domain-list {
  margin-top: 0.24rem;
  background: #ffffff;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  flex: 1;
  overflow-y: auto;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item {
  height: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.01rem solid #ededed;
  padding: 0 0.33rem 0 0.3rem;
  transition: background-color 0.25s ease;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item:hover {
  background-color: #f5f7fa;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-left .domain-name {
  font-size: 0.16rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-left .domain-status {
  margin-left: 0.42rem;
  font-size: 0.13rem;
  color: rgba(0, 0, 0, 0.6);
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right {
  display: flex;
  align-items: center;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right .premium-type {
  padding: 0.06rem 0.12rem;
  margin-right: 0.25rem;
  font-size: 0.14rem;
  color: #8692b0;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  background: #f3f3f5;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right .whois-box {
  font-size: 0.14rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right .whois-box:hover {
  color: #0080FF; /* 同步适配导航按钮颜色 */
  cursor: pointer;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right .pirce-box {
  cursor: pointer;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right .pirce-box .original-price {
  color: #8692b0;
  font-size: 0.12rem;
  text-decoration: line-through;
  margin-right: 0.17rem;
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right .pirce-box .now-price {
  font-size: 0.12rem;
  color: var(--color-price-text);
}
.domain-box .domain-content .domain-left .domain-one .domain-list .domain-item .item-right .add-btn {
  margin-left: 0.4rem;
  height: 0.36rem;
  border-radius: 8px; /* 加入购物车按钮圆角 */
  background-color: #0080FF; /* 同步适配导航按钮颜色 */
  border: none;
  color: #ffffff;
}
.domain-box .domain-content .domain-left .batch-box {
  height: 100%;
}
.domain-box .domain-content .domain-left .batch-box .batch-main {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-search {
  margin-top: 0.24rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 0.01rem solid #EAEAEA;
  border-radius: 0.08rem;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-search img {
  width: 0.58rem;
  height: 0.57rem;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-search p {
  text-align: center;
  margin-top: 0.19rem;
  font-size: 0.18rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .search-title {
  font-size: 0.16rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .avail-list {
  margin-top: 0.24rem;
  background: #ffffff;
  border: 0.01rem solid #EAEAEA;
  border-radius: 0.08rem 0.08rem 0 0;
  border-bottom: none;
  max-height: 5rem;
  overflow-y: auto;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .el-collapse {
  border: none;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item {
  height: 0.64rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.01rem solid #EAEAEA;
  padding: 0 0.24rem;
  transition: background-color 0.25s ease;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item:hover {
  background-color: #f5f7fa;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item:nth-last-of-type(1) {
  border-bottom: none;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-left .domain-name {
  font-size: 0.14rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-left .domain-status {
  margin-left: 0.42rem;
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.6);
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right {
  display: flex;
  align-items: center;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .premium-type {
  padding: 0.06rem 0.12rem;
  margin-right: 0.25rem;
  font-size: 0.14rem;
  color: #8692b0;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  background: #f3f3f5;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .whois-box {
  font-size: 0.14rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .whois-box:hover {
  color: #0080FF; /* 同步适配导航按钮颜色 */
  cursor: pointer;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .pirce-box {
  cursor: pointer;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .pirce-box .oir-price {
  color: #8692b0;
  font-size: 0.14rem;
  text-decoration: line-through;
  margin-right: 0.17rem;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .pirce-box .now-price {
  font-size: 0.12rem;
  color: var(--color-price-text);
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .pirce-box .el-icon-arrow-down {
  font-size: 0.12rem;
  color: #8692b0;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .add-btn {
  margin-left: 0.4rem;
  border-radius: 8px; /* 批量加入按钮圆角 */
  background-color: #0080FF; /* 同步适配导航按钮颜色 */
  border: none;
  color: #ffffff;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .all-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0.24rem;
  height: 0.64rem;
  background: #F9F9F9;
  color: #2B2B2B;
  font-size: 0.14rem;
  border: 0.01rem solid #EAEAEA;
  border-top: none;
  border-radius: 0 0 0.08rem 0.08rem;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .all-check .el-button {
  color: #ffffff;
  font-size: 0.14rem;
  background: #0080FF; /* 同步适配导航按钮颜色 */
  border-radius: 8px; /* 批量全选按钮圆角 */
  border: none;
}
.domain-box .domain-content .domain-left .batch-box .unavail-title {
  width: 100%;
  font-size: 0.16rem;
  color: #2B2B2B;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.domain-box .domain-content .domain-left .batch-box .unavail-title .open-text {
  cursor: pointer;
  font-size: 0.14rem;
  color: #0080FF; /* 同步适配导航按钮颜色 */
}
.domain-box .domain-content .domain-left .batch-box .unavail-list {
  margin-top: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.08rem;
  border: 0.01rem solid #e6e7eb;
}
.domain-box .domain-content .domain-left .batch-box .unavail-list .unavail-item {
  width: 50%;
  height: 0.64rem;
  box-sizing: border-box;
  padding: 0.17rem 0.24rem;
  border-bottom: 0.01rem solid #ededed;
}
.domain-box .domain-content .domain-left .batch-box .unavail-list .unavail-item:nth-child(odd) {
  position: relative;
}
.domain-box .domain-content .domain-left .batch-box .unavail-list .unavail-item:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.01rem;
  height: 0.32rem;
  background: #ededed;
}
.domain-box .domain-content .domain-left .batch-box .unavail-list .unavail-item .unavail-name {
  font-size: 0.14rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-left .batch-box .unavail-list .unavail-item .unavail-reason {
  margin-left: 0.4rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.14rem;
}
.domain-box .domain-content .domain-right {
  box-sizing: border-box;
  width: 5.33rem;
  height: 7rem;
  flex-shrink: 0;
}
.domain-box .domain-content .domain-right .car-top {
  display: flex;
  justify-content: space-between;
  color: #2B2B2B;
  font-size: 0.16rem;
}
.domain-box .domain-content .domain-right .car-top .clear-car {
  cursor: pointer;
  color: #A2A2A2;
}
.domain-box .domain-content .domain-right .car-top .clear-car .icon {
  fill: #A2A2A2;
  margin-right: 0.08rem;
}
.domain-box .domain-content .domain-right .car-top .clear-car:hover {
  color: var(--color-danger);
}
.domain-box .domain-content .domain-right .car-top .clear-car:hover .icon {
  fill: var(--color-danger);
}
.domain-box .domain-content .domain-right .car-box {
  box-sizing: border-box;
  margin-top: 0.24rem;
  height: 5.3rem;
  border-radius: 8px;
  border: 0.01rem solid #EAEAEA;
  background: #ffffff;
  overflow-y: auto;
}
.domain-box .domain-content .domain-right .car-no {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.14rem;
  color: #8692b0;
}
.domain-box .domain-content .domain-right .car-list .car-item {
  padding: 0.16rem 0.32rem;
  border-bottom: 0.01rem solid #F6F7FB;
}
.domain-box .domain-content .domain-right .car-list .car-item:hover {
  background: #F7F8F9;
}
.domain-box .domain-content .domain-right .car-list .car-item:hover .car-del {
  display: block;
}
.domain-box .domain-content .domain-right .car-list .car-item:nth-last-of-type(1) {
  border-bottom: none;
}
.domain-box .domain-content .domain-right .car-list .car-item .caritem-top,
.domain-box .domain-content .domain-right .car-list .car-item .car-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.domain-box .domain-content .domain-right .car-list .car-item .car-bottom {
  color: #2B2B2B;
  margin-top: 0.16rem;
}
.domain-box .domain-content .domain-right .car-list .car-item .car-name {
  display: flex;
  align-items: center;
  column-gap: 0.16rem;
}
.domain-box .domain-content .domain-right .car-list .car-item .car-name .shop-name {
  font-size: 0.14rem;
  color: #2B2B2B;
}
.domain-box .domain-content .domain-right .car-list .car-item .car-del {
  display: none;
  cursor: pointer;
  color: #9E9E9E;
  font-size: 0.14rem;
}
.domain-box .domain-content .domain-right .car-list .car-item .car-del .icon {
  fill: #9E9E9E;
  margin-right: 0.04rem;
}
.domain-box .domain-content .domain-right .car-list .car-item .car-del:hover {
  color: var(--color-danger);
}
.domain-box .domain-content .domain-right .car-list .car-item .car-del:hover .icon {
  fill: var(--color-danger);
  margin-right: 0.04rem;
}
.domain-box .domain-content .domain-right .car-list .car-item .car-year .el-select {
  width: 0.96rem;
  height: 0.36rem;
  border-radius: 8px; /* 年份选择框圆角 */
  border-color: #0080FF; /* 同步适配导航按钮颜色 */
}
.domain-box .domain-content .domain-right .car-list .car-item .car-price {
  font-size: 0.14rem;
  color: var(--color-price-text);
}
.car-money {
  padding: 0 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.26rem;
  font-size: 0.16rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
}
.car-money .mon-right {
  font-size: 0.14rem;
}
.car-money .mon-right p {
  margin: 0;
}
.car-money .mon-right .original-price {
  text-decoration: line-through;
  color: #999;
}
.car-money .mon-right .original-price .hide {
  visibility: hidden;
}
.car-money .money-text {
  color: var(--color-price-text);
}
.car-settle {
  margin-top: 0.2rem;
}
.car-settle .settle-btn {
  width: 100%;
  background: #0080FF; /* 结算按钮（购买相关）修改为#0080FF */
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px !important; /* 结算按钮圆角 */
}
.price-list {
  display: flex;
  font-size: 0.14rem;
}
.price-list .price-item > div {
  width: 0.85rem;
  height: 0.45rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-list .price-item .price-year {
  background: #f8fafc;
}
.price-list .price-item .price-new {
  border-bottom: 1px solid #e6e7eb;
}
.blue-a-text {
  color: #0080FF; /* 同步适配导航按钮颜色 */
  cursor: pointer;
}
.up-dialog .el-dialog__header {
  display: none;
}
.up-dialog .el-dialog__body {
  padding: 0.6rem 0.8rem;
}
.up-dialog .dia-title {
  font-size: 0.24rem;
  color: #171725;
}
.up-dialog .dia-concent {
  margin-top: 0.3rem;
}
.up-dialog .dia-concent .up-tips {
  font-size: 0.16rem;
  color: #1e2736;
}
.up-dialog .dia-concent .file-box {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
}
.up-dialog .dia-concent .file-box .file-name {
  flex: 1;
  border: 0.01rem solid #e6e7eb;
  height: 0.46rem;
  line-height: 0.46rem;
  padding: 0 0.16rem;
  background: rgba(102, 107, 128, 0.08);
  font-size: 0.15rem;
  border-radius: 8px 0 0 8px; /* 文件输入框圆角 */
}
.up-dialog .dia-concent .file-box .file-name:focus {
  outline: none;
  border: 0.01rem solid #0080FF; /* 同步适配导航按钮颜色 */
}
.up-dialog .dia-concent .file-box .file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem 0.28rem;
  height: 0.46rem;
  box-sizing: border-box;
  color: #4e5259;
  font-size: 0.16rem;
  border: 0.01rem solid #0080FF; /* 同步适配导航按钮颜色 */
  margin-left: 0.1rem;
  cursor: pointer;
  border-radius: 0 8px 8px 0; /* 文件选择按钮圆角 */
  background-color: #ffffff;
}
.up-dialog .dia-foter {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.4rem;
}
.up-dialog .dia-foter .confim-btn,
.up-dialog .dia-foter .cancel-btn {
  min-width: 1.12rem;
  border: none;
  border-radius: 8px !important; /* 弹窗按钮圆角 */
  font-size: 0.16rem;
}
.up-dialog .dia-foter .confim-btn {
  background: #0080FF; /* 同步适配导航按钮颜色 */
  color: rgba(255, 255, 255, 0.9);
}
.up-dialog .dia-foter .cancel-btn {
  margin-left: 0.12rem;
  background: #e7e7e7;
  color: #1e2736;
}
.el-popover {
  max-width: none;
}

/* ========== 导航样式（修复点击抖动+像素级垂直居中+匹配示例+自定义字体+颜色#0080FF） ========== */
.search-box {
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.2rem;
}

/* 一级/二级导航容器 - 强制垂直居中+固定高度+自定义字体 */
.search-box .first-nav,
.search-box .sec-nav {
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
  display: flex;
  align-items: center; /* 容器级垂直居中核心 */
  justify-content: flex-start;
  font-size: 0.16rem;
  color: #1E2736;
  font-weight: 500;
  line-height: 1; /* 消除行高偏移 */
  min-height: 32px; /* 与按钮高度完全一致 */
  padding: 0;
  margin: 0;
}

/* 导航标题（一级/二级文字）- 精准对齐+自定义字体 */
.search-box .first-nav .nav-name,
.search-box .sec-nav .nav-name {
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
  flex-shrink: 0;
  margin-right: 0.16rem;
  line-height: 32px; /* 行高=按钮高度 */
  height: 32px; /* 高度=按钮高度 */
  vertical-align: middle; /* 基线对齐 */
  padding: 0; /* 清空默认内边距 */
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block; /* 强制块级，确保高度生效 */
}

/* 导航按钮容器 - 继承垂直居中 */
.search-box .first-nav .nav-box,
.search-box .sec-nav .nav-box {
  flex: 1;
  display: flex;
  align-items: center; /* 按钮组内部垂直居中 */
  column-gap: 0.12rem;
  row-gap: 0.12rem;
  flex-wrap: wrap;
  line-height: 1;
  padding: 0;
  margin: 0;
}

/* 导航内容按钮 - 普通态，颜色#0080FF相关（统一盒模型尺寸） */
.search-box .first-nav .nav-box .nav-item,
.search-box .sec-nav .nav-box .nav-item {
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
  border-radius: 6px !important;
  border: 1px solid #0080FF; /* 固定1px边框，所有状态保留 */
  padding: 0 14px; /* 上下内边距清空，靠height+line-height居中 */
  cursor: pointer;
  background-color: #FFFFFF;
  color: #0080FF; /* 导航按钮文字色改为#0080FF */
  transition: all 0.2s ease; /* 平滑过渡，无突兀抖动 */
  height: 32px; /* 固定高度=导航容器/标题高度 */
  line-height: 32px; /* 行高=高度，文字垂直居中 */
  display: inline-block; /* 确保高度/行高生效 */
  box-sizing: border-box; /* 边框包含在高度内，不额外占用空间 */
  margin: 0; /* 清空默认margin */
  vertical-align: middle; /* 与标题基线对齐 */
}

/* 导航内容按钮 - 选中态（核心修复：保留边框，统一尺寸） */
.search-box .first-nav .nav-box .nav-item.active,
.search-box .sec-nav .nav-box .nav-item.active {
  font-family: 'MaoKenWangXingYuan', sans-serif; /* 应用自定义导航字体 */
  border: 1px solid #0080FF; /* 保留1px边框，与普通态尺寸一致，消除抖动 */
  background-color: #0080FF; /* 选中态背景色 */
  color: #FFFFFF; /* 选中态文字白色，提升可读性 */
  height: 32px; /* 保持高度一致 */
  line-height: 32px; /* 保持行高一致 */
  padding: 0 14px; /* 保持内边距一致 */
}

/* 导航内容按钮 - hover非选中态，颜色#0080FF */
.search-box .first-nav .nav-box .nav-item:hover:not(.active),
.search-box .sec-nav .nav-box .nav-item:hover:not(.active) {
  border-color: #0080FF; /* hover边框色不变，保持尺寸一致 */
  color: #0080FF; /* hover文字色不变 */
  background-color: rgba(135, 206, 250, 0.05); /* 轻微高亮，提升体验 */
  /* 无尺寸变化，避免抖动 */
}

/* 导航按钮内竖线分隔符 - 不影响居中 */
.search-box .nav-item span {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.search-box .nav-item span::before {
  content: "|";
  margin: 0 4px;
  color: inherit;
  line-height: 1;
  vertical-align: middle;
}
.search-box .nav-item span:first-child::before {
  content: "";
  margin: 0;
}

/* 兜底：消除所有偏移 */
.search-box * {
  box-sizing: border-box;
  vertical-align: middle;
}

/* ========== 响应式样式（同步修复移动端抖动问题） ========== */
@media screen and (max-width: 915px) {
  .goods-list-div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .goods-list-div {
    grid-template-columns: repeat(1, 1fr);
  }
  .search-input .el-input__inner {
    height: 40px !important;
    line-height: 40px;
  }
  .search-btn {
    height: 40px;
    background-color: #0080FF; /* 移动端搜索按钮同步颜色 */
    color: #ffffff;
  }
  /* 移动端导航适配+保留自定义字体+颜色#0080FF+修复抖动 */
  .search-box .first-nav,
  .search-box .sec-nav {
    font-family: 'MaoKenWangXingYuan', sans-serif; /* 移动端保留自定义字体 */
    min-height: 28px;
  }
  .search-box .first-nav .nav-name,
  .search-box .sec-nav .nav-name {
    font-family: 'MaoKenWangXingYuan', sans-serif; /* 移动端保留自定义字体 */
    height: 28px;
    line-height: 28px;
  }
  .search-box .first-nav .nav-box .nav-item,
  .search-box .sec-nav .nav-box .nav-item {
    font-family: 'MaoKenWangXingYuan', sans-serif; /* 移动端保留自定义字体 */
    height: 28px;
    line-height: 28px;
    padding: 0 12px;
    border: 1px solid #0080FF; /* 移动端保留1px边框，统一尺寸 */
    color: #0080FF; /* 移动端导航按钮文字色 */
  }
  .search-box .first-nav .nav-box .nav-item.active,
  .search-box .sec-nav .nav-box .nav-item.active {
    border: 1px solid #0080FF; /* 移动端选中态保留边框，消除抖动 */
    background-color: #0080FF; /* 移动端导航按钮选中态背景色 */
    color: #ffffff;
    height: 28px;
    line-height: 28px;
    padding: 0 12px;
  }
  .search-box .first-nav .nav-box .nav-item:hover:not(.active),
  .search-box .sec-nav .nav-box .nav-item:hover:not(.active) {
    border-color: #0080FF;
    color: #0080FF;
  }
}