:root[theme='default'] {
  --color-primary: #F6821F;
  --color-price-text: #F6821F;
  --color-discount-num: #F6821F;
  --color-cash-num: #F6821F;
  --color-menu-bg: #fff;
  --color-menu-active-bg: rgba(246, 130, 31, 0.08);
  --color-menu-hover-bg: rgba(246, 130, 31, 0.08);
  --color-menu-text: #0A0A0A;
  --color-menu-text-active: #F6821F;
}

.template .el-aside {
  background: #fff !important;
  border-right: 1px solid #EAEAEA;
}
.template .el-aside .el-menu {
  background: #fff !important;
  border-right: 0;
}
.template .el-aside .el-menu-item,
.template .el-aside .el-submenu__title {
  color: #0A0A0A !important;
}
.template .el-aside .el-menu-item i,
.template .el-aside .el-submenu__title i {
  color: inherit !important;
}
.template .el-aside .el-menu-item:hover,
.template .el-aside .el-submenu__title:hover {
  color: #F6821F !important;
  background: rgba(246, 130, 31, 0.08) !important;
}
.template .el-aside .el-menu-item.is-active,
.template .el-aside .el-submenu.is-active > .el-submenu__title {
  color: #F6821F !important;
  background: rgba(246, 130, 31, 0.08) !important;
}
.template .el-aside .line {
  background: #EAEAEA !important;
}
.main-title {
  font-size: 0.28rem;
  color: #171725;
}
.cart-des {
  padding: 0.1rem;
  border-radius: 0.03rem;
  border: 1px solid #EAEAEA;
  box-sizing: border-box;
  overflow-y: auto;
  margin-bottom: 0.24rem;
}
.cart-des * {
  all: revert;
}
.cart-des:empty {
  display: none;
}
.main-content-box {
  box-sizing: border-box;
  width: 100%;
}
.search-box {
  display: flex;
  flex-direction: column;
  row-gap: 0.1rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.search-box .first-nav,
.search-box .sec-nav {
  display: flex;
  align-items: flex-start;
  font-size: 0.14rem;
  color: #171717;
}
.search-box .first-nav .nav-name,
.search-box .sec-nav .nav-name {
  flex-shrink: 0;
  width: 0.56rem;
  padding-top: 0.07rem;
  color: #8C8C8C;
  font-size: 0.13rem;
  line-height: 1.4;
}
.search-box .first-nav .nav-box,
.search-box .sec-nav .nav-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.search-box .first-nav .nav-box .nav-item,
.search-box .sec-nav .nav-box .nav-item {
  box-sizing: border-box;
  min-height: 0.32rem;
  border-radius: 0.06rem;
  border: 1px solid #EAEAEA;
  padding: 0.065rem 0.13rem;
  color: #4E5259;
  line-height: 1.35;
  background: #fff;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.search-box .first-nav .nav-box .nav-item:hover,
.search-box .sec-nav .nav-box .nav-item:hover {
  color: var(--color-primary);
  border-color: rgba(246, 130, 31, 0.35);
  background: #FFF8F1;
}
.search-box .first-nav .nav-box .nav-item.active,
.search-box .sec-nav .nav-box .nav-item.active {
  border-color: rgba(246, 130, 31, 0.48);
  color: var(--color-primary);
  background: #FFF4EA;
  box-shadow: none;
}
.second-desc {
  box-sizing: border-box;
  min-height: 0.4rem;
  padding: 0 0.14rem;
  font-size: 0.14rem;
  color: #4E5259;
  background: #FFF8F1;
  margin-top: 0.14rem;
  border: 1px solid rgba(246, 130, 31, 0.18);
  border-radius: 0.06rem;
}
.shopping-box {
  box-sizing: border-box;
  min-height: 3rem;
  margin-top: 0.2rem;
}
.goods-list-div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3.48rem, 1fr));
  gap: 0.18rem;
}
.shopping-item {
  position: relative;
  box-sizing: border-box;
  min-height: 2.98rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.08rem;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.shopping-item::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0.22rem;
  width: 0.38rem;
  height: 0.03rem;
  background: #F6821F;
  border-radius: 999px;
}
.shopping-item:hover {
  border-color: rgba(246, 130, 31, 0.45);
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.08);
  transform: translateY(-2px);
}
.shopping-item .client-box {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-primary);
  padding: 0 0.08rem;
  color: #fff;
  font-size: 14px;
  border-radius: 0px 0px 0px 8px;
  z-index: 3;
}
.shopping-item .client-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 0px 0px 0px 8px;
}
.shopping-item .client-box span {
  position: relative;
  z-index: 2;
}
.shopping-item .goods-name {
  margin-top: 0.34rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.3rem;
  padding: 0 0.22rem;
}
.shopping-item .goods-name .goods-name-text {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shopping-item .goods-name .qty-box {
  font-size: 12px;
  color: #C6C6C6;
  flex-shrink: 0;
  position: relative;
}
.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: #C6C6C6;
}
.shopping-item .goods-name.sold-out .qty-box {
  width: 0.55rem;
}
.shopping-item .goods-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.shopping-item .goods-active {
  margin-top: 0.1rem;
  padding: 0 0.2rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.08rem;
  row-gap: 0.08rem;
}
.shopping-item .goods-active .active-name {
  font-size: 12px;
  color: var(--color-primary);
  background: rgba(246, 130, 31, 0.10);
  padding: 0.03rem 0.08rem;
  border-radius: 2px;
}
.shopping-item .goods-tag {
  box-sizing: border-box;
  min-height: 0.36rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.08rem;
  column-gap: 0.16rem;
  background: rgba(246, 130, 31, 0.12);
  padding: 0.07rem 0.2rem;
}
.shopping-item .goods-tag .tag-item {
  position: relative;
  font-size: 12px;
  flex-shrink: 0;
  color: var(--color-primary);
  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(246, 130, 31, 0.35);
}
.shopping-item .goods-description {
  box-sizing: border-box;
  position: relative;
  margin-top: 0.1rem;
  padding: 0 0.22rem;
  overflow: hidden;
  color: #4E5259;
  font-size: 0;
  line-height: 1.6;
  white-space: normal;
}
.shopping-item .goods-description .funidc-detail-desc {
  display: none !important;
}
.shopping-item .goods-description > :not(.funidc-list-desc):not(.funidc-detail-desc) {
  display: none !important;
}
.shopping-item .goods-description .funidc-list-desc {
  position: relative;
  display: block;
  min-height: 1.28rem;
  padding: 0;
  overflow: hidden;
  font-size: 13px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.shopping-item .goods-description p {
  margin: 0;
}
.shopping-item .goods-description img {
  display: none;
}
.shopping-item .goods-description .funidc-card-meta,
.shopping-item .goods-description .funidc-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.1rem;
  color: #4E5259;
  font-size: 12px;
  line-height: 1.45;
}
.shopping-item .goods-description .funidc-card-meta > div,
.shopping-item .goods-description .funidc-card-head > div {
  min-width: 0;
}
.shopping-item .goods-description .funidc-card-meta > div:first-child,
.shopping-item .goods-description .funidc-card-head > div:first-child,
.shopping-item .goods-description .funidc-card-meta span:first-child,
.shopping-item .goods-description .funidc-card-head span:first-child {
  max-width: 58%;
  padding: 0.035rem 0.08rem;
  overflow: hidden;
  color: #F6821F;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #FFF4EA;
  border: 1px solid rgba(246, 130, 31, 0.25);
  border-radius: 0.04rem;
}
.shopping-item .goods-description .funidc-card-meta > div:last-child,
.shopping-item .goods-description .funidc-card-head > div:last-child,
.shopping-item .goods-description .funidc-card-meta span:last-child,
.shopping-item .goods-description .funidc-card-head span:last-child {
  max-width: 42%;
  overflow: hidden;
  color: rgba(10, 10, 10, 0.46);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.shopping-item .goods-description .funidc-specs,
.shopping-item .goods-description .funidc-spec-lines {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: 0.14rem;
}
.shopping-item .goods-description .funidc-specs div,
.shopping-item .goods-description .funidc-spec-lines div {
  min-width: 0;
  color: #171717;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  display: flex;
  align-items: baseline;
  gap: 0.12rem;
  padding: 0.055rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.shopping-item .goods-description .funidc-specs b,
.shopping-item .goods-description .funidc-specs strong,
.shopping-item .goods-description .funidc-spec-lines b,
.shopping-item .goods-description .funidc-spec-lines strong {
  display: block;
  width: 0.48rem;
  flex: 0 0 auto;
  margin-bottom: 0;
  color: #8C8C8C;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}
.shopping-item .goods-description .funidc-specs p,
.shopping-item .goods-description .funidc-specs span,
.shopping-item .goods-description .funidc-spec-lines p,
.shopping-item .goods-description .funidc-spec-lines span {
  display: block;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #171717;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.shopping-item .goods-description .funidc-card-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.07rem;
  margin-top: 0.12rem;
  color: #F6821F;
  font-size: 12px;
}
.shopping-item .goods-description .funidc-card-tags > div,
.shopping-item .goods-description .funidc-card-tags span {
  max-width: 100%;
  padding: 0.035rem 0.08rem;
  overflow: hidden;
  color: #F6821F;
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #FFF8F1;
  border: 1px solid rgba(246, 130, 31, 0.18);
  border-radius: 0.04rem;
}
.shopping-item .price-box {
  margin-top: 0.14rem;
  padding: 0.14rem 0.22rem 0.16rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.1rem;
  border-top: 1px solid #F1F1F1;
}
.shopping-item .price-box .price-box-left {
  text-align: left;
  display: flex;
  align-items: flex-end;
  column-gap: 0.04rem;
}
.shopping-item .price-box .original-price {
  font-size: 12px;
  color: #C6C6C6;
  text-decoration: line-through;
}
.shopping-item .price-box .item-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-price-text);
}
.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: #595959;
}
.shopping-item .price-box .buy-btn {
  min-width: 0.92rem;
  height: 0.34rem;
  border-radius: 0.05rem;
}
.tips {
  color: #8C8C8C;
  font-size: 0.13rem;
  text-align: center;
}
.domain-box .register-type {
  display: flex;
  align-items: center;
}
.domain-box .register-type .el-divider {
  background-color: #D8D8D8;
  margin: 0 0.24rem;
}
.domain-box .register-type .reg-ridio {
  font-size: 0.14rem;
  color: #646464;
  cursor: pointer;
}
.domain-box .register-type .isActice {
  color: var(--color-primary);
}
.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: #8C8C8C;
  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;
  background: var(--color-primary);
  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 #EAEAEA;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.16rem;
  color: #2B2B2B;
  cursor: pointer;
}
.domain-box .domain-search .suffix-list .suffix-item:hover {
  background: rgba(246, 130, 31, 0.08);
}
.domain-box .domain-search .suffix-list .suffix-active {
  background: rgba(246, 130, 31, 0.08);
  border: 0.01rem solid var(--color-primary);
  color: var(--color-primary);
}
.domain-box .batch-search-box {
  margin-top: 0.32rem;
}
.domain-box .batch-search-box .batch-tips {
  box-sizing: border-box;
  color: #8C8C8C;
  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: var(--color-primary);
  cursor: pointer;
}
.domain-box .batch-search-box .batch-btn .el-button {
  height: 0.36rem;
}
.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 .search-title .search-fillter {
  display: flex;
  align-items: center;
  column-gap: 0.08rem;
  cursor: pointer;
}
.domain-box .domain-content .domain-left .domain-one .search-title .search-fillter.is_select {
  color: var(--color-primary);
}
.domain-box .domain-content .domain-left .domain-one .fillter-list {
  margin-top: 0.24rem;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid #EAEAEA;
  padding: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.domain-box .domain-content .domain-left .domain-one .fillter-list .fillter-item {
  width: 1rem;
  height: 0.4rem;
  border: 0.01rem solid #EAEAEA;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.14rem;
  color: #2B2B2B;
  cursor: pointer;
  border-radius: 0.04rem;
}
.domain-box .domain-content .domain-left .domain-one .fillter-list .fillter-item:hover {
  background: rgba(246, 130, 31, 0.08);
}
.domain-box .domain-content .domain-left .domain-one .fillter-list .fillter-item.is_select {
  background: rgba(246, 130, 31, 0.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.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 {
}
.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: #8C8C8C;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  background: #FAFAFA;
}
.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: var(--color-primary);
  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: #8C8C8C;
  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;
}
.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 {
}
.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: #8C8C8C;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  background: #FAFAFA;
}
.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: var(--color-primary);
  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: #8C8C8C;
  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: #8C8C8C;
}
.domain-box .domain-content .domain-left .batch-box .batch-main .batch-item .item-right .add-btn {
  margin-left: 0.4rem;
  border-radius: 0.04rem;
}
.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: var(--color-primary);
}
.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: var(--color-primary);
}
.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 #EAEAEA;
}
.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: #8C8C8C;
}
.domain-box .domain-content .domain-right .car-list .car-item {
  padding: 0.16rem 0.32rem;
  border-bottom: 0.01rem solid #EAEAEA;
}
.domain-box .domain-content .domain-right .car-list .car-item:hover {
}
.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: 0.04rem;
}
.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: #2B2B2B;
}
.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.16rem;
}
.car-settle .settle-btn {
  width: 100%;
  font-size: 0.16rem;
  border-radius: 4px;
}
.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: #FAFAFA;
}
.price-list .price-item .price-new {
  border-bottom: 1px solid #EAEAEA;
}
.blue-a-text {
  color: var(--color-primary);
  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 #EAEAEA;
  height: 0.46rem;
  line-height: 0.46rem;
  padding: 0 0.16rem;
  background: rgba(102, 107, 128, 0.08);
  font-size: 0.15rem;
}
.up-dialog .dia-concent .file-box .file-name:focus {
  outline: none;
  border: 0.01rem solid #EAEAEA;
}
.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 #EAEAEA;
  margin-left: 0.1rem;
  cursor: pointer;
}
.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: 0.03rem 0.03rem 0.03rem 0.03rem;
  font-size: 0.16rem;
}
.up-dialog .dia-foter .confim-btn {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
}
.up-dialog .dia-foter .cancel-btn {
  margin-left: 0.12rem;
  background: #e7e7e7;
  color: #1e2736;
}
@media screen and (max-width: 915px) {
  .search-box {
    padding: 0;
  }
  .search-box .first-nav,
  .search-box .sec-nav {
    flex-direction: column;
    gap: 0.08rem;
  }
  .search-box .first-nav .nav-name,
  .search-box .sec-nav .nav-name {
    width: auto;
    padding-top: 0;
  }
  .search-box .first-nav .nav-box,
  .search-box .sec-nav .nav-box {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.02rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .search-box .first-nav .nav-box::-webkit-scrollbar,
  .search-box .sec-nav .nav-box::-webkit-scrollbar {
    display: none;
  }
  .search-box .first-nav .nav-box .nav-item,
  .search-box .sec-nav .nav-box .nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(3.2rem, 1fr));
    gap: 0.16rem;
  }
}
@media screen and (max-width: 750px) {
  .shopping-box {
    margin-top: 0.16rem;
  }
  .goods-list-div {
    grid-template-columns: 1fr;
    gap: 0.14rem;
  }
  .shopping-item {
    min-height: 0;
  }
  .shopping-item:hover {
    transform: none;
  }
  .shopping-item .goods-name {
    margin-top: 0.3rem;
    padding: 0 0.16rem;
  }
  .shopping-item .goods-name .goods-name-text {
    font-size: 17px;
  }
  .shopping-item .goods-description {
    margin-top: 0.12rem;
    padding: 0 0.16rem;
  }
  .shopping-item .goods-description .funidc-list-desc {
    min-height: 0;
    padding: 0;
  }
  .shopping-item .goods-description .funidc-specs div,
  .shopping-item .goods-description .funidc-spec-lines div {
    padding: 0.055rem 0;
  }
  .shopping-item .goods-active {
    padding: 0 0.16rem;
  }
  .shopping-item .price-box {
    padding: 0.14rem 0.16rem 0.16rem;
  }
  .shopping-item .price-box .item-price {
    font-size: 24px;
  }
  .shopping-item .price-box .buy-btn {
    min-width: 0.86rem;
  }
}
@media screen and (max-width: 420px) {
  .shopping-item .goods-description .funidc-card-meta,
  .shopping-item .goods-description .funidc-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.06rem;
  }
  .shopping-item .goods-description .funidc-card-meta > div:first-child,
  .shopping-item .goods-description .funidc-card-head > div:first-child,
  .shopping-item .goods-description .funidc-card-meta > div:last-child,
  .shopping-item .goods-description .funidc-card-head > div:last-child,
  .shopping-item .goods-description .funidc-card-meta span:first-child,
  .shopping-item .goods-description .funidc-card-head span:first-child,
  .shopping-item .goods-description .funidc-card-meta span:last-child,
  .shopping-item .goods-description .funidc-card-head span:last-child {
    max-width: 100%;
  }
  .shopping-item .price-box {
    align-items: stretch;
    flex-direction: column;
    row-gap: 0.12rem;
  }
  .shopping-item .price-box .buy-btn {
    width: 100%;
  }
}

/* FunIDC elastic product card - width/nav/mobile pill lock 20260523 */
.template .funidc-catalog-head,
.template .main-content-box {
  width: 100%;
  max-width: 13rem;
  margin-right: auto;
  margin-left: auto;
}
.template .funidc-catalog-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.18rem;
  margin-bottom: 0.3rem;
  padding-bottom: 0;
  border-bottom: 0;
}
.template .funidc-catalog-head .main-title {
  align-self: flex-start;
  padding-top: 0;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.25;
  color: #171717;
  white-space: nowrap;
}
.template .funidc-catalog-head .cart-des {
  flex: 1;
  margin-bottom: 0;
}
.template .funidc-catalog-head .search-box {
  width: 100%;
  max-width: none;
  row-gap: 0.16rem;
  align-items: center;
}
.template .funidc-catalog-head .search-box .first-nav,
.template .funidc-catalog-head .search-box .sec-nav {
  width: 100%;
  align-items: center;
  justify-content: center;
}
.template .funidc-catalog-head .search-box .first-nav .nav-name,
.template .funidc-catalog-head .search-box .sec-nav .nav-name {
  display: none;
}
.template .funidc-catalog-head .search-box .first-nav .nav-box,
.template .funidc-catalog-head .search-box .sec-nav .nav-box {
  flex: 0 1 auto;
  justify-content: center;
  gap: 0.18rem;
}
.template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item,
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
  min-width: 1.58rem;
  min-height: 0.56rem;
  padding: 0.13rem 0.32rem;
  border: 1px solid rgba(246, 130, 31, 0.22);
  border-radius: 999px;
  color: #394150;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  background: #fff;
  box-shadow: none;
}
.template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item:hover,
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item:hover {
  color: #F6821F;
  border-color: rgba(246, 130, 31, 0.42);
  background: #FFF8F1;
}
.template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item.active,
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item.active {
  color: #fff;
  border-color: #F6821F;
  background: #F6821F;
  box-shadow: 0 0.12rem 0.28rem rgba(246, 130, 31, 0.24);
}
.template .shopping-box .goods-list-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3.28rem, 4.2rem)) !important;
  gap: 0.2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 13rem;
  margin-right: auto;
  margin-left: auto;
}
.template .shopping-box .shopping-item {
  min-height: 3.86rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #EAEAEA;
  border-radius: 0.08rem;
  box-shadow: none;
  transform: none;
}
.template .shopping-box .shopping-item::before {
  display: none;
}
.template .shopping-box .shopping-item:hover {
  border-color: rgba(246, 130, 31, 0.46);
  box-shadow: 0 0.12rem 0.3rem rgba(23, 23, 23, 0.08);
  transform: translateY(-0.02rem);
}
.template .shopping-box .shopping-item .goods-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.template .shopping-box .shopping-item .goods-tag {
  min-height: 0;
  padding: 0.18rem 0.26rem 0;
  background: transparent;
  gap: 0.08rem;
}
.template .shopping-box .shopping-item .goods-tag .tag-item {
  padding: 0.03rem 0.08rem;
  color: #F6821F;
  background: #FFF4EA;
  border: 1px solid rgba(246, 130, 31, 0.22);
  border-radius: 0.04rem;
  line-height: 1.35;
}
.template .shopping-box .shopping-item .goods-tag .tag-item::after {
  display: none;
}
.template .shopping-box .shopping-item .goods-name {
  margin: 0;
  padding: 0.26rem 0.26rem 0;
  column-gap: 0.18rem;
}
.template .shopping-box .shopping-item .goods-tag + .goods-name {
  padding-top: 0.16rem;
}
.template .shopping-box .shopping-item .goods-name .goods-name-text {
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #171717;
}
.template .shopping-box .shopping-item .goods-name .qty-box {
  color: #8C8C8C;
}
.template .shopping-box .shopping-item .plan-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.08rem;
  margin-top: 0.14rem;
  padding: 0 0.26rem;
}
.template .shopping-box .shopping-item .plan-price-row .item-price {
  color: #F6821F;
  font-size: 0.3rem;
  font-weight: 800;
  line-height: 1.05;
}
.template .shopping-box .shopping-item .plan-price-row .item-price-prefix {
  margin-right: 0.02rem;
  font-size: 0.14rem;
  font-weight: 700;
  vertical-align: baseline;
}
.template .shopping-box .shopping-item .plan-price-row .price-start {
  margin-left: 0.04rem;
  font-size: 0.15rem;
  font-weight: 700;
  color: #F6821F;
}
.template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
  margin-left: 0.04rem;
  font-size: 0.14rem;
  font-weight: 400;
  color: #595959;
}
.template .shopping-box .shopping-item .plan-price-row .original-price {
  color: #B8B8B8;
  font-size: 0.12rem;
  text-decoration: line-through;
}
.template .shopping-box .shopping-item .goods-description {
  margin-top: 0.2rem;
  padding: 0 0.26rem;
  overflow: visible;
  color: #4E5259;
  font-size: 0.13rem;
  line-height: 1.55;
}
.template .shopping-box .shopping-item .goods-description .funidc-list-desc {
  min-height: 0;
  padding: 0;
  overflow: visible;
  font-size: 0.13rem;
  background: transparent;
  border: 0;
}
.template .shopping-box .shopping-item .goods-description .funidc-detail-desc,
.template .shopping-box .shopping-item .goods-description .funidc-card-meta,
.template .shopping-box .shopping-item .goods-description .funidc-card-head,
.template .shopping-box .shopping-item .goods-description .funidc-card-tags {
  display: none !important;
}
.template .shopping-box .shopping-item .goods-description .funidc-section-title {
  margin-bottom: 0.08rem;
  color: #171717;
  font-size: 0.13rem;
  font-weight: 700;
  line-height: 1.4;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
.template .shopping-box .shopping-item .goods-description .funidc-specs {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div {
  display: grid;
  grid-template-columns: 0.18rem minmax(0.58rem, auto) minmax(0, 1fr);
  align-items: baseline;
  gap: 0.08rem;
  min-width: 0;
  padding: 0.07rem 0;
  color: #171717;
  font-size: 0.13rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid #F1F1F1;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div::before {
  content: "\2713";
  color: #F6821F;
  font-size: 0.13rem;
  font-weight: 800;
  line-height: 1.4;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div:last-child,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div:last-child,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div:last-child {
  border-bottom: 0;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
.template .shopping-box .shopping-item .goods-description .funidc-specs strong,
.template .shopping-box .shopping-item .goods-description .funidc-specs b {
  display: block;
  width: auto;
  min-width: 0.58rem;
  color: #8C8C8C;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.4;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
.template .shopping-box .shopping-item .goods-description .funidc-specs p,
.template .shopping-box .shopping-item .goods-description .funidc-specs span {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #171717;
  font-size: 0.13rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.template .shopping-box .shopping-item .goods-description .funidc-upgrade {
  display: flex;
  align-items: flex-start;
  gap: 0.08rem;
  margin-top: 0.12rem;
  padding-top: 0.12rem;
  border-top: 1px solid #F1F1F1;
}
.template .shopping-box .shopping-item .goods-description .funidc-upgrade strong {
  flex: 0 0 auto;
  color: #F6821F;
  font-size: 0.12rem;
  font-weight: 700;
  line-height: 1.55;
}
.template .shopping-box .shopping-item .goods-description .funidc-upgrade p,
.template .shopping-box .shopping-item .goods-description .funidc-upgrade span {
  min-width: 0;
  margin: 0;
  color: #4E5259;
  font-size: 0.13rem;
  line-height: 1.55;
}
.template .shopping-box .shopping-item .goods-active {
  padding: 0 0.26rem;
}
.template .shopping-box .shopping-item .price-box {
  display: block;
  margin-top: auto;
  padding: 0.22rem 0.26rem 0.26rem;
  border-top: 0;
}
.template .shopping-box .shopping-item .price-box .buy-btn {
  width: 100%;
  height: 0.42rem;
  min-width: 0;
  border-radius: 0.05rem;
  font-size: 0.15rem;
  font-weight: 700;
  background: #F6821F;
  border-color: #F6821F;
}
.template .shopping-box .shopping-item .price-box .buy-btn:hover,
.template .shopping-box .shopping-item .price-box .buy-btn:focus {
  background: #E87516;
  border-color: #E87516;
}
@media screen and (max-width: 915px) {
  .template .funidc-catalog-head {
    flex-direction: column;
    gap: 0.16rem;
    max-width: none;
    margin-bottom: 0.2rem;
    padding-bottom: 0;
  }
  .template .funidc-catalog-head .search-box {
    width: 100%;
    max-width: none;
  }
  .template .search-box .first-nav,
  .template .search-box .sec-nav {
    flex-direction: column;
    gap: 0;
  }
  .template .search-box .first-nav .nav-box,
  .template .search-box .sec-nav .nav-box {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.1rem;
    padding-bottom: 0.04rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .template .search-box .first-nav .nav-box::-webkit-scrollbar,
  .template .search-box .sec-nav .nav-box::-webkit-scrollbar {
    display: none;
  }
  .template .search-box .first-nav .nav-box .nav-item,
  .template .search-box .sec-nav .nav-box .nav-item {
    flex: 0 0 auto;
    min-width: 1.1rem;
    min-height: 0.42rem;
    padding: 0.095rem 0.18rem;
    font-size: 0.14rem;
    white-space: nowrap;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(2.9rem, 1fr));
    gap: 0.16rem;
    justify-content: stretch;
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .template .el-main {
    padding-right: 0.16rem !important;
    padding-left: 0.16rem !important;
  }
  .template .main-card,
  .template .main-content-box,
  .template .funidc-catalog-head,
  .template .shopping-box {
    width: 100%;
    max-width: none;
  }
  .template .funidc-catalog-head {
    margin-bottom: 0.18rem;
    padding-bottom: 0;
  }
  .template .funidc-catalog-head .main-title {
    font-size: 0.22rem;
  }
  .template .funidc-catalog-head .search-box .first-nav,
  .template .funidc-catalog-head .search-box .sec-nav {
    gap: 0;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-name,
  .template .funidc-catalog-head .search-box .sec-nav .nav-name {
    display: none;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.14rem;
    width: 100%;
    max-width: none;
  }
  .template .shopping-box .shopping-item {
    width: 100%;
    min-height: 0;
  }
  .template .shopping-box .shopping-item:hover {
    transform: none;
  }
  .template .shopping-box .shopping-item .goods-tag {
    padding: 0.16rem 0.18rem 0;
  }
  .template .shopping-box .shopping-item .goods-name {
    padding: 0.22rem 0.18rem 0;
  }
  .template .shopping-box .shopping-item .goods-tag + .goods-name {
    padding-top: 0.14rem;
  }
  .template .shopping-box .shopping-item .goods-name .goods-name-text {
    font-size: 0.18rem;
  }
  .template .shopping-box .shopping-item .plan-price-row,
  .template .shopping-box .shopping-item .goods-description,
  .template .shopping-box .shopping-item .goods-active {
    padding-left: 0.18rem;
    padding-right: 0.18rem;
  }
  .template .shopping-box .shopping-item .plan-price-row .item-price {
    font-size: 0.28rem;
  }
  .template .shopping-box .shopping-item .price-box {
    padding: 0.2rem 0.18rem 0.2rem;
  }
}
@media screen and (max-width: 420px) {
  .template .el-main {
    padding-right: 0.12rem !important;
    padding-left: 0.12rem !important;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-box,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box {
    gap: 0.08rem;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
    min-width: 0.98rem;
    min-height: 0.38rem;
    padding: 0.08rem 0.15rem;
    font-size: 0.13rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div {
    grid-template-columns: 0.18rem 0.58rem minmax(0, 1fr);
    gap: 0.07rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
  .template .shopping-box .shopping-item .goods-description .funidc-specs p,
  .template .shopping-box .shopping-item .goods-description .funidc-specs span {
    white-space: normal;
  }
}

/* FunIDC VPS plan layout - primary hidden / secondary pills 20260523 */
.template .funidc-catalog-head {
  max-width: 14.8rem;
  margin: 0 auto 0.42rem;
  padding: 0.06rem 0 0;
  text-align: center;
}
.template .funidc-catalog-head .main-title {
  align-self: center;
  color: #050505;
  font-size: 0.42rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
}
.template .funidc-catalog-head .funidc-catalog-subtitle {
  max-width: 7.2rem;
  margin: -0.06rem auto 0.1rem;
  color: #748094;
  font-size: 0.17rem;
  line-height: 1.6;
  text-align: center;
}
.template .funidc-catalog-head .search-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 0.12rem;
  row-gap: 0;
}
.template .funidc-catalog-head .search-box .first-nav {
  display: none !important;
}
.template .funidc-catalog-head .search-box .sec-nav {
  width: 100%;
  justify-content: center;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-name {
  display: none;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box {
  flex: 0 1 auto;
  justify-content: center;
  gap: 0.2rem;
  padding: 0;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
  min-width: 1.62rem;
  min-height: 0.58rem;
  padding: 0.14rem 0.34rem;
  border: 1px solid rgba(246, 130, 31, 0.24);
  border-radius: 999px;
  color: #314052;
  font-size: 0.2rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: #fff;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item:hover {
  color: #F6821F;
  border-color: rgba(246, 130, 31, 0.45);
  background: #FFF8F1;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item.active {
  color: #fff;
  border-color: #F6821F;
  background: #F6821F;
  box-shadow: 0 0.14rem 0.32rem rgba(246, 130, 31, 0.25);
}
.template .main-content-box {
  max-width: 16.8rem;
}
.template .shopping-box {
  margin-top: 0;
}
.template .shopping-box .goods-list-div {
  grid-template-columns: repeat(auto-fit, minmax(3.3rem, 3.9rem)) !important;
  gap: 0.28rem;
  justify-content: center;
  max-width: 16.8rem;
}
.template .shopping-box .shopping-item {
  min-height: 5.48rem;
  border-color: #EEF0F4;
  border-radius: 0.08rem;
  box-shadow: 0 0.18rem 0.46rem rgba(18, 31, 56, 0.07);
}
.template .shopping-box .shopping-item:hover {
  border-color: #F6821F;
  box-shadow: 0 0.22rem 0.52rem rgba(246, 130, 31, 0.12);
}
.template .shopping-box .shopping-item .goods-name {
  padding: 0.34rem 0.34rem 0;
}
.template .shopping-box .shopping-item .goods-name .goods-name-text {
  color: #050505;
  font-size: 0.24rem;
  font-weight: 800;
}
.template .shopping-box .shopping-item .plan-price-row {
  margin-top: 0.2rem;
  padding: 0 0.34rem;
}
.template .shopping-box .shopping-item .plan-price-row .item-price {
  font-size: 0.46rem;
  font-weight: 800;
}
.template .shopping-box .shopping-item .plan-price-row .item-price-prefix {
  font-size: 0.2rem;
}
.template .shopping-box .shopping-item .plan-price-row .price-start,
.template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
  font-size: 0.15rem;
}
.template .shopping-box .shopping-item .goods-description {
  margin-top: 0.28rem;
  padding: 0 0.34rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-section-title {
  display: none;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div {
  grid-template-columns: 0.2rem max-content minmax(0, 1fr);
  gap: 0.06rem;
  padding: 0.055rem 0;
  border-bottom: 0;
  font-size: 0.16rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div::before {
  color: #314052;
  font-size: 0.16rem;
  font-weight: 400;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
.template .shopping-box .shopping-item .goods-description .funidc-specs strong,
.template .shopping-box .shopping-item .goods-description .funidc-specs b {
  min-width: 0;
  color: #314052;
  font-size: 0.16rem;
  font-weight: 500;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
.template .shopping-box .shopping-item .goods-description .funidc-specs p,
.template .shopping-box .shopping-item .goods-description .funidc-specs span {
  color: #314052;
  font-size: 0.16rem;
  font-weight: 500;
  white-space: normal;
}
.template .shopping-box .shopping-item .goods-description .funidc-upgrade {
  margin-top: 0.14rem;
  padding-top: 0.12rem;
  border-top: 0;
}
.template .shopping-box .shopping-item .price-box {
  padding: 0.3rem 0.34rem 0.34rem;
}
.template .shopping-box .shopping-item .price-box .buy-btn {
  height: 0.58rem;
  color: #F6821F;
  font-size: 0.18rem;
  background: #fff;
  border: 1px solid #F6821F;
  border-radius: 0.08rem;
}
.template .shopping-box .shopping-item:hover .price-box .buy-btn,
.template .shopping-box .shopping-item .price-box .buy-btn:hover,
.template .shopping-box .shopping-item .price-box .buy-btn:focus {
  color: #fff;
  background: #F6821F;
  border-color: #F6821F;
  box-shadow: 0 0.1rem 0.22rem rgba(246, 130, 31, 0.2);
}
@media screen and (max-width: 915px) {
  .template .funidc-catalog-head {
    max-width: none;
    margin-bottom: 0.26rem;
  }
  .template .funidc-catalog-head .main-title {
    font-size: 0.32rem;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    font-size: 0.15rem;
  }
  .template .funidc-catalog-head .search-box .sec-nav .nav-box {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    gap: 0.1rem;
    padding-bottom: 0.04rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .template .funidc-catalog-head .search-box .sec-nav .nav-box::-webkit-scrollbar {
    display: none;
  }
  .template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
    flex: 0 0 auto;
    min-width: 1.08rem;
    min-height: 0.42rem;
    padding: 0.09rem 0.18rem;
    font-size: 0.14rem;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(2.9rem, 1fr)) !important;
    gap: 0.16rem;
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head {
    align-items: flex-start;
    text-align: left;
  }
  .template .funidc-catalog-head .main-title {
    align-self: flex-start;
    font-size: 0.25rem;
    text-align: left;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin: -0.04rem 0 0.06rem;
    font-size: 0.13rem;
    text-align: left;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0.12rem;
  }
  .template .shopping-box .shopping-item {
    min-height: 0;
  }
  .template .shopping-box .shopping-item .goods-name,
  .template .shopping-box .shopping-item .plan-price-row,
  .template .shopping-box .shopping-item .goods-description,
  .template .shopping-box .shopping-item .goods-active {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }
  .template .shopping-box .shopping-item .goods-name {
    padding-top: 0.24rem;
  }
  .template .shopping-box .shopping-item .goods-name .goods-name-text {
    font-size: 0.19rem;
  }
  .template .shopping-box .shopping-item .plan-price-row .item-price {
    font-size: 0.32rem;
  }
  .template .shopping-box .shopping-item .price-box {
    padding: 0.22rem 0.2rem 0.24rem;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn {
    height: 0.44rem;
    font-size: 0.15rem;
  }
}

/* FunIDC VPS compact 4-up tuning 20260523 */
.template .funidc-catalog-head {
  max-width: 13.4rem;
  margin-bottom: 0.3rem;
}
.template .funidc-catalog-head .main-title {
  font-size: 0.34rem;
}
.template .funidc-catalog-head .funidc-catalog-subtitle {
  margin-top: -0.08rem;
  margin-bottom: 0.04rem;
  font-size: 0.15rem;
}
.template .funidc-catalog-head .search-box {
  margin-top: 0.08rem;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box {
  gap: 0.14rem;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
  min-width: 1.32rem;
  min-height: 0.46rem;
  padding: 0.105rem 0.24rem;
  font-size: 0.16rem;
}
.template .main-content-box {
  max-width: 13.4rem;
}
.template .shopping-box .goods-list-div {
  grid-template-columns: repeat(auto-fit, minmax(2.72rem, 3.05rem)) !important;
  gap: 0.22rem;
  max-width: 13.4rem;
}
.template .shopping-box .shopping-item {
  min-height: 4.62rem;
  border-radius: 0.07rem;
  box-shadow: 0 0.14rem 0.34rem rgba(18, 31, 56, 0.06);
}
.template .shopping-box .shopping-item .goods-name {
  padding: 0.26rem 0.26rem 0;
}
.template .shopping-box .shopping-item .goods-name .goods-name-text {
  font-size: 0.2rem;
}
.template .shopping-box .shopping-item .plan-price-row {
  margin-top: 0.16rem;
  padding: 0 0.26rem;
}
.template .shopping-box .shopping-item .plan-price-row .item-price {
  font-size: 0.36rem;
}
.template .shopping-box .shopping-item .plan-price-row .item-price-prefix {
  font-size: 0.15rem;
}
.template .shopping-box .shopping-item .plan-price-row .price-start,
.template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
  font-size: 0.13rem;
}
.template .shopping-box .shopping-item .goods-description {
  margin-top: 0.2rem;
  padding: 0 0.26rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div {
  grid-template-columns: 0.18rem max-content minmax(0, 1fr);
  padding: 0.045rem 0;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
.template .shopping-box .shopping-item .goods-description .funidc-specs strong,
.template .shopping-box .shopping-item .goods-description .funidc-specs b,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
.template .shopping-box .shopping-item .goods-description .funidc-specs p,
.template .shopping-box .shopping-item .goods-description .funidc-specs span {
  font-size: 0.14rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-upgrade {
  margin-top: 0.1rem;
  padding-top: 0.08rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-upgrade strong,
.template .shopping-box .shopping-item .goods-description .funidc-upgrade p,
.template .shopping-box .shopping-item .goods-description .funidc-upgrade span {
  font-size: 0.13rem;
}
.template .shopping-box .shopping-item .price-box {
  padding: 0.24rem 0.26rem 0.26rem;
}
.template .shopping-box .shopping-item .price-box .buy-btn {
  height: 0.48rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 1280px) {
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(2.78rem, 1fr)) !important;
  }
}
@media screen and (max-width: 915px) {
  .template .funidc-catalog-head {
    margin-bottom: 0.22rem;
  }
  .template .funidc-catalog-head .main-title {
    font-size: 0.28rem;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(2.72rem, 1fr)) !important;
    gap: 0.14rem;
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head .main-title {
    font-size: 0.24rem;
  }
  .template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
    min-width: 0.98rem;
    min-height: 0.38rem;
    padding: 0.075rem 0.14rem;
    font-size: 0.13rem;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* FunIDC VPS rhythm and rounded polish 20260523 */
.template .funidc-catalog-head {
  margin-bottom: 0.42rem;
}
.template .funidc-catalog-head .main-title {
  margin-bottom: 0.12rem;
}
.template .funidc-catalog-head .funidc-catalog-subtitle {
  margin-top: 0;
  margin-bottom: 0.24rem;
  color: #6F7A8C;
}
.template .funidc-catalog-head .search-box {
  margin-top: 0;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box {
  gap: 0.18rem;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
  min-height: 0.48rem;
  border-radius: 999px;
}
.template .shopping-box .goods-list-div {
  row-gap: 0.3rem;
}
.template .shopping-box .shopping-item {
  border-radius: 0.12rem;
  border-color: #EDF0F5;
  box-shadow: 0 0.18rem 0.42rem rgba(18, 31, 56, 0.075);
}
.template .shopping-box .shopping-item:hover {
  border-color: #F6821F;
  box-shadow: 0 0.22rem 0.48rem rgba(246, 130, 31, 0.12);
}
.template .shopping-box .shopping-item .price-box .buy-btn {
  border-radius: 0.08rem;
}
@media screen and (max-width: 915px) {
  .template .funidc-catalog-head {
    margin-bottom: 0.3rem;
  }
  .template .funidc-catalog-head .main-title {
    margin-bottom: 0.08rem;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: 0.18rem;
  }
  .template .shopping-box .goods-list-div {
    row-gap: 0.18rem;
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head {
    margin-bottom: 0.24rem;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: 0.14rem;
  }
  .template .shopping-box .shopping-item {
    border-radius: 0.1rem;
  }
}

/* FunIDC category adaptive and mixed-product polish 20260524 */
.template .funidc-catalog-head .search-box .sec-nav .nav-box {
  width: 100%;
  max-width: 10.8rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.12rem;
  overflow: visible;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
  flex: 0 1 auto;
  white-space: nowrap;
}
.template .shopping-box .goods-list-div {
  align-items: start;
}
.template .shopping-box .shopping-item {
  min-height: 0;
  border-radius: 0.12rem;
}
.template .shopping-box .shopping-item .goods-content {
  min-height: 0;
}
.template .shopping-box .shopping-item.funidc-no-desc {
  min-height: 3.08rem;
}
.template .shopping-box .shopping-item.funidc-no-desc .goods-description {
  display: none;
}
.template .shopping-box .shopping-item.funidc-no-desc .price-box {
  margin-top: 0.24rem;
}
.template .shopping-box .shopping-item .goods-description:empty {
  display: none;
}
.template .shopping-box .shopping-item .goods-description .funidc-specs,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list {
  gap: 0.035rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-specs > div,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div {
  min-height: 0.28rem;
}
@media screen and (max-width: 915px) {
  .template .funidc-catalog-head .search-box .sec-nav .nav-box {
    max-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    row-gap: 0;
  }
  .template .shopping-box .shopping-item.funidc-no-desc {
    min-height: 2.88rem;
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head .search-box .sec-nav .nav-box {
    padding-bottom: 0.06rem;
  }
  .template .shopping-box .shopping-item.funidc-no-desc {
    min-height: 0;
  }
}

/* FunIDC final catalogue adaptive polish 20260524 */
.template .funidc-catalog-head {
  box-sizing: border-box;
  width: 100%;
  max-width: 15.2rem;
  margin: 0 auto 0.34rem;
  padding: 0;
  align-items: center;
  text-align: center;
}
.template .funidc-catalog-head .main-title {
  align-self: center;
  margin: 0 0 0.1rem;
  color: #171717;
  font-size: 0.32rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: normal;
}
.template .funidc-catalog-head .funidc-catalog-subtitle {
  max-width: 8.2rem;
  margin: 0 auto 0.22rem;
  color: #6F7A8C;
  font-size: 0.15rem;
  line-height: 1.7;
  text-align: center;
}
.template .funidc-catalog-head .search-box {
  width: 100%;
  max-width: none;
  margin-top: 0;
  overflow: hidden;
}
.template .funidc-catalog-head .search-box .first-nav {
  display: none !important;
}
.template .funidc-catalog-head .search-box .sec-nav {
  width: 100%;
  justify-content: center;
  overflow: visible;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-name {
  display: none;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box {
  box-sizing: border-box;
  width: 100%;
  max-width: 15.2rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex: 0 1 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.12rem;
  padding: 0 0.02rem;
  overflow: visible;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
  flex: 0 1 auto;
  min-width: 1.04rem;
  min-height: 0.4rem;
  max-width: 100%;
  padding: 0.085rem 0.18rem;
  border: 1px solid rgba(246, 130, 31, 0.24);
  border-radius: 999px;
  color: #314052;
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  text-align: center;
  background: #fff;
  box-shadow: none;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item:hover {
  color: #F6821F;
  border-color: rgba(246, 130, 31, 0.45);
  background: #FFF8F1;
}
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item.active {
  color: #fff;
  border-color: #F6821F;
  background: #F6821F;
  box-shadow: 0 0.08rem 0.2rem rgba(246, 130, 31, 0.2);
}
.template .main-content-box {
  width: 100%;
  max-width: 15.2rem;
  margin-right: auto;
  margin-left: auto;
}
.template .shopping-box {
  margin-top: 0;
}
.template .shopping-box .goods-list-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 2.82rem), 3.45rem)) !important;
  justify-content: center;
  align-items: start;
  gap: 0.22rem;
  width: 100%;
  max-width: 15.2rem;
  margin-right: auto;
  margin-left: auto;
}
.template .shopping-box .shopping-item {
  min-height: 0;
  height: auto;
  overflow: hidden;
  border-color: #EDF0F5;
  border-radius: 0.12rem;
  box-shadow: 0 0.14rem 0.34rem rgba(18, 31, 56, 0.06);
}
.template .shopping-box .shopping-item:hover {
  border-color: #F6821F;
  box-shadow: 0 0.18rem 0.42rem rgba(246, 130, 31, 0.12);
  transform: translateY(-0.02rem);
}
.template .shopping-box .shopping-item .goods-content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
}
.template .shopping-box .shopping-item .goods-name {
  margin: 0;
  padding: 0.24rem 0.24rem 0;
  align-items: flex-start;
  column-gap: 0.14rem;
}
.template .shopping-box .shopping-item .goods-name .goods-name-text {
  display: -webkit-box;
  overflow: hidden;
  color: #171717;
  font-size: 0.19rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.template .shopping-box .shopping-item .plan-price-row {
  margin-top: 0.13rem;
  padding: 0 0.24rem;
  gap: 0.06rem;
}
.template .shopping-box .shopping-item .plan-price-row .item-price {
  color: #F6821F;
  font-size: 0.32rem;
  font-weight: 800;
  line-height: 1.1;
}
.template .shopping-box .shopping-item .plan-price-row .item-price-prefix {
  font-size: 0.14rem;
}
.template .shopping-box .shopping-item .plan-price-row .price-start,
.template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
  font-size: 0.13rem;
}
.template .shopping-box .shopping-item .goods-description {
  margin-top: 0.16rem;
  padding: 0 0.24rem;
  overflow: visible;
}
.template .shopping-box .shopping-item .goods-description:empty,
.template .shopping-box .shopping-item.funidc-no-desc .goods-description {
  display: none !important;
}
.template .shopping-box .shopping-item .goods-description .funidc-list-desc {
  min-height: 0;
  overflow: visible;
}
.template .shopping-box .shopping-item .goods-description .funidc-section-title,
.template .shopping-box .shopping-item .goods-description .funidc-card-meta,
.template .shopping-box .shopping-item .goods-description .funidc-card-head,
.template .shopping-box .shopping-item .goods-description .funidc-card-tags {
  display: none !important;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
.template .shopping-box .shopping-item .goods-description .funidc-specs {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div {
  display: grid;
  grid-template-columns: 0.18rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.06rem;
  min-height: 0.28rem;
  padding: 0.035rem 0;
  border-bottom: 0;
  color: #314052;
  font-size: 0.135rem;
  font-weight: 500;
  line-height: 1.45;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div:has(strong),
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div:has(b),
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div:has(strong),
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div:has(b),
.template .shopping-box .shopping-item .goods-description .funidc-specs > div:has(strong),
.template .shopping-box .shopping-item .goods-description .funidc-specs > div:has(b) {
  grid-template-columns: 0.18rem max-content minmax(0, 1fr);
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div.funidc-has-label,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div.funidc-has-label,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div.funidc-has-label {
  grid-template-columns: 0.18rem max-content minmax(0, 1fr);
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div::before,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div::before {
  content: "\2713";
  color: #F6821F;
  font-size: 0.13rem;
  font-weight: 800;
  line-height: 1.45;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
.template .shopping-box .shopping-item .goods-description .funidc-specs strong,
.template .shopping-box .shopping-item .goods-description .funidc-specs b {
  min-width: 0;
  color: #6F7A8C;
  font-size: 0.13rem;
  font-weight: 600;
  line-height: 1.45;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
.template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
.template .shopping-box .shopping-item .goods-description .funidc-specs p,
.template .shopping-box .shopping-item .goods-description .funidc-specs span {
  min-width: 0;
  margin: 0;
  overflow: visible;
  color: #314052;
  font-size: 0.135rem;
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
  text-overflow: clip;
  overflow-wrap: anywhere;
}
.template .shopping-box .shopping-item .goods-description .funidc-upgrade {
  margin-top: 0.1rem;
  padding-top: 0.08rem;
  border-top: 1px solid #F1F1F1;
}
.template .shopping-box .shopping-item .goods-active {
  padding: 0 0.24rem;
}
.template .shopping-box .shopping-item .price-box {
  margin-top: auto;
  padding: 0.2rem 0.24rem 0.24rem;
}
.template .shopping-box .shopping-item.funidc-no-desc {
  min-height: 2.58rem;
}
.template .shopping-box .shopping-item.funidc-no-desc .price-box {
  margin-top: 0.22rem;
}
.template .shopping-box .shopping-item .price-box .buy-btn {
  height: 0.44rem;
  border-radius: 0.08rem;
  color: #F6821F;
  font-size: 0.15rem;
  font-weight: 700;
  background: #fff;
  border: 1px solid #F6821F;
}
.template .shopping-box .shopping-item:hover .price-box .buy-btn,
.template .shopping-box .shopping-item .price-box .buy-btn:hover,
.template .shopping-box .shopping-item .price-box .buy-btn:focus {
  color: #fff;
  background: #F6821F;
  border-color: #F6821F;
  box-shadow: 0 0.08rem 0.2rem rgba(246, 130, 31, 0.18);
}
@media screen and (max-width: 915px) {
  .template .funidc-catalog-head {
    max-width: none;
    margin-bottom: 0.26rem;
  }
  .template .funidc-catalog-head .main-title {
    font-size: 0.28rem;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    max-width: none;
    margin-bottom: 0.16rem;
    font-size: 0.14rem;
  }
  .template .funidc-catalog-head .search-box .sec-nav {
    overflow: hidden;
  }
  .template .funidc-catalog-head .search-box .sec-nav .nav-box {
    max-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.1rem;
    overflow-x: auto;
    padding-bottom: 0.04rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .template .funidc-catalog-head .search-box .sec-nav .nav-box::-webkit-scrollbar {
    display: none;
  }
  .template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
    flex: 0 0 auto;
    min-width: 1.02rem;
    min-height: 0.38rem;
    padding: 0.08rem 0.16rem;
    font-size: 0.13rem;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 2.64rem), 3.05rem)) !important;
    gap: 0.16rem;
    max-width: none;
  }
  .template .shopping-box .shopping-item.funidc-no-desc {
    min-height: 2.48rem;
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head {
    margin-bottom: 0.22rem;
    align-items: flex-start;
    text-align: left;
  }
  .template .funidc-catalog-head .main-title,
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    align-self: flex-start;
    text-align: left;
  }
  .template .funidc-catalog-head .main-title {
    font-size: 0.24rem;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: 0.14rem;
    font-size: 0.13rem;
    line-height: 1.6;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0.12rem;
  }
  .template .shopping-box .shopping-item,
  .template .shopping-box .shopping-item.funidc-no-desc {
    min-height: 0;
  }
  .template .shopping-box .shopping-item .goods-name,
  .template .shopping-box .shopping-item .plan-price-row,
  .template .shopping-box .shopping-item .goods-description,
  .template .shopping-box .shopping-item .goods-active {
    padding-right: 0.18rem;
    padding-left: 0.18rem;
  }
  .template .shopping-box .shopping-item .goods-name {
    padding-top: 0.22rem;
  }
  .template .shopping-box .shopping-item .plan-price-row .item-price {
    font-size: 0.28rem;
  }
  .template .shopping-box .shopping-item .price-box {
    padding: 0.18rem 0.18rem 0.2rem;
  }
  .template .shopping-box .shopping-item.funidc-no-desc .price-box {
    margin-top: 0.18rem;
  }
}

/* FunIDC product card breathing room 20260524 */
.template .shopping-box .shopping-item .goods-name {
  padding-top: 0.28rem;
}
.template .shopping-box .shopping-item .plan-price-row {
  margin-top: 0.16rem;
}
.template .shopping-box .shopping-item .goods-description {
  margin-top: 0.22rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
.template .shopping-box .shopping-item .goods-description .funidc-specs {
  gap: 0.08rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div {
  min-height: 0.34rem;
  padding: 0.055rem 0;
}
.template .shopping-box .shopping-item .price-box {
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
}
.template .shopping-box .shopping-item.funidc-no-desc .price-box {
  margin-top: 0.26rem;
}
@media screen and (max-width: 750px) {
  .template .shopping-box .shopping-item .goods-name {
    padding-top: 0.24rem;
  }
  .template .shopping-box .shopping-item .goods-description {
    margin-top: 0.18rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
  .template .shopping-box .shopping-item .goods-description .funidc-specs {
    gap: 0.06rem;
  }
  .template .shopping-box .shopping-item .price-box {
    padding-top: 0.22rem;
    padding-bottom: 0.22rem;
  }
}

/* FunIDC price marker and divider 20260524 */
.template .shopping-box .shopping-item .plan-price-row {
  position: relative;
  padding-bottom: 0.2rem;
}
.template .shopping-box .shopping-item .plan-price-row::after {
  content: "";
  position: absolute;
  left: 0.24rem;
  bottom: 0.01rem;
  width: 0.58rem;
  height: 0.015rem;
  background: rgba(246, 130, 31, 0.58);
  border-radius: 999px;
  box-shadow: 0 0.03rem 0.08rem rgba(246, 130, 31, 0.12);
}
.template .shopping-box .shopping-item .plan-price-row .item-price-prefix {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.template .shopping-box .shopping-item .goods-description {
  margin-top: 0.2rem;
}
.template .shopping-box .shopping-item.funidc-no-desc .plan-price-row {
  padding-bottom: 0;
}
.template .shopping-box .shopping-item.funidc-no-desc .plan-price-row::after {
  display: none;
}
@media screen and (max-width: 750px) {
  .template .shopping-box .shopping-item .plan-price-row::after {
    left: 0.18rem;
  }
}

/* FunIDC balanced card tuning 20260524 */
.template .funidc-catalog-head,
.template .funidc-catalog-head .search-box .sec-nav .nav-box,
.template .main-content-box,
.template .shopping-box .goods-list-div {
  max-width: 15.6rem;
}
.template .shopping-box .goods-list-div {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 3rem), 3.75rem)) !important;
  gap: 0.22rem;
}
.template .shopping-box .shopping-item .goods-name {
  padding-top: 0.26rem;
}
.template .shopping-box .shopping-item .plan-price-row {
  margin-top: 0.13rem;
  padding-bottom: 0.16rem;
}
.template .shopping-box .shopping-item .plan-price-row::after {
  bottom: 0;
  width: 0.52rem;
  height: 0.012rem;
  background: rgba(246, 130, 31, 0.52);
  box-shadow: none;
}
.template .shopping-box .shopping-item .goods-description {
  margin-top: 0.16rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
.template .shopping-box .shopping-item .goods-description .funidc-specs {
  gap: 0.045rem;
}
.template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
.template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
.template .shopping-box .shopping-item .goods-description .funidc-specs > div {
  min-height: 0.3rem;
  padding: 0.035rem 0;
}
.template .shopping-box .shopping-item .price-box {
  padding-top: 0.22rem;
  padding-bottom: 0.24rem;
}
@media screen and (max-width: 915px) {
  .template .funidc-catalog-head,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box,
  .template .main-content-box,
  .template .shopping-box .goods-list-div {
    max-width: none;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 2.64rem), 3.05rem)) !important;
  }
}
@media screen and (max-width: 750px) {
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .template .shopping-box .shopping-item .goods-name {
    padding-top: 0.22rem;
  }
  .template .shopping-box .shopping-item .goods-description {
    margin-top: 0.15rem;
  }
  .template .shopping-box .shopping-item .price-box {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
}

/* FunIDC fluid unlimited columns 20260524 */
.template .main-content-box,
.template .shopping-box .goods-list-div {
  max-width: none;
}
.template .shopping-box .goods-list-div {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 2.78rem), 3.35rem)) !important;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: none;
  }
}

/* FunIDC mobile dropdown navigation and layout 20260524 */
.template .funidc-mobile-nav,
.template .funidc-mobile-segment-nav {
  display: none;
}
@media screen and (max-width: 915px) {
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 2.78rem), 3.35rem)) !important;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .template .el-main {
    padding: 0.12rem;
  }
  .template .main-card {
    padding: 0.18rem 0.14rem 0.22rem;
    border-radius: 0.08rem;
  }
  .template .funidc-catalog-head {
    margin-bottom: 0.18rem;
  }
  .template .funidc-catalog-head .main-title {
    margin-bottom: 0.08rem;
    font-size: 0.23rem;
    line-height: 1.3;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0.14rem;
    color: #778196;
    font-size: 0.13rem;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .template .funidc-catalog-head .search-box {
    overflow: visible;
  }
  .template .funidc-catalog-head .search-box .sec-nav {
    display: none;
  }
  .template .funidc-mobile-nav {
    display: block;
    width: 100%;
  }
  .template .funidc-mobile-trigger {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 0.42rem;
    padding: 0.1rem 0.14rem;
    color: #171717;
    font-size: 0.14rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(246, 130, 31, 0.24);
    border-radius: 0.08rem;
    outline: 0;
  }
  .template .funidc-mobile-trigger i {
    flex: 0 0 auto;
    margin-left: 0.12rem;
    color: #F6821F;
    font-size: 0.14rem;
    transition: transform 0.2s ease;
  }
  .template .funidc-mobile-trigger.active i {
    transform: rotate(180deg);
  }
  .template .funidc-mobile-panel {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.08rem;
    width: 100%;
    margin-top: 0.1rem;
    padding: 0.1rem;
    background: #fff;
    border: 1px solid #EDF0F5;
    border-radius: 0.1rem;
    box-shadow: 0 0.12rem 0.28rem rgba(18, 31, 56, 0.08);
  }
  .template .funidc-mobile-option {
    box-sizing: border-box;
    min-height: 0.36rem;
    padding: 0.075rem 0.1rem;
    overflow: hidden;
    color: #314052;
    font-size: 0.13rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #FAFBFD;
    border: 1px solid #EDF0F5;
    border-radius: 0.08rem;
  }
  .template .funidc-mobile-option.active {
    color: #fff;
    background: #F6821F;
    border-color: #F6821F;
  }
  .template .shopping-box {
    margin-top: 0;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center;
    gap: 0.12rem;
    max-width: none;
  }
  .template .shopping-box .shopping-item {
    width: 100%;
    max-width: 4.6rem;
  }
  .template .shopping-box .shopping-item .goods-name {
    padding-top: 0.22rem;
  }
  .template .shopping-box .shopping-item .plan-price-row {
    margin-top: 0.12rem;
    padding-bottom: 0.14rem;
  }
  .template .shopping-box .shopping-item .plan-price-row .item-price {
    font-size: 0.28rem;
  }
  .template .shopping-box .shopping-item .plan-price-row::after {
    width: 0.42rem;
  }
  .template .shopping-box .shopping-item .goods-description {
    margin-top: 0.15rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
  .template .shopping-box .shopping-item .goods-description .funidc-specs {
    gap: 0.04rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div {
    min-height: 0.28rem;
  }
  .template .shopping-box .shopping-item .price-box {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .template .shopping-box .shopping-item.funidc-no-desc .price-box {
    margin-top: 0.16rem;
  }
}
@media screen and (max-width: 420px) {
  .template .el-main {
    padding: 0.1rem;
  }
  .template .main-card {
    padding-right: 0.12rem;
    padding-left: 0.12rem;
  }
  .template .shopping-box .shopping-item {
    max-width: none;
  }
  .template .funidc-mobile-panel {
    gap: 0.07rem;
    padding: 0.08rem;
  }
}

/* FunIDC mobile full-width correction 20260524 */
@media screen and (max-width: 750px) {
  html,
  body,
  .template {
    max-width: 100%;
    overflow-x: hidden;
  }
  .template .el-container,
  .template .el-main,
  .template .main-card,
  .template .main-content-box,
  .template .shopping-box,
  .template .shopping-box .goods-list-div {
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
  }
  .template .el-main {
    padding: 0.1rem;
  }
  .template .main-card {
    width: 100%;
    padding: 0.18rem 0.12rem 0.22rem;
  }
  .template .funidc-catalog-head .main-title,
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    width: 100%;
    text-align: left;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-right: 0;
    margin-left: 0;
  }
  .template .funidc-mobile-trigger {
    min-height: 0.48rem;
    padding: 0.09rem 0.12rem;
    border-color: #F3D8C2;
    background: #FFFDFC;
  }
  .template .funidc-mobile-trigger-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.02rem;
  }
  .template .funidc-mobile-trigger-text em {
    display: block;
    color: #8C8C8C;
    font-size: 0.11rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
  }
  .template .funidc-mobile-trigger-text strong {
    display: block;
    overflow: hidden;
    color: #171717;
    font-size: 0.14rem;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch;
    width: 100%;
    gap: 0.1rem;
  }
  .template .shopping-box .shopping-item {
    width: 100%;
    max-width: none;
  }
}

/* FunIDC mobile filter row and readable text 20260524 */
@media screen and (max-width: 750px) {
  .template .funidc-mobile-trigger {
    min-height: 0.44rem;
    padding: 0.08rem 0.12rem;
  }
  .template .funidc-mobile-trigger-text {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }
  .template .funidc-mobile-trigger-text em {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding-right: 0.1rem;
    color: #6F7A8C;
    font-size: 0.13rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
  }
  .template .funidc-mobile-trigger-text em::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 0.16rem;
    transform: translateY(-50%);
    background: #E5E8EF;
  }
  .template .funidc-mobile-trigger-text strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #171717;
    font-size: 0.15rem;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .template .funidc-mobile-option {
    font-size: 0.14rem;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    font-size: 0.14rem;
  }
  .template .shopping-box .shopping-item .goods-name .goods-name-text {
    font-size: 0.18rem;
  }
  .template .shopping-box .shopping-item .plan-price-row .price-start,
  .template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
    font-size: 0.14rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
  .template .shopping-box .shopping-item .goods-description .funidc-specs strong,
  .template .shopping-box .shopping-item .goods-description .funidc-specs b,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
  .template .shopping-box .shopping-item .goods-description .funidc-specs p,
  .template .shopping-box .shopping-item .goods-description .funidc-specs span {
    font-size: 0.14rem;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn {
    font-size: 0.15rem;
  }
}

/* FunIDC mobile compact filter pill 20260524 */
@media screen and (max-width: 750px) {
  .template .funidc-mobile-nav {
    width: 100%;
  }
  .template .funidc-mobile-trigger {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 0.46rem;
    justify-content: space-between;
    gap: 0.1rem;
    padding: 0.09rem 0.13rem;
    background: #F6F7FA;
    border: 0;
    border-radius: 0.08rem;
  }
  .template .funidc-mobile-trigger i {
    margin-left: 0.06rem;
    color: #6F7A8C;
    font-size: 0.14rem;
  }
  .template .funidc-mobile-trigger-text {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.12rem;
    min-width: 0;
  }
  .template .funidc-mobile-trigger-text em {
    padding-right: 0.12rem;
    color: #171717;
    font-size: 0.15rem;
    font-weight: 600;
  }
  .template .funidc-mobile-trigger-text em::after {
    height: 0.18rem;
    background: #DDE2EA;
  }
  .template .funidc-mobile-trigger-text strong {
    color: #171717;
    font-size: 0.15rem;
    font-weight: 800;
    text-align: center;
  }
  .template .funidc-mobile-panel {
    margin-top: 0.08rem;
  }
}

/* FunIDC desktop category hierarchy and radius alignment 20260525 */
@media screen and (min-width: 751px) {
  .template .funidc-catalog-head .search-box {
    row-gap: 0.12rem;
  }
  .template .funidc-catalog-head .search-box .first-nav,
  .template .funidc-catalog-head .search-box .sec-nav {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-name,
  .template .funidc-catalog-head .search-box .sec-nav .nav-name {
    display: block;
    flex: 0 0 0.86rem;
    width: 0.86rem;
    padding-top: 0.085rem;
    color: #6F7A8C;
    font-size: 0.14rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-box,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: none;
    gap: 0.1rem;
    min-width: 0;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item {
    box-sizing: border-box;
    min-width: 1.06rem;
    min-height: 0.38rem;
    padding: 0.085rem 0.16rem;
    border: 1px solid #EAEAEA;
    border-radius: 0.08rem;
    color: #314052;
    font-size: 0.14rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    background: #fff;
    box-shadow: none;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item:hover,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item:hover {
    color: #F6821F;
    border-color: rgba(246, 130, 31, 0.42);
    background: #FFF8F1;
    box-shadow: none;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item.active,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item.active {
    color: #fff;
    border-color: #F6821F;
    background: #F6821F;
    box-shadow: 0 0.08rem 0.18rem rgba(246, 130, 31, 0.16);
  }
  .template .shopping-box .shopping-item {
    border-radius: 0.08rem;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn {
    border-radius: 0.08rem;
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head .search-box .first-nav,
  .template .funidc-catalog-head .search-box .sec-nav {
    display: none !important;
  }
  .template .shopping-box .shopping-item,
  .template .shopping-box .shopping-item .price-box .buy-btn,
  .template .funidc-mobile-trigger,
  .template .funidc-mobile-panel,
  .template .funidc-mobile-option {
    border-radius: 0.08rem;
  }
}

/* FunIDC desktop nav true center without left labels 20260525 */
@media screen and (min-width: 751px) {
  .template .funidc-catalog-head .search-box .first-nav .nav-name,
  .template .funidc-catalog-head .search-box .sec-nav .nav-name {
    display: none !important;
  }
  .template .funidc-catalog-head .search-box .first-nav,
  .template .funidc-catalog-head .search-box .sec-nav {
    justify-content: center;
  }
  .template .funidc-catalog-head .search-box .first-nav .nav-box,
  .template .funidc-catalog-head .search-box .sec-nav .nav-box {
    flex: 0 1 auto;
    width: 100%;
    justify-content: center;
    padding-left: 0;
  }
}

/* FunIDC adaptive vertical rhythm 20260525 */
@media screen and (min-width: 751px) {
  .template .main-card {
    min-height: calc(100vh - 1rem);
    padding-top: clamp(0.28rem, 3.2vh, 0.54rem);
    padding-bottom: clamp(0.32rem, 4vh, 0.72rem);
  }
  .template .funidc-catalog-head {
    margin-bottom: clamp(0.24rem, 3.4vh, 0.48rem);
  }
  .template .funidc-catalog-head .main-title {
    margin-bottom: clamp(0.12rem, 1.8vh, 0.2rem);
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: clamp(0.22rem, 3vh, 0.42rem);
  }
  .template .funidc-catalog-head .search-box {
    row-gap: clamp(0.1rem, 1.6vh, 0.18rem);
  }
  .template .shopping-box {
    margin-top: clamp(0.22rem, 3.2vh, 0.5rem);
  }
}
@media screen and (min-width: 751px) and (max-height: 820px) {
  .template .main-card {
    padding-top: 0.26rem;
    padding-bottom: 0.32rem;
  }
  .template .funidc-catalog-head {
    margin-bottom: 0.22rem;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: 0.2rem;
  }
  .template .shopping-box {
    margin-top: 0.22rem;
  }
}

/* FunIDC mobile adaptive layout refinement 20260525 */
@media screen and (max-width: 750px) {
  html,
  body,
  .template {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .template .el-main {
    box-sizing: border-box;
    width: 100%;
    padding: clamp(0.1rem, 3.5vw, 0.16rem);
    overflow-x: hidden;
  }
  .template .main-card {
    box-sizing: border-box;
    width: 100%;
    min-height: auto;
    padding: clamp(0.16rem, 4.2vw, 0.24rem) clamp(0.12rem, 3.6vw, 0.18rem) clamp(0.2rem, 5vw, 0.3rem);
    overflow-x: hidden;
  }
  .template .funidc-catalog-head {
    width: 100%;
    margin-bottom: clamp(0.16rem, 4.6vw, 0.26rem);
  }
  .template .funidc-catalog-head .main-title {
    margin-bottom: 0.08rem;
    font-size: 0.23rem;
    line-height: 1.3;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: clamp(0.14rem, 4vw, 0.22rem);
    font-size: 0.14rem;
    line-height: 1.55;
  }
  .template .funidc-mobile-nav {
    width: 100%;
  }
  .template .funidc-mobile-trigger {
    width: 100%;
    min-height: 0.48rem;
    padding: 0.1rem 0.13rem;
  }
  .template .funidc-mobile-trigger-text {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.12rem;
    width: 100%;
  }
  .template .funidc-mobile-trigger-text em,
  .template .funidc-mobile-trigger-text strong {
    font-size: 0.15rem;
    line-height: 1.3;
  }
  .template .funidc-mobile-trigger-text strong {
    min-width: 0;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .template .funidc-mobile-panel {
    grid-template-columns: repeat(auto-fit, minmax(1.2rem, 1fr));
    gap: 0.08rem;
    width: 100%;
    padding: 0.1rem;
  }
  .template .funidc-mobile-option {
    min-height: 0.38rem;
    padding: 0.08rem 0.1rem;
    font-size: 0.14rem;
  }
  .template .shopping-box {
    width: 100%;
    margin-top: clamp(0.14rem, 4vw, 0.24rem);
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 2.85rem), 3.8rem)) !important;
    justify-content: center;
    justify-items: stretch;
    width: 100%;
    gap: clamp(0.1rem, 3.2vw, 0.16rem);
    overflow: visible;
  }
  .template .shopping-box .shopping-item,
  .template .shopping-box .shopping-item.funidc-no-desc {
    width: 100%;
    max-width: 3.8rem;
    min-height: auto;
  }
  .template .shopping-box .shopping-item .goods-name,
  .template .shopping-box .shopping-item .plan-price-row,
  .template .shopping-box .shopping-item .goods-description,
  .template .shopping-box .shopping-item .goods-active {
    padding-right: clamp(0.14rem, 4vw, 0.18rem);
    padding-left: clamp(0.14rem, 4vw, 0.18rem);
  }
  .template .shopping-box .shopping-item .goods-name .goods-name-text {
    min-width: 0;
    white-space: normal;
  }
  .template .shopping-box .shopping-item .plan-price-row .item-price {
    font-size: 0.28rem;
    line-height: 1.15;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div {
    align-items: flex-start;
    gap: 0.09rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
  .template .shopping-box .shopping-item .goods-description .funidc-specs strong,
  .template .shopping-box .shopping-item .goods-description .funidc-specs b {
    width: auto;
    max-width: 42%;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
  .template .shopping-box .shopping-item .goods-description .funidc-specs p,
  .template .shopping-box .shopping-item .goods-description .funidc-specs span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .template .shopping-box .shopping-item .price-box {
    padding: clamp(0.18rem, 4.8vw, 0.24rem) clamp(0.14rem, 4vw, 0.18rem);
  }
  .template .shopping-box .shopping-item .price-box .buy-btn {
    width: 100%;
    min-width: 0;
    height: 0.44rem;
  }
}
@media screen and (max-width: 420px) {
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .template .shopping-box .shopping-item,
  .template .shopping-box .shopping-item.funidc-no-desc {
    max-width: none;
  }
}

/* FunIDC mobile full-width cards correction 20260525 */
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head,
  .template .main-content-box,
  .template .shopping-box,
  .template .shopping-box .goods-list-div {
    width: 100%;
    max-width: none;
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0.12rem;
  }
  .template .shopping-box .shopping-item,
  .template .shopping-box .shopping-item.funidc-no-desc {
    width: 100%;
    max-width: none;
  }
  .template .shopping-box .shopping-item .goods-name,
  .template .shopping-box .shopping-item .plan-price-row,
  .template .shopping-box .shopping-item .goods-description,
  .template .shopping-box .shopping-item .goods-active {
    padding-right: 0.18rem;
    padding-left: 0.18rem;
  }
  .template .shopping-box .shopping-item .price-box {
    padding-right: 0.18rem;
    padding-left: 0.18rem;
  }
}

/* FunIDC mobile clarity and alignment polish 20260525 */
@media screen and (max-width: 750px) {
  .template .el-main {
    padding: 0.1rem;
  }
  .template .main-card {
    padding: 0.18rem 0.12rem 0.24rem;
  }
  .template .funidc-catalog-head {
    align-items: stretch;
    margin-bottom: 0.16rem;
    text-align: left;
  }
  .template .funidc-catalog-head .main-title,
  .template .funidc-catalog-head .funidc-catalog-subtitle,
  .template .funidc-catalog-head .search-box,
  .template .main-content-box,
  .template .shopping-box {
    width: 100%;
  }
  .template .funidc-catalog-head .main-title {
    margin-bottom: 0.08rem;
    color: #171717;
    font-size: 0.22rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: 0.18rem;
    color: #667085;
    font-size: 0.13rem;
    line-height: 1.65;
    text-align: left;
  }
  .template .funidc-catalog-head .search-box {
    row-gap: 0.08rem;
  }
  .template .funidc-mobile-nav + .funidc-mobile-nav {
    margin-top: 0.08rem;
  }
  .template .funidc-mobile-trigger {
    min-height: 0.46rem;
    padding: 0.1rem 0.12rem;
    color: #171717;
    background: #fff;
    border: 1px solid #E8EBF0;
    border-radius: 0.08rem;
  }
  .template .funidc-mobile-trigger-text {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.1rem;
  }
  .template .funidc-mobile-trigger-text em {
    color: #3F4858;
    font-size: 0.14rem;
    font-weight: 700;
  }
  .template .funidc-mobile-trigger-text strong {
    color: #171717;
    font-size: 0.14rem;
    font-weight: 800;
    text-align: center;
  }
  .template .funidc-mobile-panel {
    margin-top: 0.08rem;
    padding: 0.08rem;
    background: #fff;
    border: 1px solid #E8EBF0;
    border-radius: 0.08rem;
    box-shadow: 0 0.1rem 0.22rem rgba(18, 31, 56, 0.08);
  }
  .template .funidc-mobile-option {
    min-height: 0.38rem;
    color: #263244;
    font-size: 0.14rem;
    font-weight: 700;
    background: #F7F8FA;
    border-color: #EDF0F5;
  }
  .template .shopping-box {
    margin-top: 0.16rem;
  }
  .template .shopping-box .goods-list-div {
    gap: 0.12rem;
  }
  .template .shopping-box .shopping-item,
  .template .shopping-box .shopping-item.funidc-no-desc {
    border-color: #E8EBF0;
    box-shadow: 0 0.08rem 0.22rem rgba(18, 31, 56, 0.06);
    transform: none;
  }
  .template .shopping-box .shopping-item::before {
    display: none;
  }
  .template .shopping-box .shopping-item:hover {
    border-color: #E8EBF0;
    box-shadow: 0 0.08rem 0.22rem rgba(18, 31, 56, 0.06);
    transform: none;
  }
  .template .shopping-box .shopping-item .goods-name {
    padding-top: 0.2rem;
  }
  .template .shopping-box .shopping-item .goods-name,
  .template .shopping-box .shopping-item .plan-price-row,
  .template .shopping-box .shopping-item .goods-description,
  .template .shopping-box .shopping-item .goods-active {
    padding-right: 0.18rem;
    padding-left: 0.18rem;
  }
  .template .shopping-box .shopping-item .goods-name .goods-name-text {
    color: #171717;
    font-size: 0.17rem;
    font-weight: 800;
    line-height: 1.45;
  }
  .template .shopping-box .shopping-item .plan-price-row {
    margin-top: 0.08rem;
    padding-bottom: 0.14rem;
  }
  .template .shopping-box .shopping-item .plan-price-row .item-price {
    font-size: 0.3rem;
    line-height: 1.12;
  }
  .template .shopping-box .shopping-item .plan-price-row .price-start,
  .template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
    font-size: 0.14rem;
  }
  .template .shopping-box .shopping-item .goods-description {
    margin-top: 0.16rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-list-desc {
    min-height: 0;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
  .template .shopping-box .shopping-item .goods-description .funidc-specs {
    gap: 0.08rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div {
    min-height: 0.28rem;
    padding: 0.02rem 0 0.02rem 0.2rem;
    color: #263244;
    font-size: 0.14rem;
    font-weight: 600;
    line-height: 1.7;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div::before,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div::before,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div::before {
    top: 0.12rem;
    color: #F6821F;
    font-size: 0.14rem;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
  .template .shopping-box .shopping-item .goods-description .funidc-specs strong,
  .template .shopping-box .shopping-item .goods-description .funidc-specs b,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
  .template .shopping-box .shopping-item .goods-description .funidc-specs p,
  .template .shopping-box .shopping-item .goods-description .funidc-specs span {
    color: #263244;
    font-size: 0.14rem;
    font-weight: 600;
    line-height: 1.7;
  }
  .template .shopping-box .shopping-item .price-box {
    padding: 0.2rem 0.18rem 0.18rem;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn,
  .template .shopping-box .shopping-item:hover .price-box .buy-btn,
  .template .shopping-box .shopping-item .price-box .buy-btn:hover,
  .template .shopping-box .shopping-item .price-box .buy-btn:focus {
    width: 100%;
    height: 0.46rem;
    color: #fff;
    font-size: 0.15rem;
    font-weight: 800;
    background: #F6821F;
    border-color: #F6821F;
    box-shadow: none;
  }
}

/* FunIDC mobile navigation readability and active state 20260525 */
@media screen and (max-width: 750px) {
  .template .funidc-mobile-trigger {
    min-height: 0.5rem;
    padding: 0.11rem 0.13rem;
    border-color: #E2E7EF;
    background: #fff;
  }
  .template .funidc-mobile-trigger.active {
    border-color: rgba(246, 130, 31, 0.5);
    background: #FFF8F1;
  }
  .template .funidc-mobile-trigger-text em {
    font-size: 0.15rem;
    font-weight: 700;
  }
  .template .funidc-mobile-trigger-text strong {
    color: #171717;
    font-size: 0.15rem;
    font-weight: 800;
  }
  .template .funidc-mobile-trigger.active .funidc-mobile-trigger-text strong {
    color: #F6821F;
  }
  .template .funidc-mobile-trigger i {
    color: #6F7A8C;
    font-size: 0.15rem;
  }
  .template .funidc-mobile-trigger.active i {
    color: #F6821F;
  }
  .template .funidc-mobile-panel {
    gap: 0.08rem;
    padding: 0.09rem;
  }
  .template .funidc-mobile-option {
    min-height: 0.42rem;
    padding: 0.09rem 0.1rem;
    color: #263244;
    font-size: 0.15rem;
    font-weight: 800;
    background: #F7F8FA;
    border: 1px solid #EDF0F5;
  }
  .template .funidc-mobile-option.active,
  .template .funidc-mobile-option.active:hover,
  .template .funidc-mobile-option.active:focus {
    color: #fff;
    background: #F6821F;
    border-color: #F6821F;
    box-shadow: 0 0.06rem 0.14rem rgba(246, 130, 31, 0.18);
  }
}

/* FunIDC PC/mobile UI cleanup 20260525 */
@media screen and (min-width: 751px) {
  .template .el-main {
    background: transparent !important;
  }
  .template .main-card {
    min-height: auto;
    padding-top: clamp(0.26rem, 2.6vh, 0.46rem);
    padding-bottom: clamp(0.36rem, 4.2vh, 0.68rem);
    background: #fff;
    border-radius: 0.08rem;
  }
  .template .funidc-catalog-head {
    margin-bottom: clamp(0.24rem, 2.8vh, 0.38rem);
  }
  .template .funidc-catalog-head .main-title {
    margin-bottom: 0.08rem;
    font-size: clamp(0.28rem, 1.8vw, 0.34rem);
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    margin-bottom: 0.18rem;
  }
  .template .shopping-box {
    margin-top: clamp(0.16rem, 2.2vh, 0.32rem);
  }
  .template .shopping-box .goods-list-div {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 3rem), 3.6rem)) !important;
    gap: 0.22rem;
    align-items: stretch;
  }
  .template .shopping-box .shopping-item {
    display: flex;
    min-height: 0;
    border-color: #E6EAF1;
  }
  .template .shopping-box .shopping-item .goods-content {
    flex: 1 1 auto;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn,
  .template .shopping-box .shopping-item:hover .price-box .buy-btn,
  .template .shopping-box .shopping-item .price-box .buy-btn:hover,
  .template .shopping-box .shopping-item .price-box .buy-btn:focus {
    color: #fff;
    background: #F6821F;
    border-color: #F6821F;
    box-shadow: none;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn:hover,
  .template .shopping-box .shopping-item .price-box .buy-btn:focus {
    background: #E87516;
    border-color: #E87516;
  }
}

@media screen and (max-width: 750px) {
  html,
  body,
  .template,
  .template > .el-container,
  .template > .el-container > .el-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }
  .template .el-header {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: 52px !important;
    padding: 0 12px !important;
  }
  .template .el-header .header-left {
    flex: 0 0 32px;
    width: 32px;
    min-width: 0;
  }
  .template .el-header .header-left .menu-img {
    width: 24px;
    height: 24px;
  }
  .template .el-header .header-right {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: 0;
    width: auto;
  }
  .template .el-header .header-right-item {
    flex: 0 0 auto;
    margin-left: 0 !important;
  }
  .template .el-header .header-right-item.cloum-line-item {
    display: none !important;
  }
  .template .el-header .right-item,
  .template .el-header .el-badge,
  .template .el-header .el-dropdown-country {
    width: auto;
    height: 24px;
  }
  .template .el-header .right-item img,
  .template .el-header .el-badge img,
  .template .el-header .el-dropdown-country img,
  .template .el-header .un-login img {
    width: 24px;
    height: 24px;
  }
  .template .el-header .un-login {
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto;
    max-width: none;
    color: #7B86A0;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
  .template .el-main {
    box-sizing: border-box;
    width: auto !important;
    max-width: 100%;
    min-width: 0;
    padding: 0.1rem !important;
    overflow-x: hidden;
  }
  .template .main-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 0.18rem 0.12rem 0.24rem;
    overflow-x: hidden;
  }
  .template .funidc-mobile-trigger {
    background: #fff;
    border: 1px solid #DDE3EC;
  }
  .template .funidc-mobile-trigger-text {
    grid-template-columns: max-content minmax(0, 1fr);
  }
  .template .funidc-mobile-trigger-text em {
    white-space: nowrap;
  }
  .template .funidc-mobile-trigger-text strong {
    min-width: 0;
    text-align: center;
  }
  .template .shopping-box .shopping-item {
    border-color: #DDE3EC;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn,
  .template .shopping-box .shopping-item:hover .price-box .buy-btn,
  .template .shopping-box .shopping-item .price-box .buy-btn:hover,
  .template .shopping-box .shopping-item .price-box .buy-btn:focus {
    color: #fff;
    background: #F6821F;
    border-color: #F6821F;
  }
}

@media screen and (max-width: 360px) {
  .template .el-header {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .template .el-header .header-right {
    gap: 10px;
  }
  .template .el-header .un-login {
    font-size: 11px;
  }
}

/* FunIDC mobile product title/spec alignment 20260525 */
@media screen and (max-width: 750px) {
  .template .shopping-box .shopping-item .goods-name,
  .template .shopping-box .shopping-item .plan-price-row {
    padding-left: 18px;
  }
  .template .shopping-box .shopping-item .plan-price-row::after {
    left: 18px;
  }
}

/* FunIDC mobile tap target and readability tuning 20260525 */
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    font-size: 12px;
    line-height: 1.65;
  }
  .template .funidc-mobile-trigger {
    min-height: 44px;
    padding: 10px 12px;
  }
  .template .funidc-mobile-trigger-text em,
  .template .funidc-mobile-trigger-text strong {
    font-size: 13px;
  }
  .template .shopping-box .shopping-item .goods-name .goods-name-text {
    font-size: 15px;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
  .template .shopping-box .shopping-item .goods-description .funidc-specs strong,
  .template .shopping-box .shopping-item .goods-description .funidc-specs b,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
  .template .shopping-box .shopping-item .goods-description .funidc-specs p,
  .template .shopping-box .shopping-item .goods-description .funidc-specs span {
    font-size: 12px;
  }
  .template .shopping-box .shopping-item .price-box .buy-btn,
  .template .shopping-box .shopping-item:hover .price-box .buy-btn,
  .template .shopping-box .shopping-item .price-box .buy-btn:hover,
  .template .shopping-box .shopping-item .price-box .buy-btn:focus {
    height: 44px;
    color: #F6821F;
    background: #fff;
    border-color: #F6821F;
    font-size: 14px;
    font-weight: 800;
  }
}

/* FunIDC mobile final polish pass 20260525 */
@media screen and (max-width: 750px) {
  .template .el-header .header-right {
    gap: 10px;
  }
  .template .el-header .header-right .header-right-item.car-item + .header-right-item.car-item {
    display: none !important;
  }
  .template .el-header .header-left .menu-img,
  .template .el-header .right-item img,
  .template .el-header .el-badge img,
  .template .el-header .el-dropdown-country img,
  .template .el-header .un-login img {
    width: 22px;
    height: 22px;
  }
  .template .funidc-catalog-head,
  .template .funidc-catalog-head .search-box {
    overflow: visible;
  }
  .template .main-card {
    overflow: visible;
  }
  .template .funidc-mobile-nav {
    position: relative;
    z-index: 5;
  }
  .template .funidc-mobile-segment-nav {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
  }
  .template .funidc-mobile-segment-option {
    box-sizing: border-box;
    min-width: 0;
    min-height: 40px;
    padding: 9px 8px;
    overflow: hidden;
    color: #263244;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #F7F8FA;
    border: 1px solid #E5EAF2;
    border-radius: 8px;
  }
  .template .funidc-mobile-segment-option.active {
    color: #fff;
    background: #F6821F;
    border-color: #F6821F;
    box-shadow: 0 8px 16px rgba(246, 130, 31, 0.18);
  }
  .template .funidc-mobile-first-nav {
    margin: 0 0 8px !important;
  }
  .template .funidc-mobile-first-nav .funidc-mobile-trigger {
    display: none !important;
  }
  .template .funidc-mobile-first-nav .funidc-mobile-panel {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .template .funidc-mobile-nav + .funidc-mobile-nav {
    margin-top: 8px;
  }
  .template .funidc-mobile-nav:not(.funidc-mobile-first-nav):has(.funidc-mobile-trigger.active) {
    margin-bottom: 8px;
  }
  .template .funidc-mobile-trigger {
    min-height: 42px;
    border-color: #D7DEE9;
    border-radius: 8px;
    background: #fff;
  }
  .template .funidc-mobile-trigger.active {
    border-color: rgba(246, 130, 31, 0.46);
    background: #FFF8F1;
  }
  .template .funidc-mobile-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
    padding: 10px;
    border-color: #E3E8F0;
    box-shadow: 0 12px 26px rgba(18, 31, 56, 0.12);
  }
  .template .funidc-mobile-nav:not(.funidc-mobile-first-nav) .funidc-mobile-panel {
    position: static !important;
    display: grid;
    margin-top: 8px;
  }
  .template .funidc-mobile-option {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
  }
  .template .shopping-box {
    margin-top: 18px;
  }
  .template .shopping-box .goods-list-div {
    gap: 14px;
  }
  .template .shopping-box .shopping-item,
  .template .shopping-box .shopping-item.funidc-no-desc {
    border-color: #DDE4EE;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(18, 31, 56, 0.045);
  }
  .template .shopping-box .shopping-item .goods-name {
    padding-top: 22px;
    padding-left: 18px;
  }
  .template .shopping-box .shopping-item .goods-name .goods-name-text {
    color: #101828;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
  }
  .template .shopping-box .shopping-item .plan-price-row {
    margin-top: 8px;
    padding-left: 18px;
    padding-bottom: 13px;
  }
  .template .shopping-box .shopping-item .plan-price-row::after {
    left: 18px;
  }
  .template .shopping-box .shopping-item .plan-price-row .item-price {
    font-size: 24px;
    line-height: 1.1;
  }
  .template .shopping-box .shopping-item .goods-description {
    margin-top: 14px;
    padding-left: 18px;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines,
  .template .shopping-box .shopping-item .goods-description .funidc-specs {
    gap: 6px;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    gap: 6px;
    min-height: 22px;
    padding: 2px 0;
    color: #344054;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div::before,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div::before,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div::before {
    position: static;
    color: #F6821F;
    font-size: 13px;
    line-height: 1.55;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div:has(strong),
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div:has(b),
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div:has(strong),
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div:has(b),
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div:has(strong),
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div:has(b),
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list > div.funidc-has-label,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines > div.funidc-has-label,
  .template .shopping-box .shopping-item .goods-description .funidc-specs > div.funidc-has-label {
    grid-template-columns: 16px minmax(0, 1fr);
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list strong,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list b,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines strong,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines b,
  .template .shopping-box .shopping-item .goods-description .funidc-specs strong,
  .template .shopping-box .shopping-item .goods-description .funidc-specs b {
    display: none;
  }
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list p,
  .template .shopping-box .shopping-item .goods-description .funidc-plan-list span,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines p,
  .template .shopping-box .shopping-item .goods-description .funidc-spec-lines span,
  .template .shopping-box .shopping-item .goods-description .funidc-specs p,
  .template .shopping-box .shopping-item .goods-description .funidc-specs span {
    color: #344054;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
  }
  .template .shopping-box .shopping-item .price-box {
    padding-top: 18px;
  }
}

/* FunIDC unified radius, hollow CTA, and selected state 20260525 */
.template .funidc-catalog-head .search-box .first-nav .nav-box .nav-item,
.template .funidc-catalog-head .search-box .sec-nav .nav-box .nav-item,
.template .shopping-box .shopping-item,
.template .shopping-box .shopping-item .price-box .buy-btn,
.template .funidc-mobile-trigger,
.template .funidc-mobile-panel,
.template .funidc-mobile-option,
.template .funidc-mobile-segment-option {
  border-radius: 8px;
}
.template .shopping-box .shopping-item .price-box .buy-btn,
.template .shopping-box .shopping-item:hover .price-box .buy-btn,
.template .shopping-box .shopping-item .price-box .buy-btn:hover,
.template .shopping-box .shopping-item .price-box .buy-btn:focus {
  color: #F6821F;
  background: #fff;
  border-color: #F6821F;
  box-shadow: none;
}
.template .shopping-box .shopping-item .price-box .buy-btn:hover,
.template .shopping-box .shopping-item .price-box .buy-btn:focus {
  color: #F6821F;
  background: #FFF8F1;
  border-color: #F6821F;
}
.template .shopping-box .shopping-item.funidc-selected .price-box .buy-btn,
.template .shopping-box .shopping-item .price-box .buy-btn:active {
  color: #fff;
  background: #F6821F;
  border-color: #F6821F;
  box-shadow: 0 8px 16px rgba(246, 130, 31, 0.18);
}

/* FunIDC final card interaction states 20260525 */
.template .shopping-box .shopping-item {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.template .shopping-box .shopping-item .price-box .buy-btn {
  color: #F6821F;
  background: #fff;
  border-color: #F6821F;
  box-shadow: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.template .shopping-box .shopping-item:hover,
.template .shopping-box .shopping-item.funidc-selected {
  border-color: #F6821F;
  box-shadow: 0 18px 42px rgba(246, 130, 31, 0.12);
}
.template .shopping-box .shopping-item:hover .price-box .buy-btn,
.template .shopping-box .shopping-item.funidc-selected .price-box .buy-btn {
  color: #fff;
  background: #F6821F;
  border-color: #F6821F;
  box-shadow: 0 8px 18px rgba(246, 130, 31, 0.2);
}
.template .shopping-box .shopping-item .price-box .buy-btn:hover,
.template .shopping-box .shopping-item .price-box .buy-btn:focus,
.template .shopping-box .shopping-item .price-box .buy-btn:active {
  color: #fff;
  background: #E87516;
  border-color: #E87516;
  box-shadow: 0 8px 18px rgba(232, 117, 22, 0.22);
}
@media screen and (min-width: 751px) {
  .template .shopping-box .shopping-item:hover {
    transform: translateY(-2px);
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head .main-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
  }
  .template .funidc-catalog-head .funidc-catalog-subtitle {
    display: block;
    margin-bottom: 18px;
    overflow: visible;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
    -webkit-line-clamp: initial;
  }
  .template .shopping-box .shopping-item:hover {
    transform: none;
  }
  .template .shopping-box .shopping-item.funidc-selected {
    border-color: #F6821F;
    box-shadow: 0 12px 28px rgba(246, 130, 31, 0.12);
  }
}

/* FunIDC readable price cycle 20260525 */
.template .shopping-box .shopping-item .plan-price-row .price-start,
.template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
  display: inline-block;
  color: #667085;
  line-height: 1.25;
  vertical-align: baseline;
}
.template .shopping-box .shopping-item .plan-price-row .price-start {
  margin-left: 6px;
  color: #F6821F;
  font-size: 14px;
  font-weight: 800;
}
.template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
  margin-left: 3px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .template .shopping-box .shopping-item .plan-price-row {
    align-items: baseline;
  }
  .template .shopping-box .shopping-item .plan-price-row .price-start,
  .template .shopping-box .shopping-item .plan-price-row .item-price-cycle {
    font-size: 13px;
    line-height: 1.25;
  }
}

/* FunIDC backend category description binding 20260525 */
.template .funidc-catalog-head.funidc-no-subtitle .main-title {
  margin-bottom: 0.14rem;
}
.template .funidc-catalog-head.funidc-no-subtitle .search-box {
  margin-top: 0;
}
@media screen and (min-width: 751px) {
  .template .funidc-catalog-head.funidc-no-subtitle {
    margin-bottom: clamp(0.2rem, 2.8vh, 0.38rem);
  }
}
@media screen and (max-width: 750px) {
  .template .funidc-catalog-head.funidc-no-subtitle .main-title {
    margin-bottom: 14px;
  }
}
.template .funidc-catalog-head:hover {
  background: transparent !important;
}

