﻿p {
    /* 首行缩进2个字符 */
    text-indent: 2em;
}
.side-boxes {
    position: fixed;
    right: 64px;
    top: 70%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 170px;
    z-index: 10;
}

.side-card {
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 12px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .side-card::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #d9d9d9, #bdbdbd);
    }

    .side-card::before {
        content: "";
        position: absolute;
        inset: 6px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        pointer-events: none;
    }

    .side-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
    }

.side-compact {
    padding: 10px 12px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
}

    .side-compact .side-icon {
        width: 34px;
        height: 34px;
        margin: 0;
        font-size: 16px;
    }

    .side-compact .side-title {
        margin: 0;
        font-size: 13px;
    }

    .side-compact .side-link {
        margin-left: auto;
        font-size: 12px;
        padding: 2px 6px;
        border: 1px solid #d8d8d8;
        border-radius: 12px;
        color: #444;
        background: #f7f7f7;
        white-space: nowrap;
    }

.side-qr {
    width: 110px;
    height: 110px;
    margin: 0 auto 8px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .side-qr img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.side-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    border: 1px solid #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.side-top {
    background: linear-gradient(180deg, #f8f8f8 0%, #eeeeee 100%);
    border: 1px solid #d9d9d9;
}

    .side-top .side-icon {
        background: #ededed;
        color: #555;
        border-color: #d2d2d2;
    }

.side-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.side-link {
    font-size: 12px;
    color: #555;
}

    .side-link:hover {
        color: #222;
    }

.footer {
    background: #404040;
    color: #bbb;
    padding: 10px 0;
    margin-top: 14px;
    text-align: center;
    line-height: 1.8;
}

    .footer p {
        font-size: 13px;
    }

.footer-links {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links-title {
    font-size: 14px;
    color: #e6e6e6;
    font-weight: 300;
}

.footer-links-selects {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links select {
    width: 200px;
    background: #5a5a5a;
    color: #e9e9e9;
    border: 1px solid #6c6c6c;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
}
.business-section .pill-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.side-card-link-inline {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}