.lebar-wh-wrap {
    width: 35.67vw;
    margin: 0 auto;
    font-family: 'OPPOSans';
}

.lebar-wh-title {
    font-size: 1.56vw;
    line-height: 1.56vw;
    font-weight: 700;
    margin: 0 0 0.26vw;
    color: #161616;
}

.lebar-wh-sub {
    font-size: 1.04vw;
    line-height: 1.04vw;
    font-weight: 400;
    margin: 0 0 1.04vw;
    color: #494946;
}

.lebar-wh-sub a {
    color: #41b6ff;
    text-decoration: none;
}

.lebar-wh-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw 0.7vw;
}

.lebar-wh-full {
    grid-column: 1 / -1;
}

.lebar-wh-field {
    position: relative;
}

.lebar-wh-required::before {
    content: '*';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff4d4f;
    font-size: 0.6vw;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.lebar-wh-input,
.lebar-wh-textarea {
    width: 100% !important;
    border: 1px solid #4f4f4f !important;
    border-radius: 6px !important;
    padding-left: 20px !important;
    font-size: 0.78vw !important;
    line-height: 0.78vw !important;
    height: 40px !important;
}

.lebarUpload {
    display: flex;
    gap: 15px;
    align-items: baseline;
}

.lebarUpload img {
    width: 30px;
    cursor: pointer;
}

.lebar-wh-textarea {
    min-height: 180px;
    resize: vertical;
}

.lebar-wh-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: center;
}

.lebar-wh-upload-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.lebar-wh-upload-file-name {
    margin-top: 0.2vw;
    font-size: 0.24vw;
    color: #494946;
    word-break: break-all;
}

.lebar-wh-upload-desc {
    font-size: 10px;
    line-height: 10px;
    color: #777;
    margin-top: 0.15vw;
}

.lebar-wh-btn {
    width: 100%;
    border: 0;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    background: #e6bf45;
    color: #fff;
    font-size: 45px;
    font-weight: 800;
    line-height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lebar-wh-btn:hover {
    color: #fff;
}

.lebar-wh-btn.is-loading {
    pointer-events: none;
    color: transparent;
}

.lebar-wh-btn.is-loading::after {
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: lebar-wh-spin .8s linear infinite;
}

@keyframes lebar-wh-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.lebar-wh-notice-data {
    display: none;
}

.lebar-wh-msg-wrap {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.lebar-wh-msg {
    min-width: 260px;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
}

.lebar-wh-msg.is-show {
    opacity: 1;
    transform: translateY(0);
}

.lebar-wh-msg--ok {
    background: #e9f8ec;
    color: #1f7a34;
}

.lebar-wh-msg--err {
    background: #fdecec;
    color: #9b1c1c;
}

@media (max-width: 1024px) {
    .lebar-wh-title {
        font-size: 44px;
    }

    .lebar-wh-sub {
        font-size: 34px;
    }

    .lebar-wh-btn {
        font-size: 34px;
    }

    .lebar-wh-input,
    .lebar-wh-textarea {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .lebar-wh-form {
        grid-template-columns: 1fr;
    }

    .lebar-wh-bottom {
        grid-template-columns: 1fr;
    }
}