@import url(https://fonts.bunny.net/css?family=space-grotesk:300,400,500,600,700|space-mono:400,400i,700,700i);

@font-face {
    font-family: 'Space Grotesk','IBM Plex Sans SC';
    src: url('/fonts/IBMPlex/IBMPlexSansSC2.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Space Mono';
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: 'Space Grotesk','IBM Plex Sans SC', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

h1, h2 {
    font-family: 'Space Mono', 'IBM Plex Sans SC', monospace;
    color: #1f78d1;
    font-weight: 700;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
}

a {
    color: #1f78d1;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1068bf;
    text-decoration: underline;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}




.service-list li {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 1;
    color: #1f78d1;
}

code {
    font-family: 'Space Mono', monospace;
    background-color: #f0f4f8;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: #d63200;
    font-size: 0.9em;
    overflow-wrap: anywhere;
}

section {
    margin-bottom: 3rem;
}

footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.9em;
    color: #777;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .service-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.about-list {
    list-style: none;
    padding: 0;
    align-items: center;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.about-list li {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #e5e5e5;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-list li:hover {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.about-list li:active {
  background-color: #ffffff;
  transform: translateY(1px);
}

.about-list li.disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}

.about-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 1;
    color: #1f78d1;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;

}

.support-list li {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 1;
    color: #1f78d1;
}
.support-list li img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .support-list li {
        flex-wrap: wrap; /* 允许换行 */
    }
    .support-list li img {
        width: 100%;
        max-width: 280px; /* 适当小于移动端宽度 */
        margin-top: 8px;  /* 和上方文字保持间距 */
    }
}