html, body {
    height: 100%;
}
@font-face {
    font-family: 'iconfont';  /* project id 2289513 */
    src: url('//at.alicdn.com/t/font_2289513_fd5mp188po6.eot');
    src: url('//at.alicdn.com/t/font_2289513_fd5mp188po6.eot?#iefix') format('embedded-opentype'),
    url('//at.alicdn.com/t/font_2289513_fd5mp188po6.woff2') format('woff2'),
    url('//at.alicdn.com/t/font_2289513_fd5mp188po6.woff') format('woff'),
    url('//at.alicdn.com/t/font_2289513_fd5mp188po6.ttf') format('truetype'),
    url('//at.alicdn.com/t/font_2289513_fd5mp188po6.svg#iconfont') format('svg');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.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;
    margin: 0 auto;
}

/* 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;
}
.open .nav-left-item:nth-child(10) {
    transition-delay: 880ms;
}
.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: #FFD387;
    background: #232A31;
    -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 {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    color: #ffffff;
    background: #ffffff;
    z-index: 8;
}
.tabs .item {
    position: relative;
    -webkit-flex: 1;
    flex: 1;
    line-height: 67px;
    color: #999999;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    border-bottom: 3px solid #EFEFEF;
}
.tabs .item.active {
    color: #784326;
    border-bottom-color: #784326;
}
.tabs .item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 20px;
    background: #EFEFEF;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.tabs .item:last-child:after {
    content: normal;
} 

.container {
    padding: 0;
    margin: 0;
}

.flex-column {
    -webkit-flex-direction: column;
    flex-direction: column;
}

.main-box .title {
    line-height: 22px;
    font-size: 20px;
    font-weight: bold;
    border-left: 5px solid #000000;
}
.main-area {
    margin-top: 10px;
}

/* 侧边栏 */
.nav-left-item {
    color: #232A31;
    font-size: 16px;
    text-decoration: none;
    -webkit-justify-content: center;
    justify-content: center;
}

/* banner */
.banner img {
    display: block;
    width: 100%;
}

/* 内容区 */
.container {
    padding-top: 40px;
}
.row {
    width: 100%;
}

/* 菜单 */
.menu-list {
    border-bottom: 1px solid #EFEFEF;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.menu-list .item {
    -webkit-flex: 1;
    flex: 1;
    min-height: 86px;
    line-height: 1.2;
    color: #333333;
    font-size: 16px;
    border-right: 1px solid #EFEFEF;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.menu-list .item:last-child {
    border-right: none;
}
.menu-list .item span {
    margin-left: 10px;
}

/* 联系我们 */
.contact {
    padding: 0;
    margin-top: 40px;
}
.mb-contact-list {
    height: 88px;
    border-bottom: 1px solid #DBDBDB;
}
.mb-contact-list .item {
    -webkit-flex: 1;
    flex: 1;
    line-height: 1.5;
    color: #333333;
    font-size: 16px;
    background: #F2F2F2;
    border-right: 1px solid #DBDBDB;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.mb-contact-list .item:last-child {
    border-right: none;
}

/* 关于 */
.introduct {
    padding: 20px 10px;
    margin: 0;
}
.introduct .main {
    flex-direction: column;
    padding: 20px 0 0;
}
.introduct-txt {
    width: 100%;
}
.introduct-txt p {
    font-size: 14px;
}
.introduct-btn-more a {
    width: 160px;
    color: #333333;
    background: #FFD387;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 0;
}
.introduct-video {
    width: 100%;
}

/* 活动流程 */
.plan {
    padding: 20px 10px;
    margin: 0;
}
.plan .main {
    padding: 20px 0 0;
}
.mb-plan-area {
    width: 100%;
}
.mb-plan-list {
    position: relative;
    margin-bottom: 10px;
}
.mb-plan-item {
    width: 48%;
}
.mb-plan-item.current .plan-item-content {
    background: #784326;
}
.mb-plan-item.current .plan-item-content h2,
.mb-plan-item.current .plan-item-content p {
    color: #FFD387;
}
.mb-plan-item.current .plan-item-circle span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    background: #784326;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.mb-plan-item.current .plan-item-content:after {
    border-top-color: #784326;
    border-bottom-color: #784326;
}
.plan-item-content {
    padding: 20px 0;
}
.plan-line {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

/* 奖项设置 */
.prize {
    padding: 20px 10px;
    margin: 0;
}
.prize .main {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 20px 0 0;
}
.prise-list {
    width: 100%;
    height: auto;
    padding: 24px 10px;
    margin-bottom: 10px;
}

/* 评审架构 */
.guest {
    padding: 20px 10px;
    margin: 0;
}
.guest .main {
    padding: 20px 0 0;
}
#guest-swiper {
    padding-bottom: 30px;
}
.guest-item {
    width: 32%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    margin: 0 .66% 10px;
}
.guest-details {
    height: 70px;
    text-align: center;
    padding: 5px 2px;
}
.guest-details h2 {
    line-height: 1.6;
    font-size: 12px;
}
.guest-details .btn-more {
    line-height: 2;
    font-size: 12px;
    padding: 0 15px;
    margin-top: 5px;
}

.jury-area {
    padding: 0 10px;
}
.jury-list {
    padding: 20px 0;
}
.jury-title > img {
    display: block;
    width: 200px;
    margin: 0 auto;
}
.jury-box {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.jury-item {
    width: 32%;
    padding-bottom: 30px;
    margin: 0 .5%;
}
.jury-box.jury-4n .jury-item {
    width: 33%;
    margin: 0 .5% 1%;
}
.jury-info {
    height: auto;
    font-size: 12px;
    padding: 5px 4px 4px;
}
.jury-info p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guest-name {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 4px;
}
.guest-company {
    margin-bottom: 4px;
}

/* 媒体支持 */
.media {
    padding: 20px 10px;
    margin: 0;
}
.media .main {
    padding: 20px 0 0;
}
.media-list {
    width: 31%;
    margin: 0 .66% 1.32%;
}
.media-list:nth-child(5n){
    margin: 0 .66% 1.32%;
}
.media-list:nth-child(3n){
    margin-right:0;
}



/* 特别鸣谢 */
.firm {
    padding: 20px 10px;
    margin: 0;
}
.firm .main {
    padding: 20px 0 0;
}
.firm img {
    width: 100%;
}
.firm-large {
    width: 100%;
    margin-bottom: 10px;
}
.firm-small {
    width: 100%;
}
.firm-small a {
    float: left;
    width: 48%;
    margin: 0;
    margin-bottom: 10px;
}
.firm-small a:nth-child(2n) {
    float: right;
}

/* 焦点新闻 */
.news {
    padding: 20px 10px;
    margin: 0;
}
.news .main {
    padding: 20px 0 0;
}
.news-area {
    padding: 10px;
}
.news-box {
    width: 100%;
}
.news-info {
    height: auto;
}
.news-list {
    font-size: 14px;
}
.news-list p {
    width: 220px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* 往届回顾 */
.course {
    padding: 20px 10px;
    margin: 0;
}
.course .main {
    padding: 20px 0 0;
}
.course-area {
    height: auto;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.course-area:after {
    top: 0;
    left: 50%;
    bottom: 0;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.course-area .course-list {
    position: relative;
    width: 50%;
    padding: 10px 0;
}
.course-area .course-list .course-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.course-area .course-list:nth-child(odd) .course-circle {
    right: -9px;
    margin: 0;
}
.course-area .course-list:nth-child(even) .course-circle {
    left: -9px;
    margin: 0;
}
.course-area .course-list p {
    margin-top: 9px;
}

/* 评审组委会 */
.contact .row {
    padding: 20px 10px;
}

/* 新闻页 */
.p-news {
    padding: 18px 10px;
}
.p-news-list {
    border-top: 1px solid #EFEFEF;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}
.p-news-title {
    line-height: 1.4;
}
.p-news-list p {
    display: -webkit-box;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.p-news-list > b {
    display: block;
    color: #999999;
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
}

/* 流程页 */
.mob-main-lc {
    display: block;
}
.plan-gz-list {
    background: #FFFFFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, .1);
    overflow: hidden;
    margin-bottom: 10px;
}
.prize-title {
    height: 52px;
    background: #784326;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px;
}
.prize-title > span {
    color: #FFD387;
    font-size: 18px;
    font-weight: bold;
}
.prize-title > b {
    color: #FFD387;
    font-size: 14px;
    font-weight: normal;
}
.plan-gz-info {
    padding: 15px 10px;
}
.plan-gz-info h3 {
    display: inline-block;
    line-height: 1.8;
    color: #FFD387;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    background: #784326;
    padding: 2px 8px;
    margin: 8px 0;
}
.plan-gz-info p {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    line-height: 1.8;
    color: #666666;
    font-size: 14px;
    justify-content: flex-start;
}

/* 规则页 */
.rule-area {
    padding: 20px 10px;
}
.rule-area .gz-main {
    padding: 12px;
    margin-top: 10px;
    overflow: auto;
    height: 600px;
}
.prize-gz-box{
 padding-top:40px;
}
.prize-gz-box .prize-title {
    height: auto;
    font-size: 13px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.prize-gz-box .prize-title strong {
    line-height: 45px;
    color: #FFD387;
}
.prize-gz-list {
    flex-direction: column;
    margin-top: 15px;
}
.prize-gz-info {
    margin-top: 15px;
}
.prize-gz-info h7 {
    height: auto;
    line-height: 45px;
    color: #FFD387;
    font-size: 16px;
    background: #784326;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 10px;
}
.prize-gz-info p {
    line-height: 1.6;
    font-size: 12px;
}
.prize-gz-info1 {
    margin-top: 15px;
}
.prize-gz-info1 h7 {
    height: auto;
    line-height: 45px;
    color: #FFD387;
    font-size: 20px;
    font-weight: bold;
    background: #784326;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 10px;
}
.prize-gz-info1 p {
    line-height: 1.6;
    font-size: 12px;
}
.swiper-button-prev, .swiper-button-next {
    display: none;
}
.prize-gz-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    line-height: 20px;
    text-align: center;
}
.prize-gz-item img {
    display: none;
}
.prize-gz-item h2,
.prize-gz-item p {
    color: #333333;
    font-size: 12px;
    white-space: nowrap;
    margin: 0;
}
.method-info {
    font-size: 12px;
    padding: 10px;
}



/* 往届回顾 */
.review .main {
    padding: 20px 10px;
}
.review-title-il, 
.review-title-ir {
    width: 30px;
}
.review .review-title-info span {
    font-size: 16px;
    font-weight: normal;
}
.review-area {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
}
.review-img-list {
    width: 100%;
    border: 1px solid #EFEFEF;
    margin-bottom: 10px;
}
.review-img-list p {
    font-size: 14px;
    padding: 10px 12px !important;
}
.review-zt-img img {
    display: block;
}   
.review-zt-img p {
    padding: 10px 0;
    margin-top: 0px;
}
.review-img, 
.review-new {
    width: 100%;
    margin-bottom: 10px;
}
.review-img > img, 
.review-new > img {
    display: block;
    width: 100%;
}
.review-lt-info {
    color: #333333;
    font-size: 12px;
}
.review-lt-info h3 {
    color: #FFAE21;
    font-size: 12px;
}
.ceremony-list {
    margin-top: 10px;
}
.ceremony-list .prize-title {
    height: 44px;
    font-size: 12px;
}
.ceremony-img {
    width: 100%;
}
.ceremony-info {
    display: none;
}

/* 赞助 */
.title2 > img {
    max-width: 250px;
}
.main-zz .main {
    margin-top: 20px;
}
.main-zz-company {
    font-size: 18px;
    padding: 5px 0;
    margin-bottom: 10px;
}
.main-zz-info {
    flex-direction: column;
}
.main-zz-info .prize-video {
    padding: 10px;
}
.zz-video-box {
    width: 100%;
}
.zz-video-box img {
    width: 100%;
}
.prize-news {
    width: 100%;
    padding: 10px;
}
.main-zz-content {
    height: auto;
    margin-top: 0;
}
.btn-zz-link {
    line-height: 40px;
}

/* 申报页 */
.mob-declare-part {
    padding: 17px 10px 40px;
}
.mob-declare-progress {
    margin-bottom: 14px;
}
.mob-declare-progress span {
    display: inline-block;
    color: #666666;
    font-size: 14px;
    border: 1px solid #EFEFEF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 10px;
}
.mob-declare-mode h3 {
    color: #333333;
    font-size: 16px;
    font-weight: bold;
}
.mob-declare-mode .mob-declare-mode {
    line-height: 40px;
    color: #999999;
    font-size: 12px;
    text-align: center;
    background: rgba(255, 211, 135, .42);
    margin-top: 10px;
}
.btn-mode-area {
    margin-top: 10px;
}
.btn-mode-area .btn-mode {
    width: 48%;
    line-height: 50px;
    color: #666666;
    font-size: 16px;
    text-align: center;
    background: #EFEFEF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.btn-mode-area .btn-mode.current {
    color: #232A31;
    background: #FFD387;
}
.mode-declare-line {
    height: 2px;
    background: #EFEFEF;
    margin: 40px 0;
}
.mob-img-area {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
}
.mob-img-list {
    position: relative;
    width: 88px;
    height: 88px;
    padding-top: 8px;
    padding-right: 8px;
}
.mob-img-list .mob-img {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}
.mob-img-list .btn-img-delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(../images/icon-delete.png) no-repeat;
}
.mob-declare-part2 {
    border-top: 10px solid #EFEFEF;
    padding: 40px 10px 30px;
}
.enroll-box {
    border-top: none;
    padding: 0;
}
.enroll-box .enroll-section {
    min-height: auto;
    line-height: normal;
    margin-top: 10px;
}
.enroll-box .enroll-section input[type="checkbox"] {
    flex-shrink: 1;
    margin: 0;
    margin-right: 5px;
}
.enroll-box .enroll-section > p {
    -webkit-flex: 1;
    flex: 1;
    min-width: 80px;
    line-height: 1.5;
    font-size: 12px;
}
.mob-declare-btn {
    margin-top: 30px;
}
.mob-declare-btn a {
    display: block;
    line-height: 42px;
    color: #333333;
    font-size: 16px;
    text-align: center;
    background: #FFD387;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* 推荐页 */
.recom-part {
    padding: 20px 10px 30px;
}
.enroll-box .enroll-section h3 {
    color: #FFAE21;
    font-size: 18px;
}
.recom-part .enroll-box .enroll-section > p {
    min-width: 90px;
}
.recom-part .enroll-box {
    margin-bottom: 30px;
}
.recom-part2 {
    border-top: 1px solid #EFEFEF;
    padding: 30px 10px;
}
.recom-part2 .enroll-box .enroll-section > p {
    min-width: 120px;
}
.recom-part3 {
    text-align: justify;
    border-top: 1px solid #EFEFEF;
    margin-top: 20px;
}
.recom-part3 .enroll-box .enroll-section h3 {
    margin-bottom: 0;
}

/* footer */
.footer {
    line-height: 1.5;
    color: #FFD387;
    font-size: 12px;
    text-align: center;
    background: #784326;
    padding: 14px 15px;
}

/* 登录 */
.dialog-login {
    width: 90%;
    padding: 15px;
}
.dialog-login-input {
    padding-left: 10px;
    margin-bottom: 15px;
}

/* 广告 */
.AD1 {
height: auto;
  /*background-image:url(../images/bg_index.png)*/
  background-color: #ebeef5;    
}
.AD1 img {
    width: 32.7%;
}
.AD2 {
    height: auto;
     /*background-image:url(../images/bg_index.png)*/
     background-color: #ebeef5;
}
.AD2 img {
        width: 100%;
        margin-top: 2px;
}
.my-bullet{
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #D6CDBD;
    border: 2px solid #D6CDBD;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 4px;
}
.my-bullet-active {
    background: #784326;
    width: 14px;
    height: 14px;
}
.guest-img{
    margin-top: 20px;
    width: 100%;
}

.pub-title {
    font-size: 18px;
    margin-top: 20px;
}
.pub-title b {
    font-size: 12px;
}
.pub-nav {
    padding: 0 10px;
    margin-top: 10px;
}
.pub-nav-item {
    position: relative;
    color: #333333;
    border: none;
    border-bottom: 3px solid #EFEFEF;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 10px 6px;
    margin-right: 0;
}
.pub-nav-item.active {
    background: transparent;
    border-color: #784326;
}
.pub-nav-item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 18px;
    background: #EFEFEF;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.pub-nav-item:last-child:after {
    display: none;
}
.pub-nav-item span {
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
}
.pub-nav-item.active span {
    color: #784326;
}
.pub-area {
    min-height: 100%;
    padding: 0 10px 10px;
}
.pub-area-info {
    margin-top: 14px;
}
.pub-area-title {
    margin-top: 10px;
}
.pub-area-title span {
    line-height: 18px;
    font-size: 14px;
    font-weight: normal;
    border-left-width: 4px;
}
.pub-area-title span b {
    font-size: 12px;
    font-weight: normal;
}
.pub-area-box {
    margin-top: 10px;
}
.pub-info-item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.pub-info-item:nth-child(5n) {
    margin-right: 2%;
}
.pub-info-item:nth-child(3n) {
    margin-right: 0;
}
.pub-info-item p {
    line-height: 30px;
    font-size: 14px;
    font-weight: normal;
    padding: 0 10px;
}

.vote-intro {
    padding: 20px 10px
}
.vote-intro .main {
    margin-top: 20px;
}

.vote-link-area {
    padding: 0 0 10px;
}

.vote-nav {
    padding: 0 10px;
    margin-top: 10px;
}
.vote-link-area a {
    width: auto;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 12px;
    padding: 20px 8px;
    margin-right: 2%;
}
.vote-link-area a:last-child {
    margin-right: 0;
}
.vote-menu-area {
    padding: 10px 10px 0;
    margin-top: 0;
}
.vote-rule-search {
    padding-right: 0;
}
.vote-rule-search .vote-rule {
    width: 68px;
    line-height: 34px;
    font-size: 12px;
    text-align: center;
    padding: 0 10px;
    margin-right: 10px;
}
.vote-rule-search .vote-rule:hover {
    color: #ffffff;
    background: url(../images/vote/vote-title-bg.png) center no-repeat #3157b1;
    background-size: cover;
}
.vote-search-area {
    position: relative;
    top: 0;
    flex: 1;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}
.vote-search-area input {
    width: 100%;
    padding: 8px 44px 8px 20px;
}
.vote-link-list-box {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 10px;
}
.vote-link-list-item {
    width: 48%;
    line-height: 1.6;
    text-align: center;
    margin-right: 4%;
    margin-bottom: 4%;
}
.vote-link-list-item:nth-child(2n) {
    margin-right: 0;
}
.vote-info-area {
    padding: 0 10px 10px;
}
.vote-btn-sumbit span {
    margin: 0 16px;
}


.float-area {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 80px;
    right: 10px;
    width: 40px;
    height: 40px;
    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;
    opacity: .5;
    z-index: 10;
}
.float-area.op {
    opacity: 1;
}
.float-area img {
    display: block;
    width: 100%;
}
.vote-time {
    color: #eeeeee;
    text-align: center;
    font-size: 14px;
}
.vote-info-title {
    color: #ffd387;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 14px;
}
.float-pop-area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}
.float-pop-mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}
.float-pop-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96%;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.float-pop-item {
    position: relative;
    width: 49%;
    background-size: 100% 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, .09);
    padding: 10px 10px 40px;
    margin-bottom: 2%;
}
.float-pop-item h3 {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 10px;
}
.float-pop-item p {
    color: #666666;
    font-size: 12px;
    margin-top: 8px;
}
.float-pop-link {
    position: absolute;
    left: 50%;
    bottom: 10px;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    margin-top: 15px;
}
.float-pop-link a {
    color: #FFD387;
    font-size: 12px;
    background: #784326;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 5px 10px;
}
.float-pop-close {
    width: 100%;
    text-align: center;
}
.float-pop-close a {
    display: inline-block;
    color: #784326;
    font-size: 14px;
    font-weight: bold;
    background: #FFD387;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, .09);
    padding: 8px 16px;
    margin-top: 10px;
}

/* 推荐奖项 */
.tj_award_area {
    width: 96%;
    height: 460px;
    padding: 10px;
}
.tj_award_list {
    width: 100%;
}
.tj_award_content {
    height: 344px;
    overflow: auto;
}
.tj_award_section {
    line-height: 22px;
    font-size: 14px;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}
.tj_award_section input[type="radio"] {
    flex-shrink: 0;
    margin: 4px 10px 0 0;
}
.tj_award_section input[type="checkbox"] {
    flex-shrink: 0;
    margin: 4px 10px 0 0;
}
.recom-part .enroll-box .enroll-section > input[type="text"],
.recom-part2 .enroll-box .enroll-section > input[type="text"] {
    max-width: 200px;
}
.recom-part .enroll-box .enroll-section > .stuts,
.recom-part2 .enroll-box .enroll-section > .stuts {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
}

.dialog-enroll-tj {
    width: 96%;
    padding: 16px 8px;
}

/* vote new */
.vote-area {
    background: none;
}
.vote-out-area {
    background: #eeeeee;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.vote-link-area {
    background: none;
}
.vote-link-area a {
    padding: 15px 8px;
}
.vote-link-area a.active:after {
    content: '';
    position: absolute;
    top: -12px;
    left: -15px;
    width: 30px;
    height: 26px;
    background: url(../images/vote/vote-tips.png) center no-repeat;
    background-size: cover;
}
.vote-link-area a:hover,
.vote-link-area a.active {
    color: #ffffff;
    background: url(../images/vote/vote-title-bg.png) center no-repeat #3157b1;
    background-size: cover;
    border-color: #ffffff;
}
.vote-link-list-item:hover,
.vote-link-list-item.active {
    color: #ffffff;
    background: url(../images/vote/vote-title-bg.png) center no-repeat #3157b1;
    background-size: cover;
}
.vote-link-list-item.gray:hover,
.vote-link-list-item.gray.active {
    background: url(../images/vote/vote-title-gray-bg.png) center no-repeat #666666;
    background-size: cover;
}
.vote-link-list-item.gray:hover:after,
.vote-link-list-item.gray.active:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    background: url(../images/vote/vote-select.png);
    background-size: cover;
}
.vote-out-list {
    display: block;
    width: 100%;
    padding: 20px 10px 0;
}
.vote-out-top img {
    width: 200px;
}
.vote-out-center {
    height: auto;
    border-bottom: 1px solid #b38900;
    padding: 0 0 20px;
}
.vote-out-info {
    min-height: auto;
}
.vote-out-btn {
    bottom: 5px;
}
.px-vote-3n .px-vote-btn {
    flex-direction: row;
    -webkit-flex-direction: row;
}
.px-vote-btn a {
    background: #296aa2;
}
.px-vote-btn a.px-vote-votme {
    background: #4a8adc;
}
.px-vote-3n .px-vote-btn a {
    width: 48%;
}
.px-vote-3n .px-vote-btn a.px-vote-votme {
    margin-bottom: 0;
}

.px-vote-item {
    background: #3157b1;
    background-image: -webkit-gradient(linear, top, bottom, color-stop(0.32, #6b49af), color-stop(0.83, #3157b1));
    background-image: -webkit-linear-gradient(#6b49af, #3157b1);
    background-image: -ms-linear-gradient(#6b49af, #3157b1);
    background-image: -o-linear-gradient(#6b49af, #3157b1);
    background-image: linear-gradient(#6b49af, #3157b1);
}
.px-vite-id {
    color: #ffffff;
}
.px-vote-info-votes {
    color: #ffffff;
}

.px-vote-item.vote-circle {
    background: rgba(255, 255, 255, .2);
    /* background-image: -webkit-gradient(linear, top, bottom, color-stop(0.32, #6b49af), color-stop(0.83, #3157b1));
    background-image: -webkit-linear-gradient(#6b49af, #3157b1);
    background-image: -ms-linear-gradient(#6b49af, #3157b1);
    background-image: -o-linear-gradient(#6b49af, #3157b1);
    background-image: linear-gradient(#6b49af, #3157b1); */
    border: 1px solid #999999;
    padding: 10px 5px;
}
.px-vote-item.vote-circle > .px-vote-item-img {
    width: 50px;
    height: 50px;
    background: transparent;
    background-image: none;
    background-size: auto 100%;
    background-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid #999999;
    margin: 0 auto;
}
.px-vote-item.vote-circle .px-vite-id {
    color: #ffffff;
    /* border-bottom: 1px solid #999999; */
    border-bottom: none;
    margin-top: 10px;
}
.px-vote-item.vote-circle .px-vote-info-votes {
    color: #eeeeee;
    font-size: 10px;
}
.px-vote-item.vote-circle .px-vote-info-votes span {
    color: #ffac62;
}
.px-vote-item.vote-circle .px-vote-btn {
    padding: 0;
    margin-top: 8px;
}
.px-vote-item.vote-circle .px-vote-btn a.px-vote-votme {
    color: #333333;
    background: #ffffff;
}

.px-vote-4n .px-vote-item {
    position: relative;
}
.px-vote-4n .px-vite-id {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.5;
    color: #ffffff;
    background: rgba(0, 0, 0, .4);
    border-bottom-right-radius: 5px;
    border: none;
    padding: 0 4px;
}
.vote-zz-area {
    display: none;
    padding: 10px;
}
.vote-zz-box {
    margin-top: 20px;
}
.vote-zz-title {
    color: #ffe39f;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.vote-zz-list {
    margin-top: 5px;
}
.vote-zz-item {
    width: 19.2%;
    background: #ffffff;
    margin-right: 1%;
}
.vote-zz-list .vote-zz-item:last-child {
    margin-right: 0
}
.vote-zz-item.large {
    width: auto;
}
.vote-zz-item img {
    display: block;
    width: 100%;
}
.vote-out-info p {
    font-size: 18px;
}


/* 抽奖 */
.lottery-banner {
    text-align: center;
    padding: 0;
}
.lottery-banner img {
    width: 80%;
}
.lottery-name, .lottery-info {
    background: rgba(255, 255, 255, .1);
}

/* 盲盒 */
.float-blind {
    display: none;
    position: fixed;
    right: 0;
    bottom: 36px;
    width: 60px;
}
.float-blind > a {
    display: block;
    width: 100%;
}
.float-blind > a > img {
    display: block;
    width: 100%;
}

.blind-area {
    padding: 10px;
}
.blind-box-img {
    height: 135px;
    background: url(../images/ld-chest.png) no-repeat 0px 0px;
    background-size: 320px auto;
    background-position-x: center;
}
.blind-box-img.open {
    background-position-y: -137px;
}
.blind-rule {
    line-height: 1.5;
    color: #fce0b2;
    text-align: justify;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
    padding: 10px;
    margin-top: 40px;
}
.blind-rule h3 {
    font-size: 18px;
}
.blind-rule p {
    margin-top: 10px;
}

.blind-choose-img {
    margin-bottom: 20px;
}
.blind-choose-img label {
    cursor: pointer;
    height: 300px;
    border: 1px dashed #BFBFBF;
}
.blind-choose-img img {
    width: 20px;
    height: 20px;
}

.lottery-unit-out {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    padding: 5% 5% 13%;
}
.lottery-unit-in {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 22%;
    height: 90%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 2.6% 0 0 2%;
}
.lottery-unit-in.active:after {
    content: '';
    top: 50%;
    left: 50%;
    position: absolute;
    width: 116%;
    height: 116%;
    background-image: url(https://image.big-bit.com/Meeting/2019hypx/images/luckydraw/gift_active.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.lottery-unit-list .lottery-unit-in:last-child {
    margin-right: 2%;
}
.lottery-unit-in > img {
    display: block;
    width: 100%;
}

/* 视频弹窗 */
.vote-video-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}
.vote-video-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000000;
    opacity: .5;
}
.vote-video-close {
    position: absolute;
    top: 70px;
    right: 5%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/icon-close.png);
    background-size: 100%;
    background-repeat: no-repeat;
}
.vote-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, .6);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.vote-video-container video {
    display: block;
    width: 100%;
    background: #000000;
}
.fixed-vote-box {
    cursor: pointer;
    position: fixed;
    right: 5%;
    bottom: 5%;
    width: 60px;
    height: 60px;
}
.fixed-vote-box img {
    display: block;
    width: 100%;
}

/* enroll */
.main-enroll {
    padding: 20px 10px;
    margin: 0;
}
.enroll .enroll-box-50 {
    width: 100%;
}
.enroll-box .enroll-section {
    margin: 0;
}
.enroll-box .enroll-section > p {
    line-height: 50px;
}

/* 会议议程 */
.hyrc-area {
    padding: 0;
}
.hyrc-boc {
    width: 100%;
}
.hyrc .hyrc_table td {
    font-size: 12px;
}

.hhbd .main {
    padding: 16px;
}
.hhbd-title {
    line-height: 1.4;
    font-size: 16px;
}
.hhbd-title:before,
.hhbd-title:after {
    content: none;
}
.hhbd-box-info {
    font-size: 14px;
    padding: 0;
    margin-top: 16px;
}
.hhbd .title2 {
    top: -30px;
}
.hhbd-main2 {
    padding: 0;
    margin-top: 10px;
}
.hhbd-main2 .hhbd-title {
    margin-top: 16px;
}
.hhbd .ceremony-img {
    margin-top: 10px;
}
.hhbd .ceremony-info {
    flex-direction: column;
    margin-top: 10px;
}
.hhbd .ceremony-info-list {
    width: 100%;
    font-size: 12px;
}
.hhbd-main {
    flex-direction: column;
    margin-top: 26px;
}
.hhbd-lt-img {
    width: 100%;
}
.hhbd-lt-info {
    font-size: 14px;
}
.picture-item{
    width:48%;
    padding:5px;
    border-radius:5px;
    margin-right:3%;
}
.picture-item:nth-child(2n){
    margin-right:0%;
}
.picture-more{
    font-size:14px;
    padding: 12px 30px;
}
.picture-main{
    margin-top:45px;
}

.live-code-area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}
.live-code-mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}
.live-code-area img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 16px;
}