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;
    padding-bottom: 40px;
}

/* left nav */
.nav-left {
    position: fixed;
    right: 0;
    width: 60%;
    height: 100%;
    background: #ffffff;
    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 {
    display: block;
    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;
}
.open .nav-left-item:nth-child(7) {
    transition-delay: 640ms;
}
.nav-left-item span {
    color: #333333;
}

/* right mask */
.navExistOffPanel {
    position: fixed;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 0%;
    max-width: 768px;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    z-index: 10;
    margin-left: 140%;
}
.navExistOffPanel.navPanelOpen {
    width: 40%;
    opacity: 1;
    margin-left: 0%;
}

/* nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    color: #333333;
    background: #ffffff;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-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: 32px;
}
.nav.moveRight i.icon-menu:before {
    content: '\e748';
    font-size: 26px;
}

/* main */
.main-box {
    padding: 20px 0;
}
.row {
    width: 100%;
}
.main-title {
    background-size: 40px;
    background-position: 50px 5px;
}
.main-title.two {
    background-size: 40px;
    background-position: 60px 5px;
}
.main-title.white {
    background-size: 40px;
    background-position: 60px 5px;
}
.main-title h3 {
    font-size: 18px;
}
.main-info {
    margin-top: 20px;
}

/* banner */
.banner {
    height: auto;
    margin-top: 50px;
}
.banner img {
    display: block;
    width: 100%;
}

/* group */
.group-box {
    box-shadow: none;
    padding: 0;
    margin-bottom: 40px;
}
.group-box h2 {
    font-size: 18px;
}
.group-box h3 {
    margin-bottom: 10px;
}
.group-box h4 {
    font-size: 15px;
    margin-bottom: 10px;
}
.group-box p {
    font-size: 12px;
    margin-top: 10px;
}

/* introduct */
.intro-info {
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}
.intro-txt {
    text-align: justify;
    padding: 10px 20px;
}
.intro-info img {
    width: 100%;
}

/* content */
.con-info {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.con-list {
    width: 49%;
    margin-bottom: 2%;
}
.con-img > img {
    width: 100%;
}
.con-img > p {
    font-size: 16px;
}
.con-btn {
    line-height: 37px;
    font-size: 12px;
}

/* exhibitors */ 
.exh-list {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.exh-list:nth-child(5n) {
    margin-right: 2%;
    margin-bottom: 2%;
}
.exh-list:nth-child(3n) {
    margin-right: 0;
}

/* map */
.map-img img {
    width: 100%;
}

/* contact */
.contact-info {
    flex-direction: column;
    -webkit-flex-direction: column;
}
.contact-list {
    width: 100%;
    padding: 30px 0 0 40px;
}
.contact-list:last-child {
    padding-bottom: 30px;
}

/* 底部广告 */
.ggbox {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}
.ggbox > img {
    display: block;
    width: 100%;
}

/* enroll */
.enroll-box {
    padding-top: 75px;
}
.enroll-box .row {
    padding: 20px 15px;
}
.enroll-info {
    width: 100%;
}
.enroll-inputBox {
    flex-direction: column;
    -webkit-flex-direction: column;
    padding: 0 15px;
}
.enroll-inputBox-list {
    width: 100%;
    padding: 0 !important;
}
.enroll-inputBox input, 
.enroll-inputBox select {
    width: 0;
    flex: 1;
}
.enroll-inputBox-item span {
    min-width: 100px;
    white-space: nowrap;
}
.enroll-btn button,
.enroll-btn a {
    line-height: 40px;
    width: 120px;
    margin: 0 5px;
}

.inviteCodeBox img {
    max-width: 280px;
}

/* 相关会议 */
.mob-Atmet-btn {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 50px;
    height: 50px;
    line-height: 1.2;
    color: #fff;
    font-size: 12px;
    text-align: center;
    letter-spacing: 2px;
    background: #1a59a6;
    box-shadow: 0 0 10px #4c8fe0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.mob-Atmet-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}
.mob-Atmet-mask {
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .4); */
}
.mob-Atmet-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    overflow: auto;
    white-space: nowrap;
    padding: 20px 15px;
}
.mob-Atmet-item {
    display: inline-block;
    width: 150px;
    border: 1px solid #C0A2FF;
    margin-right: 20px;
}
.mob-Atmet-item:last-child {
    margin-right: 0;
}
.mob-Atmet-item > img {
    display: block;
    width: 100%;
}

/* guest */
.guest-item {
    width: 32%;
    margin-right: 2%;
}
.guest-img img {
    height: auto;
}
.guest-info {
    padding: 0 8px 20px;
}
.guest-info h3 {
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 5px;
}
.guest-info p {
    font-size: 12px;
}

.guest-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0;
    padding-top: 15px;
}

.guest-hover p {
    height: 170px;
    font-size: 12px;
}
.guest-item:nth-child(5n){
    margin-right:2%;
}
.guest-item:nth-child(3n){
    margin-right:0;
}


/* 参会福利 */
.gif-box img{
    width:100%;
}

/* 会后报道 */
.mt-report-info{
    width:100%;
    margin-top:10px;
}
.mt-report-info h3{
    font-size:16px;
}
.mt-report-info p{
    font-size:14px;
    margin-top:8px;
}
.hhbd-more{
    margin-top:14px;
}

/* 现场图片 */
.picture-img{
    width:48%;
    margin-right:1%;
}
.picture-img:nth-child(2n){
    margin-right:0;
}