/* 预约表格服务样式 */
.booking-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('/pc_static/images/header-bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 50px 0;
    /* overflow: hidden; */

    height: 570px;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.booking-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.booking-title {
    color: #1a1a1a;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    z-index: 1;
    position: relative;
}

.booking-title h1 {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.booking-form-wrapper {
    flex: 1;
    max-width: 470px;
    z-index: 3;
}

.booking-form {
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 9;
    position: relative;
}

/* 标签页样式 */
.form-tabs {
    display: flex;
    margin-bottom: 0;
    background: #f8f9fa;
    border-radius: 4px 4px 0 0;
}

.tab-btn {
    flex: 1;
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: none;
    position: relative;
    height: 50px;
    line-height: 20px;
}

.tab-btn:first-child {
    border-radius: 8px 0 0 0;
}

.tab-btn:last-child {
    border-radius: 0 8px 0 0;
}

.tab-btn:hover {
    color: #333;
    background: #ffffff;
}

.tab-btn.active {
    color: #1a1a1a;
    background: #fff;
    font-weight: 600;
}

/* 表单内容 */
.form-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px 20px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.departure-date-group {
    position: relative;
    z-index: 2;
}

.pick-up-group {
    position: relative;
    z-index: 1;
}

.duration-group {
    position: relative;
    z-index: 3;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 2px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 10px;
    color: #999;
    font-size: 14px;
    z-index: 2;
    top: 52%;
    transform: translateY(-50%);
}

.input-wrapper input {
    width: 100%;
    padding: 8px 10px 8px 30px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    height: 43px;
    line-height: 20px;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.input-wrapper.focused {
    transform: translateY(-1px);
}

.input-wrapper.focused i {
    color: #1a1a1a;
}

.input-wrapper .arrow-icon {
    position: absolute;
    right: 10px;
    left: auto;
    cursor: pointer;
    color: #999;
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* 信息提示 */
.form-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 12px;
}

.form-info i {
    color: #999;
    font-size: 12px;
}

/* 提交按钮 */
.submit-btn {
    width: 100%;
    padding: 1px 16px;
    background: linear-gradient(135deg, #ffcf70 0%, #ffcf70 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    height: 40px;
    line-height: 16px;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

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

/* 响应式设计 */
@media (max-width: 1024px) {
    .booking-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .booking-title h1 {
        font-size: 36px;
    }

    .booking-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
        min-height: auto;
    }

    .booking-title h1 {
        font-size: 28px;
    }

    .booking-form {
        padding: 20px;
        margin: 0 10px;
    }

    .form-tabs {
        flex-direction: column;
        gap: 0;
    }

    .tab-btn {
        border-bottom: 1px solid #e9ecef;
        border-radius: 0;
    }

    .tab-btn:first-child {
        border-radius: 8px 8px 0 0;
    }

    .tab-btn:last-child {
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 480px) {
    .booking-container {
        padding: 0 15px;
    }

    .booking-form {
        padding: 15px;
        margin: 0 5px;
    }

    .input-wrapper input {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* 日期选择器样式 */
#date-picker-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
}

/* 自定义layui日期选择器样式 */
.laydate-theme-molv .layui-laydate {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.laydate-theme-molv .layui-laydate-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 8px 8px 0 0;
}

.laydate-theme-molv .layui-laydate-header i {
    color: #1a1a1a;
}

.laydate-theme-molv .layui-laydate-header .layui-laydate-main {
    color: #1a1a1a;
    font-weight: 500;
}

.laydate-theme-molv .layui-laydate-content {
    background: #fff;
}

.laydate-theme-molv .layui-laydate-content th {
    color: #666;
    font-weight: 500;
}

.laydate-theme-molv .layui-laydate-content td {
    color: #333;
}

.laydate-theme-molv .layui-laydate-content td:hover {
    background: #f0f0f0;
}

.laydate-theme-molv .layui-laydate-content .laydate-selected {
    background: #1a1a1a !important;
    color: #fff !important;
}

.laydate-theme-molv .layui-laydate-content .laydate-selected:hover {
    background: #333 !important;
}

.laydate-theme-molv .layui-laydate-footer {
    background: #f8f9fa;
    border-top: 1px solid #e6e6e6;
    border-radius: 0 0 8px 8px;
}

.laydate-theme-molv .layui-laydate-footer .layui-laydate-btn {
    color: #1a1a1a;
}

.laydate-theme-molv .layui-laydate-footer .layui-laydate-btn:hover {
    background: #e6e6e6;
}

/* 时间选择器样式 */
.laydate-theme-molv .layui-laydate-time {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.laydate-theme-molv .layui-laydate-time .layui-laydate-content {
    background: #fff;
}

.laydate-theme-molv .layui-laydate-time .layui-laydate-content .laydate-time-list li {
    color: #333;
}

.laydate-theme-molv .layui-laydate-time .layui-laydate-content .laydate-time-list li:hover {
    background: #f0f0f0;
}

.laydate-theme-molv .layui-laydate-time .layui-laydate-content .laydate-time-list .laydate-time-this {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* 自定义日期选择器样式 */
.custom-date-picker {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: 16px;
    width: 100%;
}

.date-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.prev-month,
.next-month {
    width: 32px;
    height: 32px;
    border: none;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.prev-month:hover,
.next-month:hover {
    background: #e6e6e6;
    color: #333;
}

.current-month {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 8px;
}

.weekday {
    text-align: center;
    font-size: 13px;
    color: #999;
    padding: 8px 4px;
    font-weight: 500;
}

.date-picker-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.date-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
    color: #666;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 auto;
}

.date-item:hover {
    background: #f0f0f0;
    color: #333;
}

.date-item.today {
    color: #333;
    font-weight: 500;
}

.date-item.today::after{
    width: 2px;
    height: 2px;
    background-color: #1a1a1a;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.date-item.selected {
    background: #1a1a1a !important;
    color: #fff !important;
    font-weight: 500;
}

.date-item.selected:hover {
    background: #333 !important;
}

.date-item.other-month {
    color: #ccc;
    cursor: default;
}

.date-item.other-month:hover {
    background: transparent;
    color: #ccc;
}

/* 過去日期或超出 limit_days 的日期：不可點擊、灰色樣式 */
.date-item.past,
.date-item.beyond-limit {
    color: #bbb;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}
.date-item.past:hover,
.date-item.beyond-limit:hover {
    background: transparent;
    color: #bbb;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .custom-date-picker {
        width: 260px;
        padding: 12px;
    }

    .date-item {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .prev-month,
    .next-month {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* 自定义时间选择器样式 */
.custom-time-picker {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
}

.time-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e6e6e6;
}

.time-picker-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.time-picker-title i {
    color: #666;
    font-size: 16px;
}

.current-time {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.close-time-picker {
    cursor: pointer;
    color: #999;
    font-size: 16px;
    transition: color 0.2s ease;
}

.close-time-picker:hover {
    color: #333;
}

.time-picker-content {
    display: flex;
    height: 200px;
}

.time-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
}

.time-column:last-child {
    border-right: none;
}

.time-column-header {
    padding: 10px 12px;
    background: #f8f9fa;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
}

.time-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.time-item {
    padding: 8px 12px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.2s ease;
    position: relative;
}

.time-item:hover {
    background: #f0f0f0;
    color: #333;
}

.time-item.selected {
    background: #f0f0f0;
    color: #1a1a1a;
    font-weight: 500;
}

.time-picker-footer {
    padding: 16px;
    background: #f8f9fa;
    border-top: 1px solid #e6e6e6;
}

.confirm-time-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffcf70 0%, #ffcf70 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.confirm-time-btn:hover {
    transform: translateY(-1px);
}

.confirm-time-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* 滚动条样式 */
.time-list::-webkit-scrollbar {
    width: 4px;
}

.time-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.time-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.time-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .custom-time-picker {
        max-width: 280px;
    }

    .time-picker-content {
        height: 180px;
    }

    .time-item {
        padding: 6px 8px;
        font-size: 13px;
    }

    .confirm-time-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* 自定义时长选择器样式 */
.custom-duration-picker {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.duration-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e6e6e6;
}

.duration-picker-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.duration-picker-title i {
    color: #666;
    font-size: 16px;
}

.current-duration {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.close-duration-picker {
    cursor: pointer;
    color: #999;
    font-size: 16px;
    transition: color 0.2s ease;
}

.close-duration-picker:hover {
    color: #333;
}

.duration-picker-content {
    max-height: 200px;
    overflow-y: auto;
}

.duration-list {
    padding: 8px 0;
}

.duration-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.duration-item:hover {
    background: #f0f0f0;
    color: #333;
}

.duration-item.selected {
    background: #f0f0f0;
    color: #1a1a1a;
    font-weight: 500;
}

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

.duration-picker-footer {
    padding: 16px;
    background: #f8f9fa;
    border-top: 1px solid #e6e6e6;
}

.confirm-duration-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffcf70 0%, #ffcf70 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.confirm-duration-btn:hover {
    transform: translateY(-1px);
}

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


/* 我們的服务模块样式 */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.services-carousel {
    position: relative;
}

.services-swiper {
    padding: 20px 0 20px 0;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    /* 设置最小高度确保一致性 */
}

.service-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.new-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ff4757;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    justify-content: space-between;
    /* 让内容在垂直方向上分布 */
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    min-height: 72px;
    /* 设置描述文字的最小高度 */
    display: flex;
    align-items: flex-start;
}

.service-btn {
    display: inline-block;
    color: #1a1a1a;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    margin-top: auto;
    /* 将按钮推到底部 */
    align-self: flex-start;
    /* 按钮左对齐 */
}

.service-btn:hover {
    color: #ffcf70;
    text-decoration: none;
}

/* 轮播控制按钮样式 */
.services-next,
.services-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-next {
    right: -80px;
}

.services-prev {
    left: -80px;
}

.services-next:hover,
.services-prev:hover {
    background: #ffcf70;
    transform: scale(1.1);
}

.services-next::after,
.services-prev::after {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.services-next:hover::after,
.services-prev:hover::after {
    color: #1a1a1a;
}

/* 轮播指示器样式 */
.services-pagination {
    bottom: 0px !important;
}

.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    background: #ffcf70;
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .services-header h2 {
        font-size: 32px;
    }

    .services-header p {
        font-size: 16px;
    }

    .service-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 14px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 13px;
    }

    .services-next,
    .services-prev {
        width: 40px;
        height: 40px;
    }

    .services-next::after,
    .services-prev::after {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 24px;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 16px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 12px;
    }

    .service-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 特色服务卡片区域样式 */
.features-section {
    padding: 120px 0;
    background: #1a1a1a;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: left;

    display: flex;
    flex-direction: column;
}

/* .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffcf70;
    transform: scaleX(0);
    transition: transform 0.3s ease;
} */

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);

    /* background-color: #fff; */
}
/* 
.feature-card:hover h3,.feature-card:hover p{
    color: #000;
} */


.feature-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.feature-icon h3 {
    color: #fff;
    font-size: 20px;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.feature-icon svg path {
    fill: #ffcf70;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 72px;
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    flex: 1;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-content h3 {
        font-size: 20px;
    }

    .feature-content p {
        font-size: 14px;
    }
}



/* 常見問題模塊樣式 */
.faq-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 207, 112, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 207, 112, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    position: relative;
}

/* .faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
} */

.faq-header p {
    font-size: 18px;
    color: var(--light-text);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-categories {
    margin-bottom: 40px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tabs .tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: #ffffff;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.category-tabs .tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 207, 112, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-tabs .tab-btn:hover::before {
    left: 100%;
}

.category-tabs .tab-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.2);
}

.category-tabs .tab-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.faq-content {
    /* max-width: 800px; */
    margin: 0 auto;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-item {
    width: 48%;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

/* .faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
} */

.faq-question:hover {
    background: rgba(255, 207, 112, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer>p {
    margin-bottom: 10px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.faq-answer ul {
    margin: 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li::before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* 搜索结果弹框样式 */
.form-group {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    animation: fadeInDown 0.3s ease-out;
}

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

.suggestions-list {
    padding: 4px 0;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

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

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item.no-results {
    color: #999;
    cursor: default;
    justify-content: center;
    padding: 12px;
}

.suggestion-item.no-results:hover {
    background-color: transparent;
}

.suggestion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.suggestion-icon svg {
    width: 20px;
    height: 20px;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.suggestion-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    word-break: break-word;
}

.suggestion-address {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
    word-break: break-word;
}

/* 滚动条样式 */
.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* layui layer 搜索结果弹框自定义样式 */
.layui-layer-nobg {
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e6e6e6 !important;
    background: #fff !important;
    padding: 0 !important;
}

.layui-layer-nobg .layui-layer-content {
    padding: 4px 0 !important;
    background: #fff !important;
}

.layui-layer-nobg .suggestions-list {
    max-height: 300px;
    overflow-y: auto;
}

.layui-layer-nobg .suggestions-list::-webkit-scrollbar {
    width: 6px;
}

.layui-layer-nobg .suggestions-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.layui-layer-nobg .suggestions-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.layui-layer-nobg .suggestions-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}