body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #B3B1B1; /* 鑳屾櫙棰滆壊 */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh; /* 鍏ㄥ睆楂樺害 */
            box-sizing: border-box;
        }

        /* 绗竴寮犲浘鐗囧鍣� */
        .image-container1 {
			
            width: 96px;
            height: 96px;
            overflow: hidden;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px; /* 鍥剧墖涓庝笅涓€鍐呭鐨勯棿璺� */
			margin-top: 10%; /* 鍥剧墖涓庝笅涓€鍐呭鐨勯棿璺� */
        }
        .image-container1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 绗竴娈垫枃鏈� */
        .text-container {
            text-align: center; /* 瀹瑰櫒灞呬腑 */
            margin-bottom: 20px; /* 鏂囨湰涓庝笅涓€鍐呭鐨勯棿璺� */
            padding: 0 15px;
            max-width: 600px; /* 闄愬埗鏈€澶у搴� */
            width: 90%; /* 鑷€傚簲瀹藉害 */
            word-wrap: break-word; /* 鑷姩鎹㈣ */
            word-break: break-all; /* 閬垮厤鍗曡瘝瓒呭嚭瀹瑰櫒 */
            overflow-wrap: break-word; /* 纭繚鎹㈣ */
        }
        .text-container h1 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #2c2c2c;
            font-weight: bold;
        }
        .text-container p {
            font-size: 16px;
            color: #2c2c2c;
            line-height: 1.8;
            font-weight: bold;
            text-align: justify; /* 璁剧疆鏂囨湰涓ょ瀵归綈 */
        }

        /* 鎸夐挳鏍峰紡 */
        .button, .second-button22 {
            width: 80%; /* 鎸夐挳瀹藉害鑷€傚簲灞忓箷 */
            max-width: 600px;
            margin-top: 20px;
            padding: 16px;
            font-size: 18px;
            font-weight: bold;
            background-color: white;
            color: #333;
            border: 2px solid #B3B1B1;
            border-radius: 30px;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }
        .button:hover, .second-button22:hover {
            background-color: #B3B1B1;
            color: white;
            border-color: white;
        }
        .button:active, .second-button22:active {
            background-color: #B3B1B1;
            color: white;
            border-color: white;
        }

        /* 绗簩寮犲浘鐗囧鍣� */
        .second-image-container2 {
            margin-top: 30px;
            position: relative;
            width: 90%; /* 鑷€傚簲瀹藉害 */
            max-width: 600px;
        }
        .second-image-container2 img {
            width: 100%;
            height: auto;
            cursor: pointer;
            border-radius: 10px;
        }
        .second-text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 16px;
            font-weight: bold;
            text-align: left;
            padding: 10px;
            box-sizing: border-box;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        /* 绗簩涓寜閽牱寮忥紙鍚浘鏍囷紝鏂囧瓧灞呬腑瀵归綈锛� */
        .second-button22 {
            display: flex;
            align-items: center;
            justify-content: center; /* 灞呬腑瀵归綈鍥炬爣鍜屾枃瀛� */
            gap: 10px; /* 鍥炬爣鍜屾枃瀛椾箣闂寸殑闂磋窛 */
            animation: pulse 2s infinite;
        }
        .second-button22 img {
            width: 50px; /* 鍥剧墖鏇村ぇ锛岄€傚悎灏忓睆骞曡鐪� */
            height: 50px;
            border-radius: 50%; /* 鍦嗗舰鍥剧墖 */
            object-fit: cover;
        }

        /* 鍛煎惛璺冲姩鍔ㄧ敾 */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* 鑷€傚簲甯冨眬浼樺寲 */
        @media (max-width: 768px) {
            .text-container h1 {
                font-size: 20px;
            }
            .text-container p {
                font-size: 14px;
            }
            .button, .second-button22 {
                font-size: 16px;
                padding: 14px;
            }
            .second-button22 img {
                width: 40px;
                height: 40px;
            }
        }