.tip_view{
	position: fixed;
	top:30%;
	left:0;
	right:0;
	margin:auto;
	text-align: center;
	z-index: 10000;
	width: 308px;
	background: #FFFFFF;
	border-radius: 12px;
	backdrop-filter: blur(15px);
}
.tip_view>.tip_view_title{
	/* height: 23px; */
	font-size: 17px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #111111;
	line-height: 23px;
	margin-bottom:12.5px;
	padding:16px 23.5px;
	padding-bottom:0;
}
.tip_view>.tip_view_content{
	font-size: 15px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #666666;
	line-height: 21px;
	padding:0 23.5px;
	padding-bottom:16px;
}
.tip_view>.tip_view_content.bold{
	font-size: 17px;
	color: #111111;
	line-height: 23px;
}
.tip_view>.tip_view_btn{
	border-top:1px solid #D7D7D7;
	display: flex;
}
.tip_view>.tip_view_btn>div{
	padding:13px 0;
	font-size: 18px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	width:50%;
}
.tip_view>.tip_view_btn>div:nth-child(1){
	border-right:1px solid #D7D7D7;
	color: #666666;
}
.tip_view>.tip_view_btn>div:nth-child(2){
	color: #caad09;
}

.yes_view{
	position: fixed;
	top:30%;
	left:0;
	right:0;
	margin:auto;
	text-align: center;
	z-index: 10000;
	width: 306px;
	background: #FFFFFF;
	border-radius: 12px;
	backdrop-filter: blur(15px);
	padding-bottom:20.76px;
	animation: yesModalIn 0.3s ease-out forwards;
}
.yes_view>.yes_view_close{
	position:absolute;
	top:12.5px;
	right:12.5px;
	width:18.69px;
	height:18.69px;
}
.yes_view>.yes_view_title{
	/* height: 26px; */
	font-size: 19px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #111111;
	line-height: 26px;
	padding:26px 54.5px;
	padding-bottom:0;
	margin-bottom:18.5px;
}
.yes_view>.yes_view_content{
	font-size: 1rem;
	font-family: PingFangSC-Regular, PingFang SC;
	color: #000;
	padding:0 19.72px;
	margin-bottom:31px;
	font-weight: bold;
	line-height: 1;
}
.yes_view>.yes_view_content>img{
	width:1.5rem;
	height:1.5rem;
	margin-right:10px;
}
.yes_view>.yes_view_btn{
	background: #caad09;
	border-radius:14px;
	width:120px;
	height:40.9px;
	margin:auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #fff;
}

.dis_view{
	position: fixed;
	top:30%;
	left:0;
	right:0;
	margin:auto;
	text-align: center;
	z-index: 10000;
	width: 490px;
	background: #FFFFFF;
	border-radius: 12px;
	backdrop-filter: blur(15px);
	padding-bottom:20.76px;
	animation: yesModalIn 0.3s ease-out forwards;
	max-width:95%;
}
.dis_view>.dis_view_title{
	text-align: center;
	background: rgb(203, 0, 0);
	color: rgb(255, 255, 255);
	font-size: 1.3rem;
	font-weight: bold;
	padding: 20px 15px;
	margin-bottom:18.5px;
	border-radius: 10px 10px 0 0;
}
.dis_view>.dis_view_content{
	font-size: 1rem;
	padding: 0px 15px;
}
.dis_view>.dis_view_btn{
	display: flex;
	justify-content: space-between;
	padding: 15px;
	padding-bottom: 0px;
}
.dis_view>.dis_view_btn>div{
	text-align: center;
	border: 1px solid rgb(227, 227, 227);
	font-size: 0.9rem;
	font-weight: bold;
	padding: 10px 0;
	border-radius: 100px;
	width: 48%;
	cursor: pointer;
}
.dis_view>.dis_view_btn>div:nth-child(1){
}
.dis_view>.dis_view_btn>div:nth-child(2){
	color:#fff;
	background: #caad09;
	border: 1px solid #caad09;
}

.tip_bg{
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: #000000;
	opacity: 0.6;
	z-index: 9999;
}

.loading{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: #ffffff55;
	text-align: center;
	transition: 0.5s;
	text-align: center;
	color: #13ccff;
	display: flex;
	align-items: center;
	justify-content: center;
}
#loader-run{
	width: 60px;
	height: 60px;
	background: none;
}
.tip_view svg path, .tip_view svg rect,.loading svg path, .loading svg rect,.el-message-box svg path, .el-message-box svg rect {
	fill: #caad09;
}

body{
	--el-color-primary:#3de662;
	--el-color-danger:#caad09;
}

@keyframes yesModalIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}