body,
ul,
ol,
dl,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
li,
ol,
dl,
dt,
dd {
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  background: #fff;
  color: #666;
}

body {
  font-family: 'arial', 'Microsoft Yahei';
  *font-family: 'Microsoft Yahei';
  color: #666;
  background: #fff;
  position: relative;
  overflow-x: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

iframe {
  display: block;
}

a {
  text-decoration: none;
  color: #666;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.mid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.mid:after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* 滚动条 */
.scrollbars {
  overflow-y: auto;
}

.scrollbars::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.scrollbars::-webkit-scrollbar-track,
.scrollbars::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}

.scrollbars::-webkit-scrollbar-track {
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
}

.scrollbars::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
}

.scrollbars::-webkit-scrollbar-corner {
  background: transparent;
}

/* ==================
  全选样式
 ==================== */
*::-moz-selection,
*::-moz-selection,
*::-webkit-selection {
  background: #333;
  color: #fff;
}

*::selection,
*::-moz-selection,
*::-webkit-selection {
  background: #333;
  color: #fff;
}

/* ==================
  定位
 ==================== */
.pore {
  position: relative;
}

.poab {
  position: absolute;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

/* ==================
  编辑器样式
 ==================== */
.text {
  font-size: 16px;
  color: #666;
  line-height: 1.6em;
  word-wrap: break-word;
  word-break: normal;
}

.text:after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.text * {
  max-width: 100%;
}

/* ==================
  table布局
 ==================== */
.table {
  display: table;
  table-layout: fixed;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* ==================
  浮动
 ==================== */
.after:after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clear {
  clear: both;
}

.fl,
.fr {
  display: inline;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/* ==================
  显示隐藏
 ==================== */
.hide,
.none {
  display: none !important;
}

.show,
.block {
  display: block !important;
}

/* ==================
  flex布局
 ==================== */
.flex {
  display: -webkit-flex;
  display: flex;
}

.basis-20 {
  flex-basis: 20%;
}

.basis-40 {
  flex-basis: 40%;
}

.basis-50 {
  flex-basis: 50%;
}

.basis-60 {
  flex-basis: 60%;
}

.basis-80 {
  flex-basis: 80%;
}

.flex-one {
  flex: 1;
}

.flex-two {
  flex: 2;
}

.flex-three {
  flex: 3;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-start {
  align-items: flex-start;
}

.w-100p {
  width: 100%;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-stretch {
  align-items: stretch;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: flex-center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

/* ==================
  文本颜色
 ==================== */
.text-1a {
  color: #1a1a1a !important;
}

.text-33 {
  color: #333 !important;
}

.text-4d {
  color: #4d4d4d !important;
}

.text-66 {
  color: #666 !important;
}

.text-80 {
  color: #808080 !important;
}

.text-98 {
  color: #989898 !important;
}

.text-b3 {
  color: #b3b3b3 !important;
}

.text-cb {
  color: #cbcbcb !important;
}

.text-f5 {
  color: #f5f5f5 !important;
}

.text-e6 {
  color: #e6e6e6 !important;
}

.text-ff {
  color: #fff;
}

.text-main {
  color: var(--main);
}

.text-auxiliary {
  color: var(--auxiliary);
}

.text-wechat {
  color: var(--wechat);
}

.text-nickname {
  color: var(--nickname);
}

/* ==================
  文本样式
 ==================== */
.f12 {
  font-size: 12px;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
}

.f16 {
  font-size: 16px;
}

.f18 {
  font-size: 18px;
}

.f20 {
  font-size: 20px;
}

.f30 {
  font-size: 30px;
}

.fb {
  font-weight: bold;
}

.fn {
  font-weight: normal;
  font-style: normal;
}

.tc {
  text-align: center;
}

.text-Abc {
  text-transform: Capitalize;
}

.text-ABC {
  text-transform: Uppercase;
}

.text-abc {
  text-transform: Lowercase;
}

.text-cut {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text-cut-one {
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-cut-two {
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-cut-three {
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-cut-four {
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.text-through {
  text-decoration: line-through;
}

.text-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-content {
  line-height: 1.6;
}

/* ==================
  背景颜色
 ==================== */
.bg-1a {
  background-color: #1a1a1a;
}

.bg-33 {
  background-color: #333;
}

.bg-4d {
  background-color: #4d4d4d;
}

.bg-66 {
  background-color: #666;
}

.bg-80 {
  background-color: #808080;
}

.bg-98 {
  background-color: #989898;
}

.bg-b3 {
  background-color: #b3b3b3;
}

.bg-cb {
  background-color: #cbcbcb;
}

.bg-f5 {
  background-color: #f5f5f5;
}

.bg-e6 {
  background-color: #e6e6e6;
}

.bg-ff {
  background-color: #fff;
}

.bg-main {
  background-color: var(--main);
}

.bg-auxiliary {
  background-color: var(--auxiliary);
}

.bg-wechat {
  background-color: var(--wechat);
}

.bg-nickname {
  background-color: var(--nickname);
}

/* ==================
  内间距
 ==================== */
.pl2 {
  padding-left: 2% !important;
}

.pr2 {
  padding-right: 2% !important;
}

.pt2 {
  padding-top: 2% !important;
}

.pb2 {
  padding-bottom: 2% !important;
}

.plr2 {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.ptb2 {
  padding-top: 2% !important;
  padding-bottom: 2% !important;
}

.p2 {
  padding: 2% !important;
}

.pl3 {
  padding-left: 3% !important;
}

.pr3 {
  padding-right: 3% !important;
}

.pt3 {
  padding-top: 3% !important;
}

.pb3 {
  padding-bottom: 3% !important;
}

.plr3 {
  padding-left: 3% !important;
  padding-right: 3% !important;
}

.ptb3 {
  padding-top: 3% !important;
  padding-bottom: 3% !important;
}

.p3 {
  padding: 3% !important;
}

.pl0 {
  padding-left: 0% !important;
}

.pr0 {
  padding-right: 0% !important;
}

.pt0 {
  padding-top: 0% !important;
}

.pb0 {
  padding-bottom: 0% !important;
}

.plr0 {
  padding-left: 0% !important;
  padding-right: 0% !important;
}

.ptb0 {
  padding-top: 0% !important;
  padding-bottom: 0% !important;
}

.p0 {
  padding: 0% !important;
}

/* ==================
  外间距
 ==================== */
.ml2 {
  margin-left: 2% !important;
}

.mr2 {
  margin-right: 2% !important;
}

.mt2 {
  margin-top: 2% !important;
}

.mb2 {
  margin-bottom: 2% !important;
}

.mlr2 {
  margin-left: 2% !important;
  margin-right: 2% !important;
}

.mtb2 {
  margin-top: 2% !important;
  margin-bottom: 2% !important;
}

.m2 {
  margin: 2% !important;
}

.ml3 {
  margin-left: 3% !important;
}

.mr3 {
  margin-right: 3% !important;
}

.mt3 {
  margin-top: 3% !important;
}

.mb3 {
  margin-bottom: 3% !important;
}

.mlr3 {
  margin-left: 3% !important;
  margin-right: 3% !important;
}

.mtb3 {
  margin-top: 3% !important;
  margin-bottom: 3% !important;
}

.m3 {
  margin: 3% !important;
}

.ml0 {
  margin-left: 0% !important;
}

.mr0 {
  margin-right: 0% !important;
}

.mt0 {
  margin-top: 0% !important;
}

.mb0 {
  margin-bottom: 0% !important;
}

.mlr0 {
  margin-left: 0% !important;
  margin-right: 0% !important;
}

.mtb0 {
  margin-top: 0% !important;
  margin-bottom: 0% !important;
}

.m0 {
  margin: 0% !important;
}

/* ==================
  手机端样式兼容
 ==================== */
@media screen and (max-width: 767px) {
  input[type='button'],
  input[type='submit'],
  input[type='reset'],
  textarea,
  select {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ==================
  苹果X底部兼容
 ==================== */
@supports (bottom: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
}
