/* 汉学大会页面样式 */
.congress-content {
    display: flex;
    /*margin-top: 30px;*/
    background-color: #fff;
    padding: 32px;
    margin-bottom: 36px;
}

.congress-detail {
    flex: 1;
    margin-left: 33px;
    min-height: 500px;
}
.congress-content .common-wrap {
    padding: 0!important;
}
.congress-content .congress-desc {
    font-size: 18px;
    line-height: 32px;
    color: #333333;
}
.congress-content .congress-desc p {
    margin-bottom: 20px!important;
}

/* 历届大会列表样式 */
.congress-history-list {
    flex: 1;
    margin-left: 33px;
}

.history-item {
    display: flex;
    margin-bottom: 40px;
}

.history-image {
    width: 484px;
    height: 184px;
    flex-shrink: 0;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.history-content {
    flex: 1;
    background-color: #F6F6F6;
    padding: 26px 30px;
}

.history-title {
    font-size: 18px;
    color: #333;
    margin: 0;
    position: relative;
    padding-bottom: 17px;
    display: block;
}

.history-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #5FD1D5;
}

.history-time {
    font-size: 15px;
    color: rgba(51, 51, 51, 0.6);
    margin: 16px 0;
}

.history-button {
    display: inline-block;
    width: 98px;
    height: 35px;
    border: 1px solid #5FD1D5;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
}

.history-button-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background-color: #5FD1D5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #FFFFFF;
}
@media screen and (max-width: 750px) {
    .congress-content {
        margin-top: 0;
        flex-direction: column;
        padding: 0 1rem;
        margin-bottom: 0;
    }
    .history-item {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    .history-image {
        width: 100%;
        min-height: 200px;
        min-height: auto;
        overflow: hidden;
        height: auto;
    }
    .congress-history-list {
        margin-left: 0;
        margin-top: 1rem;
    }
    .history-content {
        padding: 1rem 0;
        background: none;
    }
    .history-title::after {
        background-color: #E5E5E5;
    }
    .congress-detail {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    .congress-content .congress-desc {
        font-size: 16px;
    }
}
