* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    color: #333;
    background: linear-gradient(180deg, #fefefe 0%, #f8f9fa 100%);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

html {
    width: 100%;
    overflow-x: hidden;
}
a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #e74c3c;
    transform: translateX(3px);
}
ul {
    list-style: none;
}

.top-gradient {
    height: 5px;
    background: linear-gradient(90deg, #c0392b, #e74c3c, #c0392b);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.top-bar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left a {
    color: #bdc3c7;
    margin-right: 20px;
    font-size: 13px;
}
.top-bar-left a:hover {
    color: #fff;
}
.top-bar-right a {
    color: #fff;
    margin-left: 15px;
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
}
.top-bar-right a:hover {
    background: #e74c3c;
    transform: none;
}

.header {
    background: #fff;
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-main {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}
.logo-text h1 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.logo-text p {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-top: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.logo-text p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
    border-radius: 2px;
}
.search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-box {
    position: relative;
}
.search-box input {
    width: 320px;
    height: 48px;
    padding: 0 50px 0 20px;
    border: 2px solid #ecf0f1;
    border-radius: 50px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}
.search-box input:focus {
    outline: none;
    border-color: #e74c3c;
    background: #fff;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.15);
}
.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-box button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.nav-wrap {
    background: #fff;
    border-bottom: 1px solid #ecf0f1;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5px;
}
.nav-item {
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-item:hover {
    color: #e74c3c;
    background: #fff5f5;
}
.nav-item.active {
    color: #e74c3c;
}
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    border-radius: 3px 3px 0 0;
}

.nav-toggle {
    display: none;
}

.icon-nav-wrap {
    display: none;
    background: #fff;
    padding: 20px 15px;
    border-bottom: 1px solid #ecf0f1;
}
.icon-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 100%;
}
.icon-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.icon-nav-item:hover {
    transform: translateY(-3px);
}
.icon-nav-item:active {
    transform: scale(0.95);
}
.icon-nav-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
.icon-nav-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.icon-nav-icon.blue {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}
.icon-nav-icon.red {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}
.icon-nav-icon.grey {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
}
.icon-nav-icon.dark {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}
.icon-nav-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}
.icon-nav-text {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    width: 100%;
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.bottom-nav-item:active {
    transform: scale(0.95);
}
.bottom-nav-icon {
    font-size: 24px;
    color: #7f8c8d;
    transition: all 0.3s ease;
}
.bottom-nav-item.active .bottom-nav-icon {
    color: #e74c3c;
}
.bottom-nav-text {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
}
.bottom-nav-item.active .bottom-nav-text {
    color: #e74c3c;
}
.bottom-nav-badge {
    position: absolute;
    top: 0;
    right: 8px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* 旧的modal-overlay定义已移除以避免冲突 */
.modal-container {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideUp 0.3s ease;
}
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    padding: 20px;
    position: relative;
}
.modal-header-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
.modal-header-subtitle {
    font-size: 14px;
    text-align: center;
    opacity: 0.9;
    margin-top: 5px;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}
.modal-body {
    padding: 20px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
}

.ranking-date {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}
.ranking-title {
    font-size: 22px;
    color: #3498db;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.ranking-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.ranking-table th,
.ranking-table td {
    border: 1px solid #e0e0e0;
    padding: 15px 10px;
    text-align: center;
    font-size: 16px;
}
.ranking-table th {
    background: #fafafa;
    font-weight: 600;
    color: #333;
}
.rank-1 {
    background: linear-gradient(135deg, #ffd700, #ffec8b);
}
.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}
.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #daa06d);
}
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}
.rank-1 .rank-badge {
    background: #ffd700;
    color: #fff;
}
.rank-2 .rank-badge {
    background: #c0c0c0;
    color: #fff;
}
.rank-3 .rank-badge {
    background: #cd7f32;
    color: #fff;
}
.rate-high {
    color: #27ae60;
    font-weight: 600;
}

.department-section-title {
    font-size: 20px;
    color: #3498db;
    font-weight: 600;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.department-section-title::before {
    content: '';
    width: 6px;
    height: 24px;
    background: #3498db;
    border-radius: 3px;
}
.department-group-title {
    font-size: 22px;
    color: #3498db;
    text-align: center;
    margin: 20px 0;
    font-weight: 600;
}
.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.department-item {
    background: #f5f5f5;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #333;
}
.department-item:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.message-detail-id {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.message-detail-id .id-text {
    font-size: 16px;
    color: #333;
}
.copy-link {
    color: #3498db;
    cursor: pointer;
    font-size: 14px;
}
.copy-link:hover {
    text-decoration: underline;
}
.message-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 15px 0;
    line-height: 1.4;
}
.message-detail-title .highlight {
    background: #f1c40f;
    padding: 2px 5px;
}
.message-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    flex-wrap: wrap;
}
.message-detail-meta i {
    margin-right: 5px;
}
.message-detail-content {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}
.reply-box {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.reply-dept {
    font-size: 18px;
    font-weight: 600;
}
.reply-time {
    font-size: 16px;
}
.reply-content {
    font-size: 17px;
    line-height: 1.8;
}
.reply-content p {
    margin-bottom: 15px;
}
.reply-content a {
    color: #f1c40f;
    text-decoration: underline;
}

.main-container {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-right {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner {
    max-width: 1200px;
    margin: 0 auto;
    height: 360px;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(192, 57, 43, 0.3);
}
.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.banner-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.banner-content p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}
.banner-btn {
    display: inline-block;
    padding: 15px 45px;
    background: #fff;
    color: #c0392b;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.banner-stats {
    position: absolute;
    bottom: 20px;
    right: 25px;
    background: rgba(255,255,255,0.95);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.banner-stats span {
    margin-left: 20px;
    font-size: 14px;
    color: #555;
}
.banner-stats span:first-child {
    margin-left: 0;
}
.banner-stats strong {
    color: #c0392b;
    font-size: 22px;
    font-weight: 800;
}

.banner-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #194d9a 50%, #1e40af 100%);
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.3);
}
.banner-blue .banner-btn {
    color: #1e40af;
}
.banner-blue .banner-stats strong {
    color: #1e40af;
}

.stats-cards {
    max-width: 1200px;
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.stat-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.stat-card .num {
    font-size: 26px;
    font-weight: 800;
    color: #333;
}
.stat-card .label {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 3px;
}

.section-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.section-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #c0392b, #e74c3c);
    border-radius: 2px;
}
.section-more {
    color: #999;
    font-size: 14px;
}
.section-more:hover {
    color: #e74c3c;
}
.hot-list {
    padding: 20px 25px;
}
.hot-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.hot-item:hover {
    padding-left: 10px;
}
.hot-item .tag {
    min-width: 28px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}
.hot-item:nth-child(2) .tag,
.hot-item:nth-child(3) .tag {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
}
.hot-item:nth-child(n+4) .tag {
    background: #bdc3c7;
}
.hot-item a {
    flex: 1;
    font-size: 15px;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hot-item a:hover {
    color: #e74c3c;
    transform: none;
}

.steps-box {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #ffe0e0;
}
.steps-title {
    font-size: 18px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 20px;
    text-align: center;
}
.steps-list {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.step-item {
    flex: 1;
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.step-item:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
}
.step-item .num {
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}
.step-item .text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.step-item .desc {
    font-size: 13px;
    color: #7f8c8d;
}

.reply-list {
    padding: 20px 25px;
}
.reply-item {
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}
.reply-item:last-child {
    margin-bottom: 0;
}
.reply-item:hover {
    background: #fff5f5;
    transform: translateX(5px);
}
.reply-leader {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.reply-leader .badge {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}
.reply-leader span {
    color: #555;
    font-weight: 500;
}
.reply-item h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}
.reply-item p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

.msg-btn-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.msg-btn-main {
    display: block;
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.msg-btn-main:hover {
    background: linear-gradient(135deg, #a93226, #c0392b);
    transform: none;
}
.msg-btn-main i {
    margin-right: 10px;
    font-size: 26px;
}
.msg-btn-sub {
    display: block;
    padding: 23px;
    text-align: center;
    color: #e74c3c;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
}
.msg-btn-sub:hover {
    background: #fff5f5;
}
.msg-btn-sub.disabled {
    color: #999;
    cursor: not-allowed;
    background: #f5f5f5;
}
.msg-btn-sub.disabled:hover {
    background: #f5f5f5;
}

.query-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 25px;
}
.query-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.query-title i {
    color: #e74c3c;
}
.query-box input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.query-box input:focus {
    outline: none;
    border-color: #e74c3c;
}
.query-box button {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.query-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.35);
}

.live-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.live-header {
    padding: 18px 22px;
    background: linear-gradient(135deg, #fff5f5, #fff);
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.live-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}
.live-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}
.live-header select {
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}
.live-list {
    padding: 15px 20px;
    height: 435px;
    overflow-y: auto;
}
.live-item {
    padding: 15px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: all 0.3s ease;
}
.live-item:last-child {
    border-bottom: none;
}
.live-item:hover {
    padding-left: 10px;
}
.live-item p {
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
    line-height: 1.5;
}
.live-item span {
    font-size: 12px;
    color: #999;
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 0 30px;
    margin-top: 50px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #bdc3c7;
}
.footer-links {
    margin-bottom: 25px;
}
.footer-links a {
    color: #bdc3c7;
    margin: 0 15px;
    font-size: 14px;
}
.footer-links a:hover {
    color: #fff;
    transform: none;
}
.footer-inner p {
    line-height: 2.2;
    font-size: 14px;
}
.footer-contact {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: inline-block;
}
.footer-contact strong {
    color: #fff;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 15px 8px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-overlay.show {
    display: flex;
}
.modal {
    background: #fff;
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
    min-height: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(0);
}

/* 进度查询结果弹窗专门样式 */
#queryResultModal .modal {
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
}

#queryResultModal .modal-header {
    flex-shrink: 0;
}

#queryResultModal .progress-result {
    flex: 1;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.announcement-modal {
    background: #fff;
    width: 90%;
    max-width: 450px;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
}
@keyframes bounceIn {
    0% { transform: scale(0.3) translateY(-50px); opacity: 0; }
    30% { transform: scale(1.05) translateY(10px); }
    50% { transform: scale(0.9) translateY(-5px); }
    70% { transform: scale(1.02) translateY(3px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.announcement-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.announcement-header .title {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.announcement-header .title i {
    font-size: 22px;
}
.announcement-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.announcement-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}
.announcement-body {
    padding: 25px;
}
.announcement-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    white-space: pre-wrap;
}
.announcement-time {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
    font-size: 13px;
    color: #999;
    text-align: right;
}
.announcement-footer {
    padding: 0 25px 25px 25px;
}
.btn-confirm {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.footer-qrcode {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    text-align: left;
}
.qrcode-wrapper {
    flex-shrink: 0;
}
.qrcode-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
}
.qrcode-info {
    color: #fff;
}
.qrcode-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.qrcode-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}
.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa, #fff);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}
.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}
.modal-close:hover {
    background: #e74c3c;
    color: #fff;
    transform: rotate(90deg);
}
.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}
.modal-body {
    padding: 30px;
    flex: 1;
    max-height: calc(90vh - 150px);
    overflow-y: auto;
    overflow-x: hidden;
}
.form-group {
    margin-bottom: 22px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 15px;
}
.form-label .required {
    color: #e74c3c;
    margin-right: 4px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}
.form-textarea {
    resize: vertical;
    min-height: 140px;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex: 1;
}
.sms-group {
    display: flex;
    gap: 12px;
}
.sms-group input {
    flex: 1;
}
.sms-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.sms-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}
.sms-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.modal-footer {
    padding: 25px 30px;
    border-top: 1px solid #f0f0f0;
    text-align: right;
    background: #fafafa;
}
.btn {
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.35);
}
.btn-default {
    background: #ecf0f1;
    color: #666;
    margin-right: 10px;
}
.btn-default:hover {
    background: #bdc3c7;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.45);
    background: linear-gradient(135deg, #a93226, #c0392b);
}

.progress-result {
    padding: 10px;
    flex: 1;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}
.progress-header {
    padding: 25px;
    background: linear-gradient(135deg, #fff5f5, #fff);
    border-left: 5px solid #e74c3c;
    border-radius: 0 12px 12px 0;
    margin-bottom: 25px;
}
.progress-header h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}
.progress-info {
    display: flex;
    gap: 25px;
    color: #666;
    font-size: 14px;
    flex-wrap: wrap;
}
.progress-timeline {
    position: relative;
    padding-left: 35px;
}
.timeline-item {
    position: relative;
    padding-bottom: 30px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -35px;
    top: 0;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #ffe0e0;
}
.timeline-line {
    position: absolute;
    left: -27px;
    top: 22px;
    bottom: 0;
    width: 2px;
    background: #ecf0f1;
}
.timeline-item:last-child .timeline-line {
    display: none;
}
.timeline-status {
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
    font-size: 16px;
}
.timeline-content {
    color: #555;
    margin-bottom: 6px;
    line-height: 1.7;
}
.timeline-time {
    font-size: 13px;
    color: #999;
}

.rating-group {
    display: flex;
    gap: 20px;
    align-items: center;
}
.rating-stars {
    display: flex;
    gap: 8px;
}
.rating-stars i {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}
.rating-stars i:hover {
    transform: scale(1.2);
}
.rating-stars i.active, .rating-stars i:hover {
    color: #f39c12;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}
.rating-text {
    color: #666;
    font-size: 15px;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c0392b, #e74c3c);
    border-radius: 4px;
}

.input-with-btn {
    display: flex;
    gap: 10px;
}
.input-with-btn input {
    flex: 1;
}
.input-with-btn button {
    white-space: nowrap;
}
.upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.upload-area:hover {
    border-color: #e74c3c;
    background: #fff5f5;
}
.upload-area i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 10px;
    display: block;
}
.tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: #f8f9fa;
}
.tabs .tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}
.tabs .tab:hover {
    background: #fff;
}
.tabs .tab.active {
    background: #fff;
    color: #e74c3c;
    border-bottom: 2px solid #e74c3c;
    margin-bottom: -2px;
}
.list-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.list-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}
.list-item .list-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.list-item .list-desc {
    font-size: 13px;
    color: #999;
}
.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .top-bar-inner,
    .header-inner,
    .main-container,
    .banner,
    .stats-cards,
    .steps-box,
    .footer-inner {
        max-width: 95%;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .top-bar {
        padding: 6px 0;
    }
    .top-bar-inner {
        flex-direction: row;
        gap: 0;
        text-align: left;
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
        justify-content: space-between;
    }
    .top-bar-left {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        flex: 1;
    }
    .top-bar-left a {
        margin: 0;
        font-size: 12px;
        white-space: nowrap;
    }
    .top-bar-left a:nth-child(n+2) {
        display: none;
    }
    .top-bar-right {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 8px;
    }
    .top-bar-right a {
        margin: 0;
        font-size: 12px;
        padding: 5px 12px;
        white-space: nowrap;
    }
    
    .header {
        padding: 12px 0;
        width: 100%;
    }
    .header-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    .logo-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .logo-main {
        gap: 10px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo-main img {
        max-width: 100%;
        height: 36px !important;
    }
    .logo-text h1 {
        font-size: 22px;
        word-wrap: break-word;
    }
    .logo-text p {
        font-size: 20px;
        font-weight: 900;
        background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #f39c12 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 2px;
        margin-top: 0;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
    }
    
    .logo-text p::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #e74c3c, transparent);
        border-radius: 1px;
    }
    .search-wrap {
        width: 100%;
        max-width: 100%;
    }
    .search-box {
        width: 100%;
    }
    .search-box input {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-wrap {
        display: none;
    }
    
    .footer {
        display: none;
    }
    
    .hide-on-mobile {
        display: none !important;
    }
    
    .icon-nav-wrap {
        display: block;
    }
    .icon-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .icon-nav-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    .icon-nav-text {
        font-size: 12px;
    }
    
    .bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .banner {
        height: auto;
        min-height: 200px;
        margin: 12px auto;
        width: 95%;
        max-width: 100%;
        padding: 20px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-content h2 {
        font-size: 24px;
        word-wrap: break-word;
    }
    .banner-content p {
        font-size: 14px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    .banner-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    .banner-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        background: rgba(255,255,255,0.95);
        padding: 10px 15px;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .banner-stats span {
        margin: 0;
        font-size: 12px;
        word-wrap: break-word;
    }
    .banner-stats strong {
        font-size: 16px;
    }
    
    .stats-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin: 12px auto 0;
        width: 92%;
        max-width: 100%;
        padding: 0;
    }
    .stat-card {
        padding: 15px 10px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .stat-card .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
    .stat-card .num {
        font-size: 20px;
        font-weight: 800;
        word-wrap: break-word;
        margin-top: 6px;
    }
    .stat-card .label {
        font-size: 11px;
        word-wrap: break-word;
        margin-top: 3px;
    }
    
    .main-container {
        flex-direction: column;
        margin: 12px auto;
        gap: 12px;
        width: 95%;
        max-width: 100%;
        padding: 0 10px;
    }
    .content-left,
    .content-right {
        width: 100%;
        max-width: 100%;
    }
    
    .steps-box {
        margin: 12px auto;
        padding: 15px 12px;
        width: 92%;
        max-width: 100%;
        border-radius: 15px;
    }
    .steps-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    .steps-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .step-item {
        padding: 12px 8px;
        width: calc(50% - 4px);
        min-width: 140px;
        box-sizing: border-box;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    }
    .step-item .num {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 15px;
        margin-bottom: 8px;
    }
    .step-item .text {
        font-size: 13px;
        word-wrap: break-word;
        margin-bottom: 3px;
    }
    .step-item .desc {
        font-size: 11px;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .hot-list,
    .reply-list {
        padding: 10px 12px;
        width: 100%;
        box-sizing: border-box;
    }
    .hot-item {
        padding: 6px 0;
        width: 100%;
        box-sizing: border-box;
    }
    .hot-item a {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .reply-item {
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .reply-item h4 {
        font-size: 14px;
        word-wrap: break-word;
    }
    .reply-item p {
        font-size: 12px;
        word-wrap: break-word;
    }
    
    .msg-btn-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .msg-btn-main {
        padding: 18px;
        font-size: 15px;
        word-wrap: break-word;
    }
    .msg-btn-sub {
        padding: 12px;
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .query-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px;
    }
    .query-box input,
    .query-box button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .live-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .live-header {
        padding: 10px 12px;
        width: 100%;
        box-sizing: border-box;
    }
    .live-header h3 {
        font-size: 14px;
        word-wrap: break-word;
    }
    .live-list {
        height: 200px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .live-item {
        width: 100%;
        box-sizing: border-box;
    }
    .live-item p {
        font-size: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer {
        padding: 25px 0 15px;
        margin-top: 25px;
        width: 100%;
    }
    .footer-inner {
        width: 95%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .footer-links {
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .footer-links a {
        margin: 0;
        font-size: 12px;
        display: inline-block;
        white-space: nowrap;
    }
    .footer-inner p {
        font-size: 12px;
        line-height: 1.8;
        word-wrap: break-word;
    }
    .footer-contact {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 15px;
        margin: 15px 0;
    }
    
    .modal {
        width: calc(100% - 16px);
        max-width: 400px;
        max-height: 85vh;
        box-sizing: border-box;
        margin: 8px;
        display: flex;
        flex-direction: column;
    }
    .modal-header {
        padding: 12px 15px;
    }
    .modal-header h3 {
        font-size: 16px;
        word-wrap: break-word;
    }
    .modal-body {
        padding: 12px;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    .form-group {
        width: 100%;
        box-sizing: border-box;
    }
    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .sms-group {
        flex-direction: column;
        gap: 8px;
    }
    .sms-group input,
    .sms-group button {
        width: 100%;
    }
    .modal-footer {
        padding: 12px 15px;
    }
    
    /* 移动端进度查询结果弹窗样式 */
    #queryResultModal .modal {
        width: calc(100% - 16px);
        max-width: 400px;
        max-height: 88vh;
        min-height: auto;
        display: flex;
        flex-direction: column;
        margin: 8px;
    }
    
    #queryResultModal .modal-header {
        flex-shrink: 0;
        padding: 12px 15px;
    }
    
    #queryResultModal .modal-header h3 {
        font-size: 16px;
    }
    
    #queryResultModal .progress-result {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px;
        flex: 1;
        max-height: calc(88vh - 60px);
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .progress-header {
        width: 100%;
        box-sizing: border-box;
        padding: 12px;
    }
    .progress-header h4 {
        font-size: 15px;
        word-wrap: break-word;
    }
    .progress-info {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    .progress-timeline {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .stats-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .stat-card {
        padding: 15px 10px;
    }
    .stat-card .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .stat-card .num {
        font-size: 22px;
    }
    .stat-card .label {
        font-size: 11px;
    }
    
    .step-item {
        width: 100%;
        min-width: auto;
    }
    
    .search-box input {
        width: 100%;
        max-width: 260px;
    }
    
    .banner {
        min-height: 200px;
        padding: 15px 10px;
    }
    .banner-content h2 {
        font-size: 20px;
    }
    .banner-content p {
        font-size: 13px;
    }
    .banner-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .nav-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    .nav-toggle {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 14px;
    }
    
    .live-list {
        height: 250px;
    }
}

.infrastructure-modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
.infrastructure-modal-header h3,
.infrastructure-modal-header .modal-close {
    color: #fff;
}
.infrastructure-btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
.container-wrapper {
    max-width: 1200px;
    margin: 30px auto;
}
.logo-main img {
    height: 60px;
    width: auto;
}
.logo-main .logo-text {
    margin-left: 15px;
}
.banner-btn-link {
    text-decoration: none;
}

/* 横幅区域标题 */
.banner-section-title {
    max-width: 1200px;
    margin: 0 auto 25px auto;
    padding: 0 15px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 2px;
}

/* 横幅卡片容器 */
.banner-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* 横幅卡片 */
.banner-card {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 40px 25px;
    text-align: center;
    position: relative;
}

.banner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 38, 38, 0.1) 100%);
    pointer-events: none;
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
}

/* 卡片图片区域 - 隐藏 */
.banner-card-image {
    display: none;
}

/* 卡片内容区域 */
.banner-card-content {
    padding: 0;
    text-align: center;
    background: transparent;
}

.banner-card-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    letter-spacing: 2px;
}

.banner-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fca5a5 0%, #ef4444 100%);
    border-radius: 3px;
}

.banner-card-content h3 i {
    display: none;
}

.banner-card-content p {
    font-size: 24px;
    color: #6b7280;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* 卡片图标 */
.banner-card-btn {
    display: inline-block;
    font-size: 80px;
    color: #ef4444;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0;
}

.banner-card:hover .banner-card-btn {
    transform: scale(1.1);
    color: #dc2626;
    background: transparent;
    box-shadow: none;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .banner-section-title {
        font-size: 26px;
    }
    
    .banner-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .banner-card {
        padding: 30px 15px;
        border-radius: 16px;
    }
    
    .banner-card-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .banner-card-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .banner-card-btn {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    /* 顶部横幅卡片区域优化 */
    .banner-section-title {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 0;
        letter-spacing: 1px;
    }
    
    .banner-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .banner-card {
        padding: 20px 12px;
        border-radius: 14px;
    }
    
    .banner-card-content h3 {
        font-size: 14px;
        margin-bottom: 12px;
        letter-spacing: 0;
        white-space: nowrap;
    }
    
    .banner-card-content h3::after {
        height: 3px;
        bottom: -5px;
    }
    
    .banner-card-content p {
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 16px;
        word-wrap: break-word;
        word-break: keep-all;
        white-space: normal;
        line-height: 1.5;
    }
    
    .banner-card-btn {
        font-size: 36px;
    }
    
    /* 横幅标题装饰 */
    .banner-section-title {
        position: relative;
        padding-bottom: 20px;
    }
    
    .banner-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #e74c3c, transparent);
        border-radius: 1px;
    }
    
    /* 装饰元素样式 */
    .section-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 15px auto 0;
        max-width: 300px;
    }
    
    .decoration-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, transparent, #e74c3c, transparent);
        border-radius: 1px;
    }
    
    .decoration-dots {
        display: flex;
        gap: 6px;
    }
    
    .decoration-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: linear-gradient(135deg, #c0392b, #e74c3c);
    }
    
    .decoration-dots span:nth-child(2) {
        transform: scale(1.2);
    }
    
    /* 返回顶部按钮位置优化 */
    .back-to-top {
        bottom: 85px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    /* 头部优化 */
    .top-bar {
        padding: 8px 0;
    }
    
    .header {
        padding: 20px 0;
        width: 100%;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .logo-main img {
        max-width: 100%;
        height: 38px !important;
    }
    
    /* 主要内容区域优化 */
    .main-container {
        flex-direction: column;
        margin: 15px auto;
        gap: 15px;
        width: 95%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    /* 统计卡片优化 */
    .stats-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin: 15px auto 0;
        width: 92%;
        max-width: 100%;
        padding: 0;
    }
    
    .stat-card {
        padding: 15px 10px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
    .stat-card .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .stat-card .num {
        font-size: 20px;
        font-weight: 800;
        word-wrap: break-word;
        margin-top: 6px;
    }
    
    .stat-card .label {
        font-size: 11px;
        word-wrap: break-word;
        margin-top: 3px;
    }
}

/* 登录方式切换 */
.login-type-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* 个人中心弹窗样式 */
.personal-center-modal {
    max-width: 650px;
}

.personal-center-body {
    padding: 0;
    flex: 1;
    max-height: calc(90vh - 80px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Tab内容区域 */
.tab-content {
    padding: 20px;
    min-height: 400px;
    overflow-y: auto;
    flex: 1;
    display: none;
}

.tab-content.active {
    display: block;
}

/* 表单分隔线 */
.form-divider {
    margin: 25px 0;
    border: none;
    border-top: 1px solid #e5e5e5;
}

/* 禁用输入框样式 */
.form-input:disabled {
    background: #f5f5f5;
}

/* 人民建议征集弹窗样式 */
.infrastructure-modal {
    max-width: 650px;
}

.infrastructure-modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

.infrastructure-modal-header h3 {
    color: #fff !important;
}

.infrastructure-modal-close {
    color: #fff !important;
}

.infrastructure-modal-close:hover {
    background: rgba(255,255,255,0.2) !important;
}

/* 移动端个人中心弹窗样式 */
@media (max-width: 768px) {
    .personal-center-modal {
        max-width: calc(100% - 16px);
        max-height: 88vh;
    }
    
    .personal-center-body {
        max-height: calc(88vh - 60px);
    }
    
    .tabs .tab {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .tab-content {
        padding: 15px;
        min-height: 300px;
    }
    
    .login-type-switch {
        flex-direction: column;
        gap: 8px;
    }
    
    .login-type-switch .btn {
        width: 100%;
    }
}

