body {
    background-image: url('./背景圖7.webp');
    background-size: cover; /* 背景圖像覆蓋整個頁面 */
    background-position: center; /* 圖像居中顯示 */
    background-attachment: fixed; /* 背景圖像固定，不隨滾動 */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    background-image: url('./背景圖7.webp');
    background-size: cover; /* 背景圖像覆蓋整個頁面 */
    background-position: center; /* 圖像居中顯示 */
    background-attachment: fixed; /* 背景圖像固定，不隨滾動 */
    width: 1000px;
    background-color: #d4cbcb;
    box-shadow: 0px 0px 10px rgba(190, 187, 187, 0.1);
    padding: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加柔和陰影 */
    padding: 20px;
    border-radius: 8px; /* 邊角稍微圓角化 */
}

/* 增加分隔線 */
.section:not(:last-child) {
    border-bottom: 2px solid #ccc; /* 添加底部邊框作為分隔線 */
    padding-bottom: 30px; /* 為了與分隔線保持距離 */
}

.title {
    background-color: #f8f9fa; /* 例如：淡灰色背景 */
}

.title h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.title p {
    font-size: 18px;
    color: #777;
}

/* 文字介紹區塊樣式 */
.introduction {
    background-color: #f8f9fa; /* 淡灰色背景 */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px; /* 與下方區塊保持距離 */
}

.introduction h2 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

.introduction p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
}

.slideshow {
    background-color: #f8f9fa; /* 白色背景 */
}

/* 讓 "畫面展示" 標題置中並且與幻燈片區塊保持適當間距 */
.slideshow-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px; /* 與幻燈片區塊之間的間距 */
}


.slide {
    display: none;
}

.slide img {
    width: 100%;
    border-radius: 8px;
}

.downloads {
    background-color: #f8f9fa; /* 另一種淡灰色背景 */
}

.downloads h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.downloads ul {
    list-style: none;
    padding: 0;
}

.downloads li {
    font-size: 18px;
    margin-bottom: 8px;
    color: #555;
}

.downloads a {
    color: #007BFF;
    text-decoration: none;
}

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

.footer {
    text-align: center;
    font-size: 14px;
    color: #999;
}

.footer {
    background-color: #f8f9fa; /* 再次使用淡灰色 */
}

.footer p {
    margin: 0;
}

/* 點狀導航樣式 */
.dot {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #333;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active, .dot:hover {
    background-color: #007BFF;
}

/* 幻燈片漸變效果 */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
