/* Custom styles for ENZOEYS website */

/* m8-row-item__content 区域padding距离 */
.m8-row-item__content {
    padding: 20px;
    /* 默认内边距 */
    background-color: #f8f8f8;
    /* 背景色 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* 阴影效果 */
}

/* m8-row-item-img 固定宽高，居中裁剪 */
.m8-row-item-img {
    width: 300px;
    /* 固定宽度 */
    height: 200px;
    /* 固定高度 */
    overflow: hidden;
    /* 隐藏超出部分 */
    position: relative;
    /* 相对定位 */
    display: flex;
    /* 使用flex布局 */
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

.m8-row-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持宽高比并填充容器 */
    object-position: center;
    /* 图片居中 */
    display: block;
}

/* m8-row-item-event title 样式 - 严格2行高度，超出显示省略号 */
.m8-row-item-event .title {
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    /* 严格限制为2行 */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.4em !important;
    /* 行高 */
    max-height: 1.4em !important;
    /* 2行的高度 (1.4em * 2) */
    height: 1.4em !important;
    /* 固定高度 */
    margin-bottom: 8px !important;
    /* 添加下边距 */
    font-weight: bold !important;
    /* 保持粗体 */
    color: #333 !important;
    /* 标题颜色 */
    font-size: 16px !important;
    /* 标题字体大小 */
}

/* m8-row-item-event desc 样式 - 3行高度，超出显示省略号 */
.m8-row-item-event .desc {
    margin-top: 20px;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    /* 限制为3行 */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.4em !important;
    /* 行高 */
    max-height: 4.2em !important;
    /* 3行的高度 (1.4em * 3) */
    height: 4.2em !important;
    /* 固定高度 */
    color: #666 !important;
    /* 描述文字颜色 */
    font-size: 14px !important;
    /* 描述文字大小 */
    flex-grow: 1 !important;
    text-align: left !important;
    /* 左对齐 */
}

/* m8-row-item-event 容器样式 */
.m8-row-item-event {
    background-color: #f8f8f8;
    /* 背景色 */
    border-radius: 80x;
    /* 圆角 */
    /* 阴影效果 */
    height: 100%;
    /* 填满容器高度 */
    display: flex;
    flex-direction: column;
    /* 垂直排列 */
}

/* m8-row-item-event 地址和日期容器样式 */
.m8-row-item-event-ad {
    margin: 10px 0;
}

/* m8-row-item-event 地址和日期项样式 */
.m8-row-item-event-ad__address,
.m8-row-item-event-ad__date {
    display: flex;
    align-items: center;
    /* 下边距 */
    font-size: 13px;
    /* 字体大小 */
    color: #888;
    /* 颜色 */
}

.m8-row-item-event-ad__address:last-child,
.m8-row-item-event-ad__date:last-child {
    margin-bottom: 0;
    /* 最后一个项无边距 */
}

/* m8-row-item-event 图标样式 */
.m8-row-item-event-ad__icon {
    width: 16px;
    /* 图标宽度 */
    height: 16px;
    /* 图标高度 */
    margin-right: 2px;
    /* 右边距 */
}

/* m8-row-item-event 日期样式调整 */
.m8-row-item-event .date {
    margin-bottom: 8px;
    /* 添加下边距 */
    color: #999;
    /* 日期颜色 */
    font-size: 14px;
    /* 日期大小 */
    font-weight: 500;
    /* 中等粗细 */
}
.m8-row-item__content {
    padding: 15px;
}


/* 响应式设计 - 平板设备 */
@media (max-width: 768px) {
    .m8-row-item__content {
        padding: 15px;
        /* 平板设备减少内边距 */
    }

    .m8-row-item-img {
        width: 250px;
        height: 166px;
    }

    .m8-row-item-event {
        padding: 12px;
        /* 减少内边距 */
    }

  

    .m8-row-item-event .desc {
        font-size: 13px !important;
        /* 平板设备描述字体大小 */
        -webkit-line-clamp: 3 !important;
        /* 保持3行 */
        max-height: 4.2em !important;
        /* 保持3行高度 */
        height: 4.2em !important;
        text-align: left !important;
        /* 左对齐 */
    }

    .m8-row-item-event-ad {
        margin: 8px 0;
        /* 减少边距 */
        padding: 8px 0;
        /* 减少内边距 */
    }
}

/* 响应式设计 - 手机设备 */
@media (max-width: 576px) {
    .m8-row-item__content {
        padding: 12px;
        /* 手机设备进一步减少内边距 */
    }

    .m8-row-item-img {
        width: 200px;
        height: 133px;
    }

    .m8-row-item-event {
        padding: 10px;
        /* 进一步减少内边距 */
    }

    .m8-row-item-event .title {
        font-size: 14px !important;
        /* 手机设备标题字体大小 */
        -webkit-line-clamp: 2 !important;
        /* 保持2行 */
        max-height: 2.8em !important;
        /* 保持2行高度 */
        height: 2.8em !important;
        /* 固定高度 */
    }

    .m8-row-item-event .desc {
        font-size: 12px !important;
        /* 手机设备描述字体大小 */
        -webkit-line-clamp: 3 !important;
        /* 保持3行 */
        max-height: 4.2em !important;
        /* 保持3行高度 */
        height: 4.2em !important;
        text-align: left !important;
        /* 左对齐 */
    }

    .m8-row-item-event-ad {
        margin: 6px 0;
        /* 进一步减少边距 */
        padding: 6px 0;
        /* 进一步减少内边距 */
    }

    .m8-row-item-event-ad__address,
    .m8-row-item-event-ad__date {
        font-size: 12px;
        /* 手机设备小字体 */
    }

    .m8-row-item-event-ad__icon {
        width: 14px;        /* 手机设备小图标 */
        height: 14px;
    }
}

/* about-m4-container 样式 - 最大宽度1200px */
.about-m4-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}