html, body {
    height: 100%;
}
.moveAnimation {
    transition: all 350ms;
    -moz-transition: all 350ms;
    -ms-transition: all 350ms;
    -o-transition: all 350ms;
    -webkit-transition: all 350ms;
}
.moveRight {
    transform: translate3d(60.0%, 0, 0);
    -webkit-transform: translate3d(60.0%, 0, 0);
    -moz-transform: translate3d(60.0%, 0, 0);
    -ms-transform: translate3d(60.0%, 0, 0);
    -o-transform: translate3d(60.0%, 0, 0);
}
.app {
    width: 100%;
    max-width: 750px;
    min-height: 100%;
    overflow-x: hidden;
}

/* left nav */
.nav-left {
    position: fixed;
    left: 0;
    width: 60%;
    height: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    transform: translate(-105%, 0);
    -moz-transform: translate(-105%, 0);
    -ms-transform: translate(-105%, 0);
    -o-transform: translate(-105%, 0);
    -webkit-transform: translate(-105%, 0);
    z-index: 9;
}
.nav-left.open {
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
}
.nav-left-item {
    border-bottom: 1px solid #f3f3f3;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px 30px;
}
.nav-left.open .nav-left-item {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}
.open .nav-left-item:nth-child(1) {
    transition-delay: 160ms;
}
.open .nav-left-item:nth-child(2) {
    transition-delay: 240ms;
}
.open .nav-left-item:nth-child(3) {
    transition-delay: 320ms;
}
.open .nav-left-item:nth-child(4) {
    transition-delay: 400ms;
}
.open .nav-left-item:nth-child(5) {
    transition-delay: 480ms;
}
.open .nav-left-item:nth-child(6) {
    transition-delay: 560ms;
}
.nav-left-item i {
    color: #333333;
    font-size: 24px;
    margin-right: 5px;
}
.nav-left-item span {
    color: #333333;
}

/* right mask */
.navExistOffPanel {
    display: none;
    position: fixed;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 768px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    margin-left: 0;
    z-index: 10;
}
.navExistOffPanel.navPanelOpen {
    display: block;
    margin-left: 60.0%;
}

/* nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    color: #ffffff;
    background: #170142;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px;
    z-index: 8;
}
.nav i {
    transition: transform .35s;
    -webkit-transition: transform .35s;
    -moz-transition: transform .35s;
    -ms-transition: transform .35s;
    -o-transition: transform .35s;
}
.nav.moveRight i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.nav i.icon-menu:before {
    content: '\e747';
    font-size: 26px;
}
.nav.moveRight i.icon-menu:before {
    content: '\e748';
    font-size: 26px;
}

/* container */
.container {
    padding-bottom: 56px;
}
.viewBox {
    padding: 30px 10px;
}
.viewTitle h3 {
    font-size: 18px;
}
.viewTitle .line {
    width: 30px;
    margin: 7.5px 0;
}
.viewTitle p {
    font-size: 10px;
}
.viewInfo {
    margin-top: 20px;
}

/* banner */
.banner {
    background: transparent;
    margin-top:40px;
}
.banner img {
    width: 100%;
}

/* topic */
.topic-item {
    width: 49%;
    margin-right: 2%;
}
.topic-item:nth-child(3n) {
    margin-right: 2%;
}
.topic-item:nth-child(2n) {
    margin-right: 0;
}
.topic-item.hot:before {
    width: 14px;
    height: 13px;
    background-size: 100%;
}
.topic-info {
    height: 55px;
    font-size: 12px;
    padding: 0 13px;
}

/* sponsor */
.sponsor-item {
    width: 32%;
    margin-right: 2%;
}

/* guest */
.speaker-list {
    width: 32%;
    padding: 0;
    margin-right: 2%;
    margin-bottom: 4%;
}
.speaker-list:nth-child(4n){
    margin-right:2%
}
.speaker-list:nth-child(3n) {
    margin-right: 0;
}

.speaker-img {
    position: relative;
    z-index: 0;
}
.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-content-box {
    display: none;
    top:0;
    left:0;
    height:100%;
}
.speaker-list:hover .speaker-content-box {
    display:block;
}
.speaker-content {
    margin-top: 10px;
}
.speaker-list:hover .speaker-content-box{
    z-index:0;
}
.speaker-content{
    font-size:14px;
}
.speaker-info-title{
    font-size:16px;
}
/* company */
.company-item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 10px;
}
.company-item:nth-child(5n) {
    margin-right: 2%;
}
.company-item:nth-child(3n) {
    margin-right: 0;
}
.company-item img {
    width: 100%;
}
/* 展示企业 */
.mt-logo-info .logo-list2 {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.mt-logo-info .logo-list2:nth-child(5n) {
    margin-right: 2%;
}
.mt-logo-info .logo-list2:nth-child(3n) {
    margin-right: 0;
}

/* enterprise */
.enterprise {
    margin-top: 20px;
}
.enterprise-title {
    height: 30px;
}
.enterprise-title img {
    width: 130px;
}
.enterprise-box {
    padding: 10px;
}
.enterprise-item {
    width: 49%;
    margin-right: 2%;
}
.enterprise-item:nth-child(2) {
    margin-right: 0;
}
.scroll li {
    font-size: 12px;
}

/* map */
.map-wrap{
    margin-top:-50px;
}
.map {
    -webkit-flex-direction: column;
    flex-direction: column;
    
}
.map-image {
    width: 100%;
}
.map-image img {
    width: 100%;
}
.map-info {
    text-align: center;
}
.map-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.map-info p {
    font-size: 14px;
    margin-bottom: 15px;
}
.map-info a {
    width: 120px;
    line-height: 24px;
    font-size: 12px;
}

/* tabs */
.tabs {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid #C9C9C9;
}
.tabs-item {
    width: 33.33%;
    height: 56px;
    color: #999999;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.tabs-item.active {
    color: #0072DF;
}
.tabs-item i {
    font-size: 20px;
}
.tabs-item span {
    font-size: 12px;
    margin-top: 8px;
}

/* view map */
.viewMap-info {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 5px;
}
.viewMap-item {
    width: 380px;
    margin-top: 20px;
}
.viewMap-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}
.viewMap-item p {
    font-size: 12px;
}

/* view enroll */
.viewEnroll-count span {
    width: 75px;
    font-size: 12px;
}
.viewEnroll-count b {
    font-size: 24px;
}
.viewEnroll-input {
    width: 100% !important;
    margin-right: 0 !important;
}
.viewEnroll-input span {
    width: 22%;
}
.viewEnroll-input input, 
.viewEnroll-input select, 
.viewEnroll-input textarea {
    width: 70% !important;
}
.viewEnroll-btn {
    margin-top: 30px;
}
.viewEnroll-btn a {
    width: 130px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin: 0 20px;
}

/* view review */
.viewReview-title span {
    color: #0072DF;
    background: transparent;
    padding: 0;
}
.viewReview-info {
    margin: 0;
}
.viewReview-list-item {
    width: 100%;
}
.viewReview-list-item .item-img {
    width: 100%;
    height: auto;
}

.introduce-info{
    padding-top:0;
    width:100%;
}
.introduce-info h2{
    font-size:16px;
    margin-bottom:10px;
    text-align:center;
}
.introduce-info p{
    line-height:1.5;
    font-size:14px;
}

/* 现场图片 */
.picture-img{
    width:49%;
}

/* 参会福利 */
.gift-wrap{
    width:100%;
}


/* 联系我们 */
.contact{
    flex-wrap:wrap;
}
.contact-item{
    margin-right:0;
}
.contact-item h3{
    font-size:16px;
}
.contact-item p{
    font-size: 14px;
}
.contact-code{
    width:100%;
}
.contact-code img{
    width:80%;
    margin:0 auto;
}

#newBridge{
    display:none !important;
}


/* 会后报道 */
.report-info h2{
    font-size:16px;
    margin-bottom:15px;
    line-height:1.5;
    text-align:center;
}

.report-info p{
    font-size:14px;
}
.star-info{
    display:none;
}

.hyrc .hyrc_table td{
    padding:5px;
}