/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f9f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    padding: 0 10px;
    padding-bottom: 5px;
}

header {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.slogan {
    font-size: 14px;
    opacity: 0.9;
}

/* 轮播图样式 */
.slider {
    width: 100%;
    height: 150px;
    position: relative;
    margin: 10px 0;
    border-radius: 5px;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内容区块样式 */
.section {
    background-color: white;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 8px;
    margin-bottom: 15px;
    color: #2E7D32;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 8px;
}

.intro-text {
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
}

/* 服务项目样式 */
.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    width: 40px;
    height: 40px;
    background-color: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #2E7D32;
}

.service-name {
    font-weight: bold;
    font-size: 15px;
    color: #2E7D32;
}

.service-desc {
    font-size: 13px;
    color: #666;
}

/* 特色治疗样式 */
.special-item {
    background-color: #E8F5E9;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
}

.special-title {
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 5px;
}

.special-desc {
    font-size: 13px;
    color: #555;
}

/* 文章样式 */
.blog-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
}

.blog-item:last-child {
    border-bottom: none;
}

.blog-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #2E7D32;
}

.blog-date {
    font-size: 12px;
    color: #888;
}

.blog-content {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* 联系方式样式 */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 30px;
    height: 30px;
    background-color: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #2E7D32;
}

.contact-text {
    font-size: 14px;
}

/* 页脚样式 */
footer {
    background-color: #2E7D32;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    margin-top: 0px;
    margin-bottom: 70px;
}

.footer-contact {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

/* 底部导航栏样式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
}

.bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

.bottom-nav-item.active {
    color: #2E7D32;
}

/* 文章链接样式 */
.blog-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
}

.blog-item-link:last-child {
    border-bottom: none;
}

.blog-item-link:hover {
    background-color: #f8f8f8;
    border-radius: 4px;
}

/* 文章详情页样式 */
.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 15px;
}