* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100vh;
}

.content {
    width: 100%;
    height: 100%;
    /* background-image: url('../img/bg-pic.png'); */
    background-image: url('../img/jichen.png');
    /* 设置背景图片 */
    background-repeat: no-repeat;
    /* 设置背景图片不重复 */
    background-position: center auto;
    /* 设置背景图片居中 */
    background-size: cover;
    position: relative;
}

.bottom {
    position: absolute;
    height: 120px;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.iphone,
.android {
    width: 80%;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #CAA37F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #CAA37F;

}

.bottom .iphone img {
    width: 28px;
    height: 28px;
}

.android {
    background-color: #CAA37F;
    margin-top: 10px;
}

.android img {
    width: 28px;
    height: 28px;
}