<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --vw: 1vw;
  --header-height: 0px;
  --suggest-top: 0px;
  --header-innerheight: 0px;
  --drawer-top: 0px;
  --hbg-top-offset: 0;
  --hbg-left-offset: 0;
}
body.is_suggest_active {
  overflow: hidden;
}
body.is_suggest_active .block-hmid,
body.is_suggest_active .sec-inner,
body.is_suggest_active .block-hmidnav,
body.is_suggest_active .block-global-search,
body.is_suggest_active form[name="frmSearch"] {
  z-index: auto;
}
body.is_suggest_active.is_body_suggest_active .block-hmid,
body.is_suggest_active.is_body_suggest_active .sec-inner,
body.is_suggest_active.is_body_suggest_active .block-hmidnav,
body.is_suggest_active.is_body_suggest_active .block-global-search,
body.is_suggest_active.is_body_suggest_active form[name="frmSearch"] {
  z-index: 1000;
}
body.is_suggest_active:not(.is_body_suggest_active).header-fix #header {
  position: relative;
  z-index: 10000;
}
body.is_suggest_active:not(.is_body_suggest_active).header-fix .block-hmid,
body.is_suggest_active:not(.is_body_suggest_active).header-fix .sec-inner,
body.is_suggest_active:not(.is_body_suggest_active).header-fix .block-hmidnav,
body.is_suggest_active:not(.is_body_suggest_active).header-fix .block-global-search,
body.is_suggest_active:not(.is_body_suggest_active).header-fix form[name="frmSearch"] {
  z-index: 1000;
}
body.is_suggest_active:not(.is_body_suggest_active).header-fix .uni_suggest_container {
  margin-top: 20px;
}
body.is_suggest_active .wrapper {
  position: relative;
}
form.is_suggest_active .form-control {
  position: relative;
}
form.is_suggest_active button[name='search'] {
  z-index: 10000;
}
input.js_uniserach_suggest {
  position: relative;
}
input.js_uniserach_suggest.is_suggest_active {
  z-index: 10000;
}
#uni_suggestbg {
  z-index: 108;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 1000;
}
#uni_suggestbg.is_suggest_active {
  opacity: 1;
  visibility: visible;
}
.block-hmid.is_suggest_active {
  z-index: auto;
}
.header-fix .block-hmid.is_suggest_active {
  z-index: auto;
}
form[name="frmSearch"] {
  position: relative;
}
form[name="frmSearch"].is_suggest_active .uni_suggest_container {
  opacity: 1;
  visibility: visible;
}
.uni_suggest_container {
  position: absolute;
  top: 50px;
  left: 0;
  width: 484px;
  max-height: calc((100vh - (var(--suggest-top, 0))) - 50px);
  overflow-y: auto;
  padding: 25px 15px 15px;
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #000;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 10000;
}
.uni_suggest_container:empty {
  opacity: 0;
  visibility: hidden;
  background: transparent;
}
.form-control .uni_suggest_container {
  width: 100%;
  margin-top: 20px;
}
.uni_suggest_head {
  padding-left: 0.5em;
  font-weight: bold;
}
.uni_history_items {
  width: 100%;
  margin-top: 10px;
  padding-bottom: 15px;
  display: -ms-grid;
  display: grid;
  gap: 7px;
}
.uni_history_item {
  width: 100%;
  height: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px;
  grid-template-columns: auto 30px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.uni_history_item:hover {
  text-decoration: none;
  opacity: 0.7;
}
.uni_history_item_name {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0.5em 0.25em 0.5em 0.75em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #1e0505;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.uni_history_item_name:hover {
  text-decoration: none;
  opacity: 0.7;
}
.uni_history_item_btn {
  width: 30px;
  height: 100%;
  background: #fff;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.uni_history_item_btn:before,
.uni_history_item_btn:after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: #000;
  position: absolute;
  top: calc(50% - 7px);
  left: 50%;
}
.uni_history_item_btn:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.uni_history_item_btn:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.uni_history_item_btn:hover {
  opacity: 0.7;
}
.uni_suggest_items {
  width: 100%;
  margin-top: 15px;
  padding-bottom: 15px;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  border-bottom: 1px solid #ccc;
}
.uni_suggest_item {
  width: 100%;
  height: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 100px;
  grid-template-columns: auto 100px;
  gap: 5px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.uni_suggest_item:hover {
  text-decoration: none;
  opacity: 0.7;
}
.uni_suggest_item_name {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0.5em 0.25em 0.5em 0.75em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #1e0505;
}
.uni_suggest_item_label {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0.5em 0;
  text-align: right;
  font-weight: bold;
}
.uni_suggest_goods {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px auto;
  grid-template-columns: 80px auto;
  gap: 15px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.uni_suggest_goods:not(:first-child) {
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
.uni_suggest_goods:hover {
  text-decoration: none;
  opacity: 0.7;
}
.uni_suggest_goods_img {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.uni_suggest_goods_img img {
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}
.uni_suggest_goods_misc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.uni_suggest_goods_name {
  width: 160px;
  font-size: 12px;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.uni_suggest_goods_price {
  font-size: 12px;
  font-weight: bold;
}
.uni_suggest_recommend {
  padding: 15px 0;
  background: #fbdfde;
}
</pre></body></html>