.ycj {
    --ycj-brand: #ef5526;
    --ycj-deep: #c73f16;
    --ycj-ink: #14161c;
    --ycj-soft: #5b6272;
    --ycj-line: #e8e9ee;
    padding: 34px 0 6px;
}

.ycj-card {
    position: relative;
    overflow: hidden;
    padding: 26px 28px 24px;
    border: 1px solid var(--ycj-line);
    border-radius: 20px;
    background: linear-gradient(135deg, #fff6f2 0%, #ffffff 58%);
    box-shadow: 0 10px 30px rgba(20, 22, 28, .06);
}

.ycj-card::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 85, 38, .13) 0%, rgba(239, 85, 38, 0) 70%);
    pointer-events: none;
}

.ycj-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.ycj-face {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f6d5c7;
    box-shadow: 0 4px 14px rgba(239, 85, 38, .15);
    overflow: hidden;
}

.ycj-face dotlottie-wc {
    width: 48px;
    height: 48px;
    display: block;
}

.ycj .ycj-head-text h2 {
    margin: 0 0 3px;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--ycj-ink);
}

.ycj .ycj-head-text p {
    margin: 0;
    font-size: 1.35rem;
    color: var(--ycj-soft);
}

.ycj-ask {
    position: relative;
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.ycj-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--ycj-line);
    border-radius: 999px;
    background: #fff;
    font-family: inherit;
    font-size: 1.4rem;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.ycj .ycj-input { color: var(--ycj-ink); }
.ycj .ycj-input::placeholder { color: #9aa0ae; }

.ycj-input:focus {
    border-color: var(--ycj-brand);
    box-shadow: 0 0 0 4px rgba(239, 85, 38, .12);
}

.ycj-send {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ycj-brand) 0%, var(--ycj-deep) 100%);
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(239, 85, 38, .28);
    transition: transform .16s ease, box-shadow .16s ease;
}

.ycj .ycj-send,
.ycj .ycj-send i,
.ycj .ycj-send:hover,
.ycj .ycj-send:focus { color: #fff; }

.ycj-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(239, 85, 38, .36);
}

.ycj-jobs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ycj-job {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--ycj-line);
    border-radius: 999px;
    background: #fff;
    font-family: inherit;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.ycj .ycj-job { color: var(--ycj-ink); }
.ycj .ycj-job i { color: var(--ycj-brand) !important; font-size: 1.35rem; }

.ycj .ycj-job:hover,
.ycj .ycj-job:focus {
    border-color: var(--ycj-brand);
    color: var(--ycj-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(239, 85, 38, .16);
}

.ycj .ycj-job:hover i,
.ycj .ycj-job:focus i { color: var(--ycj-deep) !important; }

@media (max-width: 767px) {
    .ycj { padding: 24px 0 4px; }
    .ycj-card { padding: 20px 16px 18px; border-radius: 16px; margin: 0; }
    .ycj .ycj-head-text h2 { font-size: 1.8rem; }

    .ycj-ask { flex-direction: column; }
    .ycj-input, .ycj-send { width: 100%; }
    .ycj-send { justify-content: center; }
}
