/* 基本重置 */ * { margin: 0; padding: 0; box-sizing: border-box; } /* 字體平滑 */ html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* 主要內容區塊樣式 */ .main-content { font-family: 'Helvetica Neue', Arial, sans-serif; color: #333; line-height: 1.6; padding: 20px; } /* 標題樣式 */ h1, h2, h3, h4, h5, h6 { color: #35495e; margin-bottom: 15px; } /* 鏈接樣式 */ a { color: #3498db; text-decoration: none; } a:hover { text-decoration: underline; } /* 列表樣式 */ ul, ol { margin-left: 20px; } /* 圖片樣式 */ img { max-width: 100%; height: auto; } /* 表格樣式 */ table { width: 100%; border-collapse: collapse; } th, td { padding: 10px; border: 1px solid #ccc; } /* 表單樣式 */ input, select, textarea { width: 100%; padding: 10px; margin-bottom: 20px; border: 1px solid #ccc; } /* 按鈕樣式 */ button { padding: 10px 20px; background-color: #3498db; color: white; border: none; cursor: pointer; } button:hover { background-color: #2980b9; }