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);
    background:#fff;
}
.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;
}
.open .nav-left-item:nth-child(7) {
    transition-delay: 640ms;
}
.open .nav-left-item:nth-child(8) {
    transition-delay: 720ms;
}
.open .nav-left-item:nth-child(9) {
    transition-delay: 800ms;
}
.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: #093fa2;
    -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;
}

/* tabs */
.tabs {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid #C9C9C9;
}
.tabs-item {
    width: 33.33%;
    height: 56px;
    background: #093fa2;
    color: #ffffff;
    -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: #ffffff;
}
.tabs-item i {
    font-size: 20px;
}
.tabs-item span {
    font-size: 12px;
    margin-top: 8px;
}

/* container */
.container {
    padding: 40px 0 56px;
}
.viewBox {
    padding: 20px 10px;
}
.title span {
    font-size: 18px;
}
.title span:before {
    width: 11px;
    height: 11px;
}
.main {
    margin-top: 20px;
}

/* banner */
.banner-box {
    height: auto;
    margin-top: 0;
}
.banner img {
    width: 100%;
}

/* link */
.view-link {
    margin-bottom: 10px;
}
.link-item {
    padding: 20px;
}
.link-box > img {
    width: 24px;
    margin-right: 6px;
}
.link-info {
    font-size: 12px;
}
.link-info span {
    display: block;
    margin-top: 4px;
}
.link-item:after {
    right: 20px;
}

/* introduce */
.intro-txt {
    width: 100%;
}
.intro-txt h4 {
    font-size: 20px;
}
.intro-img {
    width: 100%;
}

/* topic */
.view-topic .main {
    background: transparent;
    padding: 0;
}
.topic-item {
    width: 48%;
    padding: 10px;
    margin-right: 0;
    margin-bottom: 12px;
}
.topic-item p {
    font-size: 12px;
}
.topic-item span {
    display: none;
}
.topic-info {
    flex-direction: column;
    -webkit-flex-direction: column;
    padding: 0;
}
.topic-name {
    align-self: flex-start;
    -webkit-align-self: flex-start;
}

/* 会议议程 */
.hyrc-boc {
    width: 100%;
}

/* guest */
.guest-item,
.guest-item:nth-child(5n) {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.guest-item:nth-child(3n),
.guest-item:last-child {
    margin-right: 0;
}
.guest-item:after {
    width: 25px;
    height: 25px;
    background-size: 15px 15px;
}
.guest-info {
    font-size: 12px;
}
.guest-info p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guest-name {
    font-size: 14px;
}
.guest-txt {
    height: 120px;
    font-size: 12px;
    text-align: left;
    padding: 8px;
}
.guest-txt h3 {
    font-size: 12px;
    font-weight: normal;
}
.guest-intro {
    font-size: 12px;
    padding: 8px;
}
.guest-intro-top {
    display: none;
}
.guest-intro-bottom {
    top: 0;
    font-size: 12px;
    padding: 8px;
}

/* 首页-会议赞助 */
.zz-item {
    width: 32%;
    margin-right: 2%;
}

/* gift */
.gift-box {
    box-shadow: none;
    padding: 0;
}

/* 演讲企业 */
.speaker-item,
.speaker-item:nth-child(5n) {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.speaker-item:nth-child(3n),
.speaker-item:last-child {
    margin-right: 0;
}

/* 展示企业 */
.view-show {
    margin-top: 20px;
}
.show-item,
.show-item:nth-child(5n) {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.show-item:nth-child(3n),
.show-item:last-child {
    margin-right: 0;
}

/* 展示企业 */
.view-media {
    margin-top: 20px;
}

/* 合作媒体 */
.media-item,
.media-item:nth-child(10n) {
    width: 23.8%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
}
.media-item:nth-child(4n),
.media-item:last-child {
    margin-right: 0;
}

/* 拟邀企业 */
.invite-area {
    width: 100%;
}
.invite-item {
    width: 100%;
}

/* map */
.map-box {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.map-img {
    width: 100%;
}
.map-txt {
    width: 100%;
    font-size: 14px;
    text-align: justify;
}

/* contact */
.contact-item {
    width: 48%;
    margin-bottom: 4%;
}

/* view enroll */
.view-intro .main {
    padding: 0;
}
.viewEnroll-box {
    padding: 0;
}
.viewEnroll-input {
    width: 100% !important;
    margin-top: 0;
    margin-right: 0 !important;
    margin-bottom: 30px;
}
.viewEnroll-input input, 
.viewEnroll-input select, 
.viewEnroll-input textarea {
    flex: 1;
}
.viewEnroll-input i {
    width: 8px;
}
.viewEnroll-btn {
    margin-top: 10px;
}
.viewEnroll-btn a {
    width: 130px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin: 0 20px;
}

/* inviteCode */
.inviteCodeBox img {
    max-width: 80%;
}

/* view review */
.review-box {
    padding-left: 50px;
}
.review-box:before {
    left: 17px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}
.review-box:after {
    left: 0;
    width: 36px;
    height: 36px;
    background-size: 100% 100%;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}
.review-item {
    width: 100%;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    padding: 10px;
}
.review-item:before {
    left: -18px;
    right: auto;
    background: url(../image/review_arrow_right.png) no-repeat;
}
.review-item:nth-child(odd):before {
    left: -18px;
}
.review-item:after {
    left: -39px;
    right: auto;
}
.review-item:nth-child(odd):after {
    left: -39px;
}
.review-thumb {
    width: 112px;
    margin-right: 10px;
}
.review-info {
    flex: 1;
    -webkit-flex: 1;
    padding: 0;
}
.review-title {
    font-size: 14px;
    font-weight: normal;
}
.review-txt {
    line-height: 1.3;
    color: #666666;
    font-size: 12px;
}
.review-link {
    display: none;
}