/* pc布局 */

.container {
    width: 100%;
    background: #051550;
}


/* 论坛背景 */

.forwardBox {
    width: 1000px;
    margin: 0 auto;
}

.forwardTitle {
    text-align: left;
    margin-top: 70px;
}

.forwardTitle img {}

.forwardInfo {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}


/* 热点话题 */

.hotTopicBox {
    width: 1000px;
    margin: 80px auto 0;
}

.hotTopicTitle {
    text-align: right;
}

.hotTopic {
    margin-top: 15px;
}


/* 论坛专家 */

.forumExpertBox {
    width: 1000px;
    margin: 95px auto 0;
}

.forumExpertTitle {
    text-align: left;
}

.forumExpertList {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.forumExpertList li {
    margin-bottom: 50px;
    cursor: pointer;
    width: 199px;
}

.forumExpertList li img {
    width: 199px;
    /* height: 227px; */
    transition: all 0.8s ease;
}

.forumExpertList li:hover img {
    transform: scale(1.1);
}


/* 论坛议程 */

.meetingAgenda {
    width: 1000px;
    margin: 50px auto 0;
}

.agendaTitle {
    text-align: right;
}

.agendaCont {
    margin-top: 60px;
    text-align: center;
}


/* 参会群体 */

.meetingGroup {
    width: 1000px;
    margin: 110px auto 0;
}

.groupTitle {
    text-align: left;
}

.attendeeGroup {
    margin-top: 60px;
    text-align: center;
}

.attendeeGroup img {}


/* 历届回顾 */

.reviewBox {
    width: 100%;
    margin-top: 125px;
}

.reviewPast {
    width: 1000px;
    margin: 0 auto;
}

.reviewTitle {
    text-align: right;
}

.reviewContent {
    position: relative;
    margin-top: 45px;
}

.reviewPic {
    width: 1000px;
    margin: 0 auto;
    /* height: 450px; */
    height: 380px;
    text-align: center;
    position: relative;
    display: flex;
    overflow: hidden;
}

.reviewPic li {
    width: 100%;
    height: 100%;
    display: none;
}

.reviewPic li a {
    display: block;
    width: 100%;
    height: 100%;
}

.reviewPic li img {
    border: none;
    margin-bottom: 15px;
    width: 100%;
    height: 100%;
}

.reviewPic li a p {
    font-size: 24px;
    color: #ffffff;
    text-align: left;
    margin-bottom: 5px;
}

.reviewPic li {
    display: none;
    position: absolute;
    left: 0;
    cursor: pointer;
}

.prevBtn {
    width: 60px;
    height: 60px;
    display: block;
    background: url('../images/forumReview/prev.png') no-repeat center;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -73px;
}

.prevBtn:hover {
    background: url('../images/forumReview/next.png') no-repeat center;
    transform: rotate(180deg);
}

.nextBtn {
    width: 60px;
    height: 60px;
    display: block;
    background: url('../images/forumReview/prev.png') no-repeat center;
    transform: rotate(180deg);
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -73px;
}

.nextBtn:hover {
    background: url('../images/forumReview/next.png') no-repeat center;
    transform: rotate(360deg);
}

.reviewNav {
    width: 600px;
    margin: 40px auto 0;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    background: url('../images/reviewBottom.png') no-repeat;
    background-position: bottom;
}

.reviewNav li {
    padding: 5px 35px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.reviewNav .reviewActive {
    background: url('../images/index/review/reviewTabBg.png') no-repeat center;
}


/* 合作伙伴 */

.partnerBox {
    width: 1000px;
    margin: 125px auto 100px;
}

.partnerTitle {
    text-align: left;
}

.partnerLogo {
    margin-top: 50px;
}