/* @import url("http://fonts.googleapis.com/css?family=Kanit"); */

*{
    /* 初始化 */
    margin: 0;
    padding: 0;
	outline: none;
}
body{
    /* 100%窗口高度 */
    height: 100vh;
    background: url("../img/2.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    /* 溢出隐藏 */
    overflow: hidden;
    /* 禁止文本被选取 */
    user-select: none;
	position: relative;
}



#clock {
	z-index: 2;
/*  font-family: "Kanit"; */
  width:100%;
  color: #fff;
  text-align: center;
  position: fixed;
  left: 0%;
  top: 0;
}

#clock .end {
	z-index: inherit;
  font-size: 8vw;
}


#clock .text {
	z-index: inherit;
  font-size: 3vw;
}