.mainbutonbox{padding:4% 0px;}	
.tmddemotext a{text-decoration:none;color: #D82D8D ;}
.tmddemotext a:hover{color: #f5f5f5 ;}
.tmddemotext {
	cursor:pointer;
	padding: 7px;
	margin: 10px 4px;
	color: #D82D8D ;
	font-family: 'fangsong';
	text-align: center;
	position: relative;
	text-decoration: none;
	display: inline-block;
	border: 1px solid;
	font-size: 20px;
	font-weight: 600;
	}
	
	
	.tmddemotext::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
	-webkit-transform: scaleY(0.1);
	transform: scaleY(0.1);
	transition: all 0.4s;
  }
  .tmddemotext:hover{
	color: #15206a;
  }
  .tmddemotext:hover::before {
	opacity: 1;
	background-color: #14B3EB;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	transition: -webkit-transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity 0.4s;
	transition: transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity;
  }
  .exclamationbox .fa-spin{position: relative;top: -9px;}


.exclamationbox ::before {
	position: relative;
	top: 0;
	left: 0px;
	font-size: 22px;		
}

.exclamationbox{
	--f: 11px;
	--r: 10px;
	--t: 16px;
	position: absolute;
	padding: 20px 13px var(--f) calc(7px + var(--r));
	clip-path: polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%, calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)), var(--r) calc(50% - var(--f)/2));
	background: #FD6422;
	box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
	color: #fff;
	right: -13px;
	top: 10px;	
}