#timer {
    width: 750px;
    display: block;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    #timer {
        width: 100%;
    }
}

.timer_bg {
    width: 100%;
}

#cdtimer_day {
    position: absolute;
    display: flex;
    gap: 2.6%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    justify-content: center;
    align-items: center;
}

#cdtimer {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.timer-title_day {
    width: 42%;
}

.timer-title_sec {
    width: 8%;
}

@media screen and (max-width: 650px) {
    .timer-title_sec {
        width: 11%;
    }
}

.timer-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 88px;
    height: 88px;
    font-weight: 400;
    color: #ee1f53; /* 文字顏色 */
    border-radius: 50%;
    background: #fffcf6; /* 圓圈顏色 */
    border: 0;
    font-family: Impact, Charcoal;
}

@media screen and (max-width: 650px) {
    .timer-box {
        width: 45px;
        height: 45px;
    }
}

.cdtimer_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6%;
}

#cdtimer .main-content {
    display: flex;
    gap: 1.6%;
    justify-content: center;
}

#cdtimer .main-content .number {
    font-size: 3.2rem;
    margin-bottom: -16px;
    margin-top: -4px;
    letter-spacing: 0px;
}

#cdtimer .main-content .name {
    font-size: 14px;
    letter-spacing: 0px;
}

#cdtimer_day .main-content .number {
    font-size: 3.8rem;
    margin-bottom: -20px;
    margin-top: -11px;
    letter-spacing: 0px;
}

#cdtimer_day .main-content .name {
    font-size: 14px;
    letter-spacing: 0px;
}

@media screen and (max-width: 650px) {
    #cdtimer_day .main-content .number {
        font-size: 2rem;
        margin-bottom: -11px;
        margin-top: -5px;
    }

    #cdtimer_day .main-content .name {
        font-size: 8px;
    }

    #cdtimer .main-content .number {
        font-size: 1.6rem;
        margin-bottom: -8px;
        margin-top: 0px;
    }

    #cdtimer .main-content .name {
        font-size: 8px;
    }
}