
*{
    margin: 0;
    padding: 0;
}

html,body{
    width: 100%;
    height: 100%;
    /* background: #FF6A6A; */
    background-image: -moz-linear-gradient(0deg, rgb(67, 198, 184), rgb(255, 209, 244));
    background-image: -webkit-linear-gradient(0deg, rgb(67, 198, 184), rgb(255, 209, 244));
}

.clock{
    width: 100%;
    height: 100%;
    position: relative;
    background-color:transparent;
}

.label{
    display: inline-block;
    font-size: 14px;
    color: #000;
    text-align: center;
    padding:0 5px;
    transform-origin: 0% 0%;
    transition: all 1s;
}
.text{
    position: absolute;
    left: 50px;
    top: 120px;
    color:#FF6A6A;
}

.text span{
    display: inline-block;
    font-size: 18px;
    padding-left: 2px;
    padding-bottom: 5px;

}



  		
.content{
    top: 350px;
    left: 50%;
    width:210px;/*主体(跳动)-大小和位置*/
    height:210px;
    margin-left: -105px;
    /* margin:0 auto;	 */
    position:absolute;/*以此为基准画心*/								
    animation-name: dump;/*绑定*/	
    animation-delay: 0ms;/*延迟几秒后开始*/
    animation-duration: 1.5s;/*完成的时间 */
    animation-timing-function: ease-in-out;/*完成的速度方式 */
    animation-iteration-count: infinite;/*播放的次数*/		
} 	

.content .left,.content .right{
    position:absolute;		
    width:140px;/*2倍的半径*/
    height:210px;/*3倍的半径*/		
    border-radius:70px 70px 0 0;/*心头的半径*/
    background: #FF6A6A;
    filter: drop-shadow(0 0 25px #FF6A6A);/* 滤镜 + 阴影 */
}		

@keyframes dump{/*此动画在规定的完成时间内各阶段的状态 */
    0%{
        transform: scale(0.8,0.8);/*动画的形式-缩放动态(缩放的比例)*/
        opacity: 1;/* 透明度  */
    }
    50%{
        transform: scale(1,1);
        opacity: 0.5;
    }
    100%{
        transform: scale(0.8,0.8);
        opacity: 1;
    }
}
