* {
  word-break: break-all;
  line-height: 1.15;
  -webkit-tap-highlight-color:transparent;
}

body {
  background: rgba(245, 249, 255, 1);
  padding: 0 !important;
}

body{
    font-family: "DINCC";
}

/* 背景色 */
.bg-transparent {
  background-color: transparent;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-blue {
  background-color: #0094FF;
}

.bg-orange {
  background-color: #FF7A00;
}

.bg-black {
  background-color: #303030;
}

.bg-gray {
  background-color: #7F7F7F;
}

.bg-yellow {
  background-color: #FFE400;
}

.bg-pink {
  background-color: #F30045;
}

.bg-grey {
  background-color: #4E4E4E;
}

.bg-red {
  background-color: #F56C6C;
}

.bg-blue.light {
  background-color: #E9F4FF;
  color: #0094FF;
}

.bg-white.light {
  background-color: #F5F9FC;
  color: #303030;
}

.bg-gray.light {
    background-color: #f7f7f7;
    color: #000;
}

.bg-yellow {
    background-color: #FFF8E6;
    color: #FFE400;
}

/* 渐变背景色 */
.bg-gradient-white {
  background-image: linear-gradient(to right, #FFFFFF50, #FFFFFF00);
  /* 灰白至透明 */
}

.bg-gradient-blue {
  background-image: linear-gradient(270deg, #00B2FF 0%, #0094FF 100%);;
}

/* 字体 */
.text-white {
  color: #FFFFFF;
}

.text-blue {
  color: #0094FF;
}

.text-orange {
  color: #FF7A00;
}

.text-black {
  color: #303030;
}

.text-gray {
  color: #7F7F7F;
}

.text-yellow {
  color: #FFE400;
}

.text-red {
  color: #FF0024;
}

.text-pink {
  color: #F30045;
}

.text-grey {
  color: #4E4E4E;
}

.text-bold {
  font-weight: bold;
}

.text-normal {
  font-weight: normal;
}

.text-xs {
  font-size: 10px;
}

.text-sm {
  font-size: 12px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 24px;
}

.text-xxl {
  font-size: 32px;
}

.big-title {
    font-size: 36px;
    font-weight: normal;
}

.title {
  font-size: 24px;
  /*font-weight: bold;*/
  font-weight: normal;
}

.subtitle {
  font-size: 22px;
  /*font-weight: bold;*/
  font-weight: normal;
}

/* 下划线 */
.line::after {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background-color: #FFFFFF;
}

.line.vertical::after {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background-color: #FFFFFF;
}

.bg-blue.line::after,
.bg-blue.line.vertical::after {
  background-color: #0094FF;
}

.bg-orange.line::after,
.bg-orange.line.vertical::after {
  background-color: #FF7A00;
}

.bg-black.line::after,
.bg-black.line.vertical::after {
  background-color: #303030;
}

.bg-gray.line::after,
.bg-gray.line.vertical::after {
  background-color: #7F7F7F;
}

.bg-yellow.line::after,
.bg-yellow.line.vertical::after {
  background-color: #FFE400;
}

.bg-pink.line::after,
.bg-pink.line.vertical::after {
  background-color: #F30045;
}

.xs.line::after {
  height: 1px;
  width: 100%;
}
.xs.line.vertical::after {
  height: 100%;
  width: 1px;
}

.sm.line::after {
  height: 3px;
  width: 100%;
}
.sm.line.vertical::after {
  height: 100%;
  width: 2px;
}

.md.line::after {
  height: 7px;
  width: 100%;
}
.md.line.vertical::after {
  height: 100%;
  width: 7px;
}

.lg.line::after {
  height: 9px;
  width: 100%;
}
.lg.line.vertical::after {
  height: 100%;
  width: 9px;
}

.xl.line::after {
  height: 12px;
  width: 100%;
}
.xl.line.vertical::after {
  height: 100%;
  width: 12px;
}

.xxl.line::after {
  height: 16px;
  width: 100%;
}
.xxl.line.vertical::after {
  height: 100%;
  width: 16px;
}

/* 弹性盒模型 */
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.flex-direction {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.no-shrink {
  flex-shrink: 0;
}

.flex .flex-item {
  width: calc(50% - 5px);
  margin-bottom: 5px;
}

/* 外边距,内边距 */
.margin-xs {
  margin: 5px;
}

.margin-sm {
  margin: 10px;
}

.margin-md {
  margin: 15px;
}

.margin-lg {
  margin: 30px;
}

.margin-xl {
  margin: 45px;
}

.margin-xxl {
  margin: 60px;
}

.margin-left-xs {
  margin-left: 5px;
}

.margin-left-sm {
  margin-left: 10px;
}

.margin-left-md {
  margin-left: 15px;
}

.margin-left-lg {
  margin-left: 30px;
}

.margin-left-xl {
  margin-left: 45px;
}

.margin-left-xxl {
  margin-left: 60px;
}

.margin-right-xs {
  margin-right: 5px;
}

.margin-right-sm {
  margin-right: 10px;
}

.margin-right-md {
  margin-right: 15px;
}

.margin-right-lg {
  margin-right: 30px;
}

.margin-right-xl {
  margin-right: 45px;
}

.margin-right-xxl {
  margin-right: 60px;
}

.margin-top-xs {
  margin-top: 5px;
}

.margin-top-sm {
  margin-top: 10px;
}

.margin-top-md {
  margin-top: 15px;
}

.margin-top-lg {
  margin-top: 20px;
}

.margin-top-xl {
  margin-top: 45px;
}

.margin-top-xxl {
  margin-top: 60px;
}

.margin-bottom-xs {
  margin-bottom: 5px;
}

.margin-bottom-sm {
  margin-bottom: 10px;
}

.margin-bottom-md {
  margin-bottom: 15px;
}

.margin-bottom-lg {
  margin-bottom: 20px;
}

.margin-bottom-xl {
  margin-bottom: 45px;
}

.margin-bottom-xxl {
  margin-bottom: 60px;
}

.margin-lr-xs {
  margin-left: 5px;
  margin-right: 5px;
}

.margin-lr-sm {
  margin-left: 10px;
  margin-right: 10px;
}

.margin-lr-md {
  margin-left: 15px;
  margin-right: 15px;
}

.margin-lr-lg {
  margin-left: 20px;
  margin-right: 20px;
}

.margin-lr-xl {
  margin-left: 45px;
  margin-right: 45px;
}

.margin-lr-xxl {
  margin-left: 60px;
  margin-right: 60px;
}

.margin-tb-xs {
  margin-top: 5px;
  margin-bottom: 5px;
}

.margin-tb-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

.margin-tb-md {
  margin-top: 15px;
  margin-bottom: 15px;
}

.margin-tb-lg {
  margin-top: 20px;
  margin-bottom: 20px;
}

.margin-tb-xl {
  margin-top: 45px;
  margin-bottom: 45px;
}

.margin-tb-xxl {
  margin-top: 60px;
  margin-bottom: 60px;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-top-auto {
  margin-top: auto;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.padding-xs {
  padding: 5px;
}

.padding-sm {
  padding: 10px;
}

.padding-md {
  padding: 15px;
}

.padding-lg {
  padding: 20px;
}

.padding-xl {
  padding: 45px;
}

.padding-xxl {
  padding: 60px;
}

.padding-left-xs {
  padding-left: 5px;
}

.padding-left-sm {
  padding-left: 10px;
}

.padding-left-md {
  padding-left: 15px;
}

.padding-left-lg {
  padding-left: 30px;
}

.padding-left-xl {
  padding-left: 45px;
}

.padding-left-xxl {
  padding-left: 60px;
}

.padding-right-xs {
  padding-right: 5px;
}

.padding-right-sm {
  padding-right: 10px;
}

.padding-right-md {
  padding-right: 15px;
}

.padding-right-lg {
  padding-right: 30px;
}

.padding-right-xl {
  padding-right: 45px;
}

.padding-right-xxl {
  padding-right: 60px;
}

.padding-top-xs {
  padding-top: 5px;
}

.padding-top-sm {
  padding-top: 10px;
}

.padding-top-md {
  padding-top: 15px;
}

.padding-top-lg {
  padding-top: 30px;
}

.padding-top-xl {
  padding-top: 45px;
}

.padding-top-xxl {
  padding-top: 60px;
}

.padding-bottom-xs {
  padding-bottom: 5px;
}

.padding-bottom-sm {
  padding-bottom: 10px;
}

.padding-bottom-md {
  padding-bottom: 15px;
}

.padding-bottom-lg {
  padding-bottom: 30px;
}

.padding-bottom-xl {
  padding-bottom: 45px;
}

.padding-bottom-xxl {
  padding-bottom: 60px;
}

.padding-lr-xs {
  padding-left: 5px;
  padding-right: 5px;
}

.padding-lr-sm {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-lr-md {
  padding-left: 15px;
  padding-right: 15px;
}

.padding-lr-lg {
  padding-left: 30px;
  padding-right: 30px;
}

.padding-lr-xl {
  padding-left: 45px;
  padding-right: 45px;
}

.padding-lr-xxl {
  padding-left: 60px;
  padding-right: 60px;
}

.padding-tb-xs {
  padding-top: 5px;
  padding-bottom: 5px;
}

.padding-tb-sm {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-tb-md {
  padding-top: 15px;
  padding-bottom: 15px;
}

.padding-tb-lg {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-tb-xl {
  padding-top: 45px;
  padding-bottom: 45px;
}

.padding-tb-xxl {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* 文本 */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.no-wrap {
  white-space: nowrap;
}

/* 行高 */
.line-height-1 {
  line-height: 1;
}

.line-height-2 {
  line-height: 2;
}

.line-height-3 {
  line-height: 3;
}

/* 宽度 */
.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w80 {
  width: 80%;
}

.w100 {
  width: 100%;
}

/* 圆角 */
.round {
  border-radius: 999999px;
}

.radius-xs {
  border-radius: 6px;
}

.radius-sm {
  border-radius: 10px;
}

.radius-md {
  border-radius: 15px;
}

.radius-lg {
  border-radius: 30px;
}

.radius-xl {
  border-radius: 45px;
}

.radius-xxl {
  border-radius: 60px;
}

/* 阴影 */
.default-shadow {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}
/* 渐变色 */


/* 图片大小 */
.iconImage-xs {
  width: 15px;
  height: 15px;
}

.iconImage-sm {
  width: 25px;
  height: 25px;
}

.iconImage {
  width: 40px;
  height: 40px;
}

.iconImage-md {
  width: 65px;
  height: 65px;
}

.iconImage-lg {
  width: 90px;
  height: 90px;
}

.iconImage-xl {
  width: 120px;
  height: 120px;
}

.iconImage-xxl {
  width: 150px;
  height: 150px;
}

.iconImage-xsl {
  width: 200px;
  height: 200px;
}

/* 浮动 */
.left {
  float: left;
}

.right {
  float: right;
}

.clear-both {
  clear: both;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right
}

/* 边框 */
.border {
  border-width: 1px;
}

.no-border {
  border: none;
}

.border.solid {
  border-style: solid;
}

.border.bg-white {
  border-color: #FFFFFF;
}

.border.bg-blue {
  border-color: #0094FF;
}

.border.bg-orange {
  border-color: #FF7A00;
}

.border.bg-black {
  border-color: #303030;
}

.border.bg-gray {
  border-color: #7F7F7F;
}

/* 定位 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

/* 其他 */
.block {
  display: block;
}

.none {
  display: none;
}

.text-item-box {
  width: 250px;
}

.no-height {
  height: unset;
}

.border-box {
  box-sizing: border-box;
}

/* 按钮 */
.my-btn:active,
.my-btn:hover,
.my-btn:focus {
  background-color: #FFFFFF;
  color: #0073F3;
}

.btn {
  border-radius: 30px;
  padding: 5px 30px;
  font-size: 16px;
  line-height: 16px;
  height: 46px;
  background-color: #FFFFFF;
  border: none;
}

.btn.sm {
  border-radius: 30px;
  padding: 5px 30px;
  font-size: 14px;
  line-height: 14px;
  height: 36px;
}

.btn.xs {
  border-radius: 30px;
  padding: 5px 30px;
  font-size: 12px;
  line-height: 12px;
  height: 35px;
}

.btn.bg-transparent {
  background-color: transparent;
}

.btn.border {
  border: 5px solid #FFFFFF;
}

.btn.border.xs {
  border: 1px solid #FFFFFF;
}

/* 单行显示和多行显示 */
.line-slh {
  /* overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.line-slh2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.line-slh3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.line-slh4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.line-slh5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

/* 序号标签 */
.item-tag {
  width: 60px;
  height: 60px;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
}

.item-tag.xs {
  width: 25px;
  height: 25px;
  font-size: 14px;
  line-height: 25px;
}

.item-tag.sm {
  width: 45px;
  height: 45px;
  font-size: 24px;
  line-height: 45px;
}

.item-tag.xl {
  width: 100px;
  height: 100px;
  font-size: 64px;
  line-height: 100px;
}

.item-tag.bg-blue {
  background-color: #0094FF;
}

.item-tag.bg-blue.light {
  background-color: #E9F4FF;
}

/* 网格布局 */
.grid {
  display: grid;
}

.wrapper-2 {
  grid-template-columns: repeat(2, 1fr);
}

.wrapper-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wrapper-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-xs {
  grid-gap: 5px;
}

.gap-sm {
  grid-gap: 10px;
}

.gap-md {
  grid-gap: 15px;
}

.gap-lg {
  grid-gap: 30px;
}

.gap-xl {
  grid-gap: 45px;
}

.gap-xxl {
  grid-gap: 60px;
}

.row-center {
  justify-items: center;
}

.columns-center {
  align-items: center;
}

/* 移入特效 */
.hover-bg-transparent:hover {
  background-color: transparent;
  transition: all 0.3s;
}

/* 列表项 */
.list-item {
  width: 160px;
  margin-bottom: 10px;
  font-size: 16px;
  align-self: baseline;
  cursor: pointer;
}

/* 鼠标样式 */
.cursor-pointer {
  cursor: pointer;
}

/* 旧物星球专属部分 */
.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  column-gap: 20px;
}

.container .xs{
  column-gap: 2%;
}

.demand-list {
  grid-column-start: 1;
  grid-column-end: 10;
}

.demand-list-pagination {
  grid-column-start: 1;
  grid-column-end: 10;
  display: flex;
  justify-content: center;
}

.demand-hot-list {
  grid-column-start: 10;
  grid-column-end: 13;
}

.demand-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.demand-item-image-box {
  position: relative;
  aspect-ratio: 1/1;
}

.demand-item-image-top {
  padding-top: 100%;
}

.demand-item-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.demand-item-image-tag {
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 1px;
  padding-bottom: 1px;
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
  top: 10px;
  right: 10px;
}

.denamd-item-content-box {
  grid-column-start: 2;
  grid-column-end: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.denamd-item-tag-box {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demand-item-image-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /*box-shadow: 0px 4px 20px 0px rgb(0 163 255 / 25%);*/
  object-fit: cover;
}

.denamd-item-content-box .content-bottom {
  font-size: 20px;
}

.denamd-item-content-box .content-bottom-title {
  font-size: 14px;
}

.denamd-item-tag-box .tag-box-company-name {
  font-size: 18px;
}

.no-tag {
  display: none;
}

.content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #7F7F7F;
  font-size: 16px;
}

.total-info {
  grid-column-start: 6;
  grid-column-end: 9;
}

.filter-area {
  grid-column-start: 1;
  grid-column-end: 13;
  padding-left: 45px;
  padding-right: 45px;
}

.filter-item {
  margin-right: 15px;
}

.filter-area .el-input__inner {
  padding-left: 0px;
  text-align: center;
}

.no-border {
  width: 110px;
}

.banner-bg {
  grid-column-start: 1;
  grid-column-end: 13;
  width: 100%;
  margin: 30px 0px;
}

.fullScreen {
  grid-column-start: 1;
  grid-column-end: 13;
}

.logo {
  width: 44px;
  height: 44px;
  z-index: 1;
  top: 5px;
}

.logo-bg {
  width: 133px;
  height: 44px;
  top: 24px;
}

.nav-item {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  margin: 0px 5px;
}

.nav-title {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list .nav-button {
  height: 20px;
  padding: 0 15px;
}

.nav-list .nav-icon-button {
  display: none;
}

.nav-logo {
  display: none;
}

.banner-logo {
  width: 18vw;
}

.banner-center {
  flex: 2;
}

.banner-center .el-input-group {
    border: 2px solid #0094FF;
    border-radius: 7px;
}

.banner-center .el-input__inner {
    border: none !important;
}

.banner-center .el-input-group__append, .el-input-group__prepend {
    border: none !important;
}

.banner {
  padding-left: 3%;
  padding-right: 3%;
}

.footer-logo {
  width: 10vw;
  max-width: 120px;
}

.footer-logo-box {
  margin-right: 3%;
}

.footer-list {
  padding: 0 5%;
}

.login-box {
  background-color: #FFFFFF;
  padding: 30px;
  width: 25vw;
  max-width: 365px;
}

.banner-code-item {
  width: 10vw;
  max-width: 90px;
}

.banner-title {
  font-size: 36px;
  margin: 0 15px;
}

.user-home-name {
  font-size: 26px;
  margin: 0 10px;
}

.auth-tag {
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 30px;
  color: #FFFFFF;
  margin: 0 15px;
}

.vip-wrap {
  margin-left: 25px;
  margin-top: 20px;
  background: linear-gradient(276.15deg, #F9CF7E 6.33%, #FFE09E 92.92%);
  border: 1px solid #F5C164;
  box-sizing: border-box;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  height: 20px;
  line-height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 10px;
  padding: 0 10px 0 25px;
  position: relative;
}

.vip-wrap.main {
    padding: 0px 18px;
    border-radius: 6px;
    margin-left: 0px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
}

.vip-wrap .icon {
  position: absolute;
  left: -27px;
  bottom: -13px;
  width: 51px;
  height: 51px;
}

.user-home-left {
  grid-column-start: 1;
  grid-column-end: 9;
}
.user-home-right {
  grid-column-start: 9;
  grid-column-end: 13;
}

.collect-item {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 10px;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.collect-content {
  grid-column-start: 2;
  grid-column-end: 5;
}

.issue-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.issue-item .denamd-item-content-box {
  grid-column-end: 5;
}



.user-info {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.user-info .user-info-container {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 100px;
}
/*.user-info .user-info-container .title {*/
/*  font-size: 36px;*/
/*  margin-bottom: 30px;*/
/*}*/

.user-info .user-info-container .content {
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 50px;
}
.user-info .user-info-container .content .form {
  flex: 1;
}
.user-info .user-info-container .content .form .user-info-form {
  width: 70%;
}
.user-info .user-info-container .content .form .user-info-form .submit-btn {
  width: 240px;
  margin-top: 30px;
}

.user-info .user-info-container .content .logo {
  width: 346px;
  height: 331px;
  opacity: .1;
}
.el-form-item__content {
  flex: 1;
}

.user-collect {
  /* min-width: 1440px; */
  display: flex;
  justify-content: center;
}
.user-collect .user-collect-container {
  max-width: 1200px;
  width: 100%;
  /* display: flex; */
  justify-content: space-between;
  margin-bottom: 100px;
}

.user-collect .user-collect-container .info-content {
  /* width: 740px; */
  grid-column-start: 1;
  grid-column-end: 9;
}

.user-collect .user-collect-container .company-content {
  /* width: 440px; */
  grid-column-start: 9;
  grid-column-end: 13;
}
.user-collect .user-collect-container .company-content .company-item {
  margin-top: 20px;
  background-color: #fff;
  padding: 20px;
}

.user-collect .user-collect-container .company-content .company-item .contact-btn {
  display: inline-flex;
  align-items: center;
  height: 30px;
  border-radius: 15px;
  background: linear-gradient(270deg, #00B2FF 0%, #0094FF 100%);
  color: #fff;
  font-size: 14px;
  padding: 0 15px;
  box-sizing: border-box;
  align-self: baseline;
  cursor: pointer;
}

.user-collect .user-collect-container .no-data {
  width: 100%;
  height: 300px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.no-data {
  padding: 0px 10%;
}

.introduction {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.user-issue {
  /* min-width: 1440px; */
  display: flex;
  justify-content: center;
}

.user-issue .user-issue-container {
    max-width: 1200px;
    width: 100%;
    /* justify-content: center; */
    margin-bottom: 100px;
    /* display: flex; */
}
  
.user-issue .user-issue-container .left-content {
  /* width: 330px; */
  height: 170px;
  grid-column-start: 1;
  grid-column-end: 5;
  /* margin-right: 20px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px 30px;
  margin-top: 20px;
}

.user-issue .user-issue-container .left-content .filter-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.user-issue .user-issue-container .left-content .filter-content .filter-item {
  display: flex;
  align-items: center;
  height: 30px;
  border-radius: 15px;
  padding: 5px 12px;
  box-sizing: border-box;
  background: #fff;
  cursor: pointer;
}
.user-issue .user-issue-container .left-content .filter-content .filter-item.active {
  background: rgba(94, 193, 236, .2);
  color: #0094ff;
}

.user-issue .user-issue-container .left-content .search-content {
  display: flex;
  align-items: center;
  position: relative;
  width: 270px;
  height: 40px;

}
.user-issue .user-issue-container .left-content .search-content .search-input {
  flex: 1;
  height: 40px;
  border-radius: 4px;
}

.user-issue .user-issue-container .left-content .search-content .icon-search {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
}

.user-issue .user-issue-container .right-content {
  /* flex: 1; */
  grid-column-start: 5;
  grid-column-end: 13;
  margin-top: 30px;
}

/*.search-input .el-input__inner {*/
/*    padding-right: 25%;*/
/*}*/

.navbar {
  display: flex;
  justify-content: center;
}

.navbar-item {
  padding: 15px 30px;
}

.navbar-item.item-active{
  /*background-color: #0073F3;*/
  background: #0094FF;
  color: #FFFFFF;
}

.display-none {
  display: none;
}

.company-home {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.company-home .left-content {
  grid-column-start: 1;
  grid-column-end: 5;
  display: flex;
  flex-direction: column;
}

.company-home .left-content .top-content {
  padding: 20px 0px;
  margin-top: 30px;
  background: #fff;
  /* min-height: 400px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collect-wrap {
  margin: 50px 15px 0;
  background: #FFF8E6;
  height: 43px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.collect-wrap .icon {
  width: 22px;
  height: 21px;
}

.company-home .left-content .bottom-content {
  padding: 70px 30px 30px;
  background: #fff;
  /* height: 470px; */
}

.company-home .left-content .bottom-content .contact-content {
  display: flex;
  align-items: center;
}

.company-home .right-content {
  grid-column-start: 5;
  grid-column-end: 13;
}

.company-home .right-content .more-btn {
  display: inline-flex;
  align-items: center;
  height: 30px;
  border-radius: 15px;
  background: linear-gradient(270deg, #00B2FF 0%, #0094FF 100%);
  color: #fff;
  font-size: 14px;
  padding: 0 15px;
  box-sizing: border-box;
  align-self: baseline;
  cursor: pointer;
}

.contact-content .title {
  width: 3em;
  font-size: 16px;
  font-weight: normal;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-align: justify;
}

.company-introduce {
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.company-introduce .top-content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 5%;
  background: #fff;
}

.company-introduce .top-content .left-content {
  flex: 1;
  line-height: 150%;
}

.company-introduce .top-content .logo {
  width: 346px;
  height: 331px;
  opacity: .1;
  margin-top: 50px;
}

.company-introduce .center-content {
  margin-top: 20px;
  padding: 30px;
  background: #fff;
}

.company-contact {
  max-width: 1200px;
  margin: 0 auto;
}

.company-contact .top-content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 5%;
  background: #fff;
  margin-bottom: 100px;
}

.company-contact .top-content .left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

.company-contact .top-content .left-content .contact-content {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.company-contact .top-content .logo {
  width: 346px;
  height: 331px;
  opacity: .1;
  margin-top: 50px;
}

.company-infoDetail {
  max-width: 1200px;
  margin: 0px auto 100px;
}

.company-infoDetail .left-content {
  grid-column-start: 1;
  grid-column-end: 9;
}
.company-infoDetail .right-content {
  grid-column-start: 9;
  grid-column-end: 13;
}
.company-infoDetail .left-content .top-content{
  padding: 20px;
  display: grid;
  column-gap: 20px;
  grid-template-columns: 335px 1fr;
}

.images-wrap {
  width: 100%;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-wrap .contact-wrap {
  /*margin-right: auto;*/
  /*width: 30%;*/
  width: 100px;
  padding: 0 20px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 184, 0, .1);
  border-radius: 10px;
  /*margin-bottom: 32px;*/
}

.content-wrap .contact-wrap .icon {
  width: 18px;
  height: 17px;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-wrap .content-container {
  background: #F3FAFF;
  flex: 1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 14px;
  max-height: 145px;
}
.content-wrap .content-container div {
  display: flex;
  align-items: center;
}

.content-wrap .contact-tag {
  padding: 0 20px;
  height: 46px;
  border-radius: 10px;
  background-color: #0094FF;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: baseline;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  /*margin: 20px 0px;*/
  /*margin-bottom: 60px;*/
  /*margin-top: 20px;*/
}
.content-wrap .contact-tag .contact-icon{
  width: 35px;
  height: 35px;
}

.images-list .images-list-content .img {
  width: 47px;
  height: 47px;
  border-radius: 4px;
  opacity: 0.3;
  box-shadow: 0px 4px 20px 0px rgba(147, 147, 147, 0.25);
}

.images-wrap .img {
  width: 335px;
  height: 328px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(147, 147, 147, 0.25);
}

.images-wrap .img.img-active {
  opacity: 1;
}

.images-wrap .el-carousel__container {
  height: 328px;
  aspect-ratio: 1/1;
}

.images-wrap .el-carousel__indicators--horizontal {
  display: none;
}


.phone-code {
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.news {
  max-width: 1200px;
  margin: 0 auto;
}

.news .news-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
}

.news .news-container .news-content {
  margin-top: 20px;
  background-color: #fff;
  min-height: 500px;
  padding: 5%;
}

.news .news-container .news-content .news-item {
  color:  #000;
  display: block;
  padding-left: 20px;
  background: no-repeat  0 50%;
}
.news .news-container .news-content .news-item span{
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news .news-container .news-content .news-item:hover a {
  color: #0094FF !important;
}

.news .news-container .news-content .news-item .news-icon {
  color: #999;
}

.news-detail {
  max-width: 1200px;
  margin: 0 auto;
}

.news-detail .news-detail-container {
  padding: 30px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 50px;
  background-color: #fff;
}

.news-detail .news-detail-container .news-detail-content {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.news-detail .news-detail-container .news-detail-splite{
  padding-bottom: 30px;
  background: repeat-x 0px 30px;
}

#app {
  overflow-x: hidden;
}

.no-border .el-input__inner {
  border: none;
  font-size: 16px;
  height: 28px;
  line-height: 28px;
  color: #0094FF;
}
.no-border .el-input__suffix {
  margin-top: 4px;
  border-radius: 15px;
  background: rgba(0, 178, 255, 0.1);
}
.no-border.el-select .el-input .el-select__caret {
  color: #0094FF;
}
.no-border.el-select .el-input {
  height: 20px;
  line-height: 20px;
}
.no-border .el-input__icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.active {
  background: rgba(94, 193, 236, .2);
  color: #0094FF;
  border-radius: 20px;
}
.banner .el-input__inner {
  padding-right: 45px;
}

.level-up {
  padding: 5px 8px;
  border-radius: 4px;
}

.scroll-img-wrap {
  background-color: #EFF8FF;
  width: 335px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
  overflow-y: hidden;
}

.scroll-img-wrap .images-list {
  flex: 1;
  display: flex;
  overflow-x: hidden;
  margin: 0px 10px;
}
.scroll-img-wrap .images-list .images-list-content {
  display: flex;
  transform: translateX(0);
}
.scroll-img-wrap .images-list .images-list-content.is-transform-left {
  transform: translateX(-295px);
}
.scroll-img-wrap .images-list .images-list-content.is-transform-right {
  transform: translateX(0);
}

.el-carousel--horizontal {
  overflow: hidden;
}

.person-form .el-input .el-input__inner {
  background: rgba(196, 196, 196, .5);
}

.person-form .el-input .el-input__inner:focus {
  border-color: #0094FF;
}

.image-uploader .el-upload {
  border: 1px dashed #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.image-uploader .el-upload:hover {
  border-color: #0094FF;
}

.image-uploader-icon {
  font-size: 64px;
  color: #8c939d;
  width: 140px;
  height: 140px;
  line-height: 140px !important;
  text-align: center;
  background: rgba(196, 196, 196, .5);
}

.avatar {
  width: 140px;
  height: 140px;
  display: block;
}
.person {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.person .person-container {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 100px;
}

.person .person-container .auth-btn {
  color: #fff;
  font-size: 10px;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 20px;
  box-sizing: border-box;
}

.person .person-container .content {
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 3%;
}

.person .person-container .content .form {
  flex: 1;
}

.person .person-container .content .form .person-form {
  width: 500px;
}

.person .person-container .content .form .person-form .submit-btn {
  width: 240px;
  margin-top: 30px;
}

.person .person-container .content .logo {
  width: 346px;
  height: 331px;
  opacity: .1;
}

.person .modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.person .modal-container .el-dialog {
  width: 20%;
  max-width: 280px;
}

.person .modal-container .qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.person .modal-container .qr-container .qr-img {
  width: 100%;
}

.person .person-container .content .form .person-form {
  width: unset;
  max-width: 500px;
}

.clause-content {
  height: 60vh;
  overflow-y: scroll;
}

.clause ::-webkit-scrollbar-track-piece {
  background: #d3dce6;
  border-radius: 9999px;
}

.clause ::-webkit-scrollbar-thumb {
  background: #99a9bf;
  border-radius: 9999px;
}

.clause ::-webkit-scrollbar {
  width: 6px;
}

.clause .el-dialog {
  width: 50%;
}

.result {
  display: flex;
  justify-content: center;
}

.result .result-container {
  max-width: 1200px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 100px;
}

.result .result-container .content {
  background: #fff;
  height: 420px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result .result-container .content .left-content {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
}

.result .result-container .content .left-content .logo {
  width: 346px;
  height: 331px;
  position: absolute;
  left: 120px;
  top: 50px;
  opacity: .1;
  z-index: 0;
}

.result .result-container .content .left-content .content {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
}

.result .result-container .content .right-content {
  width: 40%;
  height: 100%;
  position: relative;
}
.result .result-container .content .right-content:before {
  content: "";
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(71, 71, 71, .2);
  top: 10%;
  bottom: 10%;
  height: 80%;
  display: inline-block;
  position: absolute;
}

.result .result-container .content .right-content .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.result .result-container .content .right-content .content .icon-wx {
  width: 40%;
}

.result .result-container .content .left-content .el-button+.el-button {
  margin-left: 0 !important;
  margin-top: 10px;
}

.issue {
  display: flex;
  justify-content: center;
}

.issue .issue-box {
  margin-bottom: 200px;
}

.issue .issue-box .issue-banner {
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 13;
}

.issue .issue-box .auth-btn {
  color: #fff;
  font-size: 10px;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 20px;
  box-sizing: border-box;
}

.issue .issue-box .issue-form .form-item{
  width: 50%;
}

.issue .issue-box .issue-form .el-select {
  width: 100%;
}

.issue .issue-box .issue-form .radio-wrap {
  width: 60px;
}

.issue .issue-box .issue-form .submit-btn {
  width: 300px;
  margin-top: 30px;
}

.issue-form .el-input .el-input-group__append {
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(192, 192, 192, 0.25);
  border: none;
}

.issue-form .el-input .el-input__inner {
  box-shadow: 0px 4px 20px 0px rgba(192, 192, 192, 0.25);
  border: none;
}

.issue-form .el-input .el-input__inner:focus {
  border-color: #0094FF;
}

.issue-form .el-textarea .el-textarea__inner {
  box-shadow: 0px 4px 20px 0px rgba(192, 192, 192, 0.25);
  border: none;
}

.image-uploader .el-upload {
  border: 1px dashed #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.image-uploader .el-upload:hover {
  border-color: #0094FF;
}

.image-uploader-icon {
  font-size: 64px;
  color: #8c939d;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  background: #fff;
}

.avatar {
  width: 140px;
  height: 140px;
  display: block;
}

.upload-container {
  position: absolute;
  top: 10px;
  right: 18px;
}

.wscnph {
  max-width: 100%;
}

.news-detail-content img {
  width: unset !important;
  max-width: 100%;
}

.question-item {
    text-decoration: none;
    color: #7F7F7F;
    font-size: 16px;
}
.myPagelist {
    display: flex;
    align-items: center;
    list-style: none;
    background: #FFF;
    margin: 10px 0px;
    padding: 10px 3%;
    justify-content: center;
}
.myPagelist li {
    margin: 0 5px;
    background-color: #f4f4f5;
    color: #606266;
    min-width: 30px;
    border-radius: 2px;
    padding: 0 4px;
    font-size: 13px;
    height: 28px;
    line-height: 28px;
    box-sizing: border-box;
    text-align: center;
}
.myPagelist li a {
    text-decoration: none;
    color: #606266;
    font-weight: bold;
}

.demand-item:hover,.demand-item:active {
    background-color: #F5F7FA;
    /*rgba(245, 249, 255, 1)*/
}
.issue-item:hover,.issue-item:active {
    background-color: #F5F7FA;
}
.login-box .el-input__inner {
    background-color: #C8C9CB !important;
    color: #FFF !important;
}
.login-box input:-webkit-autofill{
	-webkit-box-shadow:0 0 0 1000px #C8C9CB inset !important;
	-webkit-text-fill-color: #fff !important;
}

.issue .issue-box .editor-slide-upload .el-upload--picture-card {
    width: 100%;
}

.login-box .phone-code {
    padding: 0px 20px !important;
}

.login-box .el-form-item__content {
    margin-left: 0px !important;
}

.login-box .el-input__icon,
.login-box .el-input .el-input__clear,
.login-box .el-input .el-input__clear:hover{
    color: #FFF !important;
}

.login-box .el-input__inner::placeholder {
    color: #fff !important;
}

.login-box .el-input__inner::-webkit-input-placeholder {
    color: #fff !important;
}

.login-box .el-input__inner::-moz-placeholder {
    color: #fff !important;
}

.login-box .el-input__inner:-moz-placeholder {
    color: #fff !important;
}

.login-box .el-input__inner:-ms-input-placeholder {
    color: #fff !important;
}

.el-button--warning {
    background-color: #FF7A00 !important;
    border-color: #FF7A00 !important;
}

.updateTime {
    margin-top: 15px;
    margin-bottom: 5px;
}

.icon-wait {
    margin-right: 5px;
}

.tips-item {
    color: #333;
    transition: color 0.3s ease-in-out;
}

.tips-item:hover,.tips-item:active {
    color: #7F7F7F;
}

.news .news-container .left-content {
    grid-column-start: 1;
    grid-column-end: 9;
}

.news .news-container .right-content {
    grid-column-start: 9;
    grid-column-end: 13;
}

.newsCenter-image {
    width: 100%;
    max-height: 298px;
}

.newsCenter-title {
    bottom: 3px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.4);
    padding: 15px;
    color: #FFF;
}

.select-item {
    background: transparent;
    border-radius: 20px;
    padding: 5px 25px;
    height: 26px;
    line-height: 26px;
}

.select-item a {
    text-decoration: none;
    color: #333;
}

.select-item + .select-item {
    margin-left: 15px;
}

.select-item.news-active{
    background: #E9F4FF;
}
.select-item.news-active a {
    color: #0094FF;
}

a {
    text-decoration: none;
}

.myPagelist li.active {
  background: rgba(94, 193, 236, .2);
  color: #0094FF;
  /*border-radius: 20px;*/
}

.myPagelist li.active a {
  color: #0094FF;
}

.origin {
    color: black;
    transition: color 0.25s ease-in-out;
}

.origin:hover,.origin:active {
    color: #0094FF;
}
.footer-item {
    transition: opacity 0.25s ease-in-out;
}
.footer-item:hover,.footer-item:active {
    opacity: 0.7;
}

.news-detail p {
    line-height: 1.5;
}

.tinymce-container {
    clear: both;
    margin-right: 20px;
}
.trumbowyg-dropdown-specialChars {
    width: 100% !important;
}

.user-info,.person {
    padding: 0 10px;
}

html{
  margin-right: calc(100% - 100vw);
}

.one-line {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.adv-image {
    width: 100%;
    max-height: 110px;
    object-fit: cover;
}

.dot {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0px;
}

.dot a {
    text-decoration: none;
    color: #333;
    transition: color 0.25s ease-in-out;
}

.dot:hover a,.dot:active a {
    color: #0094FF;
}

.prenext-box {
    border-top: 1px solid #999;
}

.prenextBtn {
    color: #333;
    width: 25%;
    height: 1em;
    box-sizing: content-box;
    padding: 20px;
    background: #FFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prenextBtn a {
    color: #333;
    text-decoration: none;
    transition: color 0.25s ease-in-out;
}

.prenextBtn:hover a,.prenextBtn:active a {
    color: #0094FF;
    text-decoration: underline;
}

.border-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #C3C3C3;
    transform: scaleY(0.5);
}

.banner-center .el-input-group__append {
    background: #0094FF !important;
}
.banner-center .search-input .el-input__inner {
    background: #fff;
}

.banner-2 .search-input {
    width: 72%;
    border: 2px solid #FFF;
    border-radius: 7px;
}

.banner-2 .el-input-group__append {
    background: #0094FF;
    border-radius: 7px;
    border: none;
}

.banner-2 .el-input.is-active .el-input__inner,.banner-2 .el-input__inner:focus {
    border-color: #FFF;
}

.banner-2 .el-input__inner {
    border-color: #FFF;
}

.banner-2 .el-input__inner:hover {
    border-color: #E9F4FF;
}

/*.banner-2 .search-input:hover {*/
/*    border-color: #E9F4FF;*/
/*}*/

.options {
    margin-top: 46px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.options.mobile {
    margin-top: 10px;
}
.option {
    box-sizing: border-box;
    background: #fff;
    border: 1.5px solid #F71B1B;
    border-radius: 6px;
    width: 220px;
    height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    transition: background 0.25s ease-in-out;
}
.options.mobile .option {
    width: 110px;
    height: 110px;
    margin: 10px;
}
.option.option-active {
    background: #FFEDE3;
}
.option-tag {
    box-sizing: border-box;
    height: 32px;
    line-height: 32px;
    background: #F61B1B;
    color: #fff;
    padding: 0px 6px;
    position: absolute;
    top: -32px;
    left: -2px;
    transform: translateY(50%);
}
.options.mobile .option-tag {
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    top: -20px;
    left: -1.5px;
    border-radius: 10px 0px;
}
.new-price {
    margin: 6px 0px;
    font-size: 42px;
    color: #F71B1B;
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.new-price .unit {
    font-size: 24px;
}
.options.mobile .new-price {
    font-size: 20px;
}
.options.mobile .new-price .unit {
    font-size: 12px;
}
.old-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 22px;
    color: #898989;
}
.old-price .unit {
    font-size: 18px;
}
.old-price .line-through {
    position: absolute;
    width: 120%;
    /*padding-bottom: 2px;*/
    border-bottom: 1.5px dashed #898989;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
}
.options.mobile .old-price {
    font-size: 16px;
}
.options.mobile .old-price .unit {
    font-size: 12px;
}
.options.mobile .old-price .line-through {
    width: 100%;
}
.package-description {
    margin: 0 30px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: #898989;
}

.member-btn {
    padding-left: 30px;
    margin-top: 15px;
}
.member-btn.mobile {
    padding-left: 0;
    display: flex;
    justify-content: center;
}
.member-btn .el-button {
    width: 240px;
    font-size: 20px !important;
}
.member-btn.mobile .el-button {
    width: 260px;
    height: 36px;
    font-size: 16px !important;
    line-height: 36px;
    padding: 0px;
    border-radius: 999999px;
}
.split-line {
    width: 100%;
    border-bottom: 1px dashed #898989;
}

.pay-dialog .el-dialog {
    max-width: 380px;
    border-radius: 20px;
}

.err-dialog .el-dialog {
    max-width: 480px;
    border-radius: 20px;
    margin-top: 25vh !important;
}

.error-btn {
    min-width: 140px;
}

.pay-dialog .el-dialog__body,.err-dialog .el-dialog__body {
    padding: 20px !important;
}

.pay-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    z-index: 666;
}

.pay-header .pay-header-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pay-header .pay-header-content .border-line {
    height: 30px;
    border-left: 1px solid #898989;
    margin: 0 30px;
}
.el-checkbox.text-sm .el-checkbox__label {
    font-size: 12px;
}

.clause.mobile .el-dialog {
    width: 95%;
}

.el-image-viewer__close {
    background-color: rgba(76,93,107,.9) !important;
    top: 10px !important;
    right: 10px !important;
}

.el-image-viewer__actions {
    display: none !important;
}

/*.header {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 666;*/
/*}*/

.block {
    display: block !important;
}

footer .list-title {
    margin: 0 0 15px;
}