/* 重置样式 */
* {
    margin: 0;
    padding: 0;
   
}

/* 基础样式 */
body {
    font-family: 微软雅黑,-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* background-color: #f5f5f5; */
}


/* 标题 */
h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
   
    padding-bottom: 10px;
}




/* 文本 */
p {
    margin-bottom: 15px;
    text-align: justify;
}

/* 链接 */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
    text-decoration: none;
}

/* 列表 */
ul, ol {
    
}

li {
    
    list-style: none;
}





/* 表格 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #3498db;
    color: #fff;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}


