@charset "UTF-8";
html {
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

.f-all-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-x-end {
  display: flex;
  justify-content: flex-end;
}

.flex-x-start {
  display: flex;
  justify-content: flex-start;
}

.flex-x-sb {
  display: flex;
  justify-content: space-between;
}

.flex-x-sa {
  display: flex;
  justify-content: space-around;
}

.flex-x-center {
  display: flex;
  justify-content: center;
}

.flex-y-center {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.flex-y-end {
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.f-shrink {
  flex-shrink: 0;
}

.bold {
  font-weight: bold;
}

.text-more {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}

.text-more-1 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.text-more-2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.text-more-3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.def-color {
  color: #ff468c;
}

.common-container {
  max-width: 1720px;
  min-width: 1200px;
  padding: 0 5rem;
  margin: 0 auto;
}

/* 滚动条整体样式 */
::-webkit-scrollbar {
  width: 4px; /* 宽度 */
  height: 4px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #fff0f5;
  border-radius: 4px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #faaac8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

/* 滚动条角落（当内容超出时显示） */
::-webkit-scrollbar-corner {
  background: #fff0f5;
}

.right-tool-fixed {
  background: #fff;
  border-radius: 8px 0 0 8px;
  bottom: 50%;
  box-shadow: -2px 0 30px 2px rgba(97, 105, 119, 0.18);
  position: fixed;
  right: 0;
  z-index: 11;
  transform: translateY(50%);
}
.right-tool-fixed a {
  color: inherit;
}
.right-tool-fixed a:hover {
  text-decoration: none;
}
.right-tool-fixed .right-tool-fixed-item {
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  font-size: 12px;
  gap: 4px 0;
  cursor: pointer;
}

.m-x-1rem {
  margin-left: 1rem;
  margin-right: 1rem;
}

.m-y-1rem {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.m-l-1rem {
  margin-left: 1rem;
}

.m-r-1rem {
  margin-left: 1rem;
}

.m-t-1rem {
  margin-top: 1rem;
}

.m-b-1rem {
  margin-bottom: 1rem;
}

.p-x-1rem {
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-y-1rem {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.p-l-1rem {
  padding-left: 1rem;
}

.p-r-1rem {
  padding-left: 1rem;
}

.p-t-1rem {
  padding-top: 1rem;
}

.p-b-1rem {
  padding-bottom: 1rem;
}/*# sourceMappingURL=comon.css.map */