﻿@charset "UTF-8";
ul.countdown {
	list-style: none;
	margin: 0 0;
	padding: 0;
	display: block;
	text-align: center;
}
ul.countdown li {
	display: inline-block;
}
ul.countdown li span {
	font-size: 80px;
	font-weight: 300;
	line-height: 80px;
        background: linear-gradient(to right, red, purple);
        -webkit-background-clip: text;
        color: transparent;
}
ul.countdown li.seperator {
	font-size: 80px;
	line-height: 70px;
	vertical-align: top;
        background: linear-gradient(to right, red, purple);
        -webkit-background-clip: text;
        color: transparent;
}
ul.countdown li p {
	color: #a7abb1;
	font-size: 14px;
        background: linear-gradient(to right, red, blue);
        -webkit-background-clip: text;
        color: transparent;
}
a {
	color: #76949F;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
.source {
	width: 405px;
	margin: 0 auto;
	background: #4f5861;
	color: #a7abb1;
	font-weight: bold;
	display: block;
	white-space: pre;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.btn {
	background: #f56c4c;
	margin: 40px auto;
	padding: 12px;
	display: block;
	width: 100px;
	color: white;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.btn:hover {
	text-decoration: none;
	opacity: .7;
}
h1 {
        background: linear-gradient(to right, red, purple);
        -webkit-background-clip: text;
        color: transparent;
}
p {
        background: linear-gradient(to right, red, green);
        -webkit-background-clip: text;
        color: transparent;
        font-size: 30px;
        text-align: center;
}
/* fixed 固定备案号和联系方式显示位置 */
.fixed {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 200px;
  }
.box_relative {
	position: absolute; 
	  top: 10%;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  margin: auto;
}