/* 左侧主内容 */
.main-container {
    flex: 1;
     --primary-color: #e63946; /* 红色logo主色调 */
    --secondary-color: #1d3557; /* 深蓝色辅助色 */
    --text-color: #333; /* 主要文字颜色 */
    --text-secondary: #666;
    --light-text: #666; /* 次要文字颜色 */
    --background-color: #f8f9fa; /* 背景色 */
    --card-color: #fff; /* 卡片背景色 */
    --border-color: #ddd; /* 边框颜色 */
    --success-color: #4caf50; /* 成功色 */
    --warning-color: #ff9800; /* 警告色 */
    --bg-color: #f8f9fa;
    --hover-bg: #fafafa;
    --gradient-primary: linear-gradient(135deg, #cb1212, #ff4d4f);
    --gradient-secondary: linear-gradient(135deg, #1890ff, #40a9ff);
    --gradient-warning: linear-gradient(135deg, #faad14, #ffc53d);
    --gradient-success: linear-gradient(135deg, #52c41a, #73d13d);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.25s ease;
}
header .navbar .nav-link{
	color:#333;
	font-weight:500;
}
header .navbar .nav-link:hover{
	color:var(--primary);
}

.search-section  .search-input-group{
	background:#fff;
	padding:0;
}
.search-section  .search-input-group .bi-search{
	padding-left:16px;
}
.search-section  .search-input-group .button-search{
	background: var(--primary);
    line-height: 30px;
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    width: 80px;
    padding: 7px;
    margin-right:5px;
}

.search-section .search-input{
	padding:16px 0;
}

/* 核心栏目样式 */
.core-section {
   
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

/* 移除左侧红色竖线 */
.core-section::before {
    display: none;
}

.core-title{
	
	font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 12px 0;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.08), transparent);
}

.core-section .section-header {
margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.core-section .section-header h3
{
	font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom:0;
}
.core-section .section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    border-radius: 2px;
    display: inline-block;
}
.core-section .section-header .section-more{
text-decoration: none; color: var(--primary-color); font-size: 14px; font-weight: 500;
}
.core-section .school-social{
	color: #333;font-size: 14px;display: flex;gap: 4px;
}
/* 广告位样式 */
.ad-space {
    background-color: var(--card-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px dashed var(--border-color);
}

.ad-space img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.ad-label {
    font-size: 12px;
    color: var(--light-text);
    text-align: right;
    margin-top: 5px;
}

/* 快速入口样式 */
.tools-section {
    background-color: var(--card-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 常见问题样式 */
.faq-section {
    background-color: var(--card-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}
.faq-item:hover{
	text-decoration:none;
}
.faq-question {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 5px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
}

.faq-answer {
    font-size: 13px;
    color: var(--light-text);
}

/* 底部转化区域 */
.contact-section {
    text-align: center;
    padding: 40px;
    background-color: var(--card-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 60px 0;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-v2 {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-v2:hover {
    background-color: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #1d3557;
    box-shadow: 0 4px 10px rgba(29, 53, 87, 0.3);
}

.container.contact{
		border:none;
	}
	.contact .contact-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size:20px;
}

.contact .contact-btn:hover {
    background-color: #c1121f;
}
  	.contact .btn-ask {
    background-color: white;
    color: var(--primary-color);
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact .btn-ask:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px) scale(1.03);
}
.contact .btn-phone {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact .btn-phone:hover {
    background-color: #c1121f;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}
.contact .btn-course {
    background-color: var(--warning-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact .btn-course:hover {
    background-color: #e68900;
    box-shadow: 0 7px 21px rgba(255, 152, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}
.car-type-tab {
        padding: 8px 16px;
        border: 1px solid var(--border-color);
        background-color: white;
        color: var(--text-color);
        border-radius: 20px;
        cursor: pointer;
        font-size: 14px;
        white-space: nowrap;
        transition: all 0.3s ease;
}

.car-type-tab:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
}

.car-type-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.car-type-tabs::-webkit-scrollbar {
    display: none;
}

.tab-scroll-btn {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-scroll-btn:hover {
    opacity: 1;
}

/* 场地推荐样式 */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.facility-card {
    background-color: var(--card-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.facility-card:hover {
    transform: translateY(-5px);
    text-decoration:none;
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

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

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

.facility-info {
    padding: 6px 4px;
}

.facility-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-color);
}

.facility-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
    color: var(--light-text);
    font-size: 14px;
}

.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    padding: 4px 12px;
    background-color: var(--background-color);
    color: var(--light-text);
    border-radius: 16px;
    font-size: 12px;
}

.course-grid{
	
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 10px;
}

.course-card {
	background-color: var(--card-color); border-radius: 8px; padding: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); border: 1px solid var(--border-color); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
}

/* 驾校推荐样式 */
.school-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.school-card {
    background-color: var(--card-color);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    gap: 4px;
    border: 1px solid var(--border-color);
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration:none;
}

.school-card {
    cursor: pointer;
}

.school-logo {
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
    flex:1;
    overflow: hidden;
    padding:8px;
}
.school-logo img{
	 border-radius: 8px;
	width:100%;
	
}
.school-details {
    flex: 1;
    padding:16px 6px;
}
.school-details .nums{
	color: var(--primary-color); font-weight: bold;
}
.school-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
    color: var(--text-color);
}

.school-rating {
    color: #ff9800;
    margin-bottom: 4px;
}

.school-stats {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--light-text);
}

.school-price {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}


/* 教练推荐样式 */
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trainer-card {
    background-color: var(--card-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    color: #3E3E3E;
    flex:1;
}

.trainer-card:hover {
    transform: translateY(-5px);
    text-decoration:none;
}

.trainer-avatar {
    width: 100px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--secondary-color);
}

.trainer-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color:#333;
}

.trainer-level {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.trainer-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--light-text);
}
.trainer-stats .stat{
	line-height:20px;
}

.school-card .overlay {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.school-card .text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 1
}

/* 价格信息样式 */
.price-section {
    margin-bottom: 30px;
}

.price-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 6px;
  	box-shadow: var(--shadow-md);
    border: 1px solid #f0e8e5;
    margin-bottom: 1.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
}

.price-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-color);
}

.price-amount {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.price-card .exam-info{
	margin-bottom: 1rem;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.price-table{
	width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.price-table th { background: #f8fafc; padding: 10px 12px; text-align: left; font-weight: 600; border-bottom: 1px solid #e2e8f0; }
.price-table td { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; }
.price-table .th-w-23{width:23%;}     
.price-table .th-w-25{width:25%;}   
.price-table  .bg-color{
	background: #f8fafc; 
}  

/* 价格信息样式 */
.price-section {
    margin-bottom: 30px;
}

.price-features {
    margin-bottom: 20px;
}

.price-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--light-text);
}

.price-feature:before {
    content: '&#10003;';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}
.car-type-tabs{
	display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}
.car-type-tab {
        padding: 8px 16px;
        border: 1px solid var(--border-color);
        background-color: white;
        color: var(--text-color);
        border-radius: 20px;
        cursor: pointer;
        font-size: 14px;
        white-space: nowrap;
        transition: all 0.3s ease;
}

.car-type-tab:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
}

.car-type-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.car-type-tabs::-webkit-scrollbar {
    display: none;
}

.index-container{
	
	--bs-gutter-x:0;
}

.info-note-card {
border-radius: 8px;
    position: relative;
    background-color: var(--theme-surface-foreground, #fff);
}
.info-note-card+.info-note-card{
	margin-top:5px;
}
.note-img-container{
width: 100%;
display: block;
}	
.info-note-image{
	position: relative;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}
	
.note-img-placeholder{
display: block;
padding-top: 133.33%;
}
.offers .note-img-placeholder{
	
	padding-top: 50.33%;
}
.note-img-container .play-icon{
	
	align-items: center;
    -webkit-backdrop-filter: saturate(150%) blur(10px);
    backdrop-filter: saturate(150%) blur(10px);
    background: rgba(64,64,64,.25);
    border-radius: 20px;
    color: #fff;
    display: flex;
    height: 20px;
    justify-content: center;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 20px;
	
}
.info-note-body{
	padding: 10px 12px 12px;
	box-sizing: border-box;
}
.info-note-title{
 -webkit-line-clamp: 2;
 word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--theme-gray-1000, #333);
    line-height: 22px;
    font-size: 14px;
    font-weight: 600;
}
.info-note-footer{
	margin-top: 8px;
	position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--theme-gray-800, rgba(51, 51, 51, .8));
    z-index: 2;
}
.info-note-user{
	flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    position: relative;
}
.info-note-user::before{
	content: "";
    position: absolute;
    top: -4PX;
    bottom: -4PX;
    left: -4PX;
    right: -4PX;
}
.info-img-container{
	width: 20px;
	margin-right: 6px;
	display: inline-block;
	osition: relative;
    border-radius: 1000PX;
    color: var(--theme-gray-100, rgba(51, 51, 51, .1));
    background-color: currentColor;
    box-shadow: 0 0 1PX hsla(0, 0%, 80%, .1);
    vertical-align: middle;
}
.info-img-placeholder{
padding-top: 100%;
display: block;
}
.info-img-box{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.note-img{
	object-fit: contain;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border-style: none;
    background: #fff;
}
.note-user-name{
	flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
}
.info-note-like{
margin-left: 8px;
position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
}
.info-note-like-icons{
	width: 16px;
    height: 16px;
    margin-right: 2px;
    position: relative;
    transform-origin: center center;
    color: var(--theme-gray-600, rgba(51, 51, 51, .6));
}
.info-note-like-icon{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
    fill: currentColor;
}
.info-note-like-text{
	position: relative;
    top: 1PX;
    font-weight: 400;
}
.note-avatar{
	position: relative;
    border-radius: 1000PX;
    color: var(--theme-gray-100, rgba(51, 51, 51, .1));
    background-color: currentColor;
    box-shadow: 0 0 1PX hsla(0, 0%, 80%, .1);
    display: inline-block;
    vertical-align: middle;
}
.info-icon{
display: inline-block;
    vertical-align: middle;
    fill: currentColor;
}
.note-empty{
	
	position: relative;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.note-empty-text{
	
	font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 15px;
}


@media (max-width: 1024px) {
    .main-wrapper {
        flex-direction: column;
    }
    
    
    .facility-grid {
        grid-template-columns:repeat(3 ,1fr);
    }
    
    .trainer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
	.facility-grid,
    .school-grid {
        grid-template-columns:repeat(2 ,1fr);
    }
    .banner-carousel {
        height: 250px;
    }
    
    .carousel-title {
        font-size: 24px;
    }
    
    .carousel-desc {
        font-size: 14px;
    }
    
    .trainer-grid {
        grid-template-columns: 1fr;
    }
    
    .trainer-card{
    	padding:4px;
    }
    
    .core-section h2{

	font-size: 18px; font-weight: bold; color: #000; text-align: center; margin-bottom: 8px; padding: 5px 0; background: linear-gradient(90deg, transparent, rgba(0, 120, 255, 0.1), transparent);
	}
	.core-section{
	padding: 18px 4px;
	}
	.core-section .core-title{
		font-size: 26px; font-weight: bold; color: #000; text-align: center; margin-bottom: 25px; padding: 15px 0; background: linear-gradient(90deg, transparent, rgba(0, 120, 255, 0.1), transparent);
	}
	.core-section .section-header {
	margin: 10px auto;display: flex;justify-content: space-between;align-items: center;
	}
	.core-section .section-header h3
	{
		font-size: 16px; font-weight: bold; color: var(--text-color); margin: 0; padding: 0; display: flex; align-items: center;
	}
	.core-section .section-header .section-more{
	text-decoration: none; color: var(--primary-color); font-size: 14px; font-weight: 500;
	}
	.school-card{
		flex-direction: column;
	}
	.course-grid{
	grid-template-columns:repeat(2, 1fr);
	}
}

/* ========== 学员好评轮播（Bootstrap 5 重构版） ========== */
   .review-carousel {
       position: relative;
       background: #fff;
       border-radius: var(--radius-lg);
       box-shadow: var(--shadow-sm);
       overflow: hidden;
       user-select: none;
       -webkit-user-select: none;
       border: 1px solid #f0f0f0;
   }
   .carousel-inner {
       position: relative;
       width: 100%;
       overflow: hidden;
   }
   .review-slide {
       padding: 1.8rem 3rem 1.5rem;
       box-sizing: border-box;
       min-height: 110px;
       text-align: center;
       background: #fff;
   }
   @media (max-width: 575px) {
       .review-slide {
           padding: 1.4rem 2.8rem 1.2rem;
       }
   }
   .review-text {
       font-size: 0.95rem;
       color: #444;
       font-style: italic;
       margin-bottom: 10px;
       line-height: 1.6;
       position: relative;
       padding: 0 10px;
   }
   .review-text::before {
       content: "“";
       color: var(--primary);
       font-size: 2rem;
       font-weight: 700;
       vertical-align: middle;
       margin-right: 4px;
       line-height: 1;
   }
   .review-text::after {
       content: "”";
       color: var(--primary);
       font-size: 2rem;
       font-weight: 700;
       vertical-align: middle;
       margin-left: 4px;
       line-height: 1;
   }
   .review-author {
       font-size: 0.78rem;
       color: #888;
       font-weight: 500;
   }
   .carousel-arrow {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       width: 38px;
       height: 38px;
       border-radius: 50%;
       background: #fff;
       border: 1.5px solid #e0e0e0;
       cursor: pointer;
       z-index: 3;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: var(--transition);
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
       color: #555;
       font-size: 1rem;
       line-height: 1;
       padding: 0;
   }
   .carousel-arrow:hover {
       background: var(--primary-extra-light);
       border-color: var(--primary);
       color: var(--primary);
       box-shadow: 0 4px 14px rgba(211, 47, 47, 0.15);
   }
   .carousel-arrow:active {
       transform: translateY(-50%) scale(0.94);
   }
   .carousel-arrow.prev {
       left: 8px;
   }
   .carousel-arrow.next {
       right: 8px;
   }
   @media (max-width: 575px) {
       .carousel-arrow {
           width: 34px;
           height: 34px;
           font-size: 0.85rem;
       }
       .carousel-arrow.prev {
           left: 4px;
       }
       .carousel-arrow.next {
           right: 4px;
       }
   }
   /* 覆盖Bootstrap指示器样式，保持原圆点设计 */
   #reviewCarousel .carousel-indicators {
       position: static;
       margin: 0;
       padding-bottom: 16px;
       display: flex;
       justify-content: center;
       gap: 8px;
   }
   #reviewCarousel .carousel-indicators .carousel-dot {
       width: 9px;
       height: 9px;
       border-radius: 50%;
       background: #ddd;
       border: none;
       padding: 0;
       flex-shrink: 0;
       opacity: 1;
       transition: var(--transition);
       margin: 0 4px;
       cursor: pointer;
       box-sizing: content-box;
       text-indent: 0;
   }
   #reviewCarousel .carousel-indicators .carousel-dot.active {
       background: var(--primary);
       width: 24px;
       border-radius: 12px;
       opacity: 1;
   }
   .trust-stats {
       display: flex;
       justify-content: center;
       gap: 2rem;
       margin: 1.5rem 0 0.5rem;
       flex-wrap: wrap;
   }
    @media (max-width: 575px) {
    	 .trust-stats {
    	 	gap:1rem;
    	 }
    }
   .trust-stat-item {
       text-align: center;
   }
   .trust-stat-number {
       font-size: 1.4rem;
       font-weight: 700;
       color: var(--primary);
   }
   .trust-stat-label {
       font-size: 0.75rem;
       color: #888;
   }
.cta-block {
       background: linear-gradient(135deg, #fff5f5, #fff);
       border-radius: var(--radius-lg);
       padding: 2rem;
       text-align: center;
       border: 1px dashed #f5c6cb;
       margin-top: 1rem;
       box-shadow: var(--shadow-sm);
   }
   .btn-solid-red {
       background: var(--primary);
       color: #fff;
       border: none;
       border-radius: 20px;
       padding: 12px 32px;
       font-weight: 600;
       text-decoration: none;
       display: inline-block;
       cursor: pointer;
       transition: var(--transition);
       box-shadow: 0 4px 14px rgba(211, 47, 47, 0.25);
   }
   .btn-solid-red:hover {
       background: var(--primary-dark);
       transform: translateY(-1px);
       box-shadow: 0 6px 20px rgba(183, 28, 28, 0.35);
   }
.cta-block .contact-btn {
    background-color: var(--warning-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 12px 32px;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-block .contact-btn:hover {
    background-color: #e68900;
    box-shadow: 0 7px 21px rgba(255, 152, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.banner-brand{
	border-radius: var(--radius-md);
	overflow: hidden;
}
 /* 筛选卡片 */
.filter-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #f0e8e5;
    margin-bottom: 2.2rem;
}
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.4rem;
}
.filter-item {
    flex: 1 1 160px;
}

 @media (max-width: 575px) {
       .filter-row {
           flex-direction: column;
       }
       .filter-item{
       	flex:1 1 100px;
       }
       .filter-card{
       	padding:10px 10px 20px;
       	margin-bottom:2px;
       }
   }
.filter-row .lience-type-img{
	width:6rem;
}
.filter-row .locate{
	width:70px;
	text-align: center;
}
.filter-row .locate img{
	height:20px;
}
.filter-row  .address-picker{
	flex:1;
}
.filter-row .address{
	height: 58px;
  		line-height: 58px;
  		border:none;
  		width:100%;
  		font-size:16px;
  		padding-left: 10px;
  		outline:none;
}
.filter-row  .address::placeholder{
	font-size:16p;
	color:#ccc;
}

.three-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
@media (max-width: 575px) {
	
	.three-steps {
		gap:8px;
	}
}
.step-item {
    text-align: center;
    padding: 1.6rem 1.4rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1 1 220px;
}
.three-steps .step-item.active ,.three-steps .step-item:hover{
	background:#e8f5e9;
	
}
.step-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: #ee5a52;
    color: white;
    border-radius: 50%;
    margin-bottom: 8px;
    font-weight: bold;
}

.step-title {
    font-weight: bold;
    margin-bottom: 4px;
    color: var(--text-color);
}

.step-desc {
    font-size: 13px;
    color: #666;
}

/* 问答卡片 */
.qa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 768px) {
    .qa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.qa-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.3rem 1.4rem;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #f0f0f0;
}
.qa-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: #fdd;
}
.qa-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-extra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}
.qa-content {
    flex: 1;
}
.qa-question {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.qa-answer {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

 /* 小工具 */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (min-width: 576px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
.tool-item {
    background: #fff;
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    text-decoration: none;
    color: #555;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.tool-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.tool-item i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* 题库横条 */
   .exam-section {
       background: #fff;
       border-radius: var(--radius-lg);
       padding: 1.5rem 1.8rem;
       box-shadow: var(--shadow-sm);
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       justify-content: space-between;
       gap: 20px;
   }
   .exam-info h3 {
       font-size: 1.1rem;
       font-weight: 700;
       margin-bottom: 4px;
   }
   .exam-info p {
       color: #666;
       font-size: 0.85rem;
       margin: 0;
   }
   .exam-btn {
       background: var(--primary);
       color: #fff;
       padding: 12px 28px;
       border-radius: 24px;
       text-decoration: none;
       font-weight: 600;
       white-space: nowrap;
       transition: var(--transition);
       box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
   }
   .exam-btn:hover {
       background: var(--primary-dark);
       box-shadow: 0 6px 16px rgba(183, 28, 28, 0.3);
   }
   
   /* 核心栏目入口 */
      .core-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
      @media (min-width: 768px) { .core-grid { grid-template-columns: repeat(4, 1fr); } }
      .core-item {
          background: #fff; border-radius: var(--radius-md); padding: 1.5rem 1rem;
          text-align: center; text-decoration: none; color: var(--text-dark);
          box-shadow: var(--shadow-sm); transition: var(--transition);
          display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
      }
      .core-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--primary); }
      .core-icon {
          width: 56px; height: 56px; border-radius: 14px;
          display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
      }
      .icon-red { background: #fde8e5; color: #e74c3c; }
      .icon-orange { background: #fff3e0; color: #f39c12; }
      .icon-blue { background: #e3f2fd; color: #2980b9; }
      .icon-green { background: #e8f5e9; color: #27ae60; }

.btn-coach-red {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.75rem;
    margin-top: 10px;
    text-decoration: none;
    width: auto;
    min-width: 100px;
}
