/* indications.css: 针对 "Indikationen" 页面的特定样式 */

body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
    background: url('images/background.jpg'); /* 替换为实际路径 */
    background-size: cover; /* 背景图片填充整个页面 */
    background-repeat: no-repeat; /* 不重复显示背景图片 */
    margin: 0;
    overflow-y: auto; /* 允许垂直滚动 */
}

/* 导航栏 */
.tabs {
    display: flex;
    justify-content: center; /* 水平居中 */
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    background: #f1f1f1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tab {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 25px;
    background: #e6e6e6;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab:hover {
    background: #388e3c;
    color: #fff;
}

.tab.active {
    background: #ff7b7b;
    color: #fff;
}

/* 主容器 */
.indications-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255, 255, 255);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    text-align: center;
}

/* 标题 */
.indications-header h1 {
    font-size: 2.2em;
    color: #d46a6a;
    margin-bottom: 20px;
}

.indications-header p {
    font-size: 1.1em;
    color: #555;
}

/* 内容列表 */
.indications-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.indications-content ul li {
    margin: 10px 0;
    padding-left: 20px;
    text-indent: -20px;
}

.indications-content ul li:before {
    content: "✔"; /* 对勾符号 */
    color: #4caf50;
    margin-right: 10px;
}

.indications-content p {
    margin-top: 20px;
    font-size: 1em;
    color: #777;
}

/* 图片部分 */
.indications-image {
    text-align: center;
    margin-top: 20px;
}

.indications-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}