* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.row {
    width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}
@media (max-width: 750px) {
    .row {
        width: 100%;
    }
}
.flexBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
img {
    display: block;
}

body {
    font-family: 'Arial', 'Microsoft YaHei', 'SimHei', 'SimSun', sans-serif;
    background: #fff;
}
.scroll {
    scrollbar-width: none; /* firefox */
    -ms-overflow-style: none; /* IE 10+ */
    overflow: auto;
}
.scroll::-webkit-scrollbar {
    display: none;
}
.scroll::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
     -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    background: #383031;
}
.scroll::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    border-radius: 10px;
    background: #111;
}


/* 头部 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(33, 31, 114);
    z-index: 99;
}
.header-box {
    height: 75px;
    line-height: 75px;
}
.header-box .logo {
    -webkit-align-items: center;
    align-items: center;
    margin-right: 28px;
}
.header-box .navs a {
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
    border-top: 2px solid transparent;
    text-align: center;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    padding: 0 20px;
}
.header-box .navs a.active,
.header-box .navs a:hover {
    color: #FFDB66;
    border-top: 2px solid #FFDB66;
}
@media (max-width: 750px) {
    .header {
        display: none;
    }
}

/* 手机导航 */
.header_warp {
    display: none;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    height: 46px;
    background: rgb(33, 31, 114);
}
.header_warp_cut {
    height: 100%;
    position: fixed;
}
.header_warp .navBox {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 996;
    cursor: pointer;
}
.header_warp_cut .navBox {
    z-index: 1000;
}
.header_warp .nav_more {
    background: 0 0;
    border: none;
    padding: 10px 20px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
    z-index: 99999;
}
.header_warp .nav_more .icon-bar {
    display: block;
    margin: 5px 0;
    width: 23px;
    height: 2px;
    background-color: #fff;
}
.header_warp_cut .nav_more .icon-bar {
    background: #636363;
}
.header_warp .nav_more .icon-bar {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 999999;
}
.header_warp_cut .nav_more .top {
    -webkit-transform: translateY(6px) rotateZ(45deg);
}
.header_warp_cut .nav_more .middle {
    width: 0;
    visibility: hidden;
}
.header_warp_cut .nav_more .bottom {
    -webkit-transform: translateY(-8px) rotateZ(-45deg);
}
.navList {
    z-index: 900;
    width: 100%;
    background: #fff;
    display: none;
    position: fixed;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    overflow: scroll;
}
.navList ul {
    padding: 0;
    list-style: none;
    background: #f9fafb;
    padding: 15px 30px;
    padding-top: 46px;
}
.navList ul li {
    overflow: hidden;
    position: relative;
}
.navList_ul > li > a {
    padding: 20px 35px 20px 10px;
    position: relative;
    color: #3d3d3d;
    display: block;
}
.navList_ul > li > a:hover {
    color: #3d3d3d;
}
.navList ul li > a {
    border-bottom: 1px solid #c4c4c4;
    line-height: 120%;
    position: relative;
    z-index: 2;
}
.header_warp_cut .navdrop_icon {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 5px;
    top: 15px;
}
.header_warp_cut li .navdrop_icon .icon-bar {
    -webkit-transition: all .5s ease;
    z-index: 10;
}
.header_warp_cut li .navdrop_icon .icon-bar {
    display: block;
    margin: 5px 0;
    width: 10px;
    height: 2px;
    background: #3d3d3d;
}
.header_warp_cut li .navdrop_icon .icon-bar {
    background: #636363;
    position: absolute;
    right: 0;
    top: 10px;
}
.header_warp_cut li .navdrop_icon .top {
    -webkit-transform: translateY(-4px) rotateZ(45deg);
}
.header_warp_cut li .navdrop_icon .middle {
    width: 0;
    vertical-align: hidden;
}
.header_warp_cut li .navdrop_icon .bottom {
    -webkit-transform: translateY(2px) rotateZ(-45deg);
}
@media (max-width: 750px) {
    .header_warp {
        display: block;
    }
}

/* banner */
.banner {
    height: 550px;
    background: url(../images/banner-bg.png) center no-repeat;
    margin-top: 75px;
}
.banner .row {
    height: 100%;
}
.banner-info {
    height: 100%;
    -webkit-align-item: center;
    align-items: center;
}
.banner .banner-mob {
    display: none;
}
@media (max-width: 750px) {
    .banner {
        height: 100%;
        margin-top: 46px;
    }
    .banner .row {
        padding: 0;
    }
    .banner .banner-pc {
        display: none;
    }
    .banner .banner-mob {
        display: block;
        width: 100%;
    }
}

/* container */
.main-box {
    padding: 30px 0;
}
.title span {
    position: relative;
    line-height: 70px;
    color: #444;
    font-weight: bold;
    font-size: 24px;
    margin-right: 12px;
}
.title b {
    color: #8C8C8C;
    font-weight: bold;
    font-size: 12px;
    font-weight: normal;
}
.main-info {
    padding-top: 30px;
}

/* 会议介绍 */
.mt-introduct-box {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.mt-introduct {
    width: 550px;
}
.mt-introduct h6 {
    color: #333333;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
}
.mt-introduct h2 {
    color: #333333;
    font-size: 24px;
    margin-bottom: 35px;
}
.mt-introduct p {
    line-height: 1.8;
    color: #333333;
    font-size: 16px;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 12px;
}
@media (max-width: 750px) {
    .mt-introduct-box img {
        display: none;
    }
    .mt-introduct {
        width: 100%;
        padding-top: 0;
    }
    .mt-introduct p {
        font-size: 16px;
    }
}

/* 参会价值 */
.mt-value {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.mtValue-list {
    width: 277.5px;
    background: #FFFFFF;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 15px;
}
.mtValue-list img {
    width: 100%;
}
.mtValue-list h2 {
    color: #151515;
    font-size: 15px;
    font-weight: normal;
    padding: 14px 0;
}
.mtValue-list p {
    height: 96px;
    line-height: 1.5;
    color: #6E6E6E;
    font-size: 14px;
    text-align: justify;
}
@media (max-width: 750px) {
    .mtValue-list {
        width: 100%;
    }
}

/* 会议议题 */
.mt-topics {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.topics-list {
    width: 277.5px;
    color: #FFFFFF;
    text-align: center;
    background: rgb(33, 31, 114);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 30px 0;
    margin-right: 20px;
    margin-bottom: 20px;
}
.topics-list:nth-child(4n) {
    margin-right: 0;
}
.topics-list img {
    display: inline-block;
}
.topics-info {
    /* height: 40px; */
    line-height: 1.5;
    padding: 0 30px;
}
.topics-info p {
    position: relative;
    text-align: left;
    text-indent: 21px;
}
.topics-info p:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 12px;
    height: 12px;
    background: #FFFFFF;
}
@media (max-width: 750px) {
    .topics-list {
        width: 48%;
        padding: 20px 0;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .topics-list:nth-child(2n) {
        margin-right: 0;
    }
    .topics-info {
        padding: 0 10px;
    }
}


/* 拟邀企业 */
.mt-scroll {
    background-color: #f6f1ff;
    /* border: 1px solid #AFA9A9; */
    -webkit-justify-content: center;
    justify-content: center;
    padding: 20px 0;
}
.mt-scroll-box {
    position: relative;
    width: 310px;
    height: 350px;
    overflow: hidden;
    margin: 0 20px;
}
.mt-scroll-box > ul {
    position: absolute;
}
.mt-scroll-box > ul > li {
    width: 100%;
    line-height: 40px;
    color: #666666;
}

/* 演讲嘉宾 */
/* .mt-speaker {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.speaker-list {
    width: 277.5px;
    background: #1F0550;
    margin-right: 20px;
    margin-bottom: 20px;
}
.speaker-list:nth-child(4n) {
    margin-right: 0;
}
.speaker-list > img {
    width: 100%;
}
.speaker-info {
    color: #FFFFFF;
    padding: 20px;
}
.speaker-name {
    font-size: 18px;
    font-weight: normal;
}
.speaker-job {
    color: #EEEEEE;
    font-size: 13px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 8px;
}
.speaker-line {
    height: 1px;
    background: #FFFFFF;
    margin: 20px 0;
}
.speaker-info-title {
    font-size: 14px;
    font-weight: normal;
}
.speaker-content {
    height: 45px;
    line-height: 1.5;
    font-size: 14px;
    text-align: justify;
    overflow: auto;
    margin-top: 15px;
}
@media (max-width: 750px) {
    .speaker-list {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .speaker-list:nth-child(2n) {
        margin-right: 0;
    }
    .speaker-info {
        padding: 10px;
    }
    .speaker-job {
        line-height: 1.5;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .speaker-line {
        margin: 15px 0;
    }
    .speaker-content {
        margin-top: 10px;
    }
} */
.mt-speaker {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.speaker-list {
    position: relative;
    width: 277.5px;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 10px 0 0 10px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.speaker-list:nth-child(4n) {
    margin-right: 0;
}
.speaker-img {
    border: 1px #DDDDDD solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 30px;
    z-index: 2;
}
.speaker-img img {
    width: 100%;
}
.speaker-info {
    color: #FFFFFF;
    background-color: #F6F1FF;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    padding: 260px 10px 10px 10px;
}
.speaker-name {
    font-size: 20px;
    text-align: center;
    font-weight: normal;
    color: #333;
}
.speaker-job {
    line-height: 1.5;
    color: #666;
    font-size: 16px;
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 8px;
}
.data-download {
    text-align: center;
    margin-top: 12px;
}
.data-download a {
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    background: #124fab;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 5px 12px;
}
.speaker-line {
    height: 1px;
    background: #FFFFFF;
    margin: 20px 0;
}
.speaker-content-box {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;
    height: 250px;
    color: #FFFFFF;
    background-color: #F6F1FF;
    /* background-image: linear-gradient(90deg, #8c01ff 0%, #2a46e5 100%); */
    padding: 10px;
    z-index: 1;
}
.speaker-info-title {
    font-size: 20px;
    color: #333;
    text-align: center;
}
.speaker-content {
    height: 85%;
    line-height: 1.5;
    font-size: 16px;
    color: #666;
    text-align: justify;
    opacity: 0;
    overflow: auto;
    transition: all ease-in-out .2s;
    -webkit-transition: all ease-in-out .2s;
    -moz-transition: all ease-in-out .2s;
    -ms-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
    margin-top: 15px;
}
.speaker-list:hover .speaker-content-box {
    z-index: 3;
}
.speaker-list:hover .speaker-content {
    opacity: 1;
}

@media (max-width: 750px) {
    .speaker-list {
        width: 48%;
        padding: 0;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .speaker-list:nth-child(2n) {
        margin-right: 0;
    }
    .speaker-img {
        position: relative;
    }
    .speaker-info {
        padding: 8px;
    }
    .speaker-name {
        font-size: 16px;
    }
    .speaker-job {
        line-height: 1.5;
        font-size: 12px;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .speaker-job span:first-child {
        height: 36px;
    }
    .speaker-content-box {
        display: none;
    }
    .speaker-content {
        margin-top: 10px;
    }
}

/* 本届企业赞助商 */
.mt-zzs {
    -webkit-justify-content: center;
    justify-content: center; 
}
.mt-zzs-img {
    margin: 0 40px;
}
.mt-zzs-img img {
    width: 100%;
}
@media (max-width: 750px) {
    .mt-zzs-img {
        width: 100%;
        margin: 0;
    }
}

/* 地图导航 */
.lead_font {
    height: 350px;
    overflow: auto;
    line-height: 30px;
    margin-left: 20px;
}
.map-info-box {
    width: 630px;
}
.map-img {
    width: 535px;
}
.map-img img {
    width: 100%;
}

@media (max-width: 750px) {
    .lead_font {
        height: auto;
        margin: 0;
    }
    .main-info p {
        font-size: 12px;
        line-height: 2;
    }
    .map-img {
        width: 100%;
    }
    .mt-map {
        flex-direction: column;
    }
    .map-info-box {
        width: 100%;
        margin-top: 20px;
    }
}


/* 往届回顾 */
.mt-review {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.review-img-box {
    width: 550px;
}
.my-bullet {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #211f72;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 4px;
}
.my-bullet-active {
    background: #ffffff;
}
.review-info {
    width: 650px;
    background-color: #f6f1ff;
    /* background-image: linear-gradient(90deg, #8c01ff 0%, #2a46e5 100%); */
    padding: 20px;
}
.review-list {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 40px;
}
.review-list:last-child {
    margin-bottom: 0;
}
.review-time {
    color: #547299;
    font-size: 16px;
    text-align: center;
    border: 1px solid #A4C3E6;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 15px 17px;
    margin-right: 20px;
}
.review-line {
    width: 44px;
    height: 1px;
    background: #FFFFFF;
    margin: 8px 0;
}
.review-details-box {
    width: 100%;
    color: #FFFFFF;
    -webkit-align-items: center;
    align-items: center;
}
.review-details {
    width: 480px;
    color: #555;
}
.review-details h3 {
    font-size: 17px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.review-details p {
    font-size: 14px;
    /* white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; */
    line-height: 28px;
    margin-top: 12px;
}
@media (max-width: 750px) {
    .mt-review {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .review-img-box {
        width: 100%;
    }
    .review-img img {
        width: 100%;
    }
    .review-info {
        width: 100%;
        padding: 10px;
    }
    .review-list {
        -webkit-flex-direction: column;
        flex-direction: column;
        margin-bottom: 25px;
    }
    .review-time {
        border: none;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
    }
    .review-time span {
        margin-right: 10px;
    }
    .review-line {
        display: none;
    }
    .review-details {
        width: 100%;
        margin-top: 10px;
    }
    .review-details h3 {
        font-size: 14px;
    }
    .review-details p {
        font-size: 12px;
    }
}

/* 相关媒体报道 */
.mt-media {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 189px;
}
.media-list {
    cursor: pointer;
    width: 575px;
    color: #555;
    font-size: 14px;
    border: 1px solid #3A3A3A;
    padding: 20px;
}
.media-title {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.media-title .media-name {
    color: #FFFFFF;
    font-size: 15px;
}
.media-list p {
    line-height: 1.5;
    /* margin-top: 20px; */
}
@media (max-width: 750px) {
    .media-list {
        padding: 15px;
    }
}

/* 合作媒体 */
.mt-logo {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.logo-list {
    border: 1px #ddd solid;
    width: 218px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.logo-list:nth-child(5n) {
    margin-right: 0px;
}
.logo-list img {
    width: 100%;
}
@media (max-width: 750px) {
    .logo-list {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .logo-list:nth-child(5n) {
        margin-right: 2%;
    }
    .logo-list:nth-child(3n) {
        margin-right: 0;
    }
}


/* 联系我们 */
.mt-contact {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.contact-list {
    width: 277.5px;
    background: #211f72;
    padding: 30px;
}
.contact-list h3 {
    display: inline-block;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: normal;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 15px;
    margin-bottom: 10px;
}
.contact-list p {
    line-height: 2;
    color: #FFFFFF;
    font-size: 14px;
}
.contact-list:last-child {
    padding: 20px;
}
.contact-list img {
    margin-top: 22px;
    width: 100%;    
}
@media (max-width: 750px) {
    .mt-contact {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .contact-list {
        width: 50%;
    }
    .contact-list.pic {
        width: 100%;
    }
    .contact-list img {
        width: auto;
        margin-top: 0px;
        max-width: 100%;
    }
    .mt-contact{
        padding-bottom: 80px;
        background-color: #211f72;
    }
}

/* 参会报名 */
.mt-enroll {
    -webkit-flex-direction: column;
    flex-direction: column;
}
.mt-enroll-num-box {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin-bottom: 20px;
}
.mt-enroll-num-box h5 {
    color: #333;
    font-size: 16px;
    font-weight: normal;
}
.mt-enroll-num {
    font-size: 20px;
}
.mt-enroll-num span {
    margin: 0 2px;
}
.mt-enroll-form {
    width: 100%;
}
.mt-enroll-input-box {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.del_box {
    border-bottom: 1px dashed #272727;
    margin-bottom: 15px;
}
.mt-enroll-input-list {
    width: 575px;
    height: 50px;
    color: #4F4F6F;
    background: #f6f1ff;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 15px;
}
.mt-enroll-input-list span {
    font-size: 14px;
    white-space: nowrap;
    margin-right: 15px;
}
.mt-enroll-input-list select,
.mt-enroll-input-list input {
    width: 100%;
    height: 30px;
    color: #4F4F6F;
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
}
.mt-enroll-content {
    width: 100%;
    background: #f6f1ff;
    margin-bottom: 15px;
}
.mt-enroll-content textarea {
    display: block;
    width: 100%;
    color: #4F4F6F;
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    padding: 10px 20px;
}
.mt-enroll-content textarea::-webkit-input-placeholder {
    color: #4F4F6F;
}
.mt-enroll-btn {
    -webkit-justify-content: center;
    justify-content: center;
}
.mt-enroll-btn a {
    cursor: pointer;
    width: 150px;
    line-height: 50px;
    color: #4F4F6F;
    text-align: center;
    background: #f6f1ff;
    margin: 0 15px;
}
@media (max-width: 750px) {
    .mt-enroll-btn {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .mt-enroll-btn a {
        width: 36%;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

#newBridge {
    display: none !important;
}


/* 会议赞助 */
.mt-sponsor {
    line-height: 1.8;
    color: #FFFFFF;
    font-size: 16px;
}
.mt-sponsor a {
    color: #FFDB66;
}
.sponsor-list {
    margin-bottom: 40px;
}
.sponsor-list h2,
.sponsor-list h5 {
    font-size: 18px;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 10px;
}
.sponsor-list h5 {
    font-size: 16px;
}
.sponsor-list h2 > img,
.sponsor-list h5 > img {
    margin-right: 5px;
}
.sponsor-list p span:first-child {
    white-space: nowrap;
}

.footer {
    line-height: 40px;
    background: #333333;
}
.footer .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.footer-link a {
    position: relative;
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
    transition: all ease-in-out .2s;
    -webkit-transition: all ease-in-out .2s;
    -moz-transition: all ease-in-out .2s;
    -ms-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
    padding: 0 12px;
}
.footer-link a:hover {
    color: #FFFFFF;
}
.footer-link a:first-child {
    padding-left: 0;
}
.footer-link a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, .52);
}
.footer-link a:last-child:after {
    display: none;
}
.footer p {
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    margin: 0;
}
@media (max-width: 750px) {
    .footer {
        display: none;
    }
}

#newBridge {
    display: none !important;
}
/* 后面加的 */
.empty {
    height: 115px;
}

.enroll-img {
    cursor: pointer;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: url(../images/enroll-gg.png) center no-repeat;
    z-index: 999;
}
.enroll-img-mob {
    display: none;
}
@media (max-width: 768px) {
    .enroll-img-pc {
        display: none;
    }
    .enroll-img-mob {
        display: block;
    }
    .enroll-img {
        height: auto;
        background: transparent;
    }
    .enroll-img img {
        width: 100%;
    }
}

.fixed-menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    width: 120px;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 10;
}
.fixed-menu a {
    cursor: pointer;
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 16px;
    background: #0557C3;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    text-decoration: none;
    margin-bottom: 6px;
}
.fixed-menu a:hover {
    background: #084696;
}
.fixed-menu a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 6px;
    background: url(../img/fixed_margin.png) center no-repeat;
}
.fixed-menu a.btn-enroll {
    color: #FFE200;
    margin-bottom: 0;
}
.fixed-menu a.btn-enroll:after {
    content: none;
}
.fixed-menu .toTop {
    cursor: pointer;
    width: 108px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background: #084696;
    margin: 0 auto;
}
/* 参会报名--浮窗 */
.enroll-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 999;
}
.enroll-box .mt-box {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #0557C3;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.enroll-box .enroll-title h4 {
    line-height: 1.5;
    color: #fff;
    font-size: 28px;
    text-align: center;
    margin-bottom: 0;
}
.enroll-box .enroll-title p {
    color: #fff;
    text-align: center;
}
.enroll-box .mt-main {
    position: relative;
    height: 530px;
    overflow: auto;
}
.enroll-box .btn-close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background: rgba(255, 255, 255, .52);
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
@media (max-width: 768px) {
    .enroll-box .mt-box {
        width: 96%;
        padding: 0;
    }
    .enroll-box .mt-main {
        height: 380px;
    }
    .del_box > div {
        padding: 0;
    }
    .btc_cont_form_wrapper input {
        width: 106px;
    }
    .btc_cont_form_wrapper2 > div {
        padding: 0;
    }
    .font_size select {
        width: 140px;
        -webkit-appearance: none;
        appearance: none;
    }
    .input-address input {
        width: 150px;
    }
    .view-btn a {
        margin-bottom: 8px;
    }
}

/* 会议日程 */
.hyrc{
    padding: 0px !important;
    font-size: 12px
}
.hyrc .fring{
    width: 25%
}
.hyrc .hyrc_table td{
    border: 1px solid #ccc
}
.fonts{
    font-size: 14px;
    text-align: left;
    margin-top: 10px;
    line-height: 20px;
}

/* 会议日程 */
.hyrc-boc {
    width: 880px;
    text-align: center;
    padding: 20px 55px;
    background: #fff;
    margin: 0 auto;
}
.hyrc{
    line-height: 26px;
    color: #000;
    font-size: 16px;
}

.hyrc .hyrc_table th{
    padding: 10px 0;
    font-size: 15px;
    background: #18033d;
    color: #ffffff;
    text-align: center;
    border: 0
}
.hyrc .hyrc_table td{
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .hyrc-boc {
        width: 100%;
        padding:  0px 0px;
    }
}

