* {
    -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: #090E4A;
}
.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 {
    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;
}
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1C1C1C;
    margin-top: 0;
    z-index: 99;
}
.navs {
    line-height: 75px;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.navs a {
    cursor: pointer;
    width: 140px;
    color: #FFFFFF;
    font-size: 16px;
    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;
}
.navs a.active,
.navs a:hover {
    color: #01E5FF;
    background: url(../images/nav-active.png) center no-repeat;
}
@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: #31415a;
}
.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 {
    background: url(../images/bg-banner.png) top center no-repeat;
}
.banner .banner-mob {
    display: none;
}
@media (max-width: 750px) {
    .banner {
        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 {
    -webkit-justify-content: center;
    justify-content: center;
}
.title span {
    position: relative;
    width: 270px;
    line-height: 84px;
    color: #EEEEEE;
    font-size: 20px;
    text-align: center;
    background: url(../images/title-bg.png) center no-repeat;
}
.main-info {
    padding-top: 30px;
}

/* 会议介绍 */
.mt-introduct-box.fixed {
    margin-top: 90px;
}
.mt-introduct {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
}
.introduct-info {
    width: 100%;
    color: #FFFFFF;
    background: url(../images/introduct-bg.png) center repeat-y #041F41;
    border: 2px solid #006ACD;
    border-left: none;
    padding: 25px;
}
.introduct-info p {
    line-height: 1.5;
    font-size: 16px;
    text-align: justify;
    text-indent: 2em;
    margin: 10px 0;
}
@media (max-width: 750px) {
    .mt-introduct {
        width: 100%;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .introduct-img img {
        width: 100%;
    }
    .introduct-info {
        border: 2px solid #006ACD;
        border-top: none;
        padding: 10px;
    }
    .introduct-info p {
        font-size: 13px;
    }
}

/* 参会价值 */
.mt-value {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.mtValue-list {
    width: 277.5px;
    background: url(../images/mtValue/value-bg.png) center no-repeat;
    padding: 30px 25px;
}
.mtValue-list img {
    width: 100%;
}
.mtValue-list h2 {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    padding: 14px 0;
}
.mtValue-list p {
    height: 107px;
    line-height: 1.5;
    color: #FFFFFF;
    font-size: 14px;
    text-align: justify;
}
@media (max-width: 750px) {
    .mtValue-list {
        width: 100%;
        background-size: 100% 100%;
        margin-bottom: 20px;
    }
    .mtValue-list p {
        height: auto !important;
    }
}

/* 会议议题 */
.mt-topics {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.topics-list {
    position: relative;
    width: 218px;
    color: #FFFFFF;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
}
.topics-list:after {
    content: '';
    position: absolute;
    top: 45.5px;
    right: -45px;
    width: 70px;
    height: 8px;
    background: url(../images/topics/center.png) center no-repeat;
}
.topics-list:nth-child(5n) {
    margin-right: 0;
}
.topics-list:nth-child(5n):after {
    display: none;
}
.topics-list:last-child:after {
    display: none;
}
.topics-list img {
    display: inline-block;
}
.topics-info {
    height: 70px;
    line-height: 1.5;
    padding: 0 20px;
}
.topics-info p {
    position: relative;
    margin-top: 20px;
}
@media (max-width: 750px) {
    .topics-list {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .topics-list:after {
        display: none;
    }
    .topics-list:nth-child(2n) {
        margin-right: 0;
    }
    .topics-info {
        padding: 0 10px;
    }
}

/* 拟邀企业 */
.mt-scroll {
    background: url(../images/ny-bg.png) center repeat-y #041F41;
    border: 2px solid #006ACD;
    -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: #fff;
}

/* 演讲嘉宾 */
.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;
    margin-right: 20px;
    margin-bottom: 20px;
}
.speaker-list:nth-child(4n) {
    margin-right: 0;
}
.speaker-list > img {
    width: 100%;
}
.speaker-list:hover .speaker-details {
    opacity: 1;
}
.speaker-details {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    color: #FFFFFF;
    background: #0081FF;
    opacity: 0;
    border-radius: 5%;
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    -ms-border-radius: 5%;
    -o-border-radius: 5%;
    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: 15px;
}
.speaker-info {
    color: #FFFFFF;
    margin-top: -34px;
}
.speaker-name {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}
.speaker-job {
    height: 72px;
    line-height: 1.5;
    color: #EEEEEE;
    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-info-title {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}
.speaker-content {
    height: 195px;
    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-details  {
        display: none;
    }
    .speaker-info {
        padding: 10px;
    }
    .speaker-job {
        line-height: 1.5;
        font-size: 12px;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .speaker-line {
        margin: 15px 0;
    }
    .speaker-content {
        margin-top: 10px;
    }
}

/* 地图导航 */
.mt-map {
    color: #fff;
    background: url(../images/ny-bg.png) center repeat-y #041F41;
    border: 2px solid #006ACD;
    padding: 20px;
}
.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: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}


.review-list {
    width: 575px;
    background: url(../images/mtValue/hg-bg.png) center no-repeat; 
    color: #FFFFFF;
    background-size: 100% 100%;
    margin-bottom: 20px;
    /* border: 1px solid #3A3A3A; */
    padding: 36px;
}
.review-list h2 {
    font-size: 16px;
    font-weight: normal;
}
.review-list .review-info {
    line-height: 1.6;
    color: #ffffff;
    font-size: 13px;
    margin-top: 20px;
}
.review-list .review-info p {
    margin-top: 14px;
}
.review-list a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    background: #2167E6;
    padding: 12px 40px;
    margin-top: 30px;
}
@media (max-width: 750px) {
    .review-list {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
    }
}


/* 参会福利 */
.gift-info {
    margin: 40px 0 80px;
}
.gift-info > h3 {
    font-weight: normal;
    color: #ffffff;
}
.gift-info > img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.gift-info > p {
    line-height: 1.6;
    color:#ffffff;
    font-size: 12px;
}

/* 相关媒体报道 */
.mt-media {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 325px;
}

.media-list {
    cursor: pointer;
    width: 575px;
    background: url(../images/mtValue/mt-bg.png) center no-repeat; 
    background-size: 100% 100%;
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 20px;
    /* border: 1px solid #3A3A3A; */
    padding: 35px;
}
.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 {
    width: 178.33px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.logo-list:nth-child(6n) {
    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(6n) {
        margin-right: 2%;
    }
    .logo-list:nth-child(3n) {
        margin-right: 0;
    }
}


/* 联系我们 */
.mt-contact {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.contact-title {
    color: #FFFFFF;
}
.contact-list {
    margin-bottom: 10px;
}
.contact-list h3 {
    display: inline-block;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 5px;
}
.contact-list p {
    line-height: 1.6;
    color: #A7A7A7;
    font-size: 14px;
}
.contact-details {
    -webkit-flex-direction: column;
    flex-direction: column;
}
.contact-code {
    margin-right: 120px;
}
@media (max-width: 750px) {
    .mt-contact {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .contact-info {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .contact-title {
        margin-bottom: 10px;
    }
    .contact-list {
        width: 100%;
    }
    .contact-list img {
        width: auto;
        max-width: 100%;
    }
    .contact-code {
        margin-right: 0;
    }
    .contact-code img {
        max-width: 100%;
    }
    .contact-code{
        padding-bottom: 80px;
    }
}

/* 参会报名 */
.mt-enroll {
    -webkit-flex-direction: column;
    flex-direction: column;
}
.mt-enroll-num-box {
    color: #FFFFFF;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin-bottom: 20px;
}
.mt-enroll-num-box h5 {
    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: #FFFFFF;
    background: #272727;
    -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: #FFFFFF;
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
}
.mt-enroll-content {
    width: 100%;
    background: #272727;
    margin-bottom: 15px;
}
.mt-enroll-content textarea {
    display: block;
    width: 100%;
    color: #FFFFFF;
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    padding: 10px 20px;
}
.mt-enroll-content textarea::-webkit-input-placeholder {
    color: #FFFFFF;
}
.mt-enroll-btn {
    -webkit-justify-content: center;
    justify-content: center;
}
.mt-enroll-btn a {
    cursor: pointer;
    width: 150px;
    line-height: 50px;
    color: #FFFFFF;
    text-align: center;
    background: #8E8E8E;
    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 */
.footer {
    line-height: 70px;
    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;
    }
}