.container {
    display: flex;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.container.full-height {
    height: calc(100vh - 200px); /* 调整高度以拉到底部 */
    flex-direction: column; /* 新增：使内部div纵向排列 */
}

.intro {
    width: 100%;
}

.intro-title {
    width: 100%; /* 增加标题宽度 */
    font-size: 2rem;
    margin-bottom: 20px;
}

.content {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
}

.module {
    background: linear-gradient(to right, #f0f0f0, #e0e0e0);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.module h3 {
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.module p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
}