9

对一些地方进行了改进,比如css
/* 全局样式 */
body {
font-family: 'Inter', sans-serif;
line-height: 1.5;
}

/* 导航栏样式 */
nav {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav h1 {
font-weight: 700;
color: #333;
}

nav a {
background-color: #3b82f6;
color: white;
padding: 0.5rem 1rem;
border-radius: 0.375rem;
transition: background-color 0.3s ease;
}

nav a:hover {
background-color: #2563eb;
}

/* 表格样式 */
table {
border-collapse: collapse;
width: 100%;
}

th {
text-align: left;
padding: 0.75rem 1.5rem;
font-weight: 600;
color: #4b5563;
text-transform: uppercase;
border-bottom: 1px solid #e5e7eb;
}

td {
padding: 1rem 1.5rem;
color: #374151;
border-bottom: 1px solid #e5e7eb;
}

tr.border-t {
border-top: 1px solid #e5e7eb;
}

/* 按钮样式 */
a.text-blue-500 {
color: #3b82f6;
text-decoration: none;
}

a.text-blue-500:hover {
text-decoration: underline;
}

a.text-red-500 {
color: #ef4444;
text-decoration: none;
}

a.text-red-500:hover {
text-decoration: underline;
}

posted @ 2025-04-30 01:14  Lomook  阅读(15)  评论(0)    收藏  举报