/*
brand card
social card
findmee-booth.css
*/


/* all pages that have brand cards */
.findmee-div-title-fixed{
	/* height: 3vh; */
	height: 25px;
	overflow: hidden;
	/* border: 1px solid #000; */
	margin-bottom: 8px;
}

.findmee-div-fixed{
	/* height: 6.5vh; */
	height: 45px;
	overflow: hidden;
	/* border: 1px solid #000; */
}

.findmee-div-fixed p {
  font-size: 1.1em !important;
}

.findmee-div-footer-fixed{
	height: 43px;
}


/*
   overwrite cover image of brand card
   maintaining aspect-ratio at 3:2
   for all locations of displaying brand card
*/
.geodir-category-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;     /* 核心：强制 3:2 */
    overflow: hidden;
    background: #f2f2f2;     /* 图片加载前的占位背景 */
}

.geodir-category-img img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;       /* 填满 + 裁剪 */
    object-position: center; /* 居中裁剪 */

    display: block;
}

.geodir-category-img,
.geodir-category-img img {
    max-height: none;
    min-height: 0;
}

/* ============================================================= */

/* socialgroup-index.html */
.findmee-qr {
	/* width: 22%; */
	width: 72px;
	border-radius: 5px;
	float: left;
	margin-right:10px;
}