 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft JhengHei", "Segoe UI", "Arial", sans-serif;
    color: #111827;
    line-height: 1.5;
    touch-action: pan-y;
}

.view {
    min-height: 100vh;
}

.header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px;
    position: relative;
    z-index: 100;
}

@media (min-width: 1024px) {
    .header {
        padding: 16px 24px;
    }
}

.header-content {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-container {
    opacity: 1;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(0);
}

.menu-container.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bar {
    width: 16px;
    height: 3px;
    background-color: black;
}

.logo-text {
    color: #dc2626;
    font-weight: bold;
    font-size: 18px;
}

.chevron-down {
    width: 16px;
    height: 16px;
    color: #9ca3af;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 101;
    min-width: 150px;
    display: none;
}

.dropdown:first-child .dropdown-menu {
    left: 0;
}

.dropdown:last-child .dropdown-menu {
    right: 0;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    color: #374151;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.search-container {
    position: relative;
    width: 180px;
}

.search-container.hidden {
    display: none;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-underline-input {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    transition: border-color 0.2s;
    box-shadow: none;
    width: 100%;
    padding: 4px 0;
    outline: none;
    min-width: 180px;
}

.search-underline-input:focus {
    outline: none;
}

.search-underline-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.search-underline-input:focus + .search-underline-bar {
    transform: scaleX(1);
}

.clear-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    color: #9ca3af;
    cursor: pointer;
    border-radius: 4px;
}

.clear-search-btn:hover {
    color: #6b7280;
}

.clear-search-btn.hidden {
    display: none;
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    color: #6b7280;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: #374151;
}

.icon-btn.active {
    color: #f87171;
}

.icon-btn.active i {
    color: #f87171;
    fill: #f87171;
}

.alert-banner {
    background-color: #fef2f2;
    border-left: 4px solid #f87171;
    padding: 16px;
    margin: 16px;
}

@media (min-width: 1024px) {
    .alert-banner {
        margin: 16px 24px;
    }
}

.alert-content {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.alert-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    color: #f87171;
}

.alert-text {
    font-size: 14px;
    color: #991b1b;
}

.routes-container {
    padding: 10px;
}

@media (max-width: 375px) {
    .routes-container {
        padding: 8px;
    }
}

@media (min-width: 1024px) {
    .routes-container {
        padding: 24px;
    }
}

.routes-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
}

@media (max-width: 375px) {
    .routes-container {
        padding: 8px;
    }
    
    .route-card {
        width: 65px;
        margin-bottom: 8px;
    }
}

.route-card {
    cursor: pointer;
    transition: box-shadow 0.2s;
    overflow: hidden;
    position: relative;
    width: 75px;
    margin-bottom: 10px;
}

@media (max-width: 375px) {
    .route-card {
        width: 70px;
    }
}

.route-card img {
    width: 100%;
}

.route-card .line {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: #101010;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none;
}

.route-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.route-content {
    padding: 12px;
}

.route-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.route-name {
    font-weight: 500;
    color: #111827;
}

.favorite-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    margin-top: -4px;
    margin-right: -4px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn .heart-icon {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    transition: color 0.2s;
}

.favorite-btn .heart-icon.filled {
    color: #f87171 !important;
    fill: #f87171 !important;
}

.route-stops {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stop-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    min-width: 0; /* 允许flex项目收缩 */
}

.stop-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0; /* 防止圆点被挤压 */
}

.stop-dot.blue {
    background-color: #93c5fd;
}

.stop-dot.orange {
    background-color: #fdba74;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #9ca3af;
    padding: 32px;
}

/* QR Code Section */
.qr-section {
    margin-bottom: 32px;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .qr-section {
        padding: 0 24px;
    }
}

.qr-card {
    max-width: 72rem;
    margin: 0 auto;
    background: linear-gradient(to right, #22d3ee, #3b82f6);
    color: white;
    border-radius: 8px;
    overflow: hidden;
}

.qr-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-image {
    min-width: 300px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.qr-text {
    margin-top: 16px;
    text-align: center;
}

.qr-title {
    font-size: 16px;
}

.qr-bold {
    font-weight: bold;
}

.qr-subtitle {
    font-size: 14px;
    margin-top: 4px;
    opacity: 0.9;
}

/* 路线详情页面样式 */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px;
    position: relative;
    gap: 8px;
}

.desktop-header {
    display: none;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 24px;
    position: relative;
}

@media (min-width: 1024px) {
    .mobile-header {
        display: none;
    }
    .desktop-header {
        display: block;
    }
}

.header-content {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
}

.back-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    color: #6b7280;
    flex-shrink: 0;
    z-index: 1;
}

@media (min-width: 1024px) {
    .back-btn {
        margin-right: 16px;
    }
}

.route-title {
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    flex: 1;
    text-align: center;
}

.favorite-header-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
    color: #6b7280;
}

.favorite-header-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.favorite-header-btn i {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: color 0.2s;
}

.favorite-header-btn i.filled {
    color: #f87171;
    fill: #f87171;
}

.header-spacer {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .route-title {
        font-size: 20px;
        margin: 0;
        flex: 1;
        text-align: center;
    }
}

.route-content {
    padding: 16px;
}

@media (min-width: 1024px) {
    .route-content {
        padding: 24px;
    }
    
    .route-info-content {
        padding: 24px;
    }
    
    .stops-count {
        padding: 20px 24px;
    }
    
    .stop-info {
        padding: 20px 24px 20px 0;
    }
    
    .stop-name {
        font-size: 16px;
    }
    
    .endpoint-name {
        font-size: 16px;
    }
    
    .route-stops {
        margin-bottom: 100px;
    }
}

.route-info-card {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    padding: 20px;
}

.route-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.route-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.route-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.route-name-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.route-name-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.route-direction {
    font-size: 16px;
    color: #374151;
}

.direction-label {
    font-weight: 500;
}

.direction-route {
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.direction-arrow {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    height: 85%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.pdf-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-btn:hover {
    background-color: #e9ecef;
    color: #333;
}

.pdf-modal-body {
    padding: 20px;
    overflow: auto;
    max-height: 80vh;
}

.pdf-viewer {
    text-align: center;
    min-height: 80vh;
    transition: opacity 0.3s ease-in-out;
}

.pdf-viewer canvas {
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.loading {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #C94545;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 40px;
    color: #e74c3c;
    font-size: 16px;
}

.more-pages-hint {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.more-pages-hint p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.download-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.download-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .pdf-modal-content {
        width: 95%;
        max-width: none;
        margin: 10px;
    }
    
    .pdf-modal-header {
        padding: 10px 15px;
    }
    
    .pdf-modal-body {
        padding: 15px;
    }

    .pdf-viewer {
        min-height: 500px;
    }

    .loading {
        min-height: 500px;
    }
    
    .pdf-viewer canvas {
        max-width: 100%;
        height: auto;
    }
    
    .close-btn {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

.notifications-content .list {
    padding: 15px 15px 40px 20px;
    margin: 0 15px 0 0;
    max-height: 813px;
    overflow-y: auto;
}

.notifications-content .list::-webkit-scrollbar {
    width: 3px;
    border-radius: 2px;
    background: hsla(0,0%,82%,0.18);
}

.notifications-content .list::-webkit-scrollbar-thumb {
    width: 3px;
    border-radius: 2px;
    background: #E97927;
}

.notifications-content .list .li + .li {
    margin-top: 21px;
}

.notifications-content .list .li {
    padding: 1px 1px 1px 9px;
    border-radius: 6px;
    background: #CADAF3;
    cursor: pointer;
    transition: all 0.5s;
}

.notifications-content .list .li:hover,
.notifications-content .list .li.cur {
    box-shadow: 0px 10px 17px 1px rgba(112,112,112,0.35);
}

.notifications-content .list .li:nth-child(2n) {
    background: #F9E5CC;
}

.notifications-content .list .li:nth-child(3n) {
    background: #F8CDEA;
}

.notifications-content .list .li .mk {
    background: #fff;
    border-radius: 6px;
    padding: 22px 40px 22px 32px;
    min-height: calc(116px - 32px);
    position: relative;
}

.notifications-content .list .li .p {
    font-size: 16px;
    line-height: 21px;
    color: #444444;
    margin-bottom: 10px;
    transition: all 0.5s;
}

.notifications-content .list .li.cur .p,
.notifications-content .list .li:hover .p {
    color: #C94545;
}

.notifications-content .list .li .t * {
    font-size: 14px;
    line-height: 19px;
    color: #707070;
    transition: all 0.5s;
}

.notifications-content .list .li:hover .t *,
.notifications-content .list .li.cur .t * {
    color: #101010;
}

.notifications-content .list .li .i {
    position: absolute;
    bottom: 0;
    right: 5px;
    width: 125px;
    height: 44px;
    background: url(../images/102.png) no-repeat bottom center;
    background-size: 100% auto;
    transition: all 0.5s;
}

.notifications-content .list .li.cur .i,
.notifications-content .list .li:hover .i {
    background: url(../images/103.png) no-repeat bottom center;
    background-size: 100% auto;
}

.notifications-content .list .li .mk::after {
    content: '';
    width: 100%;
    background: #BE0C46;
    border-radius: 0 0 6px 6px;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    opacity: 0;
    transition: all 0.5s;
}

.notifications-content .list .li.cur .mk::after,
.notifications-content .list .li:hover .mk::after {
    opacity: 1;
}

.notifications-detail {
    border-radius: 35px;
    background: #fff;
    padding: 55px 20px 80px 20px;
}

.notifications-detail .h {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 18px;
    font-weight: bold;
}

.notifications-detail .t {
    font-size: 14px;
    line-height: 20px;
    color: #C8C8C8;
    padding-bottom: 35px;
    margin-bottom: 30px;
    border-bottom: 1px solid #C8C8C8;
}

.notifications-detail .ps,
.notifications-detail .ps p {
    font-size: 16px;
    line-height: 24px;
}

.notifications-detail .ps img {
    display: block;
    max-width: 100%;
}

.notifications-detail .pdf-viewer {
    max-height: 700px;
    min-height: 400px;
    overflow: auto;
    text-align: center;
}

.notifications-detail .pdf-viewer canvas {
    max-width: 100% !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .notifications-detail {
        padding: 16px 16px 60px 16px;
    }
    .notifications-detail .h {
        font-size: 16px;
        line-height: 24px;
    }
}

.route-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    height: 34px;
    padding: 0 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.switch-direction-btn {
    background-color: #3b82f6;
}

.switch-direction-btn:hover {
    background-color: #2563eb;
}

.service-time-btn {
    background-color: #10b981;
}

.service-time-btn:hover {
    background-color: #059669;
}

.action-btn:active {
    transform: scale(0.98);
}

.stops-count {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.stops-number {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.stops-note {
    font-size: 13px;
    color: #dc2626;
    font-weight: 500;
}

.route-stops {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stop-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stop-card:hover {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.stop-card.expanded {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px 0 rgba(59, 130, 246, 0.15);
}

.stop-content {
    padding: 0;
}

.stop-row {
    display: flex;
    align-items: center;
}

.stop-dot-container {
    width: 32px;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    flex-shrink: 0;
}

.stop-dot-small {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #22c55e;
    flex-shrink: 0;
}

.stop-info {
    flex: 1;
    padding: 10px 20px 10px 0;
    min-width: 0;
    overflow: hidden;
}

.stop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.stop-name {
    font-size: 15px;
    color: #111827;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.stop-name.delayed {
    color: #dc2626;
}

.stop-chevron {
    width: 16px;
    height: 16px;
    color: #9ca3af;
}

.stop-details {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #22c55e;
}

.stop-detail {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    padding: 12px 0;
    box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    font-size: 12px;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 4px;
}

.nav-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.nav-btn.active {
    color: #3b82f6;
    background-color: #eff6ff;
}

.nav-btn i {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}

.notifications-list {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.notification-card:hover {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.notification-content {
    padding: 20px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    flex: 1;
    margin-right: 12px;
    margin: 0;
}

.notification-date {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
    flex-shrink: 0;
}

.notification-summary {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 1024px) {
    .notification-title {
        font-size: 18px;
    }
    
    .notification-summary {
        font-size: 15px;
    }
    
    .notification-date {
        font-size: 13px;
    }
}



.contact-content {
    padding: 16px;
}

@media (min-width: 1024px) {
    .contact-content {
        padding: 24px;
    }
}

.contact-container {
    max-width: 64rem;
    margin: 0 auto;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 20px;
        margin-bottom: 32px;
    }
}

.contact-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.contact-list {
    margin: 0;
    padding: 0;
}

.contact-list dt {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    padding: 16px 16px 8px 16px;
    margin: 0;
    border-bottom: 1px solid #f3f4f6;
}

.contact-list dd {
    margin: 0;
    padding: 8px 16px 16px 16px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.contact-list dd a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-list dd a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-list dd:last-child {
    border-bottom: none;
}

/* 工具类 */
.hidden {
    display: none !important;
}

.fade-simple {
    opacity: 1;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(0);
}

.fade-simple-enter {
    opacity: 1;
    transform: translateY(0);
}

.fade-simple-leave {
    opacity: 0;
    transform: translateY(-10px);
}