*{
	-webkit-touch-callout:none;
	-webkit-highlight:none;
	-webkit-appearance:none;
	-webkit-tap-highlight-color:rgba(255,255,255,0)
}
body{
	margin:0 auto;
	background:#F5F7F9;
}

@-webkit-keyframes fadeOut {
	from { }
	to { opacity: 0.01;}
}
@keyframes fadeIn {
	from { }
	to { opacity: 1; }
}
.fade-enter {
	-webkit-animation: fadeIn .5s ease both;
	animation: fadeIn .5s ease both;
}

.fade-leave {
	-webkit-animation: fadeOut .3s ease both;
	animation: fadeOut .3s ease both;
}

a{
	text-decoration: none;
}

/*video::-webkit-media-controls-enclosure {
    overflow:hidden;
}
video::-webkit-media-controls-panel {
     width: calc(100% + 30px); 
}*/