/*旋转的时钟*/

.fill {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: inline-block;
    border: 1px solid #1a1a1a;
    position: relative;
    margin: 20% auto;
}

.clock {
    position: absolute;
    opacity: 1;
}

.fill .clock {
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%
}

.centre {
    position: absolute;
    left: 50%;
    top: 50%;
}

.expand {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.anchor {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.element {
    position: absolute;
    top: 0;
    left: 0;
}

.round {
    border-radius: 100%;
}

.circle-1 {
    width: 4px;
    z-index: 101;
    height: 4px;
    border: 1px solid #1a1a1a;
    background-color: #fff;
}

.circle-2 {
    background: #FA9F22;
    width: 8px;
    height: 8px;
}

.circle-3 {
    background: black;
    width: 4px;
    height: 4px;
}

.second {
    transform: rotate(180deg);
}

.minute {
    transform: rotate(54deg);
}

.second-hand {
    width: 1px;
    height: 22px;
    background: #0c8ecf;
    transform: translate(-50%, -144%) translateY(24px);
}

.hour {
    transform: rotate(304.5deg);
}

.thin-hand {
    width: 1px;
    height: 12px;
    background: #1a1a1a;
    transform: translate(-50%, -100%);
}

.fat-hand {
    width: 10px;
    height: 57px;
    border-radius: 10px;
    background: white;
    transform: translate(-50%, -100%) translateY(-18px);
}

.minute-hand {
    height: 112px;
}

.hour-text {
    position: absolute;
    font: 40px Hei, Helvetica, Arial, sans-serif;
    color: white;
    transform: translate(-50%, -50%);
}

.hour-10 {
    padding-left: 0.4ex;
}

.hour-11 {
    padding-left: 0.25ex;
}

.minute-text {
    position: absolute;
    font: 12px Avenir Next, Helvetica, Arial, sans-serif;
    color: white;
    transform: translate(-50%, -50%);
}

.minute-line {
    background: white;
    width: 1px;
    height: 9px;
    transform: translate(-50%, -100%) translateY(-131px);
    opacity: 0.34;
}