<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* å…¨å±€ç»Ÿä¸€æ&nbsp;·å¼ç±»åæŽ§åˆ¶ */
@import url("./class-define.css");

html {
  /* æ&nbsp;‡å‡†å­—ä½“å¤§å°å¯ä»¥ï¼Œåœ¨ç§»åŠ¨ç«¯ä½¿ç”¨çš„remé€‚é…çš„è¯ä¼šåŠ¨æ€æ”¹å˜ã€‚ */
  font-size: 14px;
  /*  ä½¿ç”¨IEç›’æ¨¡åž‹ï¼ˆä¸ªäººå–èˆï¼Œæˆ‘ä¸€èˆ¬è®¾ç½®widthæ˜¯è¿™æ˜¯ç›’å­çš„çœŸå®žå¤§å°ï¼ŒåŒ…æ‹¬paddingå’Œborderï¼‰ */
  box-sizing: border-box;
}

body {
  /* æœ‰äº›èƒŒæ™¯é»˜è®¤ä¸ºæµ…ç°è‰²ï¼Œæ‰€ä»¥ç»Ÿä¸€è®¾ç½®ä¸ºçº¯ç™½ */
  background: #ededed;
  font-family: "Alibaba PuHuiTi";
  font-size: 14px;
  color: var(--textColor);
  font-style: normal;
  font-weight: normal;
  width: 100%;
  height: 100%;
}

/* åŽ»é™¤æµè§ˆå™¨é»˜è®¤çš„marginå’Œpadding, è‡ªè¡Œåˆ&nbsp;å‡ä¸€äº›ä¸å¿…è¦çš„æ&nbsp;‡ç­¾ */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
ul,
ol,
th,
td,
button,
figure,
input,
textarea,
form,
pre,
blockquote,
figure {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--textColor);
}

ol,
ul,
li {
  /* åŽ»é™¤è‡ªå¸¦çš„uglyæ&nbsp;·å¼ã€‚ */
  list-style: none;
}

/* è¿™äº›èŠ‚ç‚¹éƒ¨åˆ†å±žæ€§æ²¡æœ‰ç»§æ‰¿çˆ¶èŠ‚ç‚¹æ&nbsp;·å¼ï¼Œæ‰€æœ‰ç»§æ‰¿ä¸€ä¸‹ï¼Œå¹¶å–æ¶ˆoutlineï¼Œå¤–è½®å»“çš„æ•ˆæžœ */
a,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  color: inherit;
  outline: none;
}

button,
input[type="submit"],
input[type="button"] {
  /* å¯ç‚¹å‡»å°æ‰‹ */
  cursor: pointer;
}
/* å–æ¶ˆéƒ¨åˆ†æµè§ˆå™¨æ•°å­—è¾“å…¥æŽ§ä»¶çš„æ“ä½œæŒ‰é’® apperanceå¯ä»¥æ”¹å˜æŽ§ä»¶çš„å¤–è§‚ã€‚ */
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
/**
  * åˆ&nbsp;é™¤Firefoxä¸­çš„å†…è¾¹æ¡†å’Œå¡«å……ã€‚
  */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
  * è®©html5ä¸­çš„hiddenåœ¨IE10ä¸­æ­£ç¡®æ˜¾ç¤º
  */

[hidden] {
  display: none;
}

/* IE11 ç¦ç”¨æ¸…é™¤æŒ‰é’®ï¼ˆå‰å·ï¼‰ */
input::-ms-clear {
  display: none;
}
/* IE11 ç¦ç”¨æ˜¾ç¤ºå¯†ç&nbsp;æŒ‰é’®ï¼ˆå°çœ¼ç›ï¼‰ */
input::-ms-reveal {
  display: none;
}

/* é’ˆå¯¹IE11çš„CSS Hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body,
  a {
    color: #9f9f9f;
  }
}
</pre></body></html>