/* 公共组件样式 */
.status-bar {
    height: 44px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-bar {
    height: 60px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 12px;
    padding: 8px 0;
}

.nav-item.active {
    color: #4a7dff;
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f5f5f5;
}

.content-container {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 60px;
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 16px;
    margin-bottom: 16px;
}

.btn-primary {
    background-color: #4a7dff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 8px 16px;
    margin: 16px;
}

.search-bar i {
    color: #666;
    margin-right: 8px;
}

.search-input {
    border: none;
    background: transparent;
    flex: 1;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 16px 12px;
}

.weather-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e6f7ff;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 0 16px 16px;
}

.quick-access {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 16px;
}

.quick-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 12px;
}

.quick-access-icon {
    font-size: 24px;
    color: #4a7dff;
    margin-bottom: 8px;
}

.quick-access-text {
    font-size: 12px;
    color: #333;
} 