/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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



/* 搜索部分 */
.search-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #DAA520, #8B4513);
}

.search-section h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #8B4513;
    font-family: 'Microsoft YaHei', 'SimSun', serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.search-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
}

.search-section .subtitle {
    font-size: 22px;
    color: #8B4513;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #DAA520;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.search-box input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-box button {
    padding: 14px 32px;
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.2);
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(139, 69, 19, 0.3);
}

.search-box button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

/* 分类 */
.categories {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8B4513, #DAA520, #8B4513);
    border-radius: 12px 0 0 12px;
}

.categories a {
    text-decoration: none;
    color: #8B4513;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: #f9f5f0;
    border: 1px solid #DAA520;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
    position: relative;
    z-index: 1;
}

.categories a:hover {
    background-color: #8B4513;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.2);
}

.categories a.active {
    background-color: #8B4513;
    color: #fff;
}

/* 中医药术语库按钮样式 */
.terminology-trigger {
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.terminology-trigger a {
    font-size: 14px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: #fff;
    border: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.terminology-trigger a:hover {
    background: linear-gradient(135deg, #DAA520, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
}

/* 中药材列表 */
.herbs-list {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.herbs-list::-webkit-scrollbar {
    height: 8px;
}

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

.herbs-list::-webkit-scrollbar-thumb {
    background: #DAA520;
    border-radius: 10px;
}

.herbs-list::-webkit-scrollbar-thumb:hover {
    background: #8B4513;
}

.herb-item {
    min-width: 300px;
}

.herb-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0e6d2;
}

.herb-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #DAA520, #8B4513);
}

.herb-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.herb-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.herb-item:hover img {
    transform: scale(1.05);
}

.herb-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8B4513;
    font-family: 'Microsoft YaHei', 'SimSun', serif;
    font-weight: bold;
}

.herb-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    background-color: #f9f5f0;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #DAA520;
}



/* 药物卡片 */
.herb-card {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.herb-card.show {
    opacity: 1;
    visibility: visible;
}

.herb-card.fade-out {
    opacity: 0;
    visibility: hidden;
}

.card-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
    gap: 30px;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border: 1px solid #f0e6d2;
}

/* 滑动动画 */
.card-content.slide-left {
    transform: translateX(-100%) scale(0.8);
    opacity: 0;
}

.card-content.slide-right {
    transform: translateX(100%) scale(0.8);
    opacity: 0;
}

.card-content.slide-left-enter {
    transform: translateX(100%) scale(0.8);
    opacity: 0;
    animation: slideLeftEnter 0.3s ease forwards;
}

.card-content.slide-right-enter {
    transform: translateX(-100%) scale(0.8);
    opacity: 0;
    animation: slideRightEnter 0.3s ease forwards;
}

@keyframes slideLeftEnter {
    from {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideRightEnter {
    from {
        transform: translateX(-100%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.herb-card.show .card-content {
    transform: scale(1);
}

.card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #DAA520, #8B4513);
    border-radius: 12px 12px 0 0;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8B4513;
    font-family: 'Microsoft YaHei', 'SimSun', serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.card-info p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .card-info .efficacy-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .card-info .efficacy-item {
        background-color: #f9f5f0;
        padding: 12px;
        border-radius: 8px;
        border-left: 4px solid #DAA520;
    }

    .card-info .efficacy-item.english {
        font-style: normal;
    }

.card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #8B4513;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.close-btn:hover {
    background-color: #DAA520;
    transform: scale(1.1);
}

/* 卡片导航按钮 */
.card-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    padding: 10px 20px;
    border: 1px solid #DAA520;
    background-color: #fff;
    color: #8B4513;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background-color: #8B4513;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.2);
}

/* 购买弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #fff 0%, #f9f5f0 100%);
    margin: 3% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 700px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 36px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
}

.close-btn:hover {
    color: #fff;
    background: #8B4513;
    transform: rotate(90deg);
}

.modal-product-header {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #8B4513 0%, #DAA520 100%);
    color: #fff;
    border-radius: 20px 20px 0 0;
}

.modal-product-image {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-product-info h2 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 26px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.modal-product-name-en {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 15px;
}

.modal-product-info p {
    color: rgba(255,255,255,0.95);
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.modal-product-price {
    color: #FFD700 !important;
    font-size: 28px !important;
    font-weight: bold !important;
    margin-top: 15px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#purchase-form {
    padding: 25px;
}

#purchase-form h3 {
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-icon {
    font-size: 24px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

.form-group label .optional {
    color: #999;
    font-weight: normal;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0d5c7;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DAA520;
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0d5c7;
    border-radius: 12px;
    overflow: hidden;
}

.quantity-input input {
    border: none;
    text-align: center;
    flex: 1;
    border-radius: 0;
}

.quantity-input input:focus {
    box-shadow: none;
}

.qty-btn {
    width: 45px;
    height: 48px;
    border: none;
    background: #f5f0e8;
    color: #8B4513;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #DAA520;
    color: #fff;
}

.form-summary {
    background: linear-gradient(135deg, #f9f5f0, #fff);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px dashed #DAA520;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: #666;
    margin-bottom: 8px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    color: #8B4513;
    font-size: 20px;
    font-weight: bold;
    padding-top: 10px;
    border-top: 1px solid #e0d5c7;
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

.btn-icon {
    font-size: 22px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-section {
        padding: 20px;
    }

    .search-section h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .search-box input {
        padding: 10px 14px;
    }

    .search-box button {
        padding: 10px 20px;
    }

    .categories {
        padding: 15px;
        gap: 8px;
    }

    .categories a {
        font-size: 12px;
        padding: 6px 12px;
    }

    .herbs-list {
        gap: 20px;
    }

    .herb-item {
        min-width: 280px;
        padding: 15px;
        cursor: pointer;
    }

    .herb-item img {
        height: 180px;
    }

    .herb-item h3 {
        font-size: 16px;
    }

    .herb-item p {
        font-size: 13px;
        padding: 8px;
    }

    /* 响应式卡片 */
    .card-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .card-info h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .card-info p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card-info p:first-of-type {
        padding: 12px;
        margin-bottom: 12px;
    }

    .card-image img {
        max-width: 250px;
        height: 250px;
    }

    .card-nav {
        bottom: 15px;
        gap: 15px;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* 悬停效果 */
.herb-item {
    cursor: pointer;
}

.categories a {
    cursor: pointer;
}

/* 相关卡片 */
.related-cards {
    margin-top: 30px;
    padding: 0 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.related-cards h4 {
    color: #d4a76a;
    margin-bottom: 15px;
    font-size: 16px;
}

.related-cards-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;
}

.related-card {
    flex: 0 0 120px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.related-card h5 {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    margin: 0;
    color: #333;
}

/* 响应式设计 - 相关卡片 */
@media (max-width: 768px) {
    .related-cards-container {
        gap: 10px;
    }

    .related-card {
        flex: 0 0 100px;
    }

    .related-card img {
        height: 70px;
    }

    .related-card h5 {
        font-size: 12px;
        padding: 8px;
    }
}

/* 模块通用样式 */
.module-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.module-title {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 15px;
    font-family: 'Microsoft YaHei', 'SimSun', serif;
    font-weight: bold;
    text-align: center;
}

.module-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* 权威医师模块样式 */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.expert-card {
    background: linear-gradient(135deg, #f9f9f9, #fff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
}

.expert-photo {
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-photo img {
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.expert-info {
    padding: 20px;
}

.expert-info h3 {
    font-size: 22px;
    color: #8B4513;
    margin-bottom: 12px;
    font-weight: bold;
}

.expert-title {
    color: #DAA520;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.expert-specialty {
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
    padding: 10px;
    background-color: #f9f5f0;
    border-radius: 6px;
    border-left: 3px solid #DAA520;
}

.expert-experience {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    font-style: normal;
}

/* 农副产品模块样式 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
}

.product-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: bold;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-name-en {
    color: #999;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 8px;
}

.product-description-en {
    color: #888;
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    color: #DAA520;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.product-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* 研学手册模块样式 */
.study-content {
    padding: 40px 20px;
}

.study-placeholder {
    text-align: center;
    background: linear-gradient(135deg, #f9f5f0, #fff);
    border-radius: 12px;
    padding: 60px 40px;
    border: 2px dashed #DAA520;
}

.study-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.study-placeholder h3 {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: bold;
}

.study-placeholder p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.study-info {
    color: #8B4513;
    font-weight: bold;
    font-size: 18px;
    margin-top: 25px;
}

.study-list {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
    padding-left: 20px;
}

.study-list li {
    color: #666;
    font-size: 15px;
    line-height: 2;
    list-style-type: disc;
}

.study-note {
    color: #DAA520;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
}

/* 研学地图模块样式 */
.map-intro {
    text-align: center;
    margin-bottom: 30px;
}

.map-intro h3 {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.map-intro .intro-text {
    color: #666;
    font-size: 16px;
}

.map-container {
    margin-bottom: 30px;
}

.map-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.map-background {
    flex: 1;
    min-width: 350px;
    height: 500px;
    background: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Traditional%20Chinese%20medicine%20cultural%20map%20background%20Changzhi%20Shangdang%20herbs%20mountains%20ancient%20style%20warm%20golden%20beige%20color%20palette%20decorative%20clouds%20Chinese%20traditional%20patterns%20elegant%20minimalist%20design&image_size=landscape_16_9') center/cover no-repeat;
    background-color: #fdf8f0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 3px solid #d4c4b0;
    box-shadow: 
        0 10px 40px rgba(139, 69, 19, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 0.6);
}

.map-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253, 248, 240, 0.7) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(245, 239, 227, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

.map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.route-line {
    fill: none;
    stroke: url(#routeGradient);
    stroke-width: 4;
    stroke-dasharray: 12, 6;
    stroke-linecap: round;
    animation: dashMove 20s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(139, 69, 19, 0.3));
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -216;
    }
}

.location-marker {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.marker-1 { top: 60px; left: 80px; }
.marker-2 { top: 70px; left: 185px; }
.marker-3 { top: 120px; left: 345px; }
.marker-4 { top: 160px; left: 395px; }
.marker-5 { top: 210px; left: 340px; }
.marker-6 { top: 265px; left: 280px; }
.marker-7 { top: 320px; left: 220px; }
.marker-8 { top: 370px; left: 280px; }

.marker-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #DAA520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(139, 69, 19, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.8),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(139, 69, 19, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.marker-number {
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.5);
}

.marker-label {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    white-space: nowrap;
    color: #8B4513;
    font-weight: 600;
    box-shadow: 
        0 4px 12px rgba(139, 69, 19, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(4px);
}

.location-marker:hover {
    transform: translateY(-4px);
}

.location-marker:hover .marker-icon {
    transform: scale(1.3);
    box-shadow: 
        0 10px 30px rgba(139, 69, 19, 0.5),
        0 0 0 5px rgba(218, 165, 32, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(139, 69, 19, 0.3);
}

.location-marker.active {
    transform: translateY(-6px);
}

.location-marker.active .marker-icon {
    transform: scale(1.4);
    box-shadow: 
        0 0 0 6px rgba(218, 165, 32, 0.5),
        0 0 0 12px rgba(218, 165, 32, 0.2),
        0 12px 35px rgba(139, 69, 19, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(139, 69, 19, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 0 0 6px rgba(218, 165, 32, 0.5),
            0 0 0 12px rgba(218, 165, 32, 0.2),
            0 12px 35px rgba(139, 69, 19, 0.6);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(218, 165, 32, 0.4),
            0 0 0 16px rgba(218, 165, 32, 0.15),
            0 12px 35px rgba(139, 69, 19, 0.6);
    }
}

.location-detail {
    flex: 0 0 400px;
    background: linear-gradient(135deg, #fff 0%, #fdf9f3 50%, #faf5ec 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 
        0 10px 40px rgba(139, 69, 19, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e0d5;
    position: relative;
    overflow: hidden;
}

.location-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #DAA520, #8B4513);
}

.detail-header {
    text-align: center;
    margin-bottom: 24px;
}

.detail-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #DAA520 100%);
    color: #fff;
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.detail-title {
    color: #8B4513;
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.detail-title-en {
    color: #8B4513;
    opacity: 0.6;
    font-style: italic;
    font-size: 14px;
}

.detail-image {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    border: 2px solid rgba(218, 165, 32, 0.2);
}

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

.location-detail:hover .detail-image img {
    transform: scale(1.03);
}

.detail-content {
    margin-bottom: 20px;
}

.detail-location {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.detail-location strong {
    color: #8B4513;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.detail-location p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.detail-significance {
    background-color: #f9f5f0;
    padding: 14px 16px;
    border-radius: 10px;
    border-left: 4px solid #DAA520;
}

.detail-significance strong {
    color: #8B4513;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.detail-significance p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.detail-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.detail-nav button {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #8B4513;
    background: #fff;
    color: #8B4513;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-nav button:hover:not(:disabled) {
    background: #8B4513;
    color: #fff;
}

.detail-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* 路线概览 */
.route-overview {
    background: linear-gradient(135deg, #fff 0%, #fdf8f0 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 
        0 8px 30px rgba(139, 69, 19, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e0d5;
}

.route-overview h4 {
    color: #8B4513;
    font-size: 20px;
    margin-bottom: 22px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.route-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.route-step {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
}

.route-step:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #fff 0%, #f5efe3 100%);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.12);
}

.route-step.active {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #fffef9 0%, #fff7e6 100%);
    border-color: #DAA520;
    box-shadow: 
        0 10px 25px rgba(139, 69, 19, 0.18),
        0 0 0 1px rgba(218, 165, 32, 0.2);
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #DAA520 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(139, 69, 19, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(139, 69, 19, 0.3);
}

.route-step.active .step-number {
    box-shadow: 
        0 6px 16px rgba(139, 69, 19, 0.4),
        0 0 0 3px rgba(218, 165, 32, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(139, 69, 19, 0.3);
}

.step-info {
    flex: 1;
}

.step-title {
    color: #8B4513;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.step-title-en {
    color: #DAA520;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 3px;
}

.step-location {
    color: #666;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.step-location-en {
    color: #888;
    font-size: 11px;
    font-style: italic;
}

/* 响应式设计 - 新模块 */
@media (max-width: 900px) {
    .map-wrapper {
        flex-direction: column;
    }
    
    .location-detail {
        flex: 1;
        max-width: 100%;
    }
    
    .map-background {
        min-width: 100%;
        height: 420px;
    }
}

@media (max-width: 600px) {
    .map-background {
        height: 380px;
    }
    
    .marker-1 { top: 50px; left: 40px; }
    .marker-2 { top: 70px; left: 140px; }
    .marker-3 { top: 100px; left: 240px; }
    .marker-4 { top: 150px; left: 120px; }
    .marker-5 { top: 190px; left: 210px; }
    .marker-6 { top: 250px; left: 100px; }
    .marker-7 { top: 300px; left: 180px; }
    .marker-8 { top: 350px; left: 130px; }
    
    .marker-icon {
        width: 36px;
        height: 36px;
    }
    
    .marker-number {
        font-size: 14px;
    }
    
    .marker-label {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .location-detail {
        padding: 20px;
    }
    
    .detail-image {
        height: 180px;
    }
    
    .detail-title {
        font-size: 20px;
    }
}

/* ================ 详细地图弹出窗口 ================ */
.detailed-map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.detailed-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: overlayFadeIn 0.3s ease;
}

.detailed-map-container {
    position: relative;
    margin: 30px auto;
    max-width: 1400px;
    height: calc(100vh - 60px);
    background: linear-gradient(135deg, #fdf8f0 0%, #f5efe3 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.close-detailed-map {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: linear-gradient(135deg, #fff 0%, #f5efe3 100%);
    border: 2px solid #e8e0d5;
    border-radius: 50%;
    font-size: 28px;
    color: #8B4513;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.2);
}

.close-detailed-map:hover {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.detailed-map-title {
    padding: 24px 32px 0 32px;
    text-align: center;
    border-bottom: 2px solid #e8e0d5;
    background: linear-gradient(135deg, #fff 0%, #fdf8f0 100%);
}

.detailed-map-title h3 {
    color: #8B4513;
    font-size: 24px;
    margin: 0 0 8px 0;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.detailed-map-title p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.detailed-map-content {
    flex: 1;
    display: flex;
    padding: 32px;
    gap: 32px;
    overflow: hidden;
}

.detailed-map-background {
    flex: 3;
    min-width: 700px;
    min-height: 520px;
    position: relative;
    background: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Map%20of%20Changzhi%20city%20and%20Taiyuan%20city%20Shanxi%20province%20China%20with%20clear%20mountain%20ranges%20Yellow%20River%20tributaries%20roads%20and%20major%20city%20locations%20traditional%20Chinese%20painting%20style%20warm%20beige%20tones&image_size=landscape_16_9') center/cover no-repeat;
    background-color: #fdf8f0;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #d4c4b0;
    box-shadow: 
        0 10px 40px rgba(139, 69, 19, 0.15),
        inset 0 2px 10px rgba(255, 255, 255, 0.6);
}

.detailed-map-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253, 248, 240, 0.6) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(245, 239, 227, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.detailed-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.detailed-route-line {
    fill: none;
    stroke: url(#detailedRouteGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 12, 8;
    animation: flowRoute 1.5s linear infinite;
}

@keyframes flowRoute {
    from {
        stroke-dashoffset: 40;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.detailed-location-marker {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.detailed-marker-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #DAA520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(139, 69, 19, 0.4),
        0 0 0 5px rgba(255, 255, 255, 0.8),
        inset 0 2px 6px rgba(255, 255, 255, 0.4),
        inset 0 -2px 6px rgba(139, 69, 19, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.detailed-marker-number {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-shadow: 0 1px 3px rgba(139, 69, 19, 0.6);
}

.detailed-marker-label {
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    padding: 8px 16px;
    border-radius: 14px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    color: #8B4513;
    font-weight: 600;
    box-shadow: 
        0 6px 18px rgba(139, 69, 19, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(218, 165, 32, 0.25);
    backdrop-filter: blur(6px);
}

.detailed-marker-label small {
    display: block;
    font-size: 11px;
    opacity: 0.75;
    color: #666;
}

.detailed-location-marker:hover {
    transform: translateY(-6px);
}

.detailed-location-marker:hover .detailed-marker-icon {
    transform: scale(1.35);
    box-shadow: 
        0 14px 40px rgba(139, 69, 19, 0.55),
        0 0 0 6px rgba(218, 165, 32, 0.35),
        inset 0 2px 6px rgba(255, 255, 255, 0.5),
        inset 0 -2px 6px rgba(139, 69, 19, 0.35);
}

.detailed-location-marker.active .detailed-marker-icon {
    transform: scale(1.4);
    box-shadow: 
        0 16px 44px rgba(139, 69, 19, 0.55),
        0 0 0 7px rgba(218, 165, 32, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.5),
        inset 0 -2px 6px rgba(139, 69, 19, 0.35);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 16px 44px rgba(139, 69, 19, 0.55),
            0 0 0 7px rgba(218, 165, 32, 0.4),
            inset 0 2px 6px rgba(255, 255, 255, 0.5),
            inset 0 -2px 6px rgba(139, 69, 19, 0.35);
    }
    50% {
        box-shadow: 
            0 16px 44px rgba(139, 69, 19, 0.55),
            0 0 0 12px rgba(218, 165, 32, 0.25),
            inset 0 2px 6px rgba(255, 255, 255, 0.5),
            inset 0 -2px 6px rgba(139, 69, 19, 0.35);
    }
}

.detailed-location-detail {
    flex: 1;
    background: linear-gradient(135deg, #fff 0%, #fdf8f0 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 
        0 8px 30px rgba(139, 69, 19, 0.12),
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 2px solid #e8e0d5;
    display: flex;
    flex-direction: column;
}

.detailed-detail-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #e8e0d5;
    padding-bottom: 16px;
}

.detailed-detail-tag {
    display: inline-block;
    background: linear-gradient(135deg, #DAA520 0%, #C49A2B 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
}

.detailed-detail-title {
    color: #8B4513;
    font-size: 22px;
    margin: 0 0 6px 0;
    font-weight: bold;
}

.detailed-detail-title-en {
    color: #888;
    font-style: italic;
    font-size: 14px;
}

.detailed-detail-image {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.12);
}

.detailed-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detailed-location-detail:hover .detailed-detail-image img {
    transform: scale(1.03);
}

.detailed-detail-content {
    margin-bottom: 20px;
}

.detailed-detail-location {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.detailed-detail-location strong {
    color: #8B4513;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.detailed-detail-location p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.detailed-detail-significance {
    background-color: #f9f5f0;
    padding: 16px 18px;
    border-radius: 12px;
    border-left: 4px solid #DAA520;
}

.detailed-detail-significance strong {
    color: #8B4513;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.detailed-detail-significance p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.detailed-detail-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: auto;
}

.detailed-detail-nav button {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #8B4513;
    background: #fff;
    color: #8B4513;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detailed-detail-nav button:hover:not(:disabled) {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.detailed-detail-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 - 详细地图 */
@media (max-width: 1200px) {
    .detailed-map-content {
        flex-direction: column;
    }
    
    .detailed-map-background {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .detailed-map-container {
        margin: 15px;
        height: calc(100vh - 30px);
        border-radius: 16px;
    }
    
    .detailed-map-content {
        padding: 20px;
        gap: 20px;
    }
    
    .detailed-map-title {
        padding: 18px 20px 0 20px;
    }
    
    .detailed-map-title h3 {
        font-size: 20px;
    }
    
    .detailed-map-background {
        min-height: 400px;
    }
    
    .detailed-marker-icon {
        width: 44px;
        height: 44px;
    }
    
    .detailed-marker-number {
        font-size: 16px;
    }
    
    .detailed-location-detail {
        padding: 20px;
    }
    
    .detailed-detail-image {
        height: 180px;
    }
    
    .detailed-detail-title {
        font-size: 18px;
    }
}