/* 顶部导航栏毛玻璃 */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #f0f0f0;
    height: 54px;
    z-index: 1001;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.page-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}
.top-search-container {
    flex: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 36px;
    position: relative;
}
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(245,245,245,0.85);
    border-radius: 18px;
    padding: 0 12px;
    height: 36px;
    box-sizing: border-box;
    width: 100%;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}
.search-icon {
    color: #999;
    margin-right: 6px;
    font-size: 14px;
}
.search-input {
    border: none;
    background: transparent;
    flex: 1;
    font-size: 14px;
    color: #333;
    outline: none;
    height: 100%;
    line-height: 36px;
    padding: 0;
    margin: 0;
}
.search-input::placeholder {
    color: #999;
}
.message-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    height: 36px;
    border-radius: 18px;
    background: rgba(245,245,245,0.85);
    margin-left: 10px;
    cursor: pointer;
}
.message-icon svg {
    display: block;
}
.news-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 0;
    background: #f7f8fa;
    padding-top: 54px;
    position: relative;
}
.quick-entry-container {
    width: 100%;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    padding: 2px 8px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 2px 0;
    position: relative;
    z-index: 5;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.quick-entry-item {
    flex: 1;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    padding: 6px 7px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.quick-entry-item:active {
    background: rgba(245,245,245,0.95);
}
.quick-entry-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 6px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, #e6f7ff, #1677ff05);
}
.quick-entry-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    background: #f0f0f0;
    position: relative;
    z-index: 2;
}
.quick-entry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 119, 255, 0.1);
    z-index: 1;
    pointer-events: none;
}
.quick-entry-content {
    flex: 1;
}
.quick-entry-title {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    margin-bottom: 1px;
}
.quick-entry-desc {
    font-size: 10px;
    color: #666;
}
.quick-entry-arrow {
    color: #1677ff;
    font-size: 11px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}
.carousel-section {
    width: 100%;
    height: 25vw;
    min-height: 120px;
    max-height: 160px;
    margin: 6px 0;
    padding: 0 8px;
    position: relative;
    z-index: 10;
    overflow: visible;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(245,245,245,0.7);
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}
.carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.carousel-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.scq-featured-container {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 0 8px 8px;
    padding: 8px 6px 6px;
    position: relative;
}
.scq-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.scq-featured-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-left: 10px;
}
.scq-featured-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 15px;
    background: linear-gradient(135deg, #ff4d4f, #ff7875);
    border-radius: 2px;
}
.scq-featured-more {
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.scq-featured-preview {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 2px 5px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    margin: 0;
}
.scq-featured-preview::-webkit-scrollbar {
    display: none;
}
.scq-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 60px;
    position: relative;
    opacity: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    transition: opacity 0.5s;
}
.scq-preview-item.animate-fadein-up {
    opacity: 1;
    animation: fadeInUp 0.5s;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 20px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.scq-preview-rank-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 4px;
}
.scq-preview-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    transition: transform 0.3s ease;
}
.scq-preview-item:active .scq-preview-avatar {
    transform: scale(0.95);
}
.scq-preview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scq-preview-name {
    font-size: 11px;
    color: #333;
    text-align: center;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 2px;
}
.scq-preview-badge {
    position: absolute;
    bottom: 22px;
    right: 0;
    background: linear-gradient(135deg, #ff4d4f, #ff7875);
    color: #fff;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 6px;
    line-height: 1.1;
    z-index: 3;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(255,77,79,0.3);
}
.scq-rank {
    position: absolute;
    top: 2px;
    left: -6px;
    background: #1677ff;
    color: #fff;
    font-size: 9px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 20;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.scq-rank-1 { background: linear-gradient(135deg, #ff4d4f, #ff7875); }
.scq-rank-2 { background: linear-gradient(135deg, #fa8c16, #ffc53d); }
.scq-rank-3 { background: linear-gradient(135deg, #1677ff, #69b1ff); }
.content-area {
    flex: 1;
    position: relative;
    z-index: 1;
    margin-top: 0;
    overflow: visible;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding-bottom: 60px;
}
.calendar-section {
    margin: 0;
    position: relative;
    z-index: 5;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0;
}
.calendar-tabs {
    display: flex;
    background: transparent;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}
.calendar-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-size: 14px;
    color: #333;
    background: transparent;
}
.calendar-tab.active {
    color: #1677ff;
    font-weight: 500;
    background: transparent;
}
.calendar-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #1677ff;
    border-radius: 3px 3px 0 0;
}
.calendar-content {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 2px 8px 2px;
}
.calendar-items {
    display: none;
}
.calendar-items.active {
    display: block;
}
.calendar-item {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    background: rgba(255,255,255,0.8);
    margin-bottom: 1px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
}
.item-image {
    width: 65px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-info {
    flex: 1;
    min-width: 0;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
}
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}
.item-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    max-height: 2.6em;
    white-space: normal;
}
.item-subtitle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-subtitle {
    font-size: 13px;
    color: #666;
    margin: 3px 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.item-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    position: relative;
    top: 0;
}
.item-price {
    font-size: 14px;
    color: #ff4d4f;
    font-weight: 600;
}
.item-time {
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    background-color: #ff4d4f;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}
.item-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.item-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    width: 70px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    background: rgba(22,119,255,0.08);
    color: #1677ff;
    border: 1px solid #1677ff22;
    transition: background 0.2s, color 0.2s;
}
.item-btn:active {
    background: #1677ff;
    color: #fff;
}
.goto-btn, .floor-btn {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
    border-radius: 6px;
    border: 1px solid rgba(22,119,255,0.10);
    box-shadow: 0 1px 3px rgba(22,119,255,0.08);
    color: #1677ff;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.goto-btn {
    background: rgba(22,119,255,0.15);
    color: #1677ff;
}
.goto-btn:active {
    background: #1677ff;
    color: #fff;
}
.floor-btn {
    background: rgba(230,247,255,0.7);
    color: #1677ff;
    border: 1px solid #91CAFF;
}
.floor-btn:active {
    background: #1677ff;
    color: #fff;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.show {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: rgba(255,255,255,0.45);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    width: 80%;
    max-width: 320px;
    padding: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    animation: glassyPop 0.35s cubic-bezier(.4,2,.6,1) both;
}
.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}
@keyframes glassyPop {
    0% { transform: scale(0.85) translateY(40px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.bottom-nav {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255,255,255,0.18);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
}
.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 0;
}
.nav-item.active {
    color: #1677ff;
}
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.search-results-container {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 18px 18px 0 0;
    border: 1px solid rgba(255,255,255,0.18);
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
}
.search-results-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.search-result-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 10px;
    padding: 10px 12px;
    transition: background 0.2s;
}
.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
    background: #f0f0f0;
}
.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}
.search-result-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}
.search-result-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #999;
}
.search-result-price {
    color: #ff4d4f;
    font-weight: 500;
}
.search-result-time {
    background: #1677ff;
    color: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 6px;
} 