/* Learning页面特定样式 */

/* Hero区域样式 - 整体右移 */
.header.learning .hero {
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Hero区域文字样式 */
.header.learning .hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.header.learning .hero p {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero区域移动端响应式样式 */
@media (max-width: 768px) {
    .header.learning .hero {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 0 20px;
    }
    
    .header.learning .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .header.learning .hero p {
        font-size: 1rem;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .header.learning .hero {
        padding: 0 15px;
    }
    
    .header.learning .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .header.learning .hero p {
        font-size: 0.9rem;
        max-width: 320px;
    }
}

@media (max-width: 360px) {
    .header.learning .hero h1 {
        font-size: 1.8rem;
    }
    
    .header.learning .hero p {
        font-size: 0.85rem;
        max-width: 280px;
    }
}

/* Deal sourcing live 活动区域 */
.deal-sourcing-section {
    background-color: #1a2e4f;
    padding: 80px 0;
}

.deal-sourcing-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a2e4f;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    min-height: 600px;
}

/* 左侧蓝色内容区域 */
.content-left {
    flex: 1;
    background-color: #3a6edc;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 白色间隔 */
.content-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1.5px;
    width: 3px;
    height: 100%;
    background-color: white;
}

/* 右侧图片区域 */
.content-right {
    flex: 1;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 3px;
}

/* Logo和品牌区域 */
.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.content-logo {
    width: 40px;
    height: auto;
    margin-right: 12px;
}

.content-brand {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* 主要内容 */
.content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.content-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-description {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-bottom: 40px;
    opacity: 0.95;
}

.content-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.3;
}

.event-details {
    margin-bottom: 40px;
}

.event-info {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-bottom: 8px;
    opacity: 0.95;
}

/* Register Now 按钮 */
.register-btn {
    background-color: white;
    color: #3a6edc;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.register-btn:hover {
    background-color: #FF8C42;
    color: #3a6edc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}

/* 课程图片 */
.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .deal-sourcing-section {
        padding: 60px 20px;
    }
    
    .deal-sourcing-container {
        flex-direction: column;
        max-width: 100%;
        margin: 0;
    }
    
    .content-left {
        padding: 30px 25px;
    }
    
    .content-left::after {
        display: none;
    }
    
    .content-right {
        margin-left: 0;
        margin-top: 3px;
        min-height: 300px;
    }
    
    .content-header {
        margin-bottom: 30px;
    }
    
    .content-logo {
        width: 35px;
        margin-right: 10px;
    }
    
    .content-brand {
        font-size: 16px;
    }
    
    .content-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .content-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .content-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .event-details {
        margin-bottom: 30px;
    }
    
    .event-info {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .register-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* 斜边背景区域 */
.diagonal-bg-section {
    width: 100%;
    height: 500px;
    background-image: url('./images/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0;
    padding: 0;
}



/* 下边界斜向下的效果 */
.diagonal-bg-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to right top, #1a2e4f 49%, transparent 51%);
    z-index: 1;
}

/* What You'll Learn 区域 */
.what-you-learn-section {
    background-color: #1a2e4f;
    padding: 60px 0;
    width: 100%;
}

.learn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.learn-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Sessions 网格布局 */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Session 卡片 */
.session-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
}

.session-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: 700;
    color: #4472C4;
    z-index: 2;
    margin: 0;
    text-align: center;
}

.session-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Session 介绍文字 */
.session-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #4472C4;
    color: white;
    padding: 20px;
    border-radius: 0 0 15px 15px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.description-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
    line-height: 1.3;
}

.description-text {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: white;
    opacity: 0.95;
}

/* Hover 效果 */
.session-card:hover .session-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.session-card:hover .session-description {
    transform: translateY(0);
    opacity: 1;
}

/* 响应式设计 - 斜边背景 */
@media (max-width: 768px) {
    .diagonal-bg-section {
        height: 400px;
    }
    
    .diagonal-bg-section::before,
    .diagonal-bg-section::after {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .diagonal-bg-section {
        height: 300px;
    }
    
    .diagonal-bg-section::before,
    .diagonal-bg-section::after {
        height: 40px;
    }
}

/* 响应式设计 - What You'll Learn */
@media (max-width: 1024px) {
    .learn-container {
        padding: 0 30px;
    }
    
    .sessions-grid {
        gap: 30px;
        max-width: 800px;
    }
    
    .session-card {
        width: 350px;
        height: 350px;
    }
    
    .session-number {
        font-size: 28px;
        top: 15px;
    }
    
    .session-description {
        padding: 15px;
    }
    
    .description-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .description-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .what-you-learn-section {
        padding: 50px 0;
    }
    
    .learn-container {
        padding: 0 20px;
    }
    
    .learn-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .sessions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 30px;
        max-width: 400px;
    }
    
    .session-card {
        width: 300px;
        height: 300px;
    }
    
    .session-number {
        font-size: 24px;
        top: 12px;
    }
    
    .session-description {
        padding: 12px;
    }
    
    .description-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .description-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .what-you-learn-section {
        padding: 40px 0;
    }
    
    .learn-container {
        padding: 0 15px;
    }
    
    .learn-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .sessions-grid {
        gap: 25px;
        max-width: 280px;
    }
    
    .session-card {
        width: 250px;
        height: 250px;
    }
    
    .session-number {
        font-size: 20px;
        top: 10px;
    }
    
    .session-description {
        padding: 10px;
    }
    
    .description-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .description-text {
        font-size: 11px;
    }
}

/* Meet Your Trainer 区域 */
.trainer-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.trainer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* 左侧人物图片 */
.trainer-image-container {
    flex: 0 0 347px;
}

.trainer-image {
    width: 347px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
}

/* 右侧文字内容 */
.trainer-content {
    flex: 1;
}

.trainer-title {
    font-size: 36px;
    font-weight: 700;
    color: #4472C4;
    margin-bottom: 30px;
    line-height: 1.2;
}

.trainer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4472C4;
    margin-bottom: 20px;
}

.trainer-description:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .trainer-container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .trainer-image-container {
        flex: 0 0 280px;
    }
    
    .trainer-image {
        width: 280px;
        height: 403px;
    }
    
    .trainer-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .trainer-description {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .trainer-section {
        padding: 60px 0;
    }
    
    .trainer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .trainer-image-container {
        flex: none;
    }
    
    .trainer-image {
        width: 250px;
        height: 360px;
    }
    
    .trainer-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .trainer-description {
        font-size: 14px;
        margin-bottom: 16px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .trainer-section {
        padding: 50px 0;
    }
    
    .trainer-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .trainer-image {
        width: 200px;
        height: 288px;
    }
    
    .trainer-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .trainer-description {
        font-size: 13px;
        margin-bottom: 14px;
    }
} 