:root {
    /* 主题色 CSS 变量 - 雪畅冰雪清新风格 */
    --primary-color: #2E86AB; /* 冰川蓝 - 清新稳重 */
    --secondary-color: #5DADE2; /* 天蓝色 - 纯净通透 */
    --accent-color: #AED6F1; /* 冰晶色 - 轻盈柔和 */
    --snow-white: #F0F8FF; /* 雪白色 - 纯净背景 */
    --ice-blue: #85C1E9; /* 冰蓝色 - 点缀强调 */
    --theme-gradient: linear-gradient(135deg, #5DADE2 0%, #2E86AB 100%); /* 冰雪渐变 */
    --theme-gradient-light: linear-gradient(135deg, #F0F8FF 0%, #AED6F1 50%, #85C1E9 100%); /* 浅雪渐变 */
}

* {
    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;
    line-height: 1.6;
    color: #2C3E50;
    background: linear-gradient(180deg, #F0F8FF 0%, #E8F4F8 50%, #F5FAFC 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.header {
    background: var(--theme-gradient);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 14px;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
}

/* 顶部搜索条 */
.search-bar {
    margin-top: 10px;
    width: 1200px;
    text-align: right;
}

.search-bar input[type="text"] {
    flex: 1;
    height: 46px;
    padding: 0 16px;
    border-radius: 23px;
    border: none;
    outline: none;
    font-size: 16px;
    width: 500px;
    color: #333;
}

.search-btn {
    width: 100px;
    height: 46px;
    padding: 0 22px;
    border-radius: 23px;
    background: linear-gradient(135deg, #5DADE2 0%, #2E86AB 100%); /* 冰雪蓝渐变 */
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.35); /* 冰川蓝阴影 */
}

/* 用户操作按钮 */
.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login,
.btn-register {
    padding: 8px 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover,
.btn-register:hover {
    background-color: white;
    color: #2E86AB;
}

/* 搜索中心区域 */
.search-hero {
    background: var(--theme-gradient);
    color: white;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/624015/pexels-photo-624015.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.15;
}

.search-hero .container {
    position: relative;
    z-index: 1;
}

.search-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
}

.search-hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* 主搜索框 */
.main-search-box {
    max-width: 700px;
    margin: 0 auto 25px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.search-icon {
    font-size: 20px;
    padding: 0 15px;
    color: #999;
}

.search-input-wrapper input {
    flex: 1;
    height: 50px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.search-input-wrapper input::placeholder {
    color: #999;
}

.search-btn-main {
    height: 50px;
    padding: 0 35px;
    background: linear-gradient(135deg, #5DADE2 0%, #2E86AB 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.4);
}

/* 热门搜索标签 */
.hot-search-tags {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hot-label {
    font-size: 14px;
    opacity: 0.8;
}

.hot-search-tags a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.hot-search-tags a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* 快速分类入口 */
.quick-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.category-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-icon {
    font-size: 32px;
}

.category-name {
    font-size: 14px;
    font-weight: 500;
}

/* 发布按钮 */
.btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(238, 90, 90, 0.3);
}

.btn-publish span {
    font-size: 20px;
    font-weight: 300;
}

.btn-publish:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 90, 90, 0.4);
}

/* 旧的banner样式保留兼容 */
.banner {
    background: var(--theme-gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.banner-image {
    background-image: url('https://images.pexels.com/photos/624015/pexels-photo-624015.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
}

.banner-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%);
    color: #2E86AB;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

/* 内容区域 */
.featured-section,
.recommended-section,
.latest-section,
.hot-section {
    padding: 60px 0;
}

.latest-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5FAFC 100%);
    border-bottom: 1px solid rgba(174, 214, 241, 0.3);
}

.hot-section {
    background: linear-gradient(180deg, #F0F8FF 0%, #E8F4F8 100%);
}

.featured-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5FAFC 100%);
    border-bottom: 1px solid rgba(174, 214, 241, 0.3);
}

.recommended-section {
    background: linear-gradient(180deg, #F0F8FF 0%, #E8F4F8 100%);
}

/* 区域标题 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    color: #2E86AB;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--theme-gradient);
    border-radius: 2px;
}

.view-more {
    color: #2E86AB;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.view-more:hover {
    gap: 10px;
    color: #1B5E7E;
}

.search-results {
    background-color: #fff;
    padding: 30px 0 10px;
}

.no-results {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2E86AB;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--theme-gradient);
    margin: 15px auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(46, 134, 171, 0.3);
}

/* 卡片网格 */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* 列表布局 - 检索模式 */
.items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-list-card {
    display: flex;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FCFF 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(46, 134, 171, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(174, 214, 241, 0.4);
    height: 140px;
}

.item-list-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.15);
    border-color: rgba(93, 173, 226, 0.5);
}

.item-list-card .item-image {
    width: 180px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #eee;
}

.item-list-card .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.item-list-card:hover .item-image img {
    transform: scale(1.05);
}

.item-list-card .item-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-list-card .item-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-list-card .item-title-section {
    flex: 1;
}

.item-list-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item-list-card .item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.item-list-card .item-price-tag {
    font-size: 18px;
    font-weight: bold;
    color: #E74C3C;
    white-space: nowrap;
    margin-left: 20px;
}

.item-list-card .item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.item-list-card .item-meta-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
}

.item-list-card .item-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.item-list-card .item-category-tag {
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(46, 134, 171, 0.1);
    color: #2E86AB;
    border-radius: 20px;
}

.item-list-card .item-time {
    font-size: 12px;
    color: #aaa;
}

.item-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FCFF 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.08), 0 1px 3px rgba(46, 134, 171, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(174, 214, 241, 0.4);
}

.item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(46, 134, 171, 0.15), 0 4px 8px rgba(46, 134, 171, 0.1);
    border-color: rgba(93, 173, 226, 0.5);
}

.item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #eee;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.item-card:hover .item-image img {
    transform: scale(1.1);
}

.item-content {
    padding: 20px;
}

.item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #2E86AB;  /* 价格使用冰川蓝 */
}

.location {
    font-size: 14px;
    color: #999;
}

.btn-detail {
    width: 100%;
    padding: 12px;
    background: var(--theme-gradient);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-detail:hover {
    opacity: 0.9;
}

/* 栏目页面 */
.category-header {
    background: var(--theme-gradient);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.category-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.category-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* 检索页面布局 */
.search-layout {
    display: flex;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* 筛选侧边栏 */
.filter-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(46, 134, 171, 0.08);
    border: 1px solid rgba(174, 214, 241, 0.4);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(174, 214, 241, 0.3);
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.2s;
}

.filter-option:hover {
    background: rgba(46, 134, 171, 0.05);
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2E86AB;
}

.filter-option span {
    font-size: 14px;
    color: #555;
}

.filter-option .count {
    font-size: 12px;
    color: #999;
    margin-left: auto;
}

/* 价格区间 */
.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.price-range button {
    padding: 8px 15px;
    background: var(--theme-gradient);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

/* 搜索结果区域 */
.search-results-area {
    flex: 1;
    min-width: 0;
}

.search-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(46, 134, 171, 0.08);
    border: 1px solid rgba(174, 214, 241, 0.4);
}

.results-count {
    font-size: 14px;
    color: #666;
}

.results-count strong {
    color: #2E86AB;
}

.sort-options {
    display: flex;
    gap: 5px;
}

.sort-btn {
    padding: 6px 15px;
    font-size: 13px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:hover,
.sort-btn.active {
    background: var(--theme-gradient);
    color: white;
    border-color: #2E86AB;
}

/* 分类内容区域 */
.category-content {
    padding: 30px 0;
    background-color: #f8fafc;
    min-height: calc(100vh - 200px);
}

/* 分类页面专用网格 */
.category-content .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86AB 100%);
    color: white;
    padding: 50px 0 20px;
    border-top: 3px solid rgba(174, 214, 241, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    color: #ecf0f1;
}

.footer-links a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.detail-header {
    margin-bottom: 20px;
}

.detail-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.detail-item {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.detail-item strong {
    display: block;
    color: #2E86AB;
    margin-bottom: 5px;
}

.detail-item span {
    color: #333;
    font-size: 16px;
}

.detail-description {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

.detail-description h3 {
    margin-bottom: 10px;
    color: #333;
}

.detail-description p {
    color: #666;
    line-height: 1.8;
}

.detail-contact {
    background: var(--theme-gradient);
    color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.detail-contact h3 {
    margin-bottom: 15px;
}

.detail-contact p {
    margin: 8px 0;
    font-size: 16px;
}

/* 表单弹窗样式 */
.modal-form {
    max-width: 600px;
}

/* 搜索弹窗样式 */
.modal-search {
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
}

/* 搜索加载中样式 */
.search-loading {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 40px 0;
	color: #666;
}

.search-loading .spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(46, 134, 171, 0.2);  /* 使用冰川蓝作为边框 */
	border-top-color: #2E86AB;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 12px;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.modal-search h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
}

.search-results-container {
    padding: 0;
}

.search-results-container .no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.search-results-container .no-results p {
    font-size: 16px;
    margin: 0;
}

.modal-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
}

.form-container {
    padding: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5DADE2;
    box-shadow: 0 0 0 3px rgba(93, 173, 226, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="file"] {
    padding: 8px;
    border: 2px dashed #ddd;
    background-color: #f9f9f9;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: #5DADE2;
    background-color: #F0F8FF;
}

.form-hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.verify-code-group {
    display: flex;
    gap: 10px;
}

.verify-code-group input {
    flex: 1;
}

.btn-verify {
    padding: 12px 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-verify:hover {
    background: linear-gradient(135deg, #5DADE2 0%, #2E86AB 100%);
    color: white;
    border-color: #2E86AB;
}

.btn-verify:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.radio-label span,
.checkbox-label span {
    font-size: 14px;
    color: #333;
}

.radio-label a,
.checkbox-label a {
    color: #2E86AB;  /* 链接使用冰川蓝 */
    text-decoration: none;
}

.radio-label a:hover,
.checkbox-label a:hover {
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    color: #2E86AB;
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--theme-gradient);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-cancel {
    padding: 12px 30px;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background-color: #e0e0e0;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.form-actions .btn-submit {
    flex: 1;
    margin-top: 0;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-footer p {
    color: #666;
    font-size: 14px;
}

.form-footer a {
    color: #2E86AB;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .user-actions {
        margin-top: 10px;
    }

    .search-hero-content h1 {
        font-size: 28px;
    }

    .search-hero {
        padding: 40px 0 60px;
    }

    .main-search-box {
        padding: 0 15px;
    }

    .search-input-wrapper {
        flex-wrap: wrap;
    }

    .search-input-wrapper input {
        height: 45px;
        font-size: 14px;
    }

    .search-btn-main {
        height: 45px;
        padding: 0 25px;
    }

    .quick-categories {
        gap: 10px;
        padding: 0 10px;
    }

    .category-card {
        padding: 15px 20px;
        min-width: 80px;
    }

    .category-icon {
        font-size: 24px;
    }

    .category-name {
        font-size: 12px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    /* 列表卡片移动端适配 */
    .item-list-card {
        height: auto;
        flex-direction: row;
    }

    .item-list-card .item-image {
        width: 120px;
        height: 100px;
    }

    .item-list-card h3 {
        font-size: 15px;
    }

    .item-list-card .item-desc {
        display: none;
    }

    .item-list-card .item-price-tag {
        font-size: 15px;
    }

    .item-list-card .item-meta-info {
        gap: 10px;
        font-size: 12px;
    }

    /* 筛选侧边栏移动端 */
    .search-layout {
        flex-direction: column;
        padding: 15px;
    }

    .filter-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }

    .filter-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .verify-code-group {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

    .search-bar {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .search-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .sort-options {
        width: 100%;
        overflow-x: auto;
    }
}
