/* 页面头部 - 培训服务专用背景 */
.page-header {
    background:
            linear-gradient(rgba(10, 25, 60, 0.9), rgba(5, 15, 35, 0.95)),
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><defs><pattern id="trainingPattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,0 L50,25 L25,50 L0,25 Z" fill="none" stroke="%234285f4" stroke-width="2"/><circle cx="25" cy="25" r="10" fill="none" stroke="%2334a853" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="%230f1b3d"/><rect width="100%" height="100%" fill="url(%23trainingPattern)"/><circle cx="150" cy="50" r="30" fill="none" stroke="%23fbbc05" stroke-width="1" stroke-dasharray="5,5"/><circle cx="50" cy="150" r="40" fill="none" stroke="%23ea4335" stroke-width="1" stroke-dasharray="3,3"/></svg>');
    background-size: cover;
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(66, 133, 244, 0.4) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(52, 168, 83, 0.4) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(251, 188, 5, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}
.training-section {
    height: 21rem;
}
.todo {
    font-size: xxx-large;
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* 面包屑导航 */
.breadcrumb {
    background-color: var(--light-color);
    padding: 15px 0;
    margin-bottom: 40px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--gray-color);
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 500;
}

/* 标签页样式 */
.tabs {
    margin-bottom: 40px;
}

.tab-header {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-link {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin: 0 10px;
}

.tab-link:hover {
    color: var(--primary-color);
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 培训背景样式 */
.training-background {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.background-text {
    flex: 1;
}

.background-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.background-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.8;
}

.background-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s;
    border-left: 4px solid var(--primary-color);
}

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

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

.stat-text {
    color: var(--gray-color);
    font-weight: 500;
}

/* 培训机构样式 */
.institution-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.institution-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.institution-text {
    flex: 1;
}

.institution-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.institution-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.8;
}

.institution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* 培训对象样式 */
.audience-content {
    margin-bottom: 60px;
}

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

.audience-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audience-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.audience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.audience-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.audience-list {
    text-align: left;
    color: var(--gray-color);
}

.audience-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.audience-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* 培训收益样式 */
.benefits-content {
    margin-bottom: 60px;
}

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

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-left: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card h3 i {
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* 培训时间地点样式 */
.schedule-content {
    margin-bottom: 60px;
}

.schedule-container {
    display: flex;
    gap: 50px;
}

.schedule-info {
    flex: 1;
}

.schedule-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.schedule-info p {
    margin-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.8;
}

.schedule-list {
    margin-top: 30px;
}

.schedule-item {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.schedule-date {
    width: 80px;
    flex-shrink: 0;
    text-align: center;
    margin-right: 20px;
}

.schedule-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.schedule-month {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 5px;
}

.schedule-details {
    flex: 1;
}

.schedule-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.schedule-details p {
    color: var(--gray-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-map {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 往期培训展示样式 */
.past-training {
    background-color: var(--light-color);
    padding: 60px 0;
}

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

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.gallery-content {
    padding: 20px;
}

.gallery-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.gallery-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gallery-description {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}
.training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    display: grid;
}
.training-mb-10 {
    margin-bottom: 2.5rem;
}
.training-text-2xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
    font-weight: 700;
    align-items: center;
    display: flex;
    margin-bottom: 1.5rem;
}
.training-text-2xl-xyxs {
    font-size: 1.875rem;
    line-height: 2.25rem;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
    font-weight: 700;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: center;
}
.training-flex-sy {
    align-items: flex-start;
    display: flex;
    margin-bottom: 0.6rem;
}
.training-text-neutral-sy {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.training-bg-primary {
    --tw-text-opacity: 1;
    color: rgb(26 86 219 / var(--tw-text-opacity, 1));
    padding: 0.75rem;
    background-color: rgb(26 86 219 / 0.1);
    border-radius: 0.5rem;
    margin-right: 1rem;
}
.partner-inline-flex {
    transition-property: all;
    transition-timing-function:
            cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-weight: 500;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 2rem;
    padding-right: 2rem;
    --tw-bg-opacity: 1;
    background-color: rgb(26 86 219 / var(--tw-bg-opacity, 1));
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    display: inline-flex;
    text-decoration: inherit;
}
.training-fa {
    font-size: 1.25rem;
    line-height: 1.75rem;
    display: inline-block;
    /*font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}
.training-text-neutral {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
    margin-bottom: 1rem;
}
.training-bg-secondary {
    --tw-text-opacity: 1;
    color: rgb(126 58 242 / var(--tw-text-opacity, 1));
    padding: 0.75rem;
    background-color: rgb(126 58 242 / 0.1);
    border-radius: 0.5rem;
    margin-right: 1rem;
}
.training-bg-gray-50 {
    padding: 1.5rem;
    --tw-bg-opacity: 1;
    background-color: white;
    border-radius: 0.75rem;
}
.training-flex {
    align-items: flex-start;
    display: flex;
    margin-bottom: 1rem;
}
.training-w-16 {
    background: linear-gradient(135deg, #1a56db 0%, #7e3af2 100%);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    /*border-radius: 9999px;*/
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    margin-right: 1rem;
}
.training-text-xl {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 0.25rem;
    margin: 0;
}
/*.training-text-neutral {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
    margin: 0;
}*/
.mb-4{
    margin-bottom: 1rem;
}
.training-flex-wrap {
    gap: 0.75rem;
    flex-wrap: wrap;
    display: flex;
}
.training-px-3 {
    --tw-text-opacity: 1;
    color: rgb(26 86 219 / var(--tw-text-opacity, 1));
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    background-color: rgb(26 86 219 / 0.1);
    border-radius: 9999px;
}
.training-mb-10 {
    margin-bottom: 2.5rem;
}
.training-bg-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
    padding: 0.75rem;
    background-color: rgb(34 197 94 / 0.1);
    border-radius: 0.5rem;
    margin-right: 1rem;
}
.training-grid-jc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    display: grid;
}
.training-bg-gray-50-jc {
    padding: 1.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    border-width: 1px;
    border-radius: 0.5rem;
}
.training-font-semibold {
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin: 0;
    font-size: inherit;
}
/*.training-text-neutral {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
}*/
.training-bg-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
    padding: 0.75rem;
    background-color: rgb(249 115 22 / 0.1);
    border-radius: 0.5rem;
    margin-right: 1rem;
}
.training-fa-trophy {
    font-size: 1.25rem;
    line-height: 1.75rem;
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.training-space-y-3 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.training-fa-check-circle {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.training-text-center {
    text-align: center;
    margin-bottom: 3rem;
}
.training-text-3xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
    font-weight: 700;
    margin-bottom: 1rem;
    margin: 0;
}
.training-text-neutral-wq {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin: 0;
}
.training-grid-wq {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    display: grid;
}
.training-aspect-square {
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.training-w-full {
    transition-duration: 700ms;
    transition-property: transform;
    transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    vertical-align: middle;
}
.training-mt-16 {
    max-width: 56rem;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
}
.training-xyxs {
    position: relative;
}
.training-fa-quote-left {
    color: rgb(26 86 219 / 0.2);
    font-size: 3.75rem;
    line-height: 1;
    top: -1rem;
    left: -1rem;
    position: absolute;
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.training-text-neutral-xyxs {
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1.5rem;
    z-index: 10;
    position: relative;
    margin: 0;
}
.training-wq {
    background-color: var(--light-color);
    margin-top: 8rem;
}
