.flag-wrap {
    max-width: 1200px;
    margin: -49px auto 0;
    background-color: #f7f8fc;
    height: 98px;
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, #f2f6fc 0%, #ffffff 100%);
    box-shadow: 2px 4px 27px 0px rgba(168, 181, 198, .32);
    border-radius: 4px;
}

.flag-wrap .box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 20px 0;
}

.flag-wrap .flag {
    width: 20%;
    color: #fff;
    border-right: 1px solid #dedfea;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: default;
    transition: all .3s ease-in-out;
    position: relative;
}

.flag-wrap .flag:last-child {
    border: none;
}

.flag-wrap .flag div {
    transition: all 0.3s ease-in-out;
}

.flag-wrap .flag h3 {
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: var(--primary-color);
}

.flag-wrap .flag span {
    font-size: 16px;
    font-weight: normal;
    margin-left: 4px;
}

.flag-wrap .flag p {
    font-size: 14px;
    color: #666;
}

.flag-wrap .flag:hover {
    div {
        transform: translateY(-6px);
    }
}

.about-wrap {
    position: relative;
}

.about-wrap__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(145deg, #fff 0%, #fff5f5 100%);
    box-shadow: 0 20px 60px rgba(251, 0, 0, 0.1), 0 8px 25px rgba(251, 0, 0, 0.05);
}


.about-wrap__content {
    display: flex;
    align-items: center;
}

.about-wrap__video {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: none;
}

.about-wrap__content-right {
    flex: 1;
    margin-left: 50px;
}

.about-wrap__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.5px;
}

.about-wrap__description {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    text-align: justify;
    margin-bottom: 25px;
}

/* 特色标签 */
.about-wrap__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.about-wrap__feature-tag {
    background: linear-gradient(135deg, #FB0000, #FF5D5A);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(251, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-wrap__feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 0, 0, 0.3);
}

.swiper-pagination {
    bottom: 65px !important;
}

.swiper-pagination-bullet {
    width: 32px;
    height: 6px;
    opacity: 0.6;
    margin: 0 6px !important;
    background: rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 3px;
}

.swiper-pagination-bullet-active {
    background: #eee;
    width: 48px;
    height: 6px;
    opacity: 1;
}

.news-wrap__container {
    width: 1200px;
    margin: 0 auto;
}

.news-wrap__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-wrap__tab {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    flex: 1;
    text-align: center;
    margin-right: 15px;
}

.news-wrap__tab:last-child {
    margin-right: 0;
}

.news-wrap__tab.active {
    background: linear-gradient(135deg, #FB0000, #FF5D5A);
    color: white;
    box-shadow: 0 4px 15px rgba(251, 0, 0, 0.3);
}

.news-wrap__tab:hover:not(.active) {
    color: #FB0000;
}

.news-wrap__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-wrap__card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.news-wrap__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-wrap__card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-wrap__card-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(240, 78, 78, 0.5);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.news-wrap__card-content {
    padding: 25px;
}

.news-wrap__card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-wrap__card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-wrap__card-link {
    color: #FB0000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-wrap__card-link:hover {
    color: #FF5D5A;
    gap: 12px;
}

.news-wrap__card-link::after {
    content: '→';
    font-size: 16px;
    transition: all 0.3s ease;
}

.news-wrap__more {
    text-align: center;
}

.news-wrap__more-btn {
    background: linear-gradient(135deg, #FB0000, #FF5D5A);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 0, 0, 0.3);
}

.news-wrap__more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(251, 0, 0, 0.4);
    color: #fff;
}

.business .business-lists {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.business .business-lists li {
    position: relative;
    width: 240px;
    height: 480px;
    margin-right: 6px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.business .business-lists li.active {
    width: 708px;
}

.business .business-lists li:last-child {
    margin-right: 0;
}

.business .list-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 480px;
    text-align: center;
    color: #f7f7f7;
    font-size: 14px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgb(247, 156, 152) 100%);
}

.business .business-lists li.active .list-box {
    width: 708px;
    background-size: 708px 475px;
}

.business .list-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.business .list-box h3 {
    font-size: 36px;
    font-weight: bold;
    padding-top: 146px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.6s ease;
}

.business .list-box:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.business .list-box p {
    line-height: 1.8;
}

.business .list-box .list-stit {
    font-size: 18px;
    padding: 10px 0 32px 0;
}


.business .list-inner-box {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 708px;
    height: 480px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.business .list-inner-box.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.business .list-inner-box img {
    width: 100%;
    height: 100%;
}

.business .list-inner-box .list-inner-box-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 180px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.business .list-inner-box h3 {
    font-size: 36px;
    font-weight: bold;
    color: #f7f7f7;
    margin-bottom: 10px;
}

.business .list-inner-box p {
    font-size: 16px;
    line-height: 25px;
    color: #f7f7f7;
}


.success-cases-wrapper {
    width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 100px;
}

.success-cases-container {
    margin-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.okPrev {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(/v1/img/arrow-left.png) no-repeat !important;
    width: 64px;
    height: 64px;
}

.okNext {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(/v1/img/arrow-right.png) no-repeat !important;
    width: 64px;
    height: 64px;
}

.success-cases-pagination {
    bottom: 20px !important;
}

.success-cases-pagination .swiper-pagination-bullet {
    width: 26px;
    height: 6px;
    opacity: 0.6;
    margin: 0 6px !important;
    background: #e67777;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 3px;
}

.success-cases-pagination .swiper-pagination-bullet-active {
    background: #ff0000;
    width: 36px;
    height: 6px;
    opacity: 1;
}

.huanjing {
    /* background: url(/v1/img/bg8.png) no-repeat;
    background-size: 100% 100%; */
}

.hj {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hj-item {
    width: 380px;
    height: 285px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.hj-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hj-item__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

/* 主体模块背景 */
.intro {
    background: linear-gradient(to bottom, #f8dbcf, #f7dcd2, #f6f6f6);
    position: relative;
}

/* 主体模块背景 */
.intro1 {
    background: linear-gradient(to top, #f8e5df, #f3e4de, #f6f6f6);
    position: relative;
}

/* 岗位介绍 */
.job-intro__container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 40px 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border-radius: 12px;
}

.job-intro__content {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.job-intro__left {
    flex: 1;
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
    height: 390px;
}

.job-intro__left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.job-intro__left::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background:
        linear-gradient(45deg, transparent 40%, #f8f9fa 40%, #f8f9fa 60%, transparent 60%);
    opacity: 0.6;
}

.job-intro__title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.job-intro__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.job-intro__salary {
    margin-bottom: 20px;
}

.job-intro__salary-label {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
}


.job-intro__dots {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.job-intro__dot {
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 2px;
    position: relative;
}


.job-intro__description {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    margin-top: 30px;
    position: relative;
    padding-left: 20px;
}

.job-intro__description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0px;
    width: 3px;
    background: linear-gradient(180deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.job-intro__icons {
    display: flex;
    gap: 20px;
}

.job-intro__icon {
    width: 50px;
    height: 50px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.job-intro__icon:hover::before {
    opacity: 1;
}

.job-intro__icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.job-intro__center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* 右侧卡片装饰线条 */
.job-intro__right {
    flex: 1;
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
    height: 390px;
}

.job-intro__industry-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.job-intro__industry-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.job-intro__industry-text {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.job-intro__industry-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.job-intro__industry-list {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.job-intro__industry-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.job-intro__demand-text {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.job-intro__demand-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.job-intro__highlight {
    color: #e74c3c;
    font-weight: bold;
}

.expert-opinion__content {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border-radius: 12px;
}

.expert-opinion__quote {
    padding: 60px 60px 30px 60px;
    box-shadow: var(--secondary-color);
    position: relative;
}

.expert-opinion__quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 20px 20px 0 0;
}

.expert-opinion__quote-icon {
    position: absolute;
    top: -20px;
    left: 60px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.expert-opinion__quote-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.expert-opinion__quote-text {
    flex: 1;
}

.expert-opinion__quote-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: justify;
}

.expert-opinion__quote-text p:last-child {
    margin-bottom: 0;
}

.expert-opinion__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    padding: 20px;
    background: rgba(255, 71, 87, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 71, 87, 0.1);
}

.expert-opinion__author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eed5d5;
}

.expert-opinion__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-opinion__author-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.expert-opinion__author-info p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.expert-opinion__author-info p:last-child {
    margin-bottom: 0;
}

.expert-opinion__insights {
    margin-top: 60px;
}

.expert-opinion__insights-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 50px;
}

.expert-opinion__insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expert-opinion__insight-item {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 71, 87, 0.1);
}

.expert-opinion__insight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.expert-opinion__insight-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.expert-opinion__insight-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.expert-opinion__insight-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.career-progression {
    width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    position: relative;
}

.career-progression__header {
    text-align: center;
    position: relative;
}

.career-progression__title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.career-progression__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.career-progression__subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
}

.career-progression__paths {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.career-progression__path {
    background: #fff;
    padding: 40px 40px 40px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}

.career-progression__path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.career-progression__path-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 35px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
    display: inline-block;
    position: relative;
    width: 100%;
}

.career-progression__path-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #e74c3c;
}

.career-progression__steps {
    display: flex;
    align-items: stretch;
    gap: 25px;
    position: relative;
}

.career-progression__step {
    flex: 1;
    position: relative;
}

.career-progression__step-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #e8e9ea;
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.career-progression__step-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
    background: linear-gradient(145deg, #ffffff, #fff5f5);
}

.career-progression__step-level {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    z-index: 10;
}

.career-progression__step-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-progression__step-salary {
    font-size: 22px;
    color: #e74c3c;
    font-weight: bold;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-progression__step-salary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.career-progression__step-card:hover .career-progression__step-salary::before {
    left: 100%;
}

/* 特殊样式：百万薪资 */
.career-progression__step-salary.million {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    border-color: #e74c3c;
    font-size: 20px;
    padding: 18px 30px;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}


/* 响应式装饰 */
.career-progression::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(231, 76, 60, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.bottom-apply-wrap a {
    display: block;
    width: 168px;
    height: 40px;
    border-radius: 4px;
    line-height: 40px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
    color: var(--primary-color);
    background: #fff;
    box-shadow: 4px 7px 8px 0px rgba(217, 73, 72, .36);
}

.bottom-apply-wrap a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.zzbg {
    /* background-image: url(/v1/img/bg7.png);
    background-position: center;
    background-repeat: no-repeat;*/
}

.employment-success__content {
    position: relative;
    z-index: 2;
    padding: 10px 10px 30px 10px;
}

.employment-success__table-wrapper {
    background: #fff;
    overflow-x: auto;
}

.employment-success__table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.employment-success__table-wrapper th {
    background: #f8f9fa;
    color: #495057;
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #dee2e6;
}

.employment-success__table-wrapper td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
    font-size: 14px;
    color: #495057;
}

.employment-success__table-wrapper tr:hover {
    background: rgba(255, 71, 87, 0.05);
}

.employment-success__table-wrapper tr:nth-child(even) {
    background: rgba(248, 249, 250, 0.5);
}

.employment-success__table-wrapper tr:nth-child(even):hover {
    background: rgba(255, 71, 87, 0.05);
}

/* 年薪列特殊样式 */
.employment-success__table-wrapper td:nth-child(5) {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

/* 福利待遇列样式 */
.employment-success__table-wrapper td:nth-child(6) {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.our-advantages__content {
    position: relative;
    z-index: 2;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(205, 46, 20, 0.2);
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 71, 87, 0.15);
    border-color: var(--primary-color);
}


.advantage-item__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 55, 66, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 30px;
    border: 2px solid rgba(255, 71, 87, 0.2);
}

.advantage-item__content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.advantage-item__content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.swiper-pagination1,
.swiper-pagination2 {
    bottom: 0px !important;
    width: 1200px !important;
    text-align: center !important;
}

.aigc-prospect {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    padding-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.aigc-prospect__header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.aigc-prospect__title {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.aigc-prospect__highlight {
    color: #e74c3c;
    font-size: 42px;
}

.aigc-prospect__description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.aigc-prospect__charts {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.aigc-prospect__chart-left,
.aigc-prospect__chart-right {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.aigc-prospect__chart-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

/* 水平柱状图样式 */
.aigc-prospect__bar-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aigc-prospect__bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aigc-prospect__bar-label {
    width: 80px;
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.aigc-prospect__bar-wrapper {
    flex: 1;
    position: relative;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.aigc-prospect__bar {
    height: 100%;
    border-radius: 15px;
    transition: width 1s ease-in-out;
    position: relative;
}

.aigc-prospect__bar--1 {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.aigc-prospect__bar--2 {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.aigc-prospect__bar--3 {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.aigc-prospect__bar--4 {
    background: linear-gradient(90deg, #a02ce4, #8e44ad);
}

.aigc-prospect__bar--5 {
    background: linear-gradient(90deg, #dd3c94, #c0392b);
}

.aigc-prospect__bar--6 {
    background: linear-gradient(90deg, #27ae60, #229954);
}

.aigc-prospect__bar-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

/* 垂直柱状图样式 */
.aigc-prospect__column-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 300px;
    padding: 20px 0;
}

.aigc-prospect__column-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.aigc-prospect__column {
    width: 40px;
    background: linear-gradient(180deg, #3498db, #2980b9);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s ease-in-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    overflow: hidden;
    min-height: 20px;
}

.aigc-prospect__column--height-40 {
    height: 100px;
}

.aigc-prospect__column--height-55 {
    height: 125px;
}

.aigc-prospect__column--height-70 {
    height: 150px;
}

.aigc-prospect__column--height-85 {
    height: 185px;
}

.aigc-prospect__column--height-100 {
    height: 220px;
}

.aigc-prospect__column--height-120 {
    height: 260px;
}

.aigc-prospect__column--forecast {
    background: linear-gradient(180deg, #e74c3c, #c0392b);
}

.aigc-prospect__column-value {
    color: white;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.aigc-prospect__column-label {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .aigc-prospect__charts {
        flex-direction: column;
        gap: 40px;
    }

    .aigc-prospect__chart-left,
    .aigc-prospect__chart-right {
        width: 100%;
    }
}

.team-intro {
    display: flex;
    flex-wrap: wrap;
    /* 负边距技巧抵消第一个和最后一个元素的外边距影响 */
    margin: -10px;
}

.team-item {
    width: 578px;
    height: 547px;
    /* 防止内容过窄时变形 */
    margin-right: 20px;
}

.team-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9e9e9;
    border-radius: 4px;
}

/* 合作理念 */
.cooperation-concept {
    background: #fff;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.concept-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.concept-text {
    flex: 1;
}

.concept-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.concept-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.concept-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.concept-image {
    flex: 1;
}

.concept-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 三方价值卡片 */
.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 36px;
    color: white;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 数据展示 */
.data-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.data-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.data-item:hover {
    transform: translateY(-5px);
}

.data-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.data-icon i {
    font-size: 28px;
    color: white;
}

.data-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.data-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.kc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.kc-category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.kc-category:hover {
    transform: translateY(-5px);
}

.kc-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.kc-category-title i {
    font-size: 28px;
}

.kc-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.kc-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.kc-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.kc-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.kc-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.kc-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.platform-showcase {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.platform-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.platform-text {
    flex: 1;
}

.platform-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.platform-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.platform-features {
    list-style: none;
    padding: 0;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.platform-features i {
    color: var(--primary-color);
    font-size: 18px;
}

.platform-image {
    flex: 1;
}

.platform-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 荣誉资质区域 */
.honor-grid {
    margin-top: 50px;
}

.honor-item {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease;
}


.honor-image {
    height: 100%;
    overflow: hidden;
}

.honor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor-content {
    padding: 25px 20px;
    text-align: center;
}

.honor-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #424242;
}

.honor-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 发展历程区域 */
.timeline {
    margin: 60px auto 0;
    position: relative;
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 35px;
    position: relative;
    gap: 30px;
}


.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(213, 4, 6, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(213, 4, 6, 0.3);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timeline-content h4 i {
    color: var(--primary-color);
    font-size: 18px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-page__content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-page__left {
    flex: 1;
    height: 610px;
}

.contact-page__right {
    flex: 1;
    height: 610px;
}

/* 联系方式样式 */
.contact-info {
    background: white;
    border-radius: 12px;
    padding: 40px;
    height: 610px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info__title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-info__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info__item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon i {
    color: white;
    font-size: 20px;
}

.contact-info__content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info__content p {
    color: #666;
    margin: 4px 0;
    font-size: 14px;
}

.contact-info__phone {
    font-size: 18px !important;
    color: var(--primary-color) !important;
    font-weight: bold;
}

/* 二维码样式 */
.contact-qrcode {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-qrcode__title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.contact-qrcode__list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.contact-qrcode__item {
    text-align: center;
}

.contact-qrcode__img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid #f0f0f0;
}

.contact-qrcode__name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-qrcode__desc {
    font-size: 14px;
    color: #666;
}

/* 留言表单样式 */
.contact-form {
    background: white;
    border-radius: 12px;
    padding: 40px 40px 16px 40px;
    height: 610px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form__title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.contact-form__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-form__subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.contact-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form__group {
    margin-bottom: 20px;
    flex: 1;
}

.contact-form__label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(213, 4, 6, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 4, 6, 0.3);
}

/* 地图样式 */
.contact-map {
    padding: 80px 0;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-map__content {
    margin: 0 auto;
}

.contact-map__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map__img {
    /* width: 100%; */
    display: block;
}

.video-bg {
    background-color: #000 !important;
}

.video-bg .layui-layer-title {
    border: none;
    background-color: #333 !important;
    color: #fff;
}

.video-bg .layui-layer-ico {
    filter: brightness(0) invert(1);
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 30px;
    color: #fff;
}

.sp-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sp-wrap .item {
    background: #fff;
}

.sp-wrap .item .video {
    width: 100%;
}

.sp-wrap .item .name {
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.sp-wrap .item .name:hover {
    color: #000;
}

.profile-box {
    display: flex;
}

.profile-box .avatar-box {
    align-self: flex-end;
    width: 190px;
    height: 190px;
    position: relative;
}

.profile-box .avatar-box img {
    width: 180px;
    height: 180px;
}

.profile-box .avatar-box::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 22px;
    background: url(/v1/img/cqq.png);
    background-size: 100% 100%;
}

.profile-box .intro-box {
    padding-top: 23px;
    width: 330px;
}

.profile-box .intro-box .name {
    text-align: end;
    padding-right: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 24px;
}

.profile-box .intro-box .intros {
    margin-top: 26px;
    display: flex;
    align-items: center;
    padding-left: 42px;
    width: 300px;
    height: 115px;
    box-sizing: border-box;
}

.profile-box .intro-box .intros p {
    font-size: 16px;
    color: var(--primary-color);
    line-height: 30px;
    display: block;
}

.desc-box p {
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
}

.desc-box .tech {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.desc-box .xian {
    border-bottom: 1px solid #eb4c4c;
}

.desc-box .expr {
    margin-top: 13px;
    max-height: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.szbtn-box {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 478px;
    bottom: 40px;
    left: 50px;
}

.szbtn-box .btn {
    width: 230px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border: 1px solid #FFFFFF;
    border-radius: 26px;
    box-sizing: border-box;
    font-size: 16px;
    color: #FFFFFF;
    transition: all ease 0.2s;
}

.szbtn-box .btn:hover {
    background: linear-gradient(270deg, var(--primary-color), var(--primary-color));
    box-shadow: 0px 3px 10px 0px var(--primary-color);
    border: 0;
}