<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.slider-container {
            width: 300px;
            height: 50px;
            background: #eee;
            border-radius: 25px;
            position: relative;
            margin: 100px auto;
            overflow: hidden;
            touch-action: none; /* 禁用默认触摸行为 */
        }

        .slider-background {
            width: 0;
            height: 100%;
            background: #7ac23c;
            transition: width 0.3s;
            float: left;
        }

        .slider-text {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            line-height: 50px;
            text-align: center;
            color: #666;
            user-select: none;
        }

        .slider-button {
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: #fcd76d;
            border-radius: 25px;
            cursor: move;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: left 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-button::after {
            content: '→';
            color: #666;
        }

        .verified {
            pointer-events: none !important;
        }

        @media (max-width: 480px) {
            .slider-container {
                width: 250px;
                height: 45px;
            }
            .slider-button {
                width: 45px;
                height: 45px;
            }
            .slider-text {
                line-height: 45px;
                font-size: 14px;
            }
        }
.phone{
    width: 200px;height: 42px;border-radius: 5px;position: relative; margin: 26px 70px;overflow: hidden;user-select: none;color: #454545;
}
input.phone:focus {
    border-color: #007bff; /* 例如，使用蓝色 */
    outline: none; /* 移除默认的轮廓 */
}
#phone_msg,#phone_yz_msg,.sms_txt_msg{position: absolute;
    left: 0;
    margin: 69px;
    color: red;
}</pre></body></html>