/* 现代化主题 - 紫蓝渐变风格 */

:root {
    --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #FF5E62;
    --warning-color: #FF9800;
    --success-color: #00B09B;
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #f0f0f0;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 3px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 5px 15px rgba(0,0,0,0.1);
}

/* 基础样式 */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
}

/* 头部样式 */
.header {
    background: var(--primary-gradient);
    color: white;
    padding: 10px 15px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.header-title {
    text-align: center;
    padding: 5px 0;
    font-size: 18px;
    font-weight: bold;
}

.header-left, .header-right {
    position: absolute;
    top: 10px;
    font-size: 20px;
}

.header-left {
    left: 15px;
}

.header-right {
    right: 15px;
}

/* 卡片样式 */
.card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 10px;
}

/* 标签样式 */
.tag {
    font-size: 12px;
    color: var(--primary-color);
    background-color: rgba(106, 17, 203, 0.1);
    padding: 2px 8px;
    border-radius: var(--border-radius-lg);
    margin-right: 5px;
    margin-bottom: 5px;
}

/* 按钮样式 */
.btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-accent {
    background: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%);
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    display: flex;
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 100;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-nav-icon {
    font-size: 20px;
    margin-bottom: 3px;
}

.bottom-nav-text {
    font-size: 12px;
}

.active {
    color: var(--primary-color);
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.pagination li {
    list-style: none;
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination li.active span {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 表单元素 */
input, select, textarea {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-lg);
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.1);
}

/* 技师卡片样式 */
.technician-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.technician-card:active {
    transform: translateY(-2px);
}

.technician-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.technician-info {
    padding: 10px;
}

.technician-name {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.star {
    color: var(--warning-color);
    margin-left: 5px;
    font-size: 12px;
}

.technician-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.technician-tags {
    display: flex;
    flex-wrap: wrap;
}

/* 标题栏样式 */
.section-title {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.section-title .more {
    color: var(--primary-color);
    font-size: 14px;
}

/* 选项卡样式 */
.tab-bar {
    display: flex;
    background-color: var(--bg-white);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: var(--primary-color);
    font-weight: bold;
}

.tab-item.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
} 