﻿/*----------------------------------------------------------------------------------- */
/*  Document Setup */
/*----------------------------------------------------------------------------------- */

/*----------------------------------------------------------------------------------- */
/*  Background color helper classes */
/*----------------------------------------------------------------------------------- */
.bg-primary, .bg-success, .bg-info, .bg-warning, .bg-danger, .bg-muted {
    color: white;
}

.bg-primary .page-header, .bg-success .page-header, .bg-info .page-header, .bg-warning .page-header, .bg-danger .page-header, .bg-muted .page-header {
    color: white;
}

.bg-primary {
    background-color: #32b9b1;
}

.bg-success {
    background-color: #51be38;
}

.bg-info {
    background-color: #5bc0de;
}

.bg-warning {
    background-color: #ef9544;
}

.bg-danger {
    background-color: #f05a5b;
}

.bg-muted {
    background-color: #bbbbbb;
}

/*----------------------------------------------------------------------------------- */
/*  Nav pills */
/*----------------------------------------------------------------------------------- */
.nav-pills > li > a {
    font-weight: 600;
}

.nav-pills > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: #32b9b1;
}

/*----------------------------------------------------------------------------------- */
/*  Dropdowns */
/*----------------------------------------------------------------------------------- */
.dropdown-menu {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.dropdown-menu > li > a {
    color: black;
    padding: 5px 12px 7px;
}

.dropdown-menu > li:first-child a {
    border: 0;
}

.dropdown-menu .divider {
    margin: 4px 0;
}

/*----------------------------------------------------------------------------------- */
/*  Tables */
/*----------------------------------------------------------------------------------- */
.table thead tr th {
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.6) !important;
    color: black;
    border: 0;
    vertical-align: middle;
}

.table tbody {
    background-color: white;
}

.table tbody tr td {
    font-size: 14px;
    border-top: 0;
    vertical-align: middle;
}

.table tfoot > tr > td {
    border-top: 0;
}

.table tfoot > tr:first-child > td {
    border-top: 1px solid #dddddd;
    padding-top: 15px;
}

.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
    background-color: rgba(0, 0, 0, 0.05);
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #51be38;
    color: white;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #5bc0de;
    color: white;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
    background-color: #ef9544;
    color: white;
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #f05a5b;
    color: white;
}

/*----------------------------------------------------------------------------------- */
/*  Labels */
/*----------------------------------------------------------------------------------- */
.label-primary {
    background-color: #32b9b1;
}

.label-default {
    background-color: #bbbbbb;
}

.label-success {
    background-color: #51be38;
}

.label-info {
    background-color: #5bc0de;
}

.label-warning {
    background-color: #ef9544;
}

.label-danger {
    background-color: #f05a5b;
}

/*----------------------------------------------------------------------------------- */
/*  List groups */
/*----------------------------------------------------------------------------------- */
.list-group .list-group-item.active, .list-group .list-group-item.active:hover, .list-group .list-group-item.active:focus {
    color: white;
    background-color: #32b9b1;
    border-color: #27918b;
}

.list-group .list-group-item.active .badge, .list-group .list-group-item.active:hover .badge, .list-group .list-group-item.active:focus .badge {
    color: #32b9b1;
    background-color: white;
}

a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
    background-color: #32b9b1;
    border-color: #32b9b1;
}

/*----------------------------------------------------------------------------------- */
/*  Form styles */
/*----------------------------------------------------------------------------------- */
label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    border: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.form-control:focus {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.input-group {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
    border-radius: 4px;
}

.input-group.input-group-lg {
    border-radius: 6px;
}

.input-group.input-daterange {
    border-radius: 4px;
}

.input-group .form-control {
    border: 0;
    box-shadow: none;
}

.input-group .input-group-btn .btn {
    margin: 0 !important;
    border: 0 !important;
}

.input-group .input-group-addon {
    background-color: rgba(255, 255, 255, 0.2);
    border: 0;
    color: black;
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -2px;
    position: relative;
    z-index: 10;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    margin-left: -2px;
}

.has-feedback .form-control-feedback {
    top: 50%;
    margin-top: -17px;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
    color: #60c560;
}

.has-success .form-control {
    border-color: #60c560;
}

.has-success .form-control-feedback {
    color: #60c560;
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
    color: #f0ad4e;
}

.has-warning .form-control {
    border-color: #f0ad4e;
}

.has-warning .form-control-feedback {
    color: #f0ad4e;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
    color: #d9534f;
}

.has-error .form-control {
    border-color: #d9534f;
}

.has-error .form-control-feedback {
    color: #d9534f;
}

/*----------------------------------------------------------------------------------- */
/*  Emphasis Classes */
/*----------------------------------------------------------------------------------- */
.text-primary {
    color: #32b9b1;
}

.text-success {
    color: #51be38;
}

.text-info {
    color: #5bc0de;
}

.text-warning {
    color: #ef9544;
}

.text-danger {
    color: #f05a5b;
}

/*----------------------------------------------------------------------------------- */
/*  Panels */
/*----------------------------------------------------------------------------------- */
.panel {
    border: 0;
}

.panel .panel-body {
    padding: 20px;
}

.panel-heading .panel-toggle {
    background: #f9fafa;
}

.panel-heading .panel-title {
    font-size: 18px;
}

/*----------------------------------------------------------------------------------- */
/*  Tab Styles */
/*----------------------------------------------------------------------------------- */
.nav-tabs > li > a {
    border-radius: 0px;
}

.nav-tabs > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background-color: white;
}

.tab-content {
    background-color: white;
    border: 1px solid #dddddd;
    border-top: 0;
    padding: 15px 15px 5px;
}

/*----------------------------------------------------------------------------------- */
/*  Progress Bars */
/*----------------------------------------------------------------------------------- */
.progress {
    box-shadow: none;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.06);
}

.progress .progress-bar {
    box-shadow: none;
    background-color: #32b9b1;
}

.progress .progress-bar-success {
    background-color: #51be38;
}

.progress .progress-bar-info {
    background-color: #5bc0de;
}

.progress .progress-bar-warning {
    background-color: #ef9544;
}

.progress .progress-bar-danger {
    background-color: #f05a5b;
}

.well {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.05);
}

body {
    padding: 5em 0;
}

.timeline {
    list-style: none;
    position: relative;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;margin-bottom:120px;
    overflow: hidden;
    background-color: white;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.timeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -2px;
    background-color: #5db2ff!important;
    height: 100%;
    width: 4px;
    border-radius: 2px;
    display: block;
}

.timeline .timeline-row {
    padding-left: 50%;
    position: relative;
    z-index: 10;
}

.timeline .timeline-row .timeline-time {
    position: absolute;
    right: 50%;
    top: 31px;
    text-align: right;
    margin-right: 40px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #4a90e2;
}

.timeline .timeline-row .timeline-time small {
    display: block;
    color: #333;
    text-transform: uppercase;
    opacity: 1;
    font-size: 14px;
    font-weight: 400;
}

.timeline .timeline-row .timeline-icon {
    position: absolute;
    top: 25px;
    left: 48%;
    margin-left: -10px;
    width: 61px;
    height: 40px;
    background: url("../images/cion_baibaoyunn.png")center center no-repeat;
    text-align: center;
    overflow: hidden;
    padding: 3px;
    color: #ffffff;
    font-size: 14px;
    z-index: 100;

}

.timeline .timeline-row .timeline-icon > div {
    border-radius: 50%;
    line-height: 34px;
    font-size: 16px;
}

.timeline .timeline-row .timeline-content {
    margin-left: 40px;
    position: relative;
    background-color: white;
    color: #333333;
}

.timeline .timeline-row .timeline-content:after {
    content: "";
    position: absolute;
    top: 48px;
    left: -40px;
    border-radius: 200px;
    height: 4px;
    width: 40px;
    background-color: #5db2ff!important;
    z-index: -1;
}
.rt{
    text-align: left;
}
.lf{
    text-align: right;
}
.timeline .timeline-row .timeline-content .panel-body {
    padding: 15px 15px 2px;
    position: relative;
    z-index: 10;
    border-radius: 5px;
    background: #f6fbff;
}
.timeline .timeline-row .timeline-content .panel-body h4 {
    padding-left: 15px;
    padding-right: 20px;
    word-wrap:break-word;
}
.timeline .timeline-row .timeline-content .panel-body p a {
    text-decoration: none;
    cursor: pointer;
}
.timeline .timeline-row .timeline-content .panel-body p a:hover {
    color: rgba(19, 85, 115, 0.82);
}
.timeline .timeline-row .timeline-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
    line-height: 1.2;
}

.timeline .timeline-row .timeline-content p {
    margin-bottom: 15px;
}

.timeline .timeline-row .timeline-content img {
    margin-bottom: 15px;
}

.timeline .timeline-row .timeline-content blockquote {
    border-color: #eeeeee;
}

.timeline .timeline-row .timeline-content blockquote footer, .timeline .timeline-row .timeline-content blockquote small, .timeline .timeline-row .timeline-content blockquote .small, .timeline .timeline-row .timeline-content blockquote.blockquote-reverse footer, .timeline .timeline-row .timeline-content blockquote.blockquote-reverse small, .timeline .timeline-row .timeline-content blockquote.blockquote-reverse .small {
    color: #999999;
}

.timeline .timeline-row .timeline-content .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    margin-bottom: 15px;
    overflow: hidden;
}

.timeline .timeline-row .timeline-content .video-container iframe, .timeline .timeline-row .timeline-content .video-container object, .timeline .timeline-row .timeline-content .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.timeline .timeline-row:nth-child(odd) {
    padding-left: 0;
    padding-right: 50%;
}

.timeline .timeline-row:nth-child(odd) .timeline-time {
    right: auto;
    left: 50%;
    text-align: left;
    margin-right: 0;
    margin-left: 40px;
    color: #4a90e2;
}

.timeline .timeline-row:nth-child(odd) .timeline-content {
    margin-right: 40px;
    margin-left: 0;
}

.timeline .timeline-row:nth-child(odd) .timeline-content:after {
    left: auto;
    right: -40px;
}

.timeline.animated .timeline-row .timeline-content {
    opacity: 0;
    left: 20px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    transition: all 0.8s;
}

.timeline.animated .timeline-row:nth-child(odd) .timeline-content {
    left: -20px;
}

.timeline.animated .timeline-row.active .timeline-content {
    opacity: 1;
    left: 0;
    background: -webkit-linear-gradient(right,#a3e3fd,#4a90e2 );
    padding: 2px;
    border-radius: 5px;
}

.timeline.animated .timeline-row.active:nth-child(odd) .timeline-content {
    left: 0;
    background: -webkit-linear-gradient(left,#a3e3fd,#4a90e2 );
    padding: 2px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .timeline {
        padding: 15px 10px;
    }

    .help_xin .help-cont{
        width: 100% !important;
        padding-left: 20px!important;
        padding-top: 30px!important;
    }

    .help_xin .help-cont .time-line .time-year .time-month .time-month-row{
        padding-left: 10px!important;
    }

    .help_xin .help-cont .time-line .time-year .time-month .time-month-row .right-cont{
        padding-left: 20px!important;
    }

    .timeline:after {
        left: 28px;
    }

    .timeline .timeline-row {
        padding-left: 0;
        margin-bottom: 16px;
    }

    .timeline .timeline-row .timeline-time {
        position: relative;
        right: auto;
        top: 0;
        text-align: left;
        margin: 0 0 6px 56px;
    }

    .timeline .timeline-row .timeline-time strong {
        display: inline-block;
        margin-right: 10px;
    }

    .timeline .timeline-row .timeline-icon {
        top: 64px;
        left:6px;
        margin-left: 0;
    }

    .timeline .timeline-row .timeline-content {
        margin-left: 56px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .timeline .timeline-row .timeline-content:after {
        right: auto !important;
        left: -20px !important;
        top: 32px;
    }

    .timeline .timeline-row:nth-child(odd) {
        padding-right: 0;
    }

    .timeline .timeline-row:nth-child(odd) .timeline-time {
        position: relative;
        right: auto;
        left: auto;
        top: 0;
        text-align: left;
        margin: 0 0 6px 56px;
    }

    .timeline .timeline-row:nth-child(odd) .timeline-content {
        margin-right: 0;
        margin-left: 55px;
    }

    .timeline.animated .timeline-row:nth-child(odd) .timeline-content {
        left: 20px;
    }

    .timeline.animated .timeline-row.active:nth-child(odd) .timeline-content {
        left: 0;
    }
}

.update-header {
    height: 75px;
    line-height: 75px;
    padding: 0 40px;
    color: #2C3E50;
    font-size: 24px;
    background-color: white;
    border-bottom: solid 1px #E9E9E9;
}
.cent{
    max-width: 1200px;
    background-color: white;
    padding: 15px 0 15px 15px;
    border-bottom:1px solid #f9f5f5;
    text-align: left;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin: auto;
}
.navbar-header a{
    text-decoration: none;
}

@media (max-width: 768px) {
    .lf{
        text-align: left;
    }
    .timeline .timeline-row .timeline-content p{
        padding-left: 15px;
    }
    .timeline.animated .timeline-row .timeline-content {
        opacity: 0;
        left: 20px;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
    }
}
.cent h3{
    text-align: center;
    color: #333;font-size: 24px;margin-bottom:25px;
}

.help_xin{
    min-height: 100%;
    background: rgba(2, 101, 255, 0.04);
}

.help_xin .help-cont{
    width: 82%;
    min-height: 100%;
    margin: 0 auto;
    padding-top: 78px;
    padding-left: 45px;
    background: #FFFFFF;
    box-shadow: 0px 2px 14px 0px rgba(2, 101, 255, 0.1);
    padding-bottom: 20px;
}

.help_xin .help-cont *{
    text-align: left;
}

.help_xin .help-cont .help-title{
    margin-bottom: 30px;
}

.help_xin .help-cont .help-title h3{
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    text-align: center;
}

.help_xin .help-cont .time-line{

}

.help_xin .help-cont .time-line .time-year .time-title{
    font-size: 16px;
    color: #0265FF;
    display: flex;
    cursor: pointer;
    margin-bottom: 50px;
}

.help_xin .help-cont .time-line .time-year .time-title span{
    font-weight: bold;
}

.help_xin .help-cont .time-line .time-year .time-title i{
    margin-left: 6px;
    font-family: "finex help" !important;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.help_xin .help-cont .time-line .time-year .time-title i:before{
    content: "\e7d9";
}

.help_xin .help-cont .time-line .time-year.open .time-title i:before{
    content: "\e77f";
}

.help_xin .help-cont .time-line .time-year .time-month{
    display: none;
}

.help_xin .help-cont .time-line .time-year.open .time-month{
    display: block;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row{
    display: flex;
    padding-left: 44px;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .left-month .month-day{
    display: flex;
    height: 22px;
    position: relative;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .left-month .month-day span{
    min-width: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #FFC502;
    text-align: right;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .left-month .month-day .circle-box{
    position: absolute;
    padding: 6px;
    right: -42px;
    top: -3px;
    background-color: #ffffff;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .left-month .month-day i{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFEDB3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .left-month .month-day i:before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFC502;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .right-cont{
    padding-left: 47px;
    margin-left: 28px;
    border-left: 1px solid #0265FF;
    padding-bottom: 100px;
    padding-top: 2px;
    width: calc(100% - 107px);
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .right-cont p{
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-indent: 0.07px;
    margin-bottom: 8px;
    word-wrap:break-word;
    word-break:normal;
    width: 100%;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .right-cont p.bby_children{
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    padding-left: 30px;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .right-cont p.bby-title{
    font-size: 16px;
    font-weight: bold;
    color: #FFC502;
    margin-bottom: 10px;
}

.help_xin .help-cont .time-line .time-year .time-month .time-month-row .right-cont p a{
    font-size: 14px;
    font-weight: 500;
    color: #0265FF;
    word-wrap:break-word;
    word-break:normal;
    text-decoration:underline;
    padding: 0;
}


