.detail_conference {
    margin: .5rem auto;
}

.detail_conference_about {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    align-content: flex-start;
}

.detail_conference_about .pic {
    float: left;
    width: 8.16rem;
    height: 6.20rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-right: .6rem;
    border-top: #f5f8ff 0.3rem solid;
    border-bottom: #f5f8ff 0.3rem solid;
}

.detail_conference_about .pic:hover .img {
    scale: 1.1
}

.detail_conference_about .pic:before {}

.detail_conference_about .pic .img {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: 100% 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: .6s;
    -o-transition: .6s;
    -moz-transition: .6s;
    transition: .6s
}



.detail_conference_info {
    margin-left: .2rem;
    flex: 1;
    min-width: 0;
}

.detail_conference_info .info_tit {
    border-bottom: #e5e5e5 1px solid;
    padding: 0.15rem 0;
    font-size: .18rem;
    line-height: .32rem;
    /* white-space: pre-line; */
    /* 或者使用 pre-wrap */
    /* white-space: pre-wrap; */
    transition: all 0.3s
}

.detail_conference_info .info_tit:hover {
    border-bottom: #256ceb 3px solid;
    transition: all 0.3s;
}

.detail_conference_info .info_tit:first-child {
    padding-top: 0
}

.detail_conference_info .info_tit:last-child {
    border-bottom: none
}

.detail_conference_info .info_tit h2 {
    line-height: .4rem;
    font-size: .22rem;
    margin: 0;
    padding: 0;
}

.detail_conference_info .info_tit p {
    font-size: .18rem;
    margin: 0;
    padding: 0;
}

.detail_conference_info .info_tit p {}

.detail_conference_section {
    margin-bottom: .3rem;
}

.detail_conference_section:hover .section_tit {
    border-bottom: #1549ce 5px solid;
    transition: all 0.3s
}

.detail_conference_section .section_tit {
    color: #1549ce;
    font-size: .24rem;
    position: relative;
    display: flex;
    align-items: center;
    align-content: flex-start;
    border-bottom: #e5e5e5 1px solid;
    padding: 0.2rem 0;
    margin-bottom: 0.2rem;
    transition: all 0.3s
}

.detail_conference_section .section_tit img {
    height: .54rem;
    margin-right: 0.2rem;
}

.detail_conference_section p {
    font-size: .18rem;
    line-height: .36rem;
    text-align: justify;
}

.detail_conference_section p a {}

.detail_conference_section p img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.detail_conference_section table {
    border-collapse: collapse;
    /* 使边框合并为一条细线 */
    width: 100%;
    /* 设置表格宽度 */
}

.detail_conference_section table, th, td {
    border: 1px solid black;
    /* 设置边框样式为1像素的实线，颜色为黑色 */
}

.detail_conference_section th, td {
    padding: 8px;
    /* 设置单元格内边距 */
    text-align: left;
    /* 设置文本对齐方式 */
}

@media screen and (max-width: 1024px) {
    .detail_conference_info .info_tit {
        font-size: .24rem
    }

    .detail_conference_info {
        margin: 0;
        width: 100%;
    }

    .detail_conference_about {
        display: block;
    }

    .detail_conference_about .pic {
        width: 100%;
        float: none;
        margin: 0 auto;

    }

    .detail_conference_info .info_tit h2 {
        font-size: .3rem;
        line-height: .4rem;
        padding: .2rem 0;
    }

    .detail_conference_info .info_tit p {
        font-size: .24rem;
        line-height: .4rem;
    }

    .detail_conference_section p {
        font-size: .24rem;
        line-height: .4rem;
    }

    .detail_conference_section .section_tit {
        font-size: .3rem;
    }

}