.meeting {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.meeting-item {
    width: calc(50% - 7.5px);
    background-color: #ffffff;
	box-shadow: 0px 0px 12px 0px rgba(225, 225, 225, 0.7);
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 15px;
    margin-right: 15px;
    display: flex;
    transition: all 0.3s ease-out;
}
.meeting-item:hover {
    transform: scale(1.01);
}
.meeting .meeting-item:nth-child(2n) {
    margin-right: 0;
}
.image-item {
    width: 40%;
}

.image-item .image-169 {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    box-sizing: border-box;
}
.image-item .image-169 img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.meeting-info {
    flex: 1;
    padding-left: 20px;
    box-sizing: border-box;
    max-width: 60%;
}
.meeting-date {
    font-size: 26px;
    color: #2b66be;
    font-weight: bold;
}
.meeting-date span {
    font-size: 13px;
    font-weight: normal;
}
.meeting-title {
    font-size: 16px;
    color: #000000;
    letter-spacing: 0px;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.meeting-subTitle {
    font-size: 14px;
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    letter-spacing: 0px;
    margin-top: 3px;
    height: 38px;
}
.btn-content {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
}
.local {
    color: #999999;
    font-size: 13px;
    display: flex;
    align-items: center;
}
.local .country {
    position: relative;
    margin-right: 8px;
    padding-right: 8px;
    margin-left: 3px;
}
.country:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background: #999999;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.check-detail {
    width: 84px;
    height: 29px;
    color: #FFFFFF;
    text-align: center;
    line-height: 29px;
    font-size: 13px;
    font-family: MicrosoftYaHeiLight;
    background: #448fec;
    border-radius: 5px;
    cursor: pointer;
}
@media screen and (max-width: 550px) {
    .meeting-item {
        width: 100%;
        margin-right: 0;
        display: block;
    }
    .image-item {
        width: 100%;
    }
    .meeting-info {
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
        padding-left: 0;
    }
}