/* ç©¿èº¿å¼é¡ cf.html ä¸·å */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    padding: 16px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.cf-guide {
    background-color: #292929;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(51, 204, 255, 0.25);
}

.cf-guide__icon {
    padding: 24px 0 8px;
}

.cf-icon-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #33ccff;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}

.cf-icon-success::before {
    content: "";
}

.cf-guide__body {
    padding: 0 20px 12px;
}

.cf-guide__title {
    font-size: 22px;
    color: #33ccff;
    margin: 0 0 10px;
    font-weight: 600;
}

.cf-guide__desc {
    font-size: 16px;
    color: #99aabb;
    margin: 0 0 16px;
}

.cf-update-date {
    font-size: 14px;
    color: #7a8a99;
    margin: 0 0 16px;
}

.cf-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
}

.cf-btn--primary {
    color: #fff;
    background-color: #4caf50;
}

.cf-btn--primary:hover {
    background-color: #43a047;
    transform: translateY(-1px);
}

.cf-guide__footer {
    font-size: 14px;
    color: #99aabb;
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cf-guide__footer p {
    margin: 0;
}

@media only screen and (max-width: 600px) {
    body {
        padding: 12px;
    }

    .cf-guide {
        max-width: 100%;
    }
}