html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0 none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
}
img {
  /* width: 100%; */
}
input,
button,
textarea,
video {
  outline: none;
  border: 0 none;
  resize: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* 滚动条 */
::-webkit-scrollbar {
  width: 0;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  width: 0;
  background: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  width: 0;
  background: rgba(0, 0, 0, 0.5);
}
/* flex常用 */
.fr {
  display: flex;
  flex-direction: row;
}
.fc {
  display: flex;
  flex-direction: column;
}
.fw {
  flex-wrap: wrap;
}
.fw-t {
  flex-wrap: wrap-reverse;
}
.fj-start {
  justify-content: flex-start;
}
.fj-c {
  justify-content: center;
}
.fj-end {
  justify-content: flex-end;
}
.fj-sb {
  justify-content: space-between;
}
.fj-sa {
  justify-content: space-around;
}
.fa-start {
  align-items: flex-start;
}
.fa-end {
  align-items: flex-end;
}
.fa-c {
  align-items: center;
}
/* 文字超出自动显示省略号 */
/* 单行 */
.txt-over {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
}
/* 多行文字保留固定行“line-clamp: 2”，并显示省略号 */
.txt-over-two {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 2; /* 限制显示的行数，当前为两行 */
}
.txt-over-three {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  line-clamp: 3; /* 限制显示的行数，当前为三行 */
}
/* 常用宽高 start */
.w1400 {
  width: 1400px;
}
.w130 {
  width: 130px;
}
.h100 {
  height: 100px;
}
/* 常用宽高 end */
/* 常用内外边距 start */
.plr10 {
  padding: 0 10px
}
.ptb10 {
  padding: 10px 0;
}
.mlr10 {
  margin: 0 10px;
}
.mtb10 {
  margin: 10px 0;
}
/* 常用内外边距 end */
/* 定位层级 start */
.z-index1 {
  z-index: 1;
}
.z-index9 {
  z-index: 9;
}
.z-index99 {
  z-index: 99;
}
.z-index999 {
  z-index: 999;
}
.z-index9999 {
  z-index: 9999;
}
.z-index99999 {
  z-index: 99999;
}
/* 定位层级 end */
/* 遮罩 */
/* 中部弹窗样式 单按钮 start */
.showAlert {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .5);
  display: none;
  justify-content: center;
  align-items: center;
}
.showAlert .alerts {
  width: 300px;
  border-radius: 5px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.showAlert .alerts > span {
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 550;
  line-height: 30px;
  text-align: center;
  width: 100%;
  padding: 20px;
}
.showAlert .alerts .btns {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E4E4E4;
}
.showAlert .alerts .btns span {
  width: 100%;
  line-height: 45px;
  font-size: 16px;
  font-weight: 550;
  cursor: pointer;
  text-align: center;
}
/* 中部弹窗样式 单按钮 end */
/* 中部弹窗样式 双按钮 start */
.showConfirm {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .5);
  display: none;
  justify-content: center;
  align-items: center;
}
.showConfirm .confirm {
  min-width: 300px;
  max-width: 450px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.showConfirm .confirm > span {
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  width: 100%;
  padding: 20px;
}
.showConfirm .confirm .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E4E4E4;
  width: 100%;
  height: 45px;
}
.showConfirm .confirm .buttons > span {
  width: 50%;
  line-height: 45px;
  font-size: 16px;
  font-weight: 550;
  cursor: pointer;
  text-align: center;
}
.showConfirm .confirm .buttons > span:hover {
  background-color: #F4F4F5;
}
.showConfirm .confirm .buttons > .btnleft {
  border-right: 1px solid #E4E4E4;
}
/* 中部弹窗样式 双按钮 end */
/* 提醒文字样式 start */
.showTips {
  position: fixed;
  top: 200px;
  left: 50%;
  z-index: 999999;
  width: 300px;
  margin-left: -155px;
  font-size: 14px;
  opacity: 0.9;
}
.showTips .success, .showTips .danger, .showTips .warning, .showTips .info {
  padding: 10px 20px;
  border-radius: 3px;
}
.showTips .success {
  background-color: #F0F9EB;
  color: #67C23A;
}
.showTips .warning {
  background-color: #FDF6EC;
  color: #E6A23C;
}
.showTips .danger {
  background-color: #FEF0F0;
  color: #F56C6C;
}
.showTips .info {
  background-color: #F4F4F5;
  color: #909399;
}
/* 提醒文字样式 end */
/* 提交提示弹窗 */
.dialog_wrap {
  display: none;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.dialog_content {
  width: 570px;
  /* height: 457px; */
  background: #FFFFFF;
  border-radius: 30px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dialog_title {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 36px;
  color: #FE6C00;
  line-height: 1.5;
  padding: 44px 0 29px;
}
.dialog_notice {
  color: #000000;
}
.dialog_notice_content {
  padding: 0;
  margin: 0 40px;
  font-size: 23px;
}
.dialog_img {
  width: 496px;
  height: 188px;
  object-fit: cover;
  margin: 0 auto 0;
}
.dialog_btn {
  width: 290px;
  height: 48px;
  background: linear-gradient(0deg, #CE141F, #F19772);
  border-radius: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 48px;
  text-align: center;
  margin: 32px auto 35px;
  cursor: pointer;
}
body {
  padding-top: 90px;
}
/* 导航 */
.common_nav, .common_chat_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(4, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.common_nav .nav_title, .common_nav .nav_right {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 380px;
  flex-shrink: 0;
}
.nav_title {
  font-size: 21px;
  color: #000000;
  line-height: 90px;
  max-width: 770px;
  padding: 0 46px;
}
.nav_title img{
  width: 134px;
  height: 60px;
  object-fit: contain;
}
.nav_center {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav_each {
  display: flex;
  align-items: center;
  padding: 0 37px;
  cursor: pointer;
  position: relative;
}
.nav_each img {
  width: 27px;
  height: 27px;
}
.nav_each div {
  font-size: 16px;
  color: #4C4C4C;
  padding-left: 5px;
}
.nav_each .nav_chat_num,
.nav_each .nav_moment_num {
  width: 24px;
  height: 24px;
  background: #FF0000;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  right: 15px;
  color: #FFFFFF;
  line-height: 24px;
  padding: 0;
  text-align: center;
  font-size: 14px;
}
.nav_active div {
  color: #FF4242;
}
.nav_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav_level {
  height: 40px;
  display: inline-block;
  border: 1px solid #F9F8F8;
  border-radius: 10px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  padding: 0 10px;
}
.nav_gold {
  display: flex;
  align-items: center;
  padding: 0 45px 0 40px;
  cursor: pointer;
}
.nav_gold img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.nav_gold div {
  font-size: 16px;
  color: #000000;
}
.nav_user {
  display: flex;
  align-items: center;
  padding-right: 70px;
  cursor: pointer;
}
.nav_user_photo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.nav_user_info {
  position: relative;
}
.nav_menu_first {
  display: flex;
  align-items: center;
}
.nav_menu_first > div {
  font-size: 16px;
  color: #000000;
  padding: 0 7px 0 6px;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav_menu_first > img {
  width: 9px;
  height: 8px;
}
.nav_menu_second {
  display: none;
  width: 150px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  top: 70px;
  right: -20px;
  box-shadow: 0px 2px 10px 0px rgba(4, 0, 0, 0.08);
}
.nav_menu_second div {
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #F9F8F8;
  cursor: pointer;
}
.nav_menu_second div:last-child {
  border: 0px none;
}
.nav_back {
  width: 150px;
  height: 48px;
  background: linear-gradient(0deg, #CE141F, #F19772);
  border-radius: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 右侧-信封 */
.right_envelope {
  position: fixed;
  right: 26px;
  bottom: 70px;
  z-index: 100;
}
.right_envelope_del {
  width: 21px;
  height: 21px;
  position: absolute;
  top: -9px;
  right: 6px;
  cursor: pointer;
}
.right_envelope_bg {
  width: 143px;
  height: 126px;
}
.right_envelope_info {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  padding-left: 8px;
}
.right_envelope_info img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: 2px solid #FFFFFF;
  border-radius: 100%;
  margin-left: -6px;
  box-sizing: border-box;
  cursor: pointer;
}
input:-internal-autofill-previewed, input:-internal-autofill-selected {
  -webkit-text-fill-color: #666666 !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
/*全局消息弹层样式*/
.fixed_chat_container {
  position: fixed;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  z-index: 100;
}
.fixed_chat_container .msg_content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(./../img/img_xiaoxikuang.png) no-repeat 100% 100%;
  width: 574px;
  height: 75px;
  font-size: 18px;
  line-height: 41px;
  cursor: pointer;
  padding: 0 31px;
  box-sizing: border-box;
}
.msg_content .msg_avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.msg_content .msg_content_content {
  display: block;
  margin-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*全局充值消息弹层样式*/
.fixed_recharge_container {
  position: fixed;
  left: 80%;
  top: 60px;
  transform: translateX(-50%);
  z-index: 100;
}
.fixed_recharge_container .recharge_content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(./../img/img_jifenkuang.png) no-repeat 100% 100%;
  width: 438px;
  height: 71px;
  font-size: 18px;
  cursor: default;
  box-sizing: border-box;
}
.recharge_content .recharge_avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.recharge_content .recharge_content_content {
  display: block;
  margin-top: -6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*邀请页轮播样式*/
.fixed_invite_container {
  position: fixed;
  left: 20%;
  top: 150px;
  transform: translateX(-50%);
  z-index: 100;
}
.fixed_invite_container .invite_content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 403px;
  height: 66px;
  background: #0D0B0B70;
  border-radius: 33px;
  font-size: 18px;
  cursor: default;
  box-sizing: border-box;
  overflow: hidden;
}
.invite_content .invite_avatar {
  display: block;
  width: 24px;
  height: 22px;
}
.invite_content .invite_content_content {
  display: block;
  margin-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #FFFFFF;
  max-width: 270px;
  height: 66px;
  line-height: 66px;
}

.pair_dialog {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}
.pair_cont {
  width: 796px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pair_bg {
  display: block;
  width: 796px;
  height: 561px;
}
.pair_user {
  /* display: flex;
  position: absolute;
  top: 204px; */
  /* transform: translateX(-50%); */
}
.pair_user_each {
  width: 203px;
  height: 203px;
  position: absolute;
  top: 204px;
  padding: 9px;
  box-sizing: border-box;
  /*overflow: hidden;*/
}
.pair_user_each img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.pair_user_one {
  right: 50%;
  margin-right: 21px;
  background: url("./../img/img_peidui1.png") no-repeat;
}
.pair_user_two {
  left: 50%;
  margin-left: 21px;
  background: url("./../img/img_peidui2.png") no-repeat;
}
.pair_user_one img {
  animation: pairLeft 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
  -webkit-animation: pairLeft 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
}
@keyframes pairLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: none;
  }
}
.pair_user_two img {
  animation: pairRight 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
  -webkit-animation: pairRight 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
}
@keyframes pairRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: none;
  }
}
.pair_icon {
  display: block;
  width: 107px;
  height: 102px;
  position: absolute;
  top: 274px;
  left: 50%;
  transform: translateX(-50%);
  animation: pairHeart 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
  -webkit-animation: pairHeart 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 alternate forwards;
}
@keyframes pairHeart {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
.pair_btn_wrap {
  display: flex;
  justify-content: center;
}
.pair_btn {
  width: 288px;
  height: 53px;
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  line-height: 53px;
  color: #FFFFFF;
  text-align: center;
  margin: 0 15px;
  cursor: pointer;
}
.pair_btn_yes {
  background: url("./../img/btn_ganxingqu.png") no-repeat;
}
.pair_btn_no {
  color: #000000;
  background: url("./../img/btn_buganxingqu.png") no-repeat;
}
.empty_text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2;
  color: #999999;
}
/**
 * ----------------------------------------
 * @animation scale-out-br
 * ----------------------------------------
 */
.scale-out-br {
  -webkit-animation: scale-out-br 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: scale-out-br 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.bg-scale-out-br {
  -webkit-animation: bg-scale-out-br 2s both;
  animation: bg-scale-out-br 2s both;
}
@-webkit-keyframes scale-out-br {
  0% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.2) translate(31%, -175%);
    transform: scale(0.2) translate(31%, -175%);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 0;
  }
}
@keyframes scale-out-br {
  0% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.2) translate(31%, -175%);
    transform: scale(0.2) translate(31%, -175%);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 0;
  }
}
@-webkit-keyframes bg-scale-out-br {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bg-scale-out-br {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.letter-ani {
  -webkit-animation: letter-ani 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: letter-ani 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@keyframes letter-ani {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-15deg);
  }
  20% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


/* 非韩文提示 */
.showNoticeDialog .user_msg_content {
  width: 520px;
  min-height: 347px;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.showNoticeDialog .user_msg_icon {
  width: 409px;
  height: 221px;
  margin: -56px auto 0;
}
.showNoticeDialog .user_msg_cont {
  font-size: 30px;
  color: #000000;
  text-align: center;
  margin-top: -7px;
  min-height: 50px;
  padding: 0 20px;
  line-height: 1.5;
}
.showNoticeDialog .btn_msg {
  width: 332px;
  height: 48px;
  font-size: 18px;
  font-family: Microsoft YaHei;
  color: #FFFFFF;
  line-height: 48px;
  background: linear-gradient(0deg, #CE141F, #F19772);
  border-radius: 24px;
  margin: 46px auto 0;
  cursor: pointer;
}
.noticejs .item {
  width: auto !important;
  min-width: 320px;
  max-width: 500px;
  /*height: 50px;*/
  /*line-height: 30px;*/
  /*white-space: nowrap;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
}

.pay_btn {
  display: flex;
  justify-content: center;
}
.pay_btn div {
  width: 221px;
  height: 48px;
  font-size: 18px;
  line-height: 48px;
  border-radius: 24px;
  box-sizing: border-box;
  margin: 45px 16px 40px;
  cursor: pointer;
}
.btn_cancel {
  background: #FFFFFF;
  border: 1px solid #BFBFBF;
}
.btn_sure {
  color: #FFFFFF;
  background: linear-gradient(0deg, #CE141F, #F19772);
}

/* 金币缓存不足 */
.lack_content {
  //width: 520px;
  min-height: 347px;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.lack_icon {
  width: 232px;
  height: 241px;
  margin: -120px auto 37px;
}
.lack_title {
  font-size: 30px;
  color: #000000;
  text-align: center;
  /* margin-top: -7px; */
  min-height: 50px;
  padding: 0 20px;
  line-height: 1.5;
}
.lack_cont {
  font-size: 24px;
  color: #000000;
  padding: 42px 0 0;
}
.lack_content .btn_sure {
  background: url("./../img/btn_chongdian.png") no-repeat;
}
.lack_content .pay_btn div {
  margin: 42px 16px 0;
}
.noticejs .warning .noticejs-content {
  line-height: 1.3;
}
