@charset "utf-8";
/* 基础动画 */
/* 鼠标悬浮中心，使用：@include positioncenter() */
/* 鼠标悬浮遮罩效果，使用：@include hovermask() */
/*基础样式标准*/
:root {
  --font-size-12: 1.2rem;
  --font-size-14: 1.4rem;
  --font-size-16: 1.6rem;
  --font-size-18: 1.8rem;
  --font-size-20: 2rem;
  --font-size-22: 2.2rem;
  --font-size-24: 2.4rem;
  --font-size-34: 3.4rem;
  --font-size-40: 4rem;
  --font-color-base:#3e4373;
  --font-color-second:#64698f;
  --font-color-third:#64698f;
  --font-color-four: #8b8eab;
  --color-primary-base: #3888ff;
  --color-primary-second:#66a3ff;
  --color-primary-third:#b2d1ff;
  --color-primary-four:#e6f0ff;
  --color-sucess-base:#41cc8b;
  --color-sucess-second:#5ce5a6;
  --color-sucess-third:#9bf2ca;
  --color-waring-base:#f0ad01;
  --color-waring-second:#ffb801;
  --color-waring-third:#ffd66b;
  --color-error-base:#f53431;
  --color-error-second:#f56462;
  --color-error-third:#f09190;
  --font-family:"思源黑体旧字形 regular" ;
}

* {
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  transition: 0.3s;
}

.shadow_box {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.container_body {
  transition: 0.3s;
  opacity: 0;
  font-family: -apple-system, blinkmacsystemfont, helvetica neue, pingfang sc, microsoft yahei, source han sans sc, noto sans cjk sc, wenquanyi micro hei, sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-size: var(--font-size-16);
  color: var(--font-color-base);
  margin: 0;
  padding: 0;
  background-color: #f2f3f5;
}

/*字体设置*/
@font-face {
  font-family: sourcehansansregular;
  src:  format("truetype");
}
[v-cloak] {
  display: none !important;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background-color: #a1a3a9;
  border-radius: 3px;
}

.loading_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999999;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.4s ease-in-out;
  opacity: 1;
}
.loading_container .boxes {
  --size: 3.2rem;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotatex(60deg) rotatez(45deg) rotatey(0deg) translatez(0px);
}
.loading_container .boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}
.loading_container .boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  -webkit-animation: box1 var(--duration) linear infinite;
  animation: box1 var(--duration) linear infinite;
}
.loading_container .boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  -webkit-animation: box2 var(--duration) linear infinite;
  animation: box2 var(--duration) linear infinite;
}
.loading_container .boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  -webkit-animation: box3 var(--duration) linear infinite;
  animation: box3 var(--duration) linear infinite;
}
.loading_container .boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  -webkit-animation: box4 var(--duration) linear infinite;
  animation: box4 var(--duration) linear infinite;
}
.loading_container .boxes .box > div {
  --background: #5c8df6;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translatez: calc(var(--size) / 2);
  --rotatey: 0deg;
  --rotatex: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotatey(var(--rotatey)) rotatex(var(--rotatex)) translatez(var(--translatez));
}
.loading_container .boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}
.loading_container .boxes .box > div:nth-child(2) {
  --background: #145af2;
  --right: 0;
  --rotatey: 90deg;
}
.loading_container .boxes .box > div:nth-child(3) {
  --background: #447cf5;
  --rotatex: -90deg;
}
.loading_container .boxes .box > div:nth-child(4) {
  --background: #dbe3f4;
  --top: 0;
  --left: 0;
  --translatez: calc(var(--size) * 3 * -1);
}
@-webkit-keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@-webkit-keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@-webkit-keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@-webkit-keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}

.qrcode_we {
  display: flex;
  justify-content: center;
}
.qrcode_we img {
  max-width: 100%;
}

.hidden {
  visibility: hidden;
}

/*.el-dialog {
  padding: returnvalue(40);
}*/
.dialog {
  border-radius: 1.2rem !important;
}

.authentication_tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-14);
  border-radius: 2.4rem;
}
.authentication_tag .icon {
  height: 2rem;
  width: 2rem;
  margin-right: 0.3rem;
}
.authentication_tag span {
  padding-right: 0.5rem;
}
.authentication_tag.enterprise {
  background-color: #fff8e6;
  border: 0.1rem solid #fff8e6;
  color: #ffc01e;
}
.authentication_tag.expert {
  padding: 0.2rem 0.3rem 0.2rem 0.8rem;
  border: 0.1rem solid #ffb801;
  background-color: #ffffff;
  color: #ffc01e;
}
.authentication_tag.none_auth {
  background-color: #f6f6f9;
  border: 0.1rem solid #f6f6f9;
  color: var(--font-color-four);
}
.authentication_tag.person_tag {
  background-color: var(--color-primary-four);
  border: 0.1rem solid var(--color-primary-four);
  color: var(--color-primary-base);
}

#bottom_container {
  background-color: #ffffff;
}

.dialog-footer-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.dialog:focus {
  outline: none;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 6px;
}
.btn_icon:hover {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out 0s;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.btn_icon:hover .iconfont {
  color: var(--color-primary-base);
}

.dialog__body {
  color: var(--font-color-base);
}

.dialog_agreement .scrollbar {
  height: fit-content;
}
.dialog_agreement .agreement {
  font-size: var(--font-size-12);
}
.dialog_agreement .agreement .agreement_title {
  text-align: center;
}
.dialog_agreement .agreement span {
  color: #3887ff;
}
.dialog_agreement .agreement span:hover {
  cursor: pointer;
  text-decoration: underline;
}

.mtp_empty_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mtp_empty_box > div:nth-child(2) {
  margin-top: 2.4rem;
  color: var(--font-color-third);
}
.mtp_empty_box > div:nth-child(3) {
  margin-top: 0.8rem;
  color: var(--color-primary-base);
  text-decoration: underline;
  cursor: pointer;
}

.el-select-dropdown {
  position: absolute !important;
  left: 0 !important;
  background-color: #ffffff;
  box-shadow: 0 0.4rem 1rem 0.1rem rgba(0, 0, 0, 0.2);
}

.el-dropdown-menu__item.is-disabled {
  pointer-events: none;
}

.website-lang {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.website-lang .site-languages {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.website-lang .title {
  font-weight: bold;
  margin-bottom: 10px;
}
.website-lang .language {
  padding-left: 10px;
  line-height: 32px;
}
.website-lang .language:hover {
  color: var(--color-primary-base);
  cursor: pointer;
}
.website-lang .selected {
  color: var(--color-primary-base);
}

body:not([data-lang=zh-cn], [data-lang=zh-tw]) .authentication_tag {
  padding: 0.4rem 2.4rem;
}
body:not([data-lang=zh-cn], [data-lang=zh-tw]) .authentication_tag span {
  padding-left: 0.8rem;
}

[data-lang=en-us] .container_body {
  font-family: -apple-system, segoe ui historic, segoe ui, helvetica, arial, sans-serif !important;
}

[data-lang=zh-cn] .container_body, [data-lang=zh-tw] .container_body {
  font-family: -apple-system, sourcehansansregular, sans-serif !important;
}

.add-friend-button {
  width: 70%;
  height: 45px;
  background: #005fb4;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

/*# sourcemappingurl=common.css.map */
