/* 设置灰色滤镜 */
/* html {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -webkit-filter: grayscale(1);
} */
[v-cloak] {
    visibility: hidden
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.disabled {
  /* pointer-events: none;  核心：禁止所有鼠标点击、悬停等事件 */ 
  opacity: 0.5;         /* 让元素变半透明，视觉上看起来像被禁用了 */
  cursor: not-allowed !important;  /* 鼠标放上去显示禁止图标（虽然点不了，但体验更好） */
}
.form-boxs{
  padding: 16px 23px 13px 24px;
  border-bottom: 1px solid #d8d8d8;
}
.table-boxs{
  /* padding: 6px 24px 22px; */
  padding: 6px 24px 14px;
}
/* $color-primary:#6660b8; */
.primary-btn{
    background-color: #6660b8;
    color: #FFFFFF;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}
.plan-btn{
    background-color: #FFFFFF;
    color: #6660b8;
    border-radius: 4px;
    margin: auto;
    text-align: center;
    border: 1px solid #6660b8;
}
/* flex */
.fx-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: flex-start;
}

.fx-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.fx-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fx-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.fx-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.fx-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.fx-stretch {
  display: flex;
  justify-content: stretch;
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-content-start{
  align-content: flex-start;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-stretch {
  align-items: stretch;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-column-c {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.flex-var{
	display: flex;
	align-items: center;
	justify-content:var(--justifyContent);
}
.flex-1{
	flex: 1;
}
.fl{
  float: left;
}
/* margin */
.m-auto{
  margin: auto;
}
.mr-0{
  margin-right: 0!important;
}
.mr-b1 {
  margin-right: 1%;
}
.mr-b5 {
  margin-right: 5%;
}
.ml-b5 {
  margin-left: 5%;
}
.ml-b10 {
  margin-left: 10%;
}
.m-30 {
  margin: 30px;
}
.m-20 {
  margin: 20px;
}
.m-15 {
  margin: 15px;
}
.mr-2 {
  margin-right: 2px;
}
.mr-4 {
  margin-right: 4px;
}
.mr-5 {
  margin-right: 5px;
}
.mr-6 {
  margin-right: 6px;
}
.mr-8 {
  margin-right: 8px;
}
.mr-12 {
  margin-right: 12px;
}
.mr-16 {
  margin-right: 16px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-60 {
  margin-right: 60px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-2 {
  margin-top: 2px;
}
.mt-3 {
  margin-top: 3px;
}
.mt-5 {
  margin-top: 5px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-60 {
  margin-top: 60px;
}
.mt--80{
  margin-top: -80px;
}
.mt-200{
    margin-top: 200px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-0 {
  margin-bottom: 0px!important;
}
.mb-1 {
  margin-bottom: 1px;
}
.mb-2 {
  margin-bottom: 2px;
}
.mb-4 {
  margin-bottom: 4px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-7 {
  margin-bottom: 7px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-14 {
  margin-bottom: 14px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24{
    margin-bottom: 24px;
}
.mb-25{
    margin-bottom: 25px;
}
.mb-28{
    margin-bottom: 28px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-44 {
  margin-bottom: 44px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mr-30 {
  margin-right: 30px;
}
.ml-auto{
  margin-left: auto;
}
.ml-4{
  margin-left: 4px;
}
.ml-5{
  margin-left: 5px;
}
.ml-8{
  margin-left: 8px;
}
.mr-8{
  margin-right: 8px;
}
.mr-10{
  margin-right: 10px;
}
.ml-16 {
  margin-left: 16px;
}
.ml-30 {
  margin-left: 30px;
}
.mlr-4{
  margin: 0 4px;
}
.mlr-8{
  margin: 0 8px;
}
.mlr-10{
  margin: 0 10px;
}

.mr-20 {
  margin-right: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.ml-20 {
  margin-left: 20px;
}

.ml-15 {
  margin-left: 15px;
}
.mr-15 {
  margin-right: 15px;
}
.mt-15 {
  margin-top: 15px;
}
.mb-15 {
  margin-bottom: 15px;
}

.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-6 {
  margin-bottom: 6px;
}
.mb-10 {
  margin-bottom: 10px!important;
}
.ml-180{
  margin-left: 180px;
}
.m-tb-10{
	margin:10px 0;
}
.m-7-4{
  margin: 7px 4px;
}
/* padding */
.p-60 {
  padding: 60px;
}
.p-55 {
  padding: 55px;
}
.p-40 {
  padding: 40px;
}
.p-30 {
  padding: 30px;
}
.p-32 {
  padding: 32px;
}
.p-35 {
  padding: 35px;
}
.p-36 {
  padding: 36px;
}
.p-25 {
  padding: 25px;
}
.p-20 {
  padding: 20px;
}
.p-15 {
  padding: 15px;
}

.p-8-15{
  padding: 8px 15px;
}

.p-8-10{
  padding: 8px 10px;
}
.p-10-15{
    padding: 10px 15px;
}
.p-15-25{
    padding: 15px 25px;
}
.p-10-25{
    padding: 10px 25px;
}
.p-16-20{
	padding: 16px 20px;
}
.p-20-40{
    padding: 20px 40px;
}
.p-20-15{
    padding: 20px 15px;
}
.p-28-48{
    padding: 28px 48px;
}
.p-24-48{
    padding: 24px 48px;
}
.p-40-30{
    padding: 40px 30px;
}
.p-50-30{
    padding: 50px 30px;
}
.p-50-60{
    padding: 50px 60px;
}
.p-6-76{
	padding: 6px 76px;
}
.p-4-10{
  padding: 4px 10px;
}
.p-6-10{
  padding: 6px 10px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-5 {
  padding-top: 5px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-6 {
  padding-bottom: 6px;
}
.pb-8 {
  padding-bottom: 8px;
}
.ptb-5 {
  padding: 5px 0;
}
.ptb-7 {
  padding: 7px 0;
}
.ptb-10 {
  padding: 10px 0;
}
.ptb-15 {
  padding: 15px 0;
}
.ptb-18 {
  padding: 18px 0;
}
.ptb-24 {
  padding: 24px 0;
}
.ptb-40 {
  padding: 40px 0;
}
.plr-5 {
  padding: 0 5px;
}
.plr-10 {
  padding: 0 10px;
}
.plr-15 {
  padding: 0 15px;
}
.plr-20 {
  padding: 0 20px;
}
.plr-24 {
  padding: 0 24px;
}
.plr-25{
  padding: 0 25px;
}
.plr-32{
  padding: 0 32px;
}
.plr-40 {
  padding: 0 40px;
}
.plr-48 {
  padding: 0 48px;
}
.plr140{
    padding: 0 140px;
}

.pl-5 {
  padding-left: 5px;
}
.pl-50 {
  padding-left: 50px;
}
.pl-40 {
  padding-left: 40px;
}
.pr-40 {
  padding-right: 40px;
}
.pr-5 {
  padding-right: 5px;
}
.pr-12 {
  padding-right: 12px;
}
.pr-50 {
  padding-right: 50px;
}
.pl-12 {
  padding-left: 12px;
}
.pl-15 {
  padding-left: 15px;
}
.pl-36 {
  padding-left: 36px;
}
.pr-36 {
  padding-right: 36px;
}
.pr-32 {
  padding-right: 32px;
}
.pt-55 {
  padding-top: 55px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-0 {
  padding-bottom: 0px!important;
}
.pb-4 {
  padding-bottom: 4px;
}
.pb-8 {
  padding-bottom: 8px;
}
.pb-80{
    padding-bottom: 80px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-260 {
  padding-bottom: 260px;
}
.pl-24 {
  padding-left: 24px;
}
.pr-24 {
  padding-right: 24px;
}
.pl-27 {
  padding-left: 27px;
}
.pr-27 {
  padding-right: 27px;
}
.pl-30 {
  padding-left: 30px;
}
.pr-30 {
  padding-right: 30px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.pt-15 {
  padding-top: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.p3-8-i{
  padding: 3px 8px !important;
}
.p-4 {
  padding: 4px;
}
.p-6 {
  padding: 6px;
}
.p-10 {
  padding: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}
.pt-7 {
  padding-top: 7px;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-12{
    padding-top: 12px;
}
.pb-12{
    padding-bottom: 12px;
}
.pt-6{
  padding-top: 6px;
}
/* font-size */
.f-12 {
  font-size: 12px;
}
.f-13 {
  font-size: 13px;
}
.f-14 {
  font-size: 14px;
}
.f-15 {
  font-size: 15px;
}
.f-16 {
  font-size: 16px;
}
.f-18 {
  font-size: 18px;
}
.f-20 {
  font-size: 20px;
}
.f-22 {
  font-size: 22px;
}
.f-24 {
  font-size: 24px;
}
.f-26 {
  font-size: 26px;
}
.f-28 {
  font-size: 28px;
}
.f-30 {
  font-size: 30px;
}
.f-32 {
  font-size: 32px;
}
.f-34 {
  font-size: 34px;
}
.f-36 {
  font-size: 36px;
}
.f-40 {
  font-size: 40px;
}
.f-44 {
  font-size: 44px;
}
.f-50 {
  font-size: 50px;
}
.f-56 {
  font-size: 56px;
}
.f-64 {
  font-size: 64px;
}
.f-72 {
  font-size: 72px;
}
.f-80 {
  font-size: 80px;
}
.f-96 {
  font-size: 96px;
}

/* text-align */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-left-i {
  text-align: left !important;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}

/* color */
.colo-d1{
  color: #D1D5DB;
}
.color-4d4d4d {
  color: #4d4d4d;
}
.color-000 {
  color: #000000;
}
.color-000-i {
  color: #000000 !important;
}
.color-999 {
  color: #999999;
}
.color-777 {
  color: #777777;
}
.color-666 {
  color: #666;
}
.color-535353 {
  color: #535353;
}
.color-333 {
  color: #333;
}
.color-444 {
  color: #444;
}
.color-bbaab2{
  color: #bbaab2;
}
.color-aaa{
    color: #AAAAAA;
}
.color-bbb {
  color: #bbb;
}
.color-eee {
  color: #eee;
}
.color-e4 {
  color: #e4e4e4;
}
.color-fff {
  color: #fff;
}
.color-21 {
  color: #212121;
}
.color-gray{
    color: #e5e9f2;
}
.color-orange {
  color: #F9BA37;
}
.color-primary {
  color: #6660b8;
}
.color-text {
  color: #333;
}
.color-golden {
  color: #da8c47;
}
.color-golden-1 {
  color: #BE9137;
}
.color-yellow{
  color: #FFC300;
}
.color-red {
  color: red;
}


.color-blue{
    color: #0071b8;
}
.color-blue-2{
  color: #7499c1;

}
.color-sky-blue{
    color: #1890ff;
}
.color-sky-blue-i{
    color: #1890ff !important;
}
.color-green{
  color: #09af6d;
}
.color-blown{
  color: #a44200;
}
.color-pink{
  color: #FFD3BE;
}
.color-888{
  color: #888 !important;
}
.color-d88{
  color: #dd8888 !important;
}
.color-88d{
  color: #8888dd !important;
}
.color-8d8{
  color: #88dd88 !important;
}
.color-green_sky{
	color: #09ff00;
}
.color-transparent{
	color: transparent;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}

/* position */
.relative {
  position: relative;
}

.absoult{
  position: absolute;
}
.sticky{
	position: -webkit-sticky; /* Safari */
	position: sticky;
}
.top-1{
  top: 1px;
}
/* hover */
.hover:active {
  opacity: 0.7;
}
.hover-show .show{
  display: none;
}
.hover-show:hover .show {
  display: block;
}
.layout-hover:hover {
  background-color: #6660b8;
}
/* .layout-hover :hover {
  background-color: #6660b8;
} */
.back-hover:active {
  background: #0000001c;
  border-radius: 16px;
}
.back-transparent{
  background: transparent;
}
.back-primary {
  background: #6660b8;
}
.back-primary-light {
  background: #3191A9;
}
.back-light-blue{
  background: #e1e9fd;
}
.back-shy-blue{
  background: #55acee;
}
.back-che-blue{
	background: #409eff;
}
.back-cad-blue{
  background: cadetblue;
}
.back-blue-2{
	background: #00528a;
}
.back-blue{
  background: #0071b8;
}
.back-f1f1f1 {
  background: #f1f1f1;
}
.back-defult {
  background: #e4e4e4;
}
.back-fff {
  background: #fff;
}
.back-000{
  background: #000000;
}
.back-fff-important {
  background: #fff !important;
}
.back-F2F2F2 {
  background: #F2F2F2;
}
.back-f3f5f9 {
  background: #f3f5f9;
}
.back-f9f9f9 {
  background: #f9f9f9;
}
.back-gray {
  background: #f7f7f7;
}
.back-f7fafc {
  background: #f7fafc;
}
.back-f6 {
  background: #f6f6f6;
}
.back-grays{
  background: #f5f6fa;
}
.back-red{
  background: #FF0000;
}
.back-deep-red{
  background: #d13c3c;
}
.back-green{
  background: #00bd1d;
}
.back-green-sky{
  background: #09ff00;
}

.back-e1e2e7{
  background: #e1e2e7;
}
.back-eee{
  background: #eeeeee;
}
.back-b4{
	background: #b4b4b4;
}
.back-pink{
  background: #fff4e6;
}
.back-blown{
  background: #EBCAB8;
}
.back-e5-i{
  background: #e5e5e5 !important;
}
.back-success{
	background-color:#67c23a !important;
}
.back-error{
	background-color:#f56c6c !important;
}
.back-529{
	background-color: #52909a;
}
.back-black-14{
   background-color: rgba(0, 0, 0, .14);
}
.border-top {
  border-top: 1px solid #eee;
}
.border-top-d1 {
  border-top: 1px solid #d1d1d1;
}
.border-bottom {
  border-bottom: 1px solid #e5e9f2;
}
.border-bottom-deep {
  border-bottom: 1px solid #ced4da;
}
.border-bottom-e0{
	border-bottom: 1px solid #e0e0e0
}
.border-bottom-0 {
  border-bottom: 0;
}
.border-left{
  border-left: 1px solid #e5e9f2;
}
.before-left::before{
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
  content: '';
  width: 3px;
  height: 15px;
  background-color: #0071b8;
}
.border-1 {
  border: 1px solid #ced4da;
}
.border-1-light {
  border: 1px solid #e5e9f2;
}
.border-focus-1{
  border: 1px solid #ff0000;
}
.border-dashed-t-95{
	border-top:1px dashed #959595
}
.border-0 {
  border: 0!important;
}
.border-left-e4e7ed{
	border-left: 1px solid #e4e7ed;
}
.border-radius-2{
  border-radius: 2px;
}
.border-radius-4{
  border-radius: 4px;
}
.border-radius-8{
    border-radius: 8px;
}
.border-radius-12 {
  border-radius: 12px;
}
.border-radius-16{
    border-radius: 16px;
}
.border-radius-24 {
  border-radius: 24px;
}
.border-radius-tblr-4400 {
  border-radius: 4px 4px 0 0;
}
.border-white-2 {
  border: 2px solid #fff;
}
.border-right-white{
    border-right: 4px solid #FFFFFF;
}
.border-right-ddd{
  border-right: 1px solid #dddddd;
}
.border-right{
    position: relative;
}
.border-right::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 4px;
    height: 60%;
    transform: translateY(-50%);
    background-color: #AAAAAA;
}
.border{
  border: 1px solid;
}
.border-t-1{
  border-top: 1px solid;
}
.border-b-1{
  border-bottom: 1px solid;
}
.border-l-1{
  border-left: 1px solid;
}
.border-r-1{
  border-right: 1px solid;
}
.border-color-blue{
  border-color: #0071b8;
}
.border-color-boundary{
  border-color: var(--border-color-boundary);
}
.circle {
  border-radius: 50%;
}
.w_50-5{
	width: calc(50% - 5px);
}
.w_50-20{
	width: calc(50% - 20px);
}
.w_50-25{
	width: calc(50% - 25px);
}
.w_50-40{
	width: calc(50% - 40px);
}
.w_100-20{
	width: calc(100% - 20px);
}
.w_100-30{
	width: calc(100% - 30px);
}
.w_100-40{
	width: calc(100% - 40px);
}
.w_100-70{
	width: calc(100% - 70px);
}
.w_100-100{
	width: calc(100% - 100px);
}
.w_100-150{
	width: calc(100% - 150px);
}
.w-16 {
  width: 16%;
}
.w-19 {
  width: 19%;
}
.w-20 {
  width: 20%;
}
.w-22 {
  width: 22% !important;
}
.w-23 {
  width: 23% !important;
}
.w-24 {
  width: 24%;
}
.w-25 {
  width: 25%;
}
.w-28 {
  width: 28%;
}
.w-30 {
  width: 30%;
}
.w-32 {
  width: 32%;
}
.w-33 {
  width: 33%;
}
.w-33-33 {
  width: 33.33%;
}
.w-34 {
  width: 34%;
}
.w-35 {
  width: 35%;
}
.w-36 {
  width: 36%;
}
.w-43 {
  width: 43%;
}
.w-45 {
  width: 45%;
}
.w-48 {
  width: 48%;
}
.w-49 {
  width: 49%;
}
.w-50 {
  width: 50%;
}
.w-54 {
  width: 54%;
}
.w-56 {
  width: 56%;
}
.w-64 {
  width: 64%;
}
.w-65 {
  width: 65%;
}
.w-66 {
  width: 66%;
}
.w-72 {
  width: 72%;
}
.w-74 {
  width: 74%;
}
.w-80 {
  width: 80%;
}
.w-84 {
  width: 84%;
}
.w-85 {
  width: 85%;
}
.w-86 {
  width: 86%;
}
.w-90 {
  width: 90%;
}
.w-100 {
  width: 100% !important;
}
.wid-fit{
  width: fit-content;
}
.wid15{
  width: 15px;
}
.wid20{
	width: 20px;
}
.wid30{
  width: 30px;
}
.wid36{
  width: 36px;
}
.wid40{
  width: 40px;
}
.wid48{
  width: 48px;
}
.wid50{
  width: 50px;
}
.wid60{
    width: 60px;
}
.wid68{
    width: 68px;
}
.wid70{
    width: 70px;
}
.wid72{
    width: 72px;
}
.wid80 {
  width: 80px;
}
.wid86 {
  width: 86px;
}
.wid90 {
  width: 90px;
}
.wid100{
    width: 100px;
}
.wid100-i{
    width: 100px!important;
}
.wid110{
  width: 110px;
}
.wid120{
  width: 120px;
}
.wid120-i{
  width: 120px!important;
}
.wid130{
  width: 130px;
}
.wid135{
  width: 135px;
}
.wid140{
  width: 140px;
}
.wid150{
  width: 150px;
}
.wid160{
  width: 160px;
}
.wid160-i{
  width: 160px!important;
}
.wid170{
  width: 170px;
}
.wid180{
  width: 180px;
}
.wid200{
  width: 200px;
}
.wid210{
  width: 210px;
}
.wid220{
  width: 220px;
}
.wid230{
  width: 230px;
}
.wid240{
  width: 240px;
}
.wid260{
  width: 260px;
}
.wid260-i{
  width: 260px!important;
}
.wid300{
  width: 300px;
}
.wid320{
  width: 320px;
}
.wid340{
  width: 340px;
}
.wid360{
  width: 360px;
}
.wid375{
  width: 375px;
}
.wid420{
  width: 420px;
}
.wid430{
  width: 430px;
}
.wid480{
  width: 480px;
}
.wid520{
  width: 520px;
}
.wid840{
  width: 840px;
}
.min-w-33{
  min-width: 33%;
}
.min-wid70{
  min-width: 70px;
}
.min-wid120{
  min-width: 120px;
}
.min-wid140{
  min-width: 140px;
}
.min-wid180{
  min-width: 180px;
}
.min-wid560{
  min-width: 560px;
}
.min-wid760{
  min-width: 760px;
}
.min-wid800{
  min-width: 800px;
}
.min-wid900{
  min-width: 900px;
}
.min-wid960{
  min-width: 960px;
}
.min-wid1000{
  min-width: 1000px;
}
.min-wid1120{
  min-width: 1120px;
}
.min-wid1300{
  min-width: 1300px;
}
.h-100 {
  height: 100%;
}
.hei14{
  height: 14px;
}
.hei16{
  height: 16px;
}
.hei18{
  height: 18px;
}
.hei26{
  height: 26px;
}
.hei28{
  height: 28px;
}
.hei30{
  height: 30px;
}
.hei32{
  height: 32px;
}
.hei34{
  height: 34px;
}
.hei36{
  height: 36px;
}
.hei130{
  height: 130px;
}
.hei180{
  height: 180px;
}
.hei520{
  height: 520px;
}
.hei600{
  height: 600px;
}
.h_80{
	height: 80vh;
}
.min-hei30{
  min-height: 30px;
}
.min-hei200{
  min-height: 200px;
}
.max-hei100{
  max-height: 100px;
}
.max-hei150{
  max-height: 150px;
}
.max-hei200{
  max-height: 200px;
}
.max-hei250{
  max-height: 250px;
}
.max-hei{
  max-height: 600px;
}
.width-percent-20 {
  flex: 0 0 20%;
}
.width-percent-25 {
  flex: 0 0 25%;
}
.width-percent-30 {
  flex: 0 0 30%;
}
.divider {
  height: 1px;
  border-top: 1px solid #eee;
}
.pr{
  position: relative;
}
.lh14{
  line-height: 14px;
}
.lh16{
  line-height: 16px;
}
.lh17{
  line-height: 17px;
}
.lh18{
  line-height: 18px;
}
.lh20{
  line-height: 20px;
}
.lh22{
  line-height: 22px;
}
.lh24{
  line-height: 24px;
}
.lh28{
  line-height: 28px;
}
.lh30{
  line-height: 30px;
}
.lh31{
  line-height: 31px;
}
.lh32{
  line-height: 32px;
}
.lh36{
  line-height: 36px;
}
.lh38{
  line-height: 38px;
}
.lh40{
  line-height: 40px;
}
.lh43{
  line-height: 43px;
}
.lh44{
  line-height: 44px;
}
.lh48{
  line-height: 48px;
}
.lh50{
  line-height: 50px;
}
.lh60{
  line-height: 60px;
}
.lh70{
  line-height: 70px;
}

.one-line {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.two-line {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.three-line {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.ver-top{
  vertical-align: top;
}
.ver-mid{
  vertical-align: middle;
}
.ver-bottom{
  vertical-align: bottom;
}
.ver-bottom-base{
  vertical-align: text-bottom;
}
.ver-inherit{
  vertical-align: inherit;
}
.hei100{
    height: 100%;
}
.hei55{
    height: 55%;
}
.hei50{
    height: 50%;
}
.hei45{
    height: 45%;
}
.min-100{
    min-height: 100vh;
}
.line-through{
    text-decoration: line-through;
}
.hidden{
    overflow: hidden;
}
.auto-y{
    overflow-y: auto;
}
.auto-y::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background-color: transparent;
}
.scroll-y{
    overflow-y: auto;
}

.scroll-y::-webkit-scrollbar{
    display: block;
}
.scroll-y::-webkit-scrollbar {
  width: 6px;
  height: 1px;
}
.scroll-y::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  border-radius: 6px;
  /* background: #ededed; */
}
.scroll-y::-webkit-scrollbar-track {
  /* background: #ededed; */
  background: transparent;
}
.auto-x{
    overflow-x: auto;
}
.auto-x::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background-color: transparent;
}

.f-family-Medium{
    font-family: 'PingFangSC-Medium';
}
.box-show{
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.box-show-4-12{
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.box-show-0-12{
    box-shadow: 0 0px 12px rgba(0,0,0,0.1);
}
.confirm-btn{
    width: 600px;
    height: 104px;
    line-height: 104px;
    border-radius: 24px;
}
.cu-point{
    cursor: pointer;
}
.cu-move{
	 cursor: move;
}
.cu-not{

  cursor: not-allowed;
}
.text-no{
  resize: none;
}
.required:after {
  content: '*';
  color: #ff4949;
  margin-left: 2px;
}
.dialog-fixed{
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.6);
}
.break-word{
  word-break: break-word;
}
.break-all{
  word-break: break-all;
}
.no-wrap{
  white-space: nowrap;
}
.inline-block{
  display: inline-block;
}
.tip-i{
  position: relative;
  /* top: -3px; */
}
.state-danger{
  color: #ff0000;
  background: rgba(255, 0, 0, 0.2);
}
.state-primary{
  color: #23abf0;
  background: rgba(35, 171, 240, 0.2)
}
.search-none{
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #FF0000;
  font-size: 12px;
  line-height: 20px;
}
.text-hide {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.display-none{
	display: none;
}
.display-block-i{
	display: block !important;
}
.display-show::hover .display-none{
	display: block;
}
.tip-icon-box{
	width: 14px;
	height:14px;
}
.tip-icon-box-re{
	width: 14px;
	height:14px;
  position: relative;
  top: 2px;
  left: 6px;
}


/* 自定义复选样式 */
.check-box{
		width: 14px;
		height:14px;
		border-radius:2px;
		border:1px solid #dcdfe6;
    position: relative;
	}
	.check-after,.border-409 .check-after_bor{
		background: #409eff;
		border:0px solid #dcdfe6;
	}
	.check-box:after,.check-after_bor:after {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		content: "";
		border: 1px solid #fff;
		border-left: 0;
		border-top: 0;
		height: 7px;
		left: 5px;
		position: absolute;
		top: 2px;
		-webkit-transform: rotate(45deg) scaleY(0);
		transform: rotate(45deg) scaleY(1);
		width: 3px;
		-webkit-transition: -webkit-transform .15s ease-in .05s;
		transition: -webkit-transform .15s ease-in .05s;
		transition: transform .15s ease-in .05s;
		transition: transform .15s ease-in .05s,-webkit-transform .15s ease-in .05s;
		-webkit-transform-origin: center;
		transform-origin: center;
	}
	.border-check-box{
		padding: 5px 10px;
		height: 32px;
	}

  .scroll-text {
    white-space: nowrap;
    /* overflow: hidden; */
    animation: scroll calc(var(--marqueeTime) * 1s) linear infinite;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
.cursor-move{
  cursor:move;
}
.cursor-nw-resize{
  cursor: nw-resize
}
.cursor-ns-resize{
  cursor: ns-resize
}
.cursor-ne-resize{
  cursor: ne-resize
}

.cursor-ew-resize{
  cursor: ew-resize
}

.letter-1{
  letter-spacing: 1px;
}


.transform90{
	transform: rotate(90deg);
}
.transition_3{
	transition: transform .3s;
}


/* 成功提示 */
/* 失败提示 */
.customClass{
		padding:8px;
		width: fit-content;
		top:48% !important;
		color:#fff;
		min-width: revert;
}

.scroll-text {
	white-space: nowrap;
	/* overflow: hidden; */
	animation: scroll calc(var(--marqueeTime) * 1s) linear infinite;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.placeholder_c_666 input::-webkit-input-placeholder, /* Chrome, Safari, Opera */
.placeholder_c_666 input::-moz-placeholder,          /* Firefox 19+ */
.placeholder_c_666 input:-ms-input-placeholder,      /* IE 10+ */
.placeholder_c_666 input::-ms-input-placeholder,     /* Edge */
{
    color: #666; /* 灰色 */
}

.placeholder_c_21 input::-webkit-input-placeholder, /* Chrome, Safari, Opera */
.placeholder_c_21 input::-moz-placeholder,          /* Firefox 19+ */
.placeholder_c_21 input:-ms-input-placeholder,      /* IE 10+ */
.placeholder_c_21 input::-ms-input-placeholder,     /* Edge */
{
    color: #2121; /* 灰色 */
}

/* 转大写 */
.text-uppercase,.text-uppercase input{
	text-transform:uppercase !important;
}
/* 转小写 */
.text-lowercase,.text-lowercase input{
	text-transform:lowercase !important;
}

/* a标签去除默认设置 */
a {
	display: block;  /* 变成块级元素 */
	text-decoration: none; /* 去掉下划线 */
	color: inherit; /* 继承颜色 */
	cursor: pointer;
}

.hide-line-text{
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}


/* 验证码组件样式 */
.send-code .el-input-group__append {
  background-color: #e3eeff;
  color: #5a80cb;
  padding: 0;
  cursor: default;
}

.send-code .code-btn {
  cursor: pointer;
  user-select: none;
}

.send-code .code-btn.disabled {
  cursor: not-allowed;
}


.ui-form-item{
	word-wrap: break-word;
	background-color: #f2f2f2;
	padding: 0 15px;
	border-radius: 2px;
	border: 1px solid #ced4da;
	min-height: 30px;
	line-height: 30px;
	box-sizing: border-box;
}