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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
    padding-bottom: 70px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

.header p {
    font-size: 1rem;
    color: #2d2d44;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 1px;
}

.card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.price-table th {
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    color: #1a1a2e;
    padding: 14px 10px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.price-table td {
    padding: 14px 10px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.95rem;
    color: #2d2d44;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: linear-gradient(90deg, #fff9e6 0%, #ffffff 100%);
}

.price-table .price-cell {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.price-table .unit-cell {
    color: #666;
    font-size: 0.9rem;
}

.price-table .icon {
    font-size: 1.6rem;
    margin-right: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.result {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #d4af37;
    display: none;
}

.result.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #2d2d44;
}

.result-row:last-child {
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 2px solid #d4af37;
    font-weight: 700;
    font-size: 1.4rem;
    color: #d4af37;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #999;
}

.error {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    color: #c33;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c33;
}

/* BANNER广告位 */
.banner {
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.banner:hover::before {
    left: 100%;
}

.banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 1rem;
    color: #2d2d44;
    font-weight: 500;
}

.banner-icon {
    font-size: 3rem;
    margin-left: 20px;
}

/* 底部导航栏 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    border-top: 2px solid #d4af37;
}

.nav-items {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    max-width: 800px;
    margin: 0 auto;
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 4px;
}

.nav-item:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.nav-item.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
}

.nav-item .icon {
    font-size: 1.8rem;
    margin-bottom: 4px;
    display: block;
}

.nav-item .label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 新闻列表样式 */
.news-item {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: linear-gradient(90deg, #fff9e6 0%, #ffffff 100%);
    transform: translateX(4px);
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-summary {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.news-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

/* 登录按钮样式 */
.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

/* 服务卡片样式 */
.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: linear-gradient(90deg, #fff9e6 0%, #ffffff 100%);
}

.service-item .icon {
    font-size: 2rem;
    margin-right: 16px;
}

.service-item .content {
    flex: 1;
}

.service-item .title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.service-item .description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-item .btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.service-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.service-item .btn.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-item .btn.douyin {
    background: linear-gradient(135deg, #fe2c55 0%, #ff6b6b 100%);
    color: white;
}

/* 服务时间卡片 */
.service-hours {
    background: linear-gradient(135deg, #d4af37 0%, #f9d776 50%, #d4af37 100%);
    color: #1a1a2e;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.service-hours h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-hours p {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

/* 常见问题样式 */
.faq-item {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item .question {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.faq-item .answer {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}
