body {
  font-family: 'Microsoft YaHei', '宋体', Tahoma, Arial, sans-serif;
  color: #666;
  /*body默认字体大小根据设计图不同js计算rem值不同而得出每个网站重新计算*/
  font-size: 12px;
  background: none;
  /* 清除内外边距 */
  -webkit-user-select: none;
  cursor: default;
  overflow: hidden;
}
html,
body {
  width: 100%;
  height: 100%;
}
[v-cloak] {
  display: none !important;
}
/*重置滚动条样式*/
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.6);*/
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #162b51;
  /*background:rgba(55,133,178,1); */
  -webkit-box-shadow: inset 0 0 6px #162b51;
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0); */
}
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input,
textarea {
  resize: none;
  border: none;
}
/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/*输入框*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
input[type='number'] {
  -moz-appearance: textfield;
}
/* 图片自适应 */
img {
  border: none;
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}
/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}
a {
  text-decoration: none;
  color: #969696;
  font-family: 'Microsoft YaHei', Tahoma, Arial, sans-serif;
}
a:hover {
  text-decoration: none;
}
em,
i {
  font-style: normal;
}
ul,
li {
  list-style-type: none;
}
strong {
  font-weight: normal;
}
.s-block {
  width: 100%;
  height: 0;
}
/*强制换行*/
.s-huanhang {
  word-break: break-all;
  -webkit-user-select: text;
}
/*禁止被选中*/
.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*单行溢出*/
.one-txt-cut {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*多行溢出 手机端使用*/
.txt-cut {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
}
/* 移动端点击a链接出现蓝色背景问题解决 */
a:link,
a:active,
a:visited,
a:hover {
  background: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
/*自定义一些公共样式*/
/*横向滚动*/
.h-auto {
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.h-auto-item {
  display: inline-table;
}
/*边框在盒子内呈现*/
.boxSize {
  box-sizing: border-box;
}
/*通用弹窗样式*/
.common-msg {
  position: fixed;
  width: 300px;
  height: 40px;
  left: 50%;
  margin-left: -150px;
  top: 50%;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
  pointer-events: none;
}
.common-msg div {
  display: inline-block;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  pointer-events: auto;
  transform: scale(0.2);
  -webkit-transform: scale(0.2);
}
.common-msg .move1 {
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: transform 0.1s linear;
  -webkit-transition: -webkit-transform 0.1s linear;
}
.common-alert {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  left: 0;
  top: 0;
}
.common-alert .info {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  overflow: hidden;
  font-size: 14px;
  z-index: 100;
  width: 277px;
  height: 184px;
  margin: -160px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 10px;
  background: #111526;
}
.common-alert .info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-image: linear-gradient(90deg, #ff5fef 0%, #f94b70 100%);
}
.common-alert .title {
  position: absolute;
  left: 0;
  top: 0;
  width: 257px;
  height: 38px;
  line-height: 38px;
  padding-left: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.common-alert .title div {
  float: left;
}
.common-alert .title .close {
  float: right;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  margin-top: 10px;
  background: url("../img/trunk/close.png") no-repeat;
  background-position: center center;
  cursor: pointer;
  display: none;
}
.common-alert .txtbox {
  position: absolute;
  width: 100%;
  height: 96px;
  line-height: 96px;
  left: 0;
  top: 38px;
  overflow: auto;
}
.common-alert .txtbox div {
  display: inline-block;
  padding: 0 20px;
  vertical-align: middle;
  line-height: 20px;
  color: #fff;
  -webkit-user-select: text;
  word-break: break-all;
  /* 支持IE和chrome，FF不支持*/
  word-wrap: break-word;
  /* 以上三个浏览器均支持 */
}
.common-alert .btnbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
}
.common-alert .btnbox .btn-confirm {
  float: right;
  height: 24px;
  margin-right: 20px;
  line-height: 24px;
  padding: 0 15px;
  color: #fff;
  background: linear-gradient(90deg, #ff5fef 0%, #f94b70 100%);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.common-alert .btnbox .btn-confirm:active {
  left: 1px;
  top: 1px;
}
.common-confirm {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  left: 0;
  top: 0;
}
.common-confirm .info {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  overflow: hidden;
  font-size: 14px;
  z-index: 100;
  width: 277px;
  height: 184px;
  margin: -160px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 10px;
  background: #111526;
}
.common-confirm .info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-image: linear-gradient(90deg, #ff5fef 0%, #f94b70 100%);
}
.common-confirm .title {
  position: absolute;
  left: 0;
  top: 0;
  width: 257px;
  height: 38px;
  line-height: 38px;
  padding-left: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.common-confirm .title div {
  float: left;
}
.common-confirm .title .close {
  float: right;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  margin-top: 10px;
  background: url("../img/trunk/close_img1.png") no-repeat;
  background-position: center center;
  cursor: pointer;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.common-confirm .title .close:hover {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.common-confirm .txtbox {
  position: absolute;
  width: 100%;
  height: 96px;
  line-height: 96px;
  left: 0;
  top: 38px;
  overflow: auto;
}
.common-confirm .txtbox div {
  display: inline-block;
  padding: 0 20px;
  vertical-align: middle;
  line-height: 20px;
  color: #fff;
  -webkit-user-select: text;
  word-break: break-all;
  /* 支持IE和chrome，FF不支持*/
  word-wrap: break-word;
  /* 以上三个浏览器均支持 */
}
.common-confirm .btnbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  text-align: center;
}
.common-confirm .btnbox div {
  margin-left: 20px;
  margin-right: 20px;
}
.common-confirm .btnbox .btn-cancel {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 15px;
  color: #fff;
  background: #292a42;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.common-confirm .btnbox .btn-confirm {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 15px;
  color: #fff;
  background: linear-gradient(90deg, #ff5fef 0%, #f94b70 100%);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.common-confirm .btnbox .btn-confirm:active {
  left: 1px;
  top: 1px;
}
.common-confirm .btnbox .btn-cancel:active {
  left: 1px;
  top: 1px;
}
.common-confirm2 {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  left: 0;
  top: 0;
}
.common-confirm2 .info {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 50%;
  font-size: 14px;
  z-index: 100;
  width: 204px;
  min-height: 70px;
  box-shadow: #cccccc 0px 1px 0px 1px;
  overflow: hidden;
  margin: -160px auto;
  border-radius: 10px;
  background: #ffffff;
  border-top: 3px solid #ff445a;
  padding: 22px 32px 36px;
}
.common-confirm2 .title {
  padding: 0;
  text-align: center;
  width: 100%;
  font-size: 18px;
  position: relative;
  line-height: 24px;
  height: 24px;
  color: #333;
  font-weight: 600;
  margin-bottom: 12px;
}
.common-confirm2 .title .close {
  float: right;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  margin-top: 10px;
  background: url("../img/trunk/close_img1.png") no-repeat;
  background-position: center center;
  cursor: pointer;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.common-confirm2 .title .close:hover {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.common-confirm2 .txtbox {
  font-size: 14px;
  color: #333;
  text-align: center;
  padding-bottom: 56px;
  line-height: 1.5;
}
.common-confirm2 .txtbox.on {
  font-weight: 600;
  font-size: 18px;
}
.common-confirm2 .txtbox .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.common-confirm2 .btnbox {
  position: absolute;
  left: 0;
  bottom: 36px;
  width: 100%;
  height: 30px;
  text-align: center;
}
.common-confirm2 .btnbox .btn {
  background: #F2F2F2;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding: 0 15px;
}
.common-confirm2 .btnbox .btn-cancel {
  display: none;
  background: #f2f2f2;
  color: #333;
}
.common-confirm2 .btnbox .btn-cancel.on {
  display: inline-block;
}
.common-confirm2 .btnbox .btn-confirm {
  display: none;
  background: #FF445A;
  color: #fff;
  margin-left: 20px;
}
.common-confirm2 .btnbox .btn-confirm.on {
  display: inline-block;
}
.common-confirm2 .btnbox .btn-confirm:active {
  left: 1px;
  top: 1px;
}
.common-confirm2 .btnbox .btn-cancel:active {
  left: 1px;
  top: 1px;
}
._vip_num {
  display: inline-block;
  vertical-align: top;
  width: 45px;
  height: 14px;
  padding-top: 4px;
  padding-left: 13px;
  text-align: center;
  background-image: url("../img/trunk/vip_num/ico_pretty_v4.webp");
  background-size: 100% 100%;
  background-position: center center;
}
._vip_num span {
  width: 6px;
  height: 10px;
  display: inline-block;
  vertical-align: top;
}
._vip_num span.vip_num_0 {
  background: url("../img/trunk/vip_num/0.png") top center;
}
._vip_num span.vip_num_1 {
  background: url("../img/trunk/vip_num/1.png") top center;
}
._vip_num span.vip_num_2 {
  background: url("../img/trunk/vip_num/2.png") top center;
}
._vip_num span.vip_num_3 {
  background: url("../img/trunk/vip_num/3.png") top center;
}
._vip_num span.vip_num_4 {
  background: url("../img/trunk/vip_num/4.png") top center;
}
._vip_num span.vip_num_5 {
  background: url("../img/trunk/vip_num/5.png") top center;
}
._vip_num span.vip_num_6 {
  background: url("../img/trunk/vip_num/6.png") top center;
}
._vip_num span.vip_num_7 {
  background: url("../img/trunk/vip_num/7.png") top center;
}
._vip_num span.vip_num_8 {
  background: url("../img/trunk/vip_num/8.png") top center;
}
._vip_num span.vip_num_9 {
  background: url("../img/trunk/vip_num/9.png") top center;
}
/*
    2020年11月a新的靓号
    靓号的外层在单独的样式里定义里面的在此处定义
    公共的是基于外层定位
*/
.vip_num_v2 {
  position: absolute;
  display: block;
  top: 0  !important;
  left: 0 !important;
  width: 45px !important;
  height: 14px !important;
  padding-left: 13px !important;
  padding-top: 4px !important;
}
.vip_num_v2 .imgbg {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.vip_num_v2 .ico_box {
  display: block;
  position: absolute;
  width: 44px !important;
  left: 13px !important;
  top: 1px !important;
  line-height: 16px;
  z-index: 1;
  text-align: center;
}
.vip_num_v2 .ico_box span {
  width: 6px !important;
  height: 10px !important;
  display: inline-block !important;
}
.vip_num_v2 .ico_box span.vip_num_0 {
  background: url("../img/public/frame/0.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_1 {
  background: url("../img/public/frame/1.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_2 {
  background: url("../img/public/frame/2.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_3 {
  background: url("../img/public/frame/3.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_4 {
  background: url("../img/public/frame/4.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_5 {
  background: url("../img/public/frame/5.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_6 {
  background: url("../img/public/frame/6.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_7 {
  background: url("../img/public/frame/7.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_8 {
  background: url("../img/public/frame/8.png") top center;
}
.vip_num_v2 .ico_box span.vip_num_9 {
  background: url("../img/public/frame/9.png") top center;
}
/* 新增一个问询弹窗 */
.PUBLICK_confirm {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.PUBLICK_confirm .info {
  width: 400px;
  height: 170px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #2e2e2e;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.PUBLICK_confirm .info .title {
  line-height: 22px;
  font-size: 16px;
  margin-top: 25px;
  color: #ffffff;
}
.PUBLICK_confirm .info .txtbox {
  width: 344px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  line-height: 20px;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.PUBLICK_confirm .info .btnbox {
  margin-top: 15px;
  text-align: center;
}
.PUBLICK_confirm .info .btnbox div {
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  border-radius: 19px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
.PUBLICK_confirm .info .btnbox .ok {
  background: linear-gradient(90deg, #24d4d2 0%, #30dbc5 100%);
  color: #ffffff;
}
.PUBLICK_confirm .info .btnbox .no {
  line-height: 34px;
  border: solid 1px #6666;
}
/*上下flex*/
.flex-top {
  -webkit-box-orient: vertical;
  height: 100%;
  display: -webkit-box;
}
/*左右布局*/
.flex-left {
  display: -webkit-box;
}
.flex-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
}
