<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* å®šä½ */
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.position-relative {
  position: relative;
}
.left-0 {
  left: 0;
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.right-0 {
  right: 0;
}

/* flexå¸ƒå±€ */
.d-flex {
  display: flex;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}

.flex-1 {
  flex: 1;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-shrink {
  flex-shrink: 0;
}
.j-start {
  justify-content: flex-start;
}
.j-center {
  justify-content: center;
}
.j-end {
  justify-content: flex-end;
}
.j-sb {
  justify-content: space-between;
}
.a-center {
  align-items: center;
}
.a-start {
  align-items: flex-start;
}
.a-end {
  align-items: flex-end;
}
.a-stretch {
  align-items: stretch;
}
.a-self-start {
  align-self: flex-start;
}
.a-self-auto {
  align-self: auto;
}
.a-self-end {
  align-self: flex-end;
}
.a-self-stretch {
  align-self: stretch;
}
.a-self-baseline {
  align-self: baseline;
}

/* start--æ–‡æœ¬è¡Œæ•°é™åˆ¶--start */
.line-1 {
  -webkit-line-clamp: 1;
}
.line-2 {
  -webkit-line-clamp: 2;
}
.line-3 {
  -webkit-line-clamp: 3;
}
.line-4 {
  -webkit-line-clamp: 4;
}
.line-5 {
  -webkit-line-clamp: 5;
}
.line-1,
.line-2,
.line-3,
.line-4,
.line-5 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* end--æ–‡æœ¬è¡Œæ•°é™åˆ¶--end */
/*åŒ…å«ä»¥ä¸‹å››ç§çš„é“¾æŽ¥*/
a {text-decoration: none; display: block } /*æ­£å¸¸çš„æœªè¢«è®¿é—®è¿‡çš„é“¾æŽ¥*/
a:link { text-decoration: none;color: #525252 } /*å·²ç»è®¿é—®è¿‡çš„é“¾æŽ¥*/
a:visited { text-decoration: none; color: #525252; } /*â¿æ&nbsp;‡åˆ’è¿‡(åœç•™)çš„é“¾æŽ¥*/
a:hover { text-decoration: none;color: #007aff } /* æ­£åœ¨ç‚¹å‡»çš„é“¾æŽ¥*/
a:active { text-decoration: none;}
a:focus {text-decoration: none;color: #007aff}
a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}
a,a:hover,a:active,a:visited,a:link,a:focus{
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  outline:none;
  background: none;
  text-decoration: none;
}

.ui-pagination-container{
  display: flex;
  justify-content: center;
  align-content: center;
}
.ui-pagination-container .ui-pagination-page-item{
  font-size: 14px;
  padding: 0px 10px !important;
  background: #fff;
  border: 1px solid #c5b7b7;
  color: #888;
  margin: 0 3px;
  text-decoration: none;
}</pre></body></html>