/* 内容页面样式 */

/* 内容容器 */
.content-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(26, 35, 126, 0.1);
    margin-bottom: 30px;
}

/* 页面标题 */
.page-title {
    color: #1a237e;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
    position: relative;
    padding-bottom: 15px;
}

.page-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3949ab, #bbdefb);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* 内容文本 */
.content-text {
    text-align: left;
    line-height: 1.8;
    color: #333;
}

.content-text p {
    margin-bottom: 20px;
    text-indent: 2em;
}

/* 列表样式 */
.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-list li {
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(26, 35, 126, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #3949ab;
}

.content-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.1);
}

.content-list a {
    color: #333;
    text-decoration: none;
    display: block;
}

.content-list a:hover {
    color: #3949ab;
}

.content-list .date {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-top: 5px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .content-container {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-title {
        font-size: 1.4em;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .page-title:after {
        width: 60px;
        height: 2px;
    }

    .content-text {
        line-height: 1.6;
    }

    .content-text p {
        font-size: 0.9em;
        margin-bottom: 15px;
        text-indent: 1.5em;
    }

    .content-list {
        margin: 15px 0;
    }

    .content-list li {
        padding: 10px;
        margin-bottom: 8px;
        border-left: 2px solid #3949ab;
    }

    .content-list a {
        font-size: 0.9em;
    }

    .content-list .date {
        font-size: 0.8em;
        margin-top: 3px;
    }
}
