/* ===== 圣芸达商城 统一样式表 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Lantinghei SC, Open Sans, Arial, Hiragino Sans GB, Microsoft YaHei, "微软雅黑", SimSun, sans-serif;
  color: #333;
  background: #f4f6f9;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* 顶部信息栏 */
.zh_topbar {
  background: linear-gradient(90deg, #386e34, #3db135);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.zh_topbar_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.zh_topbar_left { display: flex; flex-wrap: wrap; column-gap: 24px; row-gap: 4px; }
.zh_contact_item { display: flex; align-items: center; gap: 6px; opacity: 0.95; }
.zh_topbar_right { display: flex; align-items: center; gap: 16px; opacity: 0.95; }
.zh_topbar_right a:hover { text-decoration: underline; }

/* 主导航栏 */
.zh_navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.zh_navbar_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.zh_logo { display: flex; align-items: center; }
.zh_logo_img { height: 48px; width: auto; max-width: 200px; object-fit: contain; }
.zh_nav { display: flex; align-items: center; gap: 14px; }
.zh_nav_list { display: flex; align-items: center; gap: 4px; }
.zh_nav_link {
  display: block;
  padding: 10px 14px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.zh_nav_link:hover,
.zh_nav_item.active .zh_nav_link {
  color: #3db135;
  background: rgba(61, 177, 53, 0.1);
}
.zh_nav_cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #386e34, #3db135);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(61, 177, 53, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.zh_nav_cta:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(61, 177, 53, 0.4); }
.zh_cart_badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #e4393c;
  color: #fff;
  border-radius: 9px;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}
.zh_user_btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.zh_user_btn:hover { border-color: #3db135; color: #3db135; }
.zh_mobile_toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.zh_mobile_toggle span { width: 22px; height: 2px; background: #333; border-radius: 2px; }

/* 面包屑 */
.zh_breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eef0ee;
  padding: 12px 0;
}
.zh_breadcrumb_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #777;
}
.zh_breadcrumb_icon { width: 15px; height: 15px; }
.zh_breadcrumb_container a:hover { color: #3db135; }

/* 主容器 */
.zh_container { max-width: 1400px; margin: 0 auto; padding: 30px 20px 50px; }

/* 通用区段 */
.zh_section { padding: 45px 20px; }
.zh_section_light { background: #fff; }
.zh_section_alt { background: #f4f6f9; }
.zh_section_container { max-width: 1400px; margin: 0 auto; }
.zh_section_header { text-align: center; margin-bottom: 30px; }
.zh_section_sub {
  display: inline-block;
  color: #3db135;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.zh_section_title { font-size: 30px; font-weight: 700; color: #22322b; }
.zh_section_title em { color: #3db135; font-style: normal; }

/* 横幅 */
.zh_hero {
  background: linear-gradient(120deg, #2c5e2a, #3d8f3a 55%, #58b554);
  color: #fff;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}
.zh_hero_container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.zh_hero h1 { font-size: 42px; line-height: 1.3; margin-bottom: 16px; letter-spacing: 1px; }
.zh_hero p { font-size: 17px; opacity: 0.92; max-width: 640px; line-height: 1.8; margin-bottom: 26px; }
.zh_hero_btns { display: flex; gap: 14px; flex-wrap: wrap; }
.zh_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #2c5e2a;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}
.zh_btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22); }
.zh_btn_ghost { background: rgba(255, 255, 255, 0.16); color: #fff; box-shadow: none; border: 1px solid rgba(255, 255, 255, 0.5); }
.zh_hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

/* 服务卡片 */
.zh_card_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.zh_card {
  background: #fff;
  border: 1px solid #eaeeec;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  display: block;
}
.zh_card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(44, 94, 42, 0.14); border-color: #3db135; }
.zh_card_icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #386e34, #3db135);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.zh_card h3 { font-size: 19px; color: #22322b; margin-bottom: 10px; }
.zh_card p { font-size: 14px; color: #777; line-height: 1.8; }
.zh_card_more { display: inline-block; margin-top: 14px; color: #3db135; font-size: 14px; font-weight: 600; }
.zh_card_more:hover { text-decoration: underline; }

/* 商品网格 */
.zh_product_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zh_product_card {
  background: #fff;
  border: 1px solid #eaeeec;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.zh_product_card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1); }
.zh_product_img { position: relative; background: #fafbfa; }
.zh_product_img img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.zh_product_badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: linear-gradient(135deg, #386e34, #3db135);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 4px;
}
.zh_product_body { padding: 14px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.zh_product_cat { font-size: 12px; color: #9aa5a0; margin-bottom: 6px; }
.zh_product_name {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 45px;
}
.zh_product_name:hover { color: #3db135; }
.zh_product_price { margin-top: 12px; display: flex; align-items: baseline; gap: 10px; }
.zh_product_price .now { color: #e4393c; font-size: 20px; font-weight: 700; }
.zh_product_price .now small { font-size: 13px; }
.zh_product_price .old { color: #b0b6b3; font-size: 13px; text-decoration: line-through; }
.zh_product_ops { margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.zh_product_btn {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: 24px;
  font-size: 14px;
  background: linear-gradient(135deg, #386e34, #3db135);
  color: #fff;
  transition: all 0.3s ease;
}
.zh_product_btn:hover { opacity: 0.9; transform: translateY(-1px); }
.zh_product_btn.outline { background: #fff; color: #3db135; border: 1px solid #3db135; }
.zh_view_more {
  display: block;
  width: fit-content;
  margin: 34px auto 0;
  color: #3db135;
  border: 1px solid #3db135;
  border-radius: 30px;
  padding: 11px 36px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.zh_view_more:hover { background: #3db135; color: #fff; }

/* 发布 CTA 横幅 */
.zh_cta_band {
  background: linear-gradient(120deg, #2c5e2a, #3d8f3a 55%, #58b554);
  border-radius: 16px;
  padding: 40px 46px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.zh_cta_band h3 { font-size: 24px; margin-bottom: 8px; }
.zh_cta_band p { opacity: 0.9; font-size: 15px; }

/* 表格（购物车） */
.zh_table_wrap { background: #fff; border-radius: 12px; border: 1px solid #eaeeec; overflow: hidden; }
.zh_table { width: 100%; border-collapse: collapse; }
.zh_table th {
  background: #f7f9f7;
  color: #666;
  font-size: 14px;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #eaeeec;
}
.zh_table td { padding: 14px 16px; border-bottom: 1px solid #f0f2f0; font-size: 14px; vertical-align: middle; }
.zh_table tr:last-child td { border-bottom: none; }
.zh_table .tnum { width: 110px; }
.zh_goods_cell { display: flex; align-items: center; gap: 12px; }
.zh_goods_cell img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.zh_goods_cell a { color: #333; }
.zh_goods_cell a:hover { color: #3db135; }

/* 数量控件 */
.zh_qty { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 20px; overflow: hidden; }
.zh_qty button { width: 30px; height: 30px; background: #fff; border: none; font-size: 16px; color: #555; }
.zh_qty button:hover { background: #3db135; color: #fff; }
.zh_qty input { width: 42px; border: none; text-align: center; font-size: 14px; height: 30px; outline: none; }

/* 结算合计 */
.zh_cart_summary { margin-top: 20px; background: #fff; border: 1px solid #eaeeec; border-radius: 12px; padding: 22px 26px; display: flex; justify-content: flex-end; align-items: center; gap: 24px; flex-wrap: wrap; }
.zh_cart_summary .total { font-size: 16px; color: #555; }
.zh_cart_summary .total b { color: #e4393c; font-size: 26px; }

/* 表单 */
.zh_form_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.zh_form_field_full { grid-column: 1 / -1; }
.zh_form_label { display: block; font-size: 14px; color: #555; margin-bottom: 8px; }
.zh_form_label_req { color: #e4393c; margin-right: 2px; }
.zh_form_input,
.zh_form_select,
.zh_form_textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.zh_form_input:focus,
.zh_form_select:focus,
.zh_form_textarea:focus { border-color: #3db135; }
.zh_form_textarea { min-height: 110px; resize: vertical; }
.zh_form_panel { background: #fff; border: 1px solid #eaeeec; border-radius: 12px; padding: 30px; max-width: 860px; }
.zh_form_panel h2 { color: #22322b; margin-bottom: 20px; }
.zh_form_error { display: none; color: #e4393c; font-size: 12px; margin-top: 6px; }
.zh_form_buttons { margin-top: 24px; display: flex; gap: 14px; }
.zh_form_button {
  border: none;
  border-radius: 30px;
  padding: 12px 36px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.zh_form_submit { background: linear-gradient(135deg, #386e34, #3db135); color: #fff; }
.zh_form_submit:hover { opacity: 0.9; transform: translateY(-1px); }
.zh_form_reset { background: #eef1ef; color: #555; }
.zh_form_reset:hover { background: #e0e5e2; }

/* 支付弹窗 */
.zh_pay_modal { display: none; position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.zh_pay_modal.open { display: flex; }
.zh_pay_overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.zh_pay_content {
  position: relative;
  background: #fff;
  width: 360px;
  max-width: 100%;
  border-radius: 16px;
  padding: 30px 28px;
  text-align: center;
  animation: zhPop 0.25s ease;
}
@keyframes zhPop { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.zh_pay_close { position: absolute; right: 14px; top: 10px; font-size: 28px; line-height: 1; color: #bbb; border: none; background: none; }
.zh_pay_close:hover { color: #333; }
.zh_pay_title { font-size: 18px; font-weight: 600; color: #22322b; }
.zh_pay_amount { color: #e4393c; font-size: 20px; font-weight: 700; margin: 12px 0 4px; }
.zh_pay_amount .zh_pay_amount_num { font-size: 34px; }
.zh_pay_hint { color: #888; font-size: 13px; line-height: 1.7; margin: 8px 0 16px; }
.zh_pay_qr { width: 220px; margin: 0 auto; border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.zh_pay_qr img { width: 100%; }
.zh_pay_qr_tip { color: #aaa; font-size: 12px; margin-top: 8px; }
.zh_pay_btn {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: none;
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(135deg, #386e34, #3db135);
  color: #fff;
  font-size: 15px;
}
.zh_pay_btn:hover { opacity: 0.9; }
.zh_pay_cancel { display: block; width: 100%; margin-top: 8px; border: none; background: none; color: #999; padding: 8px; }
.zh_pay_cancel:hover { color: #333; }

/* 商品详情 */
.zh_goods_layout { display: grid; grid-template-columns: 440px 1fr; gap: 36px; }
.zh_goods_gallery { background: #fff; border: 1px solid #eaeeec; border-radius: 14px; padding: 18px; align-self: start; }
.zh_goods_gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; }
.zh_goods_info { background: #fff; border: 1px solid #eaeeec; border-radius: 14px; padding: 28px; }
.zh_goods_info .cat { color: #9aa5a0; font-size: 13px; }
.zh_goods_info h1 { font-size: 24px; color: #22322b; margin: 8px 0 14px; line-height: 1.5; }
.zh_goods_price_box { background: #f7f9f7; border-radius: 10px; padding: 16px 18px; margin: 6px 0 20px; display: flex; align-items: baseline; gap: 12px; }
.zh_goods_price_box .now { color: #e4393c; font-size: 30px; font-weight: 700; }
.zh_goods_price_box .now small { font-size: 16px; }
.zh_goods_price_box .old { color: #b0b6b3; text-decoration: line-through; font-size: 15px; }
.zh_goods_desc { color: #666; font-size: 15px; line-height: 2; }
.zh_goods_desc ul { margin: 12px 0 0 0; }
.zh_goods_desc li { padding-left: 22px; position: relative; }
.zh_goods_desc li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: #3db135; }
.zh_goods_ops { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.zh_goods_spec { margin-top: 26px; border-top: 1px dashed #e3e7e4; padding-top: 16px; color: #888; font-size: 13px; line-height: 1.9; }

/* 服务页内容 */
.zh_service_block { background: #fff; border: 1px solid #eaeeec; border-radius: 14px; padding: 30px; margin-bottom: 24px; }
.zh_service_block h2 { color: #22322b; font-size: 22px; margin-bottom: 14px; }
.zh_service_block h2 em { color: #3db135; font-style: normal; }
.zh_service_block p, .zh_service_block li { color: #555; font-size: 15px; line-height: 2; }
.zh_service_block ul { margin-left: 4px; }
.zh_service_block li { padding-left: 18px; position: relative; }
.zh_service_block li::before { content: ""; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: #3db135; }

/* 分类筛选 */
.zh_filter { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px 0; }
.zh_filter button {
  border: 1px solid #d7dcd9;
  background: #fff;
  color: #555;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.25s ease;
}
.zh_filter button.active, .zh_filter button:hover { background: #3db135; color: #fff; border-color: #3db135; }

/* 空状态 / 提示 */
.zh_empty { text-align: center; padding: 70px 0; color: #9aa5a0; }
.zh_empty .ico { font-size: 54px; margin-bottom: 12px; }
.zh_empty a { color: #3db135; }
.zh_notice { background: #eef6ee; color: #2c6e2a; border: 1px dashed #9fd19b; border-radius: 10px; padding: 14px 18px; font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

/* 页脚 */
.zh_footer { background: #23302b; color: #cfd8d3; margin-top: 30px; }
.zh_footer_container { max-width: 1400px; margin: 0 auto; padding: 46px 20px 22px; }
.zh_footer_main { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.zh_footer_logo { height: 42px; width: fit-content; object-fit: contain; margin-bottom: 14px; }
.zh_footer_desc { font-size: 13px; line-height: 2; color: #9fb0a7; margin-bottom: 16px; }
.zh_footer_contact_list { display: flex; flex-direction: column; gap: 10px; }
.zh_footer_contact_item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #cfd8d3; }
.zh_footer_contact_icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zh_footer_contact_icon svg { width: 15px; height: 15px; fill: #6fcf6a; }
.zh_footer_title { color: #fff; font-size: 16px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.zh_footer_title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: #3db135; }
.zh_footer_link_list { display: flex; flex-direction: column; gap: 10px; }
.zh_footer_link_item a { color: #9fb0a7; font-size: 13px; transition: all 0.3s ease; }
.zh_footer_link_item a:hover { color: #6fcf6a; padding-left: 4px; }
.zh_footer_divider { border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 30px 0 16px; }
.zh_footer_bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.zh_footer_bottom_link { color: #9fb0a7; font-size: 13px; }
.zh_footer_bottom_link:hover { color: #6fcf6a; }
.zh_footer_copyright { font-size: 13px; color: #9fb0a7; }
.zh_footer_bottom_links { display: flex; gap: 20px; }

/* 返回顶部 */
.zh_back_to_top {
  position: fixed;
  right: 26px;
  bottom: 40px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #386e34, #3db135);
  color: #fff;
  box-shadow: 0 6px 18px rgba(61, 177, 53, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99;
}
.zh_back_to_top.show { opacity: 1; pointer-events: auto; }
.zh_back_to_top svg { width: 20px; height: 20px; fill: #fff; }

/* 响应式 */
@media (max-width: 1100px) {
  .zh_product_grid { grid-template-columns: repeat(3, 1fr); }
  .zh_card_grid { grid-template-columns: repeat(2, 1fr); }
  .zh_goods_layout { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .zh_nav_list { display: none; }
  .zh_mobile_toggle { display: flex; }
  .zh_product_grid { grid-template-columns: repeat(2, 1fr); }
  .zh_form_grid { grid-template-columns: 1fr; }
  .zh_footer_main { grid-template-columns: 1fr; }
  .zh_hero h1 { font-size: 30px; }
  .zh_hero { padding: 50px 20px; }
  .zh_section { padding: 34px 16px; }
  .zh_container { padding: 22px 16px 40px; }
}
@media (max-width: 560px) {
  .zh_product_grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .zh_card_grid { grid-template-columns: 1fr; }
}

/* 商品卡片中的店铺入口 */
.zh_product_shop {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #386e34;
  background: #eef7ec;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #cee8c8;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zh_product_shop:hover { color: #fff; background: #3db135; }

/* 店铺街 */
.zh_store_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.zh_store_card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e3e8e4;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding: 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.zh_store_card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(56, 110, 52, 0.14); }
.zh_store_head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.zh_store_logo {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e6ece7;
  background: #f7faf7;
  flex: 0 0 auto;
}
.zh_store_title { min-width: 0; }
.zh_store_title h3 { font-size: 17px; color: #1d3a1c; line-height: 1.4; }
.zh_store_title h3 a:hover { color: #3db135; }
.zh_store_tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(90deg, #386e34, #3db135);
  border-radius: 4px;
  padding: 2px 8px;
}
.zh_store_desc { font-size: 13px; color: #667; line-height: 1.8; min-height: 58px; }
.zh_store_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
  font-size: 13px;
  color: #888;
}
.zh_store_meta span { background: #f4f8f3; border: 1px solid #e2ecdf; border-radius: 6px; padding: 4px 10px; }
.zh_store_meta b { color: #e98c1b; }
.zh_store_foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed #dfe7e1; padding-top: 14px; margin-top: auto; }
.zh_store_count { font-size: 13px; color: #888; }
.zh_store_count b { color: #386e34; font-size: 16px; }

/* 店铺详情页 */
.zh_store_banner {
  background: linear-gradient(120deg, #386e34, #3db135);
  border-radius: 14px;
  padding: 26px 30px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(56, 110, 52, 0.22);
}
.zh_store_banner_logo { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; border: 2px solid #fff; background: #fff; }
.zh_store_banner_info { flex: 1; min-width: 220px; }
.zh_store_banner_info h1 { font-size: 22px; margin-bottom: 6px; }
.zh_store_banner_info p { font-size: 13px; opacity: 0.95; line-height: 1.7; }
.zh_store_banner_meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.zh_store_banner_meta span { background: rgba(255, 255, 255, 0.16); border-radius: 6px; padding: 3px 10px; font-size: 12px; }
.zh_store_banner_act { flex: 0 0 auto; }

/* 商家入驻 */
.zh_process_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.zh_process_step {
  background: #fff;
  border: 1px solid #e3e8e4;
  border-radius: 12px;
  text-align: center;
  padding: 26px 18px;
  position: relative;
}
.zh_process_num {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #386e34, #3db135);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zh_process_step h3 { font-size: 16px; color: #1d3a1c; margin-bottom: 6px; }
.zh_process_step p { font-size: 13px; color: #888; line-height: 1.7; }

/* 注册协议勾选 */
.zh_form_agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #667;
  line-height: 1.6;
}
.zh_form_agree input { margin-top: 3px; accent-color: #3db135; }
.zh_form_agree a { color: #3db135; text-decoration: underline; }
.zh_form_agree a:hover { color: #386e34; }
.zh_form_error { color: #e4393c; font-size: 12px; margin-top: 4px; display: none; }

@media (max-width: 1024px) {
  .zh_store_grid { grid-template-columns: 1fr; }
  .zh_process_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .zh_process_grid { grid-template-columns: 1fr; }
  .zh_store_banner { padding: 20px; }
}

/* 表单字段容器 */
.zh_form_field { display: flex; flex-direction: column; }
.zh_form_field .zh_form_error { margin-top: 6px; }
.zh_form_field input[type="file"] { padding: 8px 10px; }
.zh_form_panel { max-width: 880px; margin: 0 auto; }

/* 登录 / 注册页 */
.zh_auth_wrap {
  min-height: calc(100vh - 230px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 16px;
  background:
    radial-gradient(circle at 12% 20%, rgba(61, 177, 53, 0.10), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(56, 110, 52, 0.10), transparent 40%),
    #f4f6f9;
}
.zh_auth_card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e3e8e4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 36px;
}
.zh_auth_card form { display: flex; flex-direction: column; gap: 16px; }
.zh_auth_head { text-align: center; margin-bottom: 26px; }
.zh_auth_head h2 { font-size: 24px; color: #1d3a1c; margin-bottom: 8px; }
.zh_auth_head p { font-size: 13px; color: #8b9792; }
.zh_auth_field { display: flex; flex-direction: column; }
.zh_auth_captcha { display: flex; gap: 10px; }
.zh_auth_captcha .zh_form_input { flex: 1; }
.zh_captcha_btn {
  flex: 0 0 110px;
  border: 1px dashed #9fd19b;
  border-radius: 8px;
  background: #eef7ec;
  color: #386e34;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  padding: 0 10px;
  font-family: Consolas, monospace;
}
.zh_captcha_btn:hover { background: #dff0dc; }
.zh_auth_row { display: flex; justify-content: flex-end; }
.zh_auth_link { color: #3db135; font-size: 13px; }
.zh_auth_link:hover { color: #386e34; text-decoration: underline; }
.zh_auth_tip { text-align: center; font-size: 12px; color: #9aa5a0; margin-top: 18px; line-height: 1.7; }
.zh_auth_tip a { color: #3db135; }
.zh_auth_tip a:hover { text-decoration: underline; }
.zh_auth_card .zh_form_submit { width: 100%; }

.zh_goods_detail { background: #fff; border-radius: 12px; padding: 24px 20px 40px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.zh_goods_detail_body { margin-top: 8px; }
.zh_goods_detail_body img { display: block; width: 100%; max-width: 920px; margin: 0 auto; }
.zh_goods_detail_body img + img { margin-top: 4px; }