﻿.detail-banner {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.detail-main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
    background-color: #f8f9fa;
}

.detail-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.detail-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar-about {
    background: #2e363c;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 30px;
    text-align: center;
}

.about-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.title-divider {
    width: 100px;
    height: 2px;
    margin: 0 auto 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.about-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
}

.about-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.about-nav .nav-item {
    margin-bottom: 12px;
}

.about-nav .nav-item:last-child {
    margin-bottom: 0;
}

.about-nav .nav-item a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.about-nav .nav-item:hover a,
.about-nav .nav-item.active a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.sidebar-business {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.business-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.business-divider {
    width: 100px;
    height: 2px;
    border-bottom: 1px dashed var(--mainColor);
    margin: 0 auto 5px;
}

.business-subtitle {
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    text-align: center;
}

.business-swiper {
    width: 100%;
    max-width: 241px;
    margin: 0 auto;
}

.business-swiper .swiper {
    border-radius: 6px;
    overflow: hidden;
}

.business-swiper .swiper-slide {
    position: relative;
}

.business-swiper .swiper-slide img {
    width: 241px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 15px 15px 25px;
    text-align: center;
}

.slide-overlay h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.business-swiper .swiper-pagination {
    bottom: 5px !important;
}

.business-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.business-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.sidebar-contact {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.contact-divider {
    width: 100px;
    height: 5px;
    border-bottom: 1px dashed var(--mainColor);
    margin: 0 auto 10px;
}

.contact-subtitle {
    color: #999;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item .label {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.info-item .value {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-header {
    margin-bottom: 0;
    text-align: left;
}

.section-title {
    font-size: 28px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.breadcrumb {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--mainColor);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb .current {
    color: #666;
}

.detail-main-content {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}