#timer {
    width: 324px;
    height: 122px;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 0 14px;
    padding-top: 15px;
}
#timer ul {
    list-style-type: none;
}
#timer ul li {
    float: left;
    display: block;
    width: 76px;
    padding: 0 16px;
    position: relative;
    z-index: 100;
}
#timer ul li .nums {
    border-radius: 8px;
    background-color: rgb(249, 89, 58);
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.25), inset 1px 1px 0px 0px rgba(255, 255, 255, 0.2);
    width: 76px;
    height: 82px;
    opacity: 1 !important;
    font-size: 40px;
    line-height: 82px;
    font-weight: bold;
    color: #fff;
    position: relative;
}
#timer ul li .nums:before {
    content: '';
    position: absolute;
    display: block;
    top: 36px;
    left: -1px;
    width: 78px;
    height: 11px;
    background-color: white;
    z-index: -1;
}
#timer ul li .nums:after {
    content: '';
    position: absolute;
    display: block;
    top: 41px;
    left: 0;
    width: 76px;
    height: 1px;
    background-color: #f14524;
}
#timer ul li .txt {
    font-size: 12px;
    font-weight: bold;
    color: #b2b2b2;
    padding-top: 9px;
    text-transform: uppercase;
}