/* 内容区域样式 */
.content {
    width: 1080px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 标题样式 */
.detail h1 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin: 30px 0;
    font-weight: bold;
}

/* 介绍文本样式 */
.intro {
    width: 90%;
    margin: 0 auto;
    line-height: 2;
    font-size: 16px;
    color: #666;
    text-indent: 2em;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* 信息区域样式 */
.info {
    width: 90%;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.info p {
    line-height: 2;
    color: #666;
    margin: 10px 0;
}

/* 菜单样式优化 */
.Menu {
    margin: 30px 0;
}

.Menu ul li {
    font-size: 24px;
    color: #0066cc;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.Menu ul li:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #0066cc;
}

/* 响应式布局 */
@media screen and (max-width: 1080px) {
    .content {
        width: 95%;
    }
} 