限時美景打卡勝地

無車族車宿

by applelily

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>限時美景打卡勝地</title>
    <link href="./css/landingpage.css" rel="stylesheet"/>
</head>
<body>
    <div  class="bk_img_container">

        <img class="bk_img" src="https://imgur.com/ITld2pF.jpg"/>

        <div class="slogan">
            <p>無車族也能輕鬆車宿 !</p>
            <p>完全自動駕駛,專人安排行程,</p>
            <p>讓您暢遊無憂,盡情享受車宿體驗 ~

                <button class="explore-button">了解更多</button>

            </p>
            
 
    
        </div>

    </div>
</body>
</html>

CSS

body, html {
    margin: 0;
    padding: 0;
}

.bk_img_container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* 占满整个视口高度 */
}

.bk_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 铺满且不变形 */
    z-index: -1;
}

.slogan {
    color: #e4e1e1;
    font-family: Arial, sans-serif;
    padding: 20px;
    border-bottom: 1px solid #dddddd;
    border-radius: 10px;
}

.slogan p {
    margin: 5px 0;
    font-size: 20px;
}

.explore-button {
    font-size: 20px;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    background-color:#c0392b;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;  
    position: relative;
}

.explore-button:hover {
    background-color: #27ae60;
}
@media screen and (max-width: 768px) {
    /* 在小屏幕上调整样式 */
    .slogan p {
        font-size: 18px;
    }
    .explore-button {
        font-size: 15px;
    }
}