:root {
    --primary-color: #0066FF; /* 科技蓝 */
    --secondary-color: #FF6600; /* 活力橙 */
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --text-color: #4A4A4A;
    --heading-color: #2c3e50;
    --bg-color: #F9FAFB;
    --border-color: #EAECEE;
    --shadow-1: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-2: 0 14px 48px rgba(15, 23, 42, 0.12);
    --radius-1: 12px;
    --radius-2: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', '思源黑体', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header --- */
.site-header {
    background: var(--light-color);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--heading-color);
    text-decoration: none;
    line-height: 1.1;
}

.logo .tagline {
    font-size: 0.8rem;
    font-weight: normal;
    color: #777;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.main-nav {
    flex: 1;
}

.main-nav li a {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 0.85rem;
    border-radius: 12px;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0 0.8rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    height: 40px;
    min-width: 0;
}

.header-search-icon {
    width: 18px;
    height: 18px;
    color: #9aa4b2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-search-input {
    width: 280px;
    max-width: 46vw;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.98rem;
    color: var(--heading-color);
    line-height: 1;
    min-width: 0;
}

.header-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 40px;
    padding: 0 1.05rem;
    border-radius: 12px;
    background: #2f3542;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.04);
    color: #2f3542;
    cursor: pointer;
}

.nav-toggle:hover {
    background: rgba(15, 23, 42, 0.08);
}

.header-auth-btn:hover {
    transform: translateY(-1px);
    background: #262b35;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.16);
}

.header-auth-btn-secondary {
    background: rgba(15, 23, 42, 0.04);
    color: #2f3542;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.header-auth-btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    z-index: 2000;
}

.auth-modal-backdrop.open {
    display: flex;
}

.auth-modal {
    width: min(560px, 100%);
    background: #fff;
    border-radius: var(--radius-2);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(15, 23, 42, 0.10);
    position: relative;
    padding: 1.25rem 1.25rem 1.4rem 1.25rem;
}

.auth-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    border: none;
    background: rgba(15, 23, 42, 0.06);
    color: #475569;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-close:hover {
    background: rgba(15, 23, 42, 0.10);
}

.auth-title {
    text-align: center;
    padding: 0.75rem 0.25rem 0.5rem 0.25rem;
}

.auth-title-main {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: 0.2px;
}

.auth-title-brand {
    color: var(--primary-color);
}

.auth-title-sub {
    margin-top: 0.4rem;
    font-size: 0.98rem;
    color: #64748b;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.1rem;
}

.auth-tab {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: #64748b;
    padding: 0.5rem 0.25rem;
    border-bottom: 3px solid transparent;
}

.auth-tab.active {
    color: #1f2937;
    border-bottom-color: var(--primary-color);
}

.auth-msg {
    min-height: 1.25rem;
    margin: 0.9rem auto 0.2rem auto;
    text-align: center;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.95rem;
}

.auth-form {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.9rem;
    padding: 0.25rem 0.25rem 0 0.25rem;
}

.auth-form.hidden {
    display: none;
}

.auth-field label {
    display: block;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.35rem;
}

.auth-field input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.auth-row input {
    flex: 1;
}

.auth-code-btn {
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.04);
    color: #334155;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.auth-code-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-code-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(15, 23, 42, 0.08);
}

.auth-field input:focus {
    border-color: rgba(0, 102, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.14);
}

.auth-submit {
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-weight: 800;
    font-size: 1.05rem;
    background: rgba(99, 102, 241, 0.50);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.auth-submit:hover {
    transform: translateY(-1px);
    background: rgba(99, 102, 241, 0.62);
}

.auth-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.auth-footer-text {
    color: #64748b;
    font-weight: 600;
}

.auth-footer-link {
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-weight: 800;
    cursor: pointer;
    padding: 0.2rem 0.35rem;
}

.auth-footer-link:hover {
    text-decoration: underline;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.98rem;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav li a:hover,
.main-nav li a.active {
    background: rgba(0, 102, 255, 0.06);
}

/* --- Hero Section --- */
.hero {
    background: var(--light-color);
    text-align: center;
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-ms {
    text-align: left;
    background: radial-gradient(1200px 500px at 10% 0%, rgba(0, 102, 255, 0.12), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(255, 102, 0, 0.10), rgba(255, 255, 255, 0) 55%),
        var(--light-color);
    padding: 5.5rem 0 4.25rem 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.15;
}

.hero-left p {
    margin-bottom: 1.5rem;
    color: #56606d;
}

.hero-search {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.5rem;
    box-shadow: var(--shadow-1);
    backdrop-filter: blur(8px);
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--heading-color);
}

.hero-search-btn {
    border: none;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.7);
    color: #415065;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 102, 255, 0.35);
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-2);
    overflow: hidden;
}

.panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 0.9rem 1.25rem;
}

.panel-head h2 {
    font-size: 1.15rem;
    color: var(--heading-color);
}

.panel-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.panel-list {
    display: grid;
    gap: 0.5rem;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.panel-item {
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-1);
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.panel-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 102, 255, 0.25);
}

.panel-item-title {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.panel-item-desc {
    color: #637084;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Buttons --- */
.btn {
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* --- General Sections --- */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.section-title-left {
    font-size: 1.65rem;
    color: var(--heading-color);
    font-weight: 700;
}

.section-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    display: block;
    text-decoration: none;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    padding: 1.15rem 1.15rem 1.2rem 1.15rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 102, 255, 0.25);
}

.card-kicker {
    font-size: 0.85rem;
    color: #7a8699;
    margin-bottom: 0.35rem;
}

.card-title {
    color: var(--heading-color);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.card-desc {
    color: #637084;
    font-size: 0.98rem;
    line-height: 1.55;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.feature-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.06), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(0, 102, 255, 0.14);
    border-radius: var(--radius-2);
    padding: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 102, 255, 0.28);
}

.feature-card-title {
    color: var(--heading-color);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.feature-card-desc {
    color: #637084;
    line-height: 1.55;
}

.cta-band {
    border-top: 1px solid var(--border-color);
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.10), rgba(255, 255, 255, 0) 40%),
        linear-gradient(270deg, rgba(255, 102, 0, 0.10), rgba(255, 255, 255, 0) 40%),
        var(--light-color);
    padding: 3.5rem 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-band-text h2 {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.cta-band-text p {
    color: #637084;
}

.cta-band-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -2rem auto 3rem auto;
    color: #555;
}

.bg-light {
    background-color: var(--light-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* --- Feature & Service Items --- */
.feature-grid, .service-grid, .culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item, .service-item, .culture-item {
    background: var(--light-color);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover, .service-item:hover, .culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.feature-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* --- Clients --- */
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logos span {
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- Footer --- */
.site-footer {
    background: #f1f3f5;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 980px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid-4,
    .feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-search-input {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        gap: 0.75rem;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header-tools {
        width: 100%;
        order: 3;
        gap: 0.6rem;
    }

    .header-search {
        flex: 1;
    }

    .header-auth-btn {
        flex: 0 0 auto;
    }

    .main-nav {
        width: 100%;
        order: 4;
        display: none;
    }

    .site-header.nav-open .main-nav {
        display: block;
    }

    .main-nav ul {
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0.35rem;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background: var(--light-color);
        box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
    }

    .main-nav li a {
        width: 100%;
        justify-content: flex-start;
        height: 44px;
    }
}

@media (max-width: 640px) {
    .hero-search {
        flex-direction: column;
        border-radius: var(--radius-2);
    }

    .hero-search-btn {
        width: 100%;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-grid-4,
    .feature-cards {
        grid-template-columns: 1fr;
    }

    .header-tools {
        width: 100%;
        justify-content: space-between;
    }

    .header-search {
        flex: 1;
    }

    .header-search-input {
        width: 100%;
        max-width: none;
    }

    .main-nav li a {
        height: 36px;
        padding: 0 0.7rem;
        border-radius: 10px;
    }

    .header-search,
    .header-auth-btn {
        height: 38px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}

/* --- About Page --- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.core-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--light-color);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.data-item {
    text-align: center;
}

.data-item strong {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
}

.data-item span {
    color: #555;
}

.culture-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* --- Services Page --- */
.service-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card .card-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
}

.service-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-body p {
    margin-bottom: 1rem;
}

.service-card .card-body ul {
    list-style: none;
    padding-left: 0;
}

.service-card .card-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-card .card-body ul li:last-child {
    border-bottom: none;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.step span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--light-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-details h3, .contact-form h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .about-intro, .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
}

.records {
    margin-top: 3rem;
}

.record-list-empty {
    text-align: center;
    color: #999;
    padding: 1rem 0;
}

.record-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-color);
    border: 1px solid var(--border-color);
}

.record-table th,
.record-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.record-table thead th {
    background: #f6f8fa;
}
