.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.main-tit {
    margin: 1rem;
    font-size: 1.4rem;

}

.main-con {
    text-indent: 3rem;
    margin: 1rem;
    color: rgba(153, 153, 153, 1);
    /* padding: 1rem; */
    font-size: 1.4rem;
    /* 设置固定的宽度 */
    width: 35.5rem;
    /* 裁剪多余的 */
    /* overflow: hidden; */
    /* 多余的以省略号出现 */
    text-overflow: ellipsis;
    /* 将对象作为弹性伸缩盒子模型显示 */
    display: -webkit-box;
    /* 限制再一个块元素再文本显示的行数 */
    -webkit-line-clamp: 4;
    /* 设置或检索伸缩盒对象的子元素的排列方式 */
    /* -webkit-box-orient: vertical; */

}

.main-r {
    text-align: right;
    width: 37.5rem;
}

.main-r button {
    /* width: 8rem;
    height: 3rem; */
    border-radius: 4px;
    background-color: rgba(255, 116, 27, 1);
    color: rgba(255, 255, 255, 1);
    margin-right: 1rem;
    padding: 0.2rem 1rem;
    font-size: 1.2rem;
}

.list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;

}

.list-i {
    /* width: 16.8rem; */
    font-size: 1.4rem;
    margin-top: 2rem;
}

.list-i img {
    width: 16.8rem;
    height: 11rem;
    border-radius: 10px;
    object-fit: cover;
}

.list-i div {
    color: rgba(153, 153, 153, 1);
    font-size: 1.4rem;
    /* 设置固定的宽度 */
    width: 16.8rem;
    /* 裁剪多余的 */
    overflow: hidden;
    /* 多余的以省略号出现 */
    text-overflow: ellipsis;
    /* 将对象作为弹性伸缩盒子模型显示 */
    display: -webkit-box;
    /* 限制再一个块元素再文本显示的行数 */
    -webkit-line-clamp: 3;
    /* 设置或检索伸缩盒对象的子元素的排列方式 */
    -webkit-box-orient: vertical;
}

.map-pop-up h4 {
    font-size: 14px;
}

.map-pop-up ul {
    margin: 5px 0;
}

.map-pop-up li {
    font-size: 12px;
}