﻿body {
    padding-top: 0;
    min-height: 100%;
    overflow-x: hidden;
}

li {
    list-style: none;
}

.text-bold {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: #fff2cf;
}

.amap-marker-label {
    color: #00f;
}

.swiper-container {
    background-color: transparent;
}

.swiper-pagination-blue .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}

.swiper-pagination-blue .swiper-pagination-bullet-active {
    background: #007aff;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.ticket_float_left {
    position: fixed;
    top: 80px;
    right: 10px;
    z-index: 9;
}

.ticket_float_middle {
    position: fixed;
    top: 280px;
    right: 25px;
    z-index: 9;
}

.container-full {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

@media (max-width: 576px) {
    .ticket_float_left {
        top: auto;
        right: 5px;
        bottom: 18px;
    }

    .ticket_float_middle {
        top: auto;
        right: 5px;
        bottom: 20%;
    }

    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next {
        right: 0;
    }

    .container-full-mobile {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .container-full-mobile .meeting-intro {
        padding-left: 15px;
        padding-right: 15px;
    }

    .down-box {
        width: 50px;
        height: 100px;
        position: absolute;
        bottom: 30px;
        left: 50%;
        margin-left: -25px;
        z-index: 6;
    }

        .down-box .bounce-arrow {
            position: absolute;
            left: 0;
            height: 50px;
            width: 50px;
            background: url(/Content/Images/arrow-top-white.png) no-repeat;
            -webkit-animation: arrow_show 3s infinite linear;
        }
}

@-webkit-keyframes arrow_show {
    from {
        transform: scale(0.8);
        margin-top: 50px;
        opacity: 0;
    }

    25% {
        transform: scale(1);
        margin-top: 25px;
        opacity: 1;
    }

    50% {
        transform: scale(0.8);
        margin-top: 0;
        opacity: 0;
    }

    to {
        margin-top: 50px;
        opacity: 0;
    }
}

@-webkit-keyframes zoomOutIn {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    to {
        transform: scale(1);
    }
}

.zoomOutIn {
    -webkit-animation: zoomOutIn 2s infinite linear;
}

.meeting-banner {
    position: relative;
}

    .meeting-banner img {
        width: 100%;
        height: auto;
    }

    .meeting-banner .banner-mask {
        width: 100%;
        height: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        background: -moz-linear-gradient(bottom,rgba(68, 68, 68, 1),rgba(68, 68, 68, 0));
        background: -webkit-gradient(linear,0 top,0 bottom,from(rgba(68, 68, 68,0)),to(rgba(68, 68, 68, 1)));
        background: -o-linear-gradient(bottom, rgba(68, 68, 68, 1), rgba(68, 68, 68, 0));
        background: -ms-linear-gradient(bottom, rgba(68, 68, 68, 1), rgba(68, 68, 68, 0));
    }

    .meeting-banner .banner-mask-white {
        width: 100%;
        height: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        background: -moz-linear-gradient(bottom,rgba(255, 255, 255, 1),rgba(255, 255, 255, 0));
        background: -webkit-gradient(linear,0 top,0 bottom,from(rgba(255, 255, 255,0)),to(rgba(255, 255, 255, 1)));
        background: -o-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
        background: -ms-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    }

    .meeting-banner .countdown {
        position: absolute;
        bottom: 8%;
        width: 100%;
        text-align: center;
        color: #fff;
    }

        .meeting-banner .countdown .countdown_number {
            font-size: 32px;
            font-weight: bold;
        }

.meeting-intro {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    letter-spacing: 1.2px;
    line-height: 24px;
    text-align: justify;
    text-indent: 30px;
}

.meeting-body {
    overflow: hidden;
    width: 100%;
    padding-bottom: 50px;
    background-color: #444;
    color: #fff;
}

.white_box {
    position: relative;
    background-color: #fff;
    color: #021533;
}

.dark_box {
    position: relative;
    background-color: #444;
    color: #fff;
}

.map_box {
    position: relative;
}

    .map_box .map_btn_group {
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 101;
    }

.meeting_title_box {
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
}

.meeting_address_box {
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
}

    .meeting_address_box h3 {
        font-size: 20px;
        padding-bottom: 10px;
        width: 100%;
        margin: 0 auto;
    }

    .meeting_address_box p {
        font-size: 15px;
        padding-bottom: 20px;
        width: 100%;
        margin: 0 auto;
    }

.meeting_content_box {
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
    text-align: left;
}

    .meeting_title_box p,
    .meeting_content_box p {
        font-size: 15px;
        padding-top: 20px;
        width: 100%;
        margin: 0 auto;
    }

    .meeting_content_box .text-bold {
        font-size: 20px;
    }

    .meeting_content_box img {
        width: 100%;
    }

    .meeting_content_box .video_title {
        padding-bottom: 10px;
        font-size: 13px;
    }

@media (max-width: 576px) {
    .meeting_content_box.full-mobile {
        width: 100%;
    }
}

.meeting_title_h2 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    padding-bottom: 20px;
}

.meeting_title_box small {
    font-size: 10px;
}

.white_box .meeting_title_h2 {
    color: #021533;
    background: url(/Content/Images/hr-line.png) no-repeat center bottom;
}

.dark_box .meeting_title_h2 {
    color: #fff;
    background: url(/Content/Images/negative-hr-line.png) no-repeat center bottom;
}

.meeting_subtitle {
    text-align: center;
    font-size: 24px;
}

.meeting_notetext {
    text-align: center;
    font-size: 18px;
    color: blue;
}

.enroll {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.guest_cover {
    width: 100%;
}

    .guest_cover img {
        width: 100%;
    }

@media (min-width: 992px) {
    .guest_cover {
        max-height: 640px;
        width: auto;
        text-align: center;
    }

        .guest_cover img {
            height: 600px;
            width: auto;
        }
}

.guest_box {
    position: relative;
    width: 100%;
}

.guest_item {
    position: relative;
    float: left;
    width: 33.33333333%;
    text-align: center;
    padding: 2px;
}

    .guest_item p {
        overflow: hidden;
    }

    .guest_item img {
        width: 100%;
        transition: .8s all ease;
        transform: scale(1,1);
    }

    .guest_item .guest_name {
        font-size: 16px;
        font-weight: bold;
        color: #fff;
    }

    .guest_item .guest_desc {
        font-size: 10px;
        line-height: 20px;
        height: 20px;
        color: #fff;
        margin: 0;
    }

@media (min-width: 576px) {
    .guest_item {
        width: 20%;
    }

        .guest_item img:hover {
            transform: scale(1.4,1.4);
        }

    .meeting-intro {
        max-width: 666px;
    }

        .meeting-intro:before {
            content: '';
            position: absolute;
            width: 56px;
            height: 41px;
            left: -80px;
            top: 0;
            background: url(/Content/Images/quote.png);
        }
}

.partner_box {
    text-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partner_box_img {
    display: inline-block;
    position: relative;
    width: 140px;
    height: 80px;
    line-height: 70px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 5px;
    margin: 0 5px 10px;
}

    .partner_box_img p {
        font-size: 10px;
        line-height: 20px;
        height: 20px;
        margin: 0;
    }

@media (max-width: 576px) {
    .partner_box_img {
        width: 30%;
        border: none;
        box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 320px) {
    .partner_box_img {
        width: 80px;
        padding: 0;
    }
}

.partner_box_img img {
    max-height: 100%;
    max-width: 100%;
    display: inline-block;
}

.agenda_box {
    width: 100%;
    text-align: center;
}

.agenda_box_item {
    display: block;
    position: relative;
    box-sizing: border-box;
    font-size: 16px;
    padding: 5px 0;
}

    .agenda_box_item .box-left {
        width: 50%;
        text-align: right;
        padding-right: 10px;
        line-height: 24px;
        float: left;
    }

    .agenda_box_item .box-right {
        width: 50%;
        text-align: left;
        line-height: 24px;
        float: right;
    }

@media (max-width: 576px) {
    .agenda_box_item .box-left {
        width: 40%;
        line-height: 20px;
    }

    .agenda_box_item .box-right {
        width: 60%;
        line-height: 20px;
    }
}

.meeting-letter {
    width: 100%;
    padding-top: 80px;
    text-align: center;
}

.letter-body {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    text-align: left;
    line-height: 28px;
    padding-bottom: 100px;
}

.letter-text {
    text-indent: 2em;
}

.text-right {
    text-align: right;
}

.consociation_box {
    max-width: 1024px;
    margin: 0 auto;
}

.clear {
    clear: both;
}

.contact_item.contact_box {
    width: 50%;
    float: left;
    padding: 0 1rem;
    box-sizing: border-box;
}

.contact_item.contact_margin {
    margin-top: 34px;
}

.contact_item h3 {
    text-align: left;
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 24px;
}

.consociation_description {
    float: left;
    padding-left: 15px;
}

    .consociation_description li {
        line-height: 32px;
        font-size: 14px;
        text-align: left;
    }

.dark_box .consociation_description li a {
    color: #fff;
}

.consociation_img {
    float: left;
    width: 125px;
    height: 125px;
    margin-left: 15px;
}

    .consociation_img.two {
        float: right;
    }

@media (max-width: 991px) {
    .consociation_img {
        width: 96px;
        height: 96px;
        margin-left: 0;
    }
}

@media (max-width: 374px) {
    .consociation_description {
        float: right;
        padding-left: 0;
        padding-right: 15px;
    }

    .consociation_img.one {
        display: none;
    }

    .consociation_img.two {
        float: left;
        width: 96px;
        height: 96px;
        margin-left: 15px;
    }
}

@media (max-width: 767px) {
    .contact_item.contact_box {
        width: 100%;
        float: none;
        padding: 0;
    }
}

.party-body {
    overflow: hidden;
    width: 100%;
    padding-bottom: 50px;
    color: #706155;
    background-color: #fff;
}

    .party-body.purple {
        background-color: #1e0944;
        color: #fff;
    }

    .party-body.fot2019 {
        background-color: #191136;
        color: #fff;
    }

.activity-box {
    position: relative;
    color: #706155;
    background-color: #fff;
    clear: both;
}

    .activity-box .container {
        padding-left: 0;
        padding-right: 0;
    }

    .activity-box .meeting_title_h2 {
        background: url(/Content/Images/hr-line.png) no-repeat center bottom;
    }

    .activity-box.purple {
        background-color: #1e0944;
        color: #fff;
    }

    .activity-box.fot2019 {
        background-color: #191136;
        color: #fff;
    }

    .activity-box .qr-image {
        margin-top: 20px;
    }

.box-mask {
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: -moz-linear-gradient(bottom,rgba(254,250,242, 1),rgba(254,250,242, 0));
    background: -webkit-gradient(linear,0 top,0 bottom,from(rgba(254,250,242,0)),to(rgba(254,250,242, 1)));
    background: -o-linear-gradient(bottom, rgba(254,250,242, 1), rgba(254,250,242, 0));
    background: -ms-linear-gradient(bottom, rgba(254,250,242, 1), rgba(254,250,242, 0));
}

    .box-mask.box-mask-purple {
        background: -moz-linear-gradient(bottom,rgba(30,9,68, 1),rgba(30,9,68, 0));
        background: -webkit-gradient(linear,0 top,0 bottom,from(rgba(30,9,68, 0)),to(rgba(30,9,68, 1)));
        background: -o-linear-gradient(bottom, rgba(30,9,68, 1), rgba(30,9,68, 0));
        background: -ms-linear-gradient(bottom, rgba(30,9,68, 1), rgba(30,9,68, 0));
    }

    .box-mask.box-mask-fot2019 {
        height: 40px;
        background: -moz-linear-gradient(bottom,rgba(25,17,54, 1),rgba(25,17,54, 0));
        background: -webkit-gradient(linear,0 top,0 bottom,from(rgba(25,17,54, 0)),to(rgba(25,17,54, 1)));
        background: -o-linear-gradient(bottom, rgba(25,17,54, 1), rgba(25,17,54, 0));
        background: -ms-linear-gradient(bottom, rgba(25,17,54, 1), rgba(25,17,54, 0));
    }

.activity-warp {
    margin: auto;
    position: relative;
}

.vid-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background-size: cover;
    -webkit-background-size: cover;
}

    .vid-wrapper video,
    .vid-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: fill;
    }

.qr-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    color: #007ACC;
}

.qr_box {
    text-align: center;
}

.qr-image {
    width: 120px;
    height: 120px;
}

.photo-container {
    width: 100%;
    height: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

    .photo-container img {
        position: absolute;
        max-width: 40%;
        max-height: 40%;
        padding: 10px 10px 15px;
        background: #fff;
        border: 1px solid #ddd;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        transition: all .5s;
        z-index: 1;
    }

        .photo-container img.pic1 {
            top: 20%;
            left: 25%;
            -webkit-transform: rotate(-5deg);
            -moz-transform: rotate(-5deg);
            transform: rotate(-5deg);
        }

        .photo-container img.pic2 {
            top: 5%;
            left: 45%;
            -webkit-transform: rotate(-20deg);
            -moz-transform: rotate(-20deg);
            transform: rotate(-20deg);
        }

        .photo-container img.pic3 {
            top: 80%;
            left: 60%;
            -webkit-transform: rotate(5deg);
            -moz-transform: rotate(5deg);
            transform: rotate(5deg);
        }

        .photo-container img.pic4 {
            top: 80%;
            left: 0;
            -webkit-transform: rotate(-10deg);
            -moz-transform: rotate(-10deg);
            transform: rotate(-10deg);
        }

        .photo-container img.pic5 {
            top: 65%;
            left: 38%;
            -webkit-transform: rotate(-10deg);
            -moz-transform: rotate(-10deg);
            transform: rotate(-10deg);
            z-index: 2;
        }

        .photo-container img.pic6 {
            top: 5%;
            left: 0;
            -webkit-transform: rotate(10deg);
            -moz-transform: rotate(10deg);
            transform: rotate(10deg);
        }

        .photo-container img.pic7 {
            top: 10%;
            left: 70%;
            -webkit-transform: rotate(20deg);
            -moz-transform: rotate(20deg);
            transform: rotate(20deg);
        }

        .photo-container img.pic8 {
            top: 60%;
            left: 5%;
            -webkit-transform: rotate(5deg);
            -moz-transform: rotate(5deg);
            transform: rotate(5deg);
            z-index: 2;
        }

        .photo-container img.pic9 {
            top: 45%;
            left: 55%;
            -webkit-transform: rotate(15deg);
            -moz-transform: rotate(15deg);
            transform: rotate(15deg);
        }

        .photo-container img.pic10 {
            left: -3%;
            top: 30%;
            -webkit-transform: rotate(-10deg);
            -moz-transform: rotate(-10deg);
            transform: rotate(-10deg);
        }

        .photo-container img.pic11 {
            top: 30%;
            left: 60%;
            -webkit-transform: rotate(20deg);
            -moz-transform: rotate(20deg);
            transform: rotate(20deg);
        }

        .photo-container img.pic12 {
            left: 18%;
            top: 45%;
            -webkit-transform: rotate(-25deg);
            -moz-transform: rotate(-25deg);
            transform: rotate(-25deg);
        }

        .photo-container img.active {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            transform: rotate(0deg);
            z-index: 9;
            cursor: pointer;
        }

@media (max-width: 420px) {
    .photo-container img.active {
        position: fixed;
        left: 0;
        top: 25%;
        width: 100%;
        max-width: 100%;
        max-height: 100%;
    }
}

@media (min-width: 421px) {
    .photo-container img.active {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.title-line {
    display: inline-block;
    margin: 10px 0;
    width: 60px;
    border-bottom: 3px solid #fff;
}

.btn-course {
    margin: 10px 0 20px;
    width: 200px;
}

.btn-party {
    margin-top: 10px;
    display: inline-block;
    width: 150px;
}

.product_cover {
    margin: 20px auto;
    width: 90%;
}

    .product_cover img {
        width: 100%;
    }

@media (max-width: 420px) {
    .product_cover {
        width: 100%;
    }
}

.course-box {
    margin-bottom: 10px;
    border: 1px dashed #aaa;
}

.btn-orange {
    background-color: #fff226;
}

.btn-orange-dark {
    background-color: #fed400;
}



/*******第二届创业节******/

.meeting-news {
    position: relative;
    width: 100%;
}

.meeting-count-down {
    position: relative;
    color: #24afff;
    padding: 0 20px 15px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

    .meeting-count-down .days {
        font-size: 60px;
        color: #24afff;
        border-bottom: 1px solid #24afff;
        height: 60px;
        line-height: 60px;
        padding-right: 10px;
    }

    .meeting-count-down .days-tip {
        display: block;
        padding-bottom: 10px;
    }

.meeting-news-title {
    font-size: 18px;
    color: #24afff;
    display: block;
    border-left: 4px solid #24afff;
    padding-left: 10px;
    font-weight: bold;
    margin-left: 0;
}

.meeting-news-list {
    padding: 0 10px;
}

    .meeting-news-list ul {
        list-style-type: none;
        padding: 0;
    }

        .meeting-news-list ul li {
            display: block;
            width: 100%;
            margin: 0px auto;
            padding: 0;
            border-bottom: 1px solid #ccc;
            font-size: 13px;
        }

            .meeting-news-list ul li a {
                display: inline-block;
                padding: 8px 0;
                color: #666666;
                text-decoration: none;
            }

                .meeting-news-list ul li a:hover {
                    color: #24aeff;
                }

#MeetingNewsCoverSwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

    #MeetingNewsCoverSwiper .swiper-slide {
        overflow: hidden;
    }

#MeetingNewsTitleSwiper {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

    #MeetingNewsTitleSwiper a {
        color: #fff;
        text-decoration: none;
    }

    #MeetingNewsTitleSwiper .swiper-slide {
        padding: 10px 20px;
    }

.fest2018 {
    background-color: #172A4F;
}

    .fest2018 .meeting-banner .banner-mask {
        background: -moz-linear-gradient(bottom,rgba(0, 38, 105, 1),rgba(0, 38, 105, 0));
        background: -webkit-gradient(linear,0 top,0 bottom,from(rgba(0, 38, 105,0)),to(rgba(0, 38, 105, 1)));
        background: -o-linear-gradient(bottom, rgba(0, 38, 105, 1), rgba(0, 38, 105, 0));
        background: -ms-linear-gradient(bottom, rgba(0, 38, 105, 1), rgba(0, 38, 105, 0));
    }

    .fest2018 .white_box {
        padding-bottom: 48px;
    }

    .fest2018 .dark_box {
        padding-bottom: 48px;
        background-color: #172A4F;
        color: #fff;
    }

    .fest2018 .meeting_title_h2 {
        padding-bottom: 0;
        background-image: none;
        font-size: 28px;
    }

    .fest2018 .white_box .meeting_title_h2 {
        color: #333;
    }

    .fest2018 .meeting_subtitle_en {
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 16px;
        text-align: center;
        width: 220px;
        font-weight: bold;
        margin: 0 auto;
    }

        .fest2018 .meeting_subtitle_en:after,
        .fest2018 .meeting_subtitle_en:before {
            position: absolute;
            width: 18px;
            height: 8px;
            top: 4px;
            content: '';
        }

    .fest2018 .white_box .meeting_subtitle_en {
        color: #333;
    }

    .fest2018 .dark_box .meeting_subtitle_en {
        color: #FAFBFF;
    }

    .fest2018 .meeting_subtitle_en:before {
        background: url(/Content/Images/title_left.png);
        left: 0;
    }

    .fest2018 .meeting_subtitle_en:after {
        background: url(/Content/Images/title_right.png);
        right: 0;
    }

    .fest2018 .guest-pagination-container {
        position: absolute;
        height: 20px;
        width: 100%;
        bottom: 15px;
    }

    .fest2018 .guest_item {
        margin-top: 8px;
    }

    .fest2018 .guest_avatar {
        position: relative;
        margin: 5px;
        border: 3px solid transparent;
        border-radius: 50%;
        background-clip: padding-box;
    }

        .fest2018 .guest_avatar::before {
            position: absolute;
            top: -3px;
            bottom: -3px;
            left: -3px;
            right: -3px;
            background: linear-gradient(#172A4F, #F68C22);
            content: '';
            border-radius: 50%;
        }

    .fest2018 .guest_imgbox {
        border-radius: 50%;
        overflow: hidden;
    }

        .fest2018 .guest_imgbox img {
            border-radius: 50%;
        }

@media (min-width: 577px) {
    #MeetingNewsTitleSwiper {
        display: block;
    }

    .fest2018 .guest_avatar {
        margin: 15px;
    }

        .fest2018 .guest_avatar::before {
            display: none;
        }

    .fest2018 .guest_item:hover .guest_avatar::before {
        display: inline-block;
    }

    .fest2018 .guest_imgbox {
        border: 3px solid #fff;
    }

    .meeting-news-list ul li {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .meeting-count-down {
        margin-top: 0;
        padding: 0 0 15px 0;
        text-align: left;
    }

        .meeting-count-down .days-tip {
            display: inline-block;
        }

    .meeting-news-list {
        padding: 0;
    }
}

.agenda_table {
    margin-top: 24px;
    text-align: left;
    background: #E2F0FF;
    border: 0;
    width: 100%;
}

    .agenda_table th {
        padding: 12px 16px;
        background: #747F95;
        font-size: 14px;
        color: #fff;
    }

    .agenda_table tr {
        color: #333;
    }

        .agenda_table tr:nth-child(2n) {
            background: #F6FBFF;
        }

    .agenda_table td {
        padding: 10px 0 10px 10px;
        border-top: none;
        font-size: 14px;
        min-width: 114px;
    }

    .agenda_table tr td:first-child {
        position: relative;
        border-right: 1px solid #747F95;
    }

        .agenda_table tr td:first-child::after {
            content: "";
            position: absolute;
            right: -4px;
            display: inline-block;
            margin-top: 4px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #747F95;
        }

    .agenda_table tr td:last-child {
        padding-right: 10px;
    }

    .agenda_table a {
        text-decoration: none;
    }

    .agenda_table tr.agenda_table_subtitle td {
        font-size: 14px;
        font-weight: bold;
        background: #747F95;
        color: #fff;
        border: none;
    }

        .agenda_table tr.agenda_table_subtitle td:first-child::after {
            display: none;
        }

.meeting_notetext {
    color: #fff;
    font-size: 14px;
}

.border-orange {
    margin-top: 24px;
    display: inline-block;
    padding: 2px;
    background: linear-gradient(to right, #f39d2a, #e83422);
}

.border-orange.disabled {
    background: linear-gradient(to right, #999, #666);
}

.btn-border-orange {
    min-width: 160px;
    background: #000;
    font-weight: bold;
    color: #f39d2a;
}

    .btn-border-orange:hover,
    .btn-border-orange:focus,
    .btn-border-orange:active {
        color: #e83422;
    }
