/* ===== Hero区域 ===== */
.xytzg_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('/template/jiachengliangjiang/images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}
.xytzg_hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(45,42,38,0.72) 0%, rgba(45,42,38,0.45) 60%, rgba(232,115,74,0.25) 100%);
}
.xytzg_hero_content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
}
.xytzg_hero_subtitle {
    font-size: 14px;
    color: var(--primary-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.xytzg_hero_title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.xytzg_hero_title span {
    color: var(--primary-light);
}
.xytzg_hero_desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}
.xytzg_hero_btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}
.xytzg_hero_stats {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s 1.0s forwards;
}
.xytzg_stat_item {
    text-align: center;
}
.xytzg_stat_num {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.xytzg_stat_num span {
    color: var(--primary-light);
}
.xytzg_stat_label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ===== 平台介绍 ===== */
#intro > .container > .row {
    display: flex;
    align-items: stretch;
}
.xytzg_intro_img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    height: 100%;
}
.xytzg_intro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.xytzg_intro_img:hover img {
    transform: scale(1.03);
}
.xytzg_feature_card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.xytzg_feature_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(232,115,74,0.12);
}
.xytzg_feature_icon {
    width: 52px;
    height: 52px;
    background: var(--cream-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 14px;
    transition: all 0.3s;
}
.xytzg_feature_card:hover .xytzg_feature_icon {
    background: var(--primary);
    color: #fff;
}
.xytzg_feature_card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.xytzg_feature_card p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ===== 需求大厅 ===== */
.xytzg_demand_card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.xytzg_demand_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}
.xytzg_demand_card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.xytzg_demand_card:hover::before {
    transform: scaleY(1);
}
.xytzg_demand_tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}
.xytzg_tag_urgent { background: #FEE2E2; color: #DC2626; }
.xytzg_tag_normal { background: #DBEAFE; color: #2563EB; }
.xytzg_tag_regular { background: #DCFCE7; color: #16A34A; }
.xytzg_demand_title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.xytzg_demand_meta {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 12px;
}
.xytzg_demand_meta i {
    margin-right: 4px;
    color: var(--primary);
}
.xytzg_demand_price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}
.xytzg_demand_price small {
    font-size: 13px;
    color: var(--gray);
    font-weight: 400;
}
.xytzg_demand_btn {
    float: right;
    padding: 6px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    border: none;
    transition: all 0.25s;
}
.xytzg_demand_btn:hover {
    background: var(--primary-dark);
}

/* ===== 优秀员工 ===== */
.xytzg_staff_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--light-gray);
}
.xytzg_staff_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.xytzg_staff_photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 32px auto 16px;
    border: 4px solid var(--cream-dark);
    transition: all 0.3s;
}
.xytzg_staff_card:hover .xytzg_staff_photo {
    border-color: var(--primary-light);
}
.xytzg_staff_name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.xytzg_staff_role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}
.xytzg_staff_info {
    color: var(--gray);
    font-size: 13px;
    padding: 0 24px 24px;
}
.xytzg_staff_rating {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 8px;
}
.xytzg_staff_tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--cream);
    border-radius: 12px;
    font-size: 12px;
    color: var(--gray);
    margin: 2px;
}

/* ===== 服务评价 ===== */
.xytzg_review_card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s;
    border: 1px solid var(--light-gray);
}
.xytzg_review_card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.xytzg_review_stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 16px;
}
.xytzg_review_text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}
.xytzg_review_author {
    display: flex;
    align-items: center;
}
.xytzg_review_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    margin-right: 12px;
}
.xytzg_review_name {
    font-weight: 600;
    font-size: 14px;
}
.xytzg_review_service {
    font-size: 13px;
    color: var(--gray);
}

/* ===== 培训沙龙 ===== */
.xytzg_training_img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.xytzg_training_img .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}
.xytzg_training_img .item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.xytzg_training_img .carousel-indicators li {
    border-color: var(--primary);
}
.xytzg_training_img .carousel-indicators .active {
    background-color: var(--primary);
}
.xytzg_training_img .carousel-control {
    background: none;
    opacity: 0.6;
}
.xytzg_training_img .carousel-control:hover {
    opacity: 1;
}
.xytzg_training_img .carousel-control .glyphicon {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.xytzg_training_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}
.xytzg_training_num {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 18px;
    transition: all 0.3s;
}
.xytzg_training_item:hover .xytzg_training_num {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232,115,74,0.3);
}
.xytzg_training_content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}
.xytzg_training_content p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* ===== 联系我们 ===== */
.xytzg_contact_info {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    border: 1px solid var(--light-gray);
}
.xytzg_contact_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}
.xytzg_contact_item:last-child { margin-bottom: 0; }
.xytzg_contact_icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-right: 16px;
}
.xytzg_contact_item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.xytzg_contact_item p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}
.xytzg_contact_form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--light-gray);
}
.xytzg_contact_map {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

/* ===== 登录/注册弹窗 ===== */
.xytzg_modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}
.xytzg_modal .modal-header {
    border: none;
    padding: 32px 32px 0;
}
.xytzg_modal .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}
.xytzg_modal .modal-body {
    padding: 20px 32px 32px;
}
.xytzg_modal .close {
    font-size: 28px;
    color: var(--gray);
    opacity: 0.6;
}
.xytzg_modal .close:hover {
    opacity: 1;
}
.xytzg_auth_tabs {
    display: flex;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--light-gray);
}
.xytzg_auth_tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.25s;
}
.xytzg_auth_tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.xytzg_auth_submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s;
}
.xytzg_auth_submit:hover {
    background: var(--primary-dark);
}
.xytzg_auth_switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
}
.xytzg_auth_switch a {
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
}
.xytzg_auth_role {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.xytzg_auth_role_btn {
    flex: 1;
    padding: 12px;
    border: 1.5px solid var(--light-gray);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 14px;
}
.xytzg_auth_role_btn.active,
.xytzg_auth_role_btn:hover {
    border-color: var(--primary);
    background: rgba(232,115,74,0.05);
}
.xytzg_auth_role_btn i {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--primary);
}

/* ===== CTA区域 ===== */
.xytzg_cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.xytzg_cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.xytzg_cta_title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.xytzg_cta_desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    position: relative;
}
.xytzg_cta .xytzg_btn_outline {
    border-color: rgba(255,255,255,0.6);
    position: relative;
}
.xytzg_cta .xytzg_btn_outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.15);
}
.xytzg_cta .xytzg_btn_primary {
    background: #fff;
    color: var(--primary);
    position: relative;
}
.xytzg_cta .xytzg_btn_primary:hover {
    background: var(--cream);
    color: var(--primary-dark);
}

/* ===== 响应式 ===== */
@media (max-width: 991px) {
    .xytzg_hero_title { font-size: 42px; }
    #intro > .container > .row { flex-direction: column; }
    .xytzg_intro_img { height: 320px; margin-bottom: 24px; }
    .xytzg_intro_img img { height: 320px; }
}
@media (max-width: 767px) {
    .xytzg_hero_content { padding: 120px 0 150px; }
    .xytzg_hero_subtitle { font-size: 12px; letter-spacing: 2px; }
    .xytzg_hero_title { font-size: 32px; }
    .xytzg_hero_desc { font-size: 16px; }
    .xytzg_hero_btns { display: flex; flex-direction: row; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
    .xytzg_hero_btns .xytzg_btn_outline { margin-left: 0; }
    .xytzg_hero_stats .xytzg_stat_num { font-size: 28px; }
    .xytzg_hero_stats { bottom: 20px; }
    .xytzg_contact_info,
    .xytzg_contact_form { margin-bottom: 20px; }
    .xytzg_feature_card { padding: 20px 16px; }
    .xytzg_feature_icon { width: 48px; height: 48px; font-size: 20px; }
}
