  /* 样式可以根据需要进行修改 */
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        .slideshow-container {
            max-width: 800px;
            position: relative;
            margin: auto;
            overflow: hidden;
        }

        .mySlides {
            display: none;
            transition: opacity 0.5s ease-in-out; /* 添加过渡效果 */
        }

        .slideshow-container img {
            width: 100%;
            height: auto;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .text {
            color: #f2f2f2;
            font-size: 15px;
            padding: 8px 12px;
            position: absolute;
            bottom: 20px; /* 调整介绍内容距离底部的位置 */
            width: 100%;
            text-align: center;
            box-sizing: border-box;
            background: rgba(0, 0, 0, 0.5);
            transition: opacity 0.5s ease-in-out; /* 添加过渡效果 */
            opacity: 0; /* 默认隐藏 */
        }

        .details {
            max-width: 100%;
            margin: auto;
            text-align: center;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            margin-top: 20px;
            transition: opacity 0.5s ease-in-out; /* 添加过渡效果 */
            opacity: 0; /* 默认隐藏 */
        }

        .details p {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
        }

        .show {
            opacity: 1; /* 显示 */
        }

        @media only screen and (max-width: 600px) {
            .slideshow-container {
                max-width: 100%;
            }
        }