顺丰

顺丰在这里插入代码片

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        .sf {
            width: 1259px;
            height: 472px;
            margin: 100px auto;
            position: relative;
        }
        .nav {
            width: 960px;
            height: 80px;
            background-color: #000;
            position: absolute;
            bottom: 0;
            left: 50%;
            margin-left: -480px;
        }
        .nav li {
            float: left;
            width: 160px;
            height: 80px;
        }
        .nav li a {
            width: 150px;
            height: 80px;
            display: block;
            text-decoration: none;
            text-align: center;
            line-height: 80px;
            color: #fff;
        }
        .nav li a:hover {
            background-color: #fff;
            color: #000;
        }
    </style>
</head>
<body>  
    <div class="sf">
        <a href="#">
            <img src="../images/sf.png" height="472" width="1259" alt="">
            <div class="nav">
                <ul>
                    <li><a href="#">快递查</a></li>
                    <li><a href="#">快递查询</a></li>
                    <li><a href="#">快递查询</a></li>
                    <li><a href="#">快递查询</a></li>
                    <li><a href="#">快递查询</a></li>
                    <li><a href="#">快递查询</a></li>
                </ul>
            </div>
        </a>
    </div>
</body>
</html>