.main-container{
	  --primary-color: #e63946; /* 红色logo主色调 */
    --secondary-color: #1d3557; /* 深蓝色辅助色 */
}
/* 模拟图片上的文字叠加层效果 */
.img-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
    border-radius:4px;
}
.list-item-container {
    border-bottom: 1px dashed #dee2e6; /* 虚线分割线 */
}
.list-item-container:last-child {
    border-bottom: none;
}
.car-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e9ecef; /* 图片未加载时显示的灰色背景 */
}

.title-banner .title {
    color: #555;
    font-size: 18px;
    display: inline-block;
    border-bottom: 2px solid #E53F42;
    height: 28px;
    padding: 0 15px 0 15px
}
@media (max-width:576px) {
	.list-info{
		flex-direction: column; 
		align-items: start !important;
	}
}

/* 训考场卡片 */
.venue-grid {
    display: grid;
    gap: 20px;
}
.venue-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .venue-grid { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
}
.venue-grid  .venue-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eef2f8;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.venue-grid  .venue-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.venue-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.venue-content { padding: 16px; }
.venue-footer {
    padding: 10px 16px 16px;
    border-top: 1px dashed #e2e8f0;
    margin: 0 12px;
}
.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}
.venue-name { font-size: 1.15rem; font-weight: 700; line-height: 1.3; color:#1a1a2e; }
.venue-rating {
    background: #fff6e5;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
}
.customer-rating .star-score {
    position: relative;
    display: block;
    height: 1.2em;
    width: 5.2em;
}
.customer-rating .star-score .star {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 5em;
    height: 1.04em;
    background-repeat: no-repeat;
}
.customer-rating .star-score .star .normal {
    background: url(../../../../../img/star5-bg.png) center left no-repeat;
    z-index: 2;
    background-size: 5em .8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
}
.customer-rating .star-score .star .light {
    background: url(../../../../../img/star5-highlight.png) center left no-repeat;
    z-index: 3;
    width: 0;
    background-size: 5em .8em;
}
.location-area {
    color: #5d7b9c;
    font-size: 0.75rem;
    margin: 8px 0 6px;
}
.schools-list {
    margin: 12px 0;
    font-size: 0.85rem;
    line-height: 1.5;
}
.school-link {
    color: #1d6f3f;
    text-decoration: none;
    font-weight: 500;
    margin-right: 6px;
}
.schools-suffix { color: #1d6f3f; font-weight: 500; }
.price-range {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 10px;
}
.price-item {
    background: #f0f4f9;
    border-radius: 24px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 500;
}
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.region-tag {
    background: #eef2ff;
    color: #2c5a7a;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 30px;
    text-decoration: none;
}
.btn-outline-red {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}
.btn-outline-red:hover {
    background: var(--primary);
    color: white;
}


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

.trainer-card {
    background-color: #fff;
    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 #ddd;
    color: #3E3E3E;
    flex:1;
}

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

.trainer-avatar {
    width: 80px;
    height:80px;
    object-fit:cover;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.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;
}

.coach-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.75rem;
    margin: 8px 0;
    flex-wrap: wrap;
}
.coach-stats span {
    background: #f0f4f9;
    padding: 3px 10px;
    border-radius: 20px;
    color:#1a1a2e ;
}
.coach-venue {
    font-size: 0.75rem;
    color: #5d7b9c;
    background: #f0f4f9;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    margin: 6px auto;
}

.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;
}
.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;
}

.btn-outline-red {
    display: inline-block;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}
.btn-outline-red:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 1024px) {
    .trainer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
	 .trainer-grid {
		 gap:8px;
	 }
	.trainer-card {
        padding: 4px;
       
    }
}