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%;
    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;
}
.open .nav-left-item:nth-child(8) {
    transition-delay: 720ms;
}
.open .nav-left-item:nth-child(9) {
    transition-delay: 800ms;
}
.open .nav-left-item:nth-child(10) {
    transition-delay: 880ms;
}
.open .nav-left-item:nth-child(11) {
    transition-delay: 960ms;
}
.open .nav-left-item:nth-child(12) {
    transition-delay: 1040ms;
}
.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: 70px;
}
.viewBox {
    padding: 0 20px;
    margin: 35px 0;
}
.viewTitle {
    justify-content: center;
    -webkit-justify-content: center;
}
.viewTitle > img {
    height: 60px;
}
.viewInfo {
    margin-top: 25px;
}

/* banner */
.banner {
    height: auto;
    background: transparent;
    margin-top: 40px;
}
.banner > img {
    display: block;
    width: 100%;
}

/* introduce */
.view-intro p {
    color: #ffffff;
    font-size: 14px;
    margin: 10px 0;
}

/* activity flow */
.view-flow {
    position: relative;
    padding: 10px 0;
}
.view-flow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 2px;
    background: #C0A2FF;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.view-flow-list {
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 20px;
}
.view-flow-list:last-child {
    margin-bottom: 0;
}
.view-flow-time {
    position: relative;
    color: #ffffff;
    font-size: 12px;
    text-align: right;
    flex: 1;
    -webkit-flex: 1;
    padding-right: 17.5px;
}
.view-flow-time:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -7.5px;
    width: 15px;
    height: 15px;
    background: #C0A2FF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.view-flow-info {
    color: #C0A2FF;
    font-size: 14px;
    flex: 1;
    -webkit-flex: 1;
    padding-left: 17.5px;
}

/* Award */
.view-award {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
}
.view-award-list {
    position: relative;
    width: 48%;
    background: #08036D;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    margin: 0 1% 2%;
}
.view-award-main {
    position: relative;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    padding: 15px 10px 0;
}
.view-award-main > img {
    width: 40px;
    margin-bottom: 15px;
}
.view-award-main > h2 {
    display: -webkit-box;
    height: 4.5em;
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
}
.view-award-main > span {
    color: #DCBD2F;
    font-size: 12px;
    text-decoration: underline;
    margin-bottom: 15px;
}
.view-award-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    background: #08036D;
    opacity: 0;
    padding: 15px 10px;
}
.view-award-main:hover .view-award-info {
    opacity: 1;
}
.view-award-info > h2 {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 8px;
}
.view-award-con {
    height: 122px;
    font-size: 12px;
    text-align: justify;
    overflow: auto;
}
.view-award-con::-webkit-scrollbar {
    display: none;
}
.view-award-con > p {
    margin: 5px 0;
}
.view-award-link {
    display: block;
    line-height: 36px;
    color: #333333;
    font-size: 12px;
    text-align: center;
    background: #ffffff;
}

/* media */
.view-media {
    position: relative;
    height: 165px;
    overflow: hidden;
}
.view-mediaBox {
    position: absolute;
    top: 0;
    left: 0;
}
.view-media-box {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.view-media-item {
    margin-right: 10px;
    margin-bottom: 10px;
}
.view-media-item > img {
    display: block;
    height: 45px;
}

/* contact */
.view-contact-list {
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}
.view-contact-list h2 {
    font-size: 16px;
    margin-bottom: 10px;
}
.view-contact-list p {
    font-size: 14px;
    margin: 6px 0;
}


/* 底部广告 */
.ggbox {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}
.ggbox > img {
    display: block;
    width: 100%;
}


/* enroll */
.view-bm-box {
    background: #ffffff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 25px 15px;
}
.bm-tab {
    font-size: 24px;
    margin-bottom: 30px;
}
.bm-info {
    line-height: 1.5;
    font-size: 12px;
}
.bm-info p {
    text-align: justify;
    margin: 10px 0;
}
.bm-title {
    font-size: 18px;
    margin-top: 30px;
}
.bm-inputBox, 
.bm-inputBox2 {
    margin-top: 20px;
}
.bm-input-item {
    width: 100%;
}
.bm-input {
    height: 40px;
    padding: 0 10px;
}
.bm-input span {
    width: 75px;
    font-size: 14px;
}
.bm-input input, 
.bm-input select {
    height: 30px;
    font-size: 14px;
}
.bm-input select {
    width: 150px;
}
.bm-textarea {
    padding: 10px;
}
.bm-textarea p {
    font-size: 14px;
}
.bm-textarea textarea {
    font-size: 14px;
}
.bm-btn {
    margin-top: 35px;
}
.bm-btn button {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
}
.bm-section-box {
    font-size: 12px;
    margin-bottom: 10px;
}
.bm-section {
    min-height: auto;
    line-height: 1.5;
    margin: 10px 0;
}
.bm-section h3 {
    margin: 0;
}
.bm-section p {
    margin: 0;
}
.bm-tj-form-box .bm-inputBox {
    flex-direction: column;
    -webkit-flex-direction: column;
    margin-top: 0;
}
.bm-tj-form-box .bm-input-item {
    margin-top: 10px;
}
.bm-tj-form-box .bm-tj-form {
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.bm-tj-form-box .bm-input span {
    width: 90px;
    font-size: 12px;
}
.tj-btn button {
    width: 100px;
    font-size: 12px;
}
.dialog-enroll-msg {
    font-size: 14px;
}
.dialog-enroll-tj {
    width: 90%;
    padding: 10px;
}

/* 相关会议 */
.mob-Atmet-btn {
    position: fixed;
    right: 20px;
    bottom: 150px;
    width: 50px;
    height: 100px;
    line-height: 1.2;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
   /*background: #5548ed;*/
    background: url("../images/icon-declare2.png") no-repeat;
    box-shadow: 0 0 10px #5548ed;
    border-radius:5px;
  /*  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%;
}

/* award */
.vote-view {
    background: transparent;
    padding: 0;
}
.vote-list {
    background: #1b1571;
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.32, #5c549c), color-stop(0.83, #1b1571));
    background-image: -webkit-linear-gradient(left top, #5c549c, #1b1571);
    background-image: -ms-linear-gradient(to right bottom, #5c549c, #1b1571);
    background-image: -o-linear-gradient(to right bottom, #5c549c, #1b1571);
    background-image: linear-gradient(to right bottom, #5c549c, #1b1571);
}
.vote-list > h3 {
    font-size: 24px;
    font-weight: normal;
}

.method-view {
    padding: 20px;
}
.method-view > p {
    font-size: 14px;
    text-align: justify;
}
.votes-tab {
    width: 100%;
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 32px;
    margin-bottom: 0;
}
.votes-tab-list {
    display: inline-block;
    width: 40%;
    font-size: 12px;
    font-weight: normal;
    padding: 20px 8px;
    margin: 0;
}
.votes-search {
    padding: 0;
}
.votes-item {
    width: 46%;
    margin: 0 2% 4%;
}
.votes-item-info {
    padding: 0 4px;
}
.votes-item-id,
.votes-item-name,
.votes-item-num {
    line-height: 30px;
    font-size: 12px;
}
.votes-item-btn {
    padding: 0 4px 6px;
}
.votes-item-btn a {
    width: 48%;
    font-size: 14px;
    line-height: 28px;
}
.votes-btn-sumbit {
    bottom: 16px;
    width: 80%;
}

/* 拉票 */
.draw_tips {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    border-collapse: collapse;
    overflow: visible;
    z-index: 999999;
}
.arrow img {
    float: right;
    width: 60px;
    margin: 20px 12.8px 0;
}

.draw_tips p {
    color: #fff;
    font-size: 12px;
    text-align: right;
    margin-top: 6.4px;
    margin-right: 32px;
}

.dialog-lottery-details {
    width: 80%;
    padding: 10px 20px;
}
.dialog-lottery-details-info {
    max-height: 400px;
    overflow: auto;
}

.votes-item.fixedCom {
    width: 240px;
    margin: 0;
}
.votes-item.fixedCom .votes-item-id, 
.votes-item.fixedCom .votes-item-name, 
.votes-item.fixedCom .votes-item-num {
    line-height: 34px;
}
.votes-item.fixedCom .votes-item-votme {
    line-height: 34px;
}

/* 抽奖 */
.lottery-box {
    padding: 15px 10px;
}
.lottery > img {
    width: 100%;
}
.lottery-unit-info {
    width: 100%;
    height: 100%;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    padding: 4% 4% 9%;
}
.lottery-unit {
    width: 22.5%;
    height: 28%;
    background-size: cover;
    margin: 2.6% 0 0 2%;
}
.lottery-unit.active:after {
    width: 110%;
    height: 115%;
    background-size: cover;
}
.lottery-unit img {
    height: 80%;
}
.lottery-btn {
    width: 47%;
    height: 28%;
    background-size: cover;
    margin: 2.6% 0 0 2%;
}
.lottery-unit.mb-img img {
    width: 70%;
    height: auto;
}
.lottery-bottom {
    flex-direction: column;
    margin-top: 15px;
}
.lottery-name, 
.lottery-info {
    width: 100%;
}
.lottery-info {
    margin-top: 10px;
}
.lottery-name-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    font-size: 12px;
}
.lottery-name-list li span > b {
    font-size: 14px;
}
.lottery-name-list li span:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lottery-title {
    line-height: 20px;
    font-size: 16px;
    margin-right: 10px;
}
.lottery-info-item {
    line-height: 20px;
    font-size: 14px;
}
.lottery-name-list,
.lottery-info-list {
    padding: 0 10px;
}
.lottery-info-list {
    height: auto;
}

/* 抽奖结果 */
#mask .winning {
    width: 300px;
    height: 250px;
}
#card .win {
    font-size: 16px;
}

/* 抽奖信息弹窗 */
.dialog-lottery {
    width: 85%;
    padding: 10px;
}
.dialog-lottery .dialog-login-input {
    padding-left: 10px;
}
.dialog-lottery .dialog-login-input span {
    font-size: 12px;
    margin-right: 10px;
}
.dialog-lottery .dialog-login-input select {
    width: 170px;
}

.main-box {
    padding: 40px 0;
}
.main-title h3 {
    font-size: 18px;
}
.main-info {
    margin-top: -15px;
}
.map-img img {
    width: 100%;
}

.dialog-intro {
    width: 90%;
}
.e1{
    cursor: pointer;
                display: inline-block;
                width: 140px;
                height: 40px;
                line-height: 40px;
                color: #4D483C;
                font-size: 18px;
                background-color: #DFC88C;
                text-align:center;
                border-radius :5px;
                margin:  0 0 0 28%;
                background-image: linear-gradient(#DFC88C, #CA9346);
}