
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>广州灏仟亿电子商务有限公司</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .header {
            background-color: #333;
            color: #fff;
            padding: 10px 0;
            text-align: center;
        }
        .logo img {
            width: 100px;
            height: auto;
        }
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        .video {
            max-width: 1280px; /* 设置最大宽度 */
            max-height: 720px; /* 设置最大高度 */
            width: 100%; /* 确保视频宽度自适应 */
            height: auto; /* 确保视频高度自适应 */
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        .content {
            text-align: center;
            margin-bottom: 20px;
        }
        .content p {
            font-size: 18px; /* 增大文字大小 */
            margin-bottom: 10px;
        }
        .content a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px; /* 增大链接文字大小 */
        }
        .content a:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
        }
        .footer a {
            color: #fff;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="header">
        <div class="logo">
            <img src="https://bestfulfill.com.cn/bestfulfillImages/logo.png" alt="Logo">
        </div>
    </div>
    <div class="main-content">
        <video class="video" controls preload="none" webkit-playsinline playsinline loop>
            <source src="https://bestfulfill.com.cn/bestfulfillImages/videoplayback.mp4" type="video/mp4">
            您的浏览器不支持视频播放。
        </video>
        <div class="content">
            <p>了解更多关于 <a href="https://bestfulfill.com.cn/" target="_blank">广州灏仟亿电子商务有限公司</a> 的服务和解决方案。</p>
        </div>
    </div>
    <div class="footer">
        <a href="http://beian.miit.gov.cn" target="_blank">粤ICP备2023121338号-1</a>
    </div>
</body>
</html>