/*
Image styles on pages through website
findmee-image.css
*/


/* 网页中水平隔断全宽图片 */
/*
merchant-index.html
merchant-list.html
merchant-search.html
influencer-index.html
influencer-list.html
influencer-search.html
poster-index.html
socialgroup-index.html
site-search.html
*/
.findmee-background-image-div {
    width: 100%;
    height: 200px;
    background-image: url('https://picsum.photos/1920/768?random=314'); /* 背景图像的路径 */
    background-size: cover; /* 让背景图像覆盖整个 div */
    background-position: center; /* 背景图像居中对齐 */
    background-repeat: no-repeat; /* 防止背景图像重复 */
    color: white; /* 设置文字颜色为白色，确保在背景图上可见 */
    text-align: center; /* 文字居中对齐 */
    padding: 0px;
}