/* styles.css */
.link-no-underline {
    text-decoration: none;
    color: #1a73e8; /* 默认蓝色 */
    transition: color 0.3s ease; /* 平滑过渡效果 */
}

.link-no-underline:hover {
    color: #e53935; /* 鼠标悬停时红色 */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}
h1, h2, h3 {
    color: #1a73e8;
    margin-top: 1.5em;
}
h1 {
    text-align: center;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 10px;
}
.contact-info {
    background-color: #e8f0fe;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
.important {
    font-weight: bold;
    color: #d32f2f;
}
.section {
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}
.indented {
    text-indent: 2em; /* 首行缩进两个汉字宽度 */
    margin-bottom: 1em; /* 段落间距 */
}
.indented-with-line {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.underlined-text {
    text-decoration: underline;
}
