/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@charset "utf-8";
/* CSS Document */
.bg-szcl {
    background: #055491 !important;
}
.text-szcl {
    color: #005190 !important;
}
.inline-logo {
    background-image: url("../images/Logo_blue.svg");
    background-repeat: no-repeat;
    background-size: 1em;
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: bottom;
}
.inline-logo.text-white {
    background-image: url("../images/Logo_white.svg");
}
.btn-szcl {
  color: #fff;
  background-color: #055491;
  border-color: #055491;
}

.btn-szcl:hover {
  color: #fff;
  background-color: #04477B;
  border-color: #044171;
}

.btn-szcl:focus, .btn-szcl.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 94, 162, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(5, 94, 162, 0.5);
}

.btn-szcl.disabled, .btn-szcl:disabled {
  color: #fff;
  background-color: #055491;
  border-color: #055491;
}

.btn-szcl:not(:disabled):not(.disabled):active, .btn-szcl:not(:disabled):not(.disabled).active,
.show > .btn-szcl.dropdown-toggle {
  color: #fff;
  background-color: #044171;
  border-color: #033D69;
}

.btn-szcl:not(:disabled):not(.disabled):active:focus, .btn-szcl:not(:disabled):not(.disabled).active:focus,
.show > .btn-szcl.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 94, 162, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(5, 94, 162, 0.5);
}
.img-container {
    background-color: rgba(5,84,145,.2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media (max-width: 575px) { /* 手机端换行优化 */
    .better-break {
        display: inline-block;
    }
}

/*
  主导航栏
*/
.main-navbar {
    background: #f8f9fa;
    -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.main-navbar .navbar-brand {
    color: #005190;
}
.main-navbar .navbar-brand:hover {
    color: #055491;
}
@media (min-width:992px) { /*PC端 主导航栏*/
    body > div:first-of-type {
        padding-top: 6rem;
    }
    .main-navbar {
        height: 6rem;
    }
    .main-navbar .navbar-brand img.brand-logo {
        height: 3rem;
    }
    .main-navbar .navbar-brand img.brand-logo-text{
        height: 3rem;
        margin-left: 0.4rem;
    }
    .main-navbar .nav-item {
        -o-transition: background 0.25s;
        transition: background 0.25s;
        -webkit-transition: background 0.25s;
    }
    .main-navbar .nav-item.active {
        border-bottom: solid 0.1em rgba(5, 84, 145, 0.8);
    }
    .main-navbar .nav-item:hover {
        background: #eeeeee;
    }
    .main-navbar .nav-link {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        white-space: nowrap;
    }
    
    /**主导航栏 PC端 子目录**/
    .main-navbar .subnav-menu {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 3.8rem;
        width: 9rem;
        background: #ffffff;
        -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
                box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        border-radius: 4px;
        overflow: hidden;
        -o-transition: all 0.15s;
        transition: all 0.15s;
        -webkit-transition: all 0.15s;
    }
    .main-navbar .nav-item:hover .subnav-menu {
        visibility: visible;
        opacity: .95;
        -webkit-transform: translateY(.5em);
            -ms-transform: translateY(.5em);
                transform: translateY(.5em)
    }
    .main-navbar .subnav-item {
        display: block;
        padding: .5rem 1rem;
        color: rgba(0, 0, 0, 0.6);
        font-size: .9em;
        text-decoration: none;
        -o-transition: background 0.12s;
        transition: background 0.12s;
        -webkit-transition: background 0.12s;
    }
    .main-navbar .subnav-item:first-of-type {
        margin-top: .5rem;
    }
    .main-navbar .subnav-item:last-of-type {
        margin-bottom: .5rem;
    }
    .main-navbar .subnav-item.active {
        color: #055491;
        border-right: rgba(5, 84, 145, 0.5) 5px solid;
    }
    .main-navbar .subnav-item:hover {
        background: rgba(5, 84, 145, 0.1);
        color: rgba(0, 0, 0, 1.00);
    }
    .main-navbar .nav-link-toggler {
        display: none;
    }
}
@media (max-width: 991px) { /*移动端 主导航栏*/
    body > div:first-of-type {
        padding-top: 3.7rem;
    }
    .main-navbar .navbar-brand img.brand-logo {
        height: 2rem;
    }
    .main-navbar .navbar-brand img.brand-logo-text {
        height: 2.2rem;
        margin-left: 0.5rem;
    }
    .main-navbar .nav-item {
        width: 50%;
    }
    .main-navbar .nav-item.active {
        background: rgba(5, 84, 145, 0.25);
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        width: calc( 50% + 1rem );
        padding-right: 1rem;
    }
    .main-navbar .nav-link {
        width: calc( 100% - 2.8rem );
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        display: inline-block;
    }
    .main-navbar .nav-link-toggler {
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        display: inline-block;
        color: #ffffff;
        border: solid 0.5rem #f8f9fa;
        text-align: center;
        background: #E4E8EC;
    }
    .main-navbar .nav-item.active .nav-link-toggler {
        background: rgba(5, 84, 145, 0.2);
        border-color: rgba(5, 84, 145, 0.1);
    }
    /**主导航栏 移动端 子目录**/
    .main-navbar .subnav-menu {
        display: none;
        opacity: 0;
        position: absolute;
        left: calc( 50% + 1rem );
        width: 9rem !important;
        background: #bbd0df;
        border-radius: 0 4px 4px 4px;
        overflow: hidden;
        -webkit-transform: translateY(-2.5rem);
            -ms-transform: translateY(-2.5rem);
                transform: translateY(-2.5rem);
    }
    .main-navbar .subnav-item:first-of-type {
        margin-top: .25rem;
    }
    .main-navbar .subnav-item:last-of-type {
        margin-bottom: .25rem;
    }
    .main-navbar .nav-item:nth-of-type(n+4) .subnav-menu{
        -webkit-transform: translateY(-100%) !important;
            -ms-transform: translateY(-100%) !important;
                transform: translateY(-100%) !important;
        border-radius: 4px 4px 4px 0;
    }
    .main-navbar .subnav-item {
        display: block;
        padding: .5rem 1rem;
        color: rgba(0, 0, 0, 0.6);
        font-size: .9em;
        text-decoration: none;
    }
    .nav-item .subnav-menu.show{
        display: block;
        opacity: 1;
    }
    .main-navbar .subnav-item.active {
        color: #055491;
        border-right: rgba(5, 84, 145, 0.5) 5px solid;
    }
}

/*
  页首大图
*/
.banner {
    width: 100%;
    overflow: hidden;
}
.banner-body {
    height: 60vw;
    max-height: 300px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.banner-body > .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.banner-body.expand {
    height: 75vw;
    max-height: 450px;
}
.banner-slogan {
    font-size: 3em;
    font-weight: 500;
    white-space: pre;
}
.banner-subslogan {
    font-size: 1.8em;
    font-weight: 300;
}
.banner-title {
    font-size: 1.25em;
    font-weight: 300;
}
.banner-slogan strong, .banner-subslogan strong, .banner-title strong {
    font-weight: 800;
}
@media (max-width: 767px) { /*移动端 banner */
    .banner-text {
        height: 240px;
    }
    .banner-slogan {
        font-size: 2em;
    }
    .banner-subslogan {
        font-size: 1.25em;
    }
    .banner-title {
        font-size: 1em;
    }
}
@media (max-width: 575px) { /*移动手机端 banner */
    .banner-text {
        height: 240px;
    }
    .banner-slogan {
        font-size: 1.5em;
        font-weight: normal;
    }
    .banner-subslogan {
        font-size: 1.25em;
    }
    .banner-title {
        font-size: 1em;
    }
}
/*
  页首大视频
*/
.video-banner > div.video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.video-banner video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.video-banner video::-webkit-media-controls-panel {
    display:none !important;
}
.video-banner > div.container {
    position: relative;
    top: -100%;
}

/*
  面包屑导航
*/
.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding-right: 0.25rem;
}

footer {
    margin-top: 5rem;
    color: rgba(255,255,255,0.80);
}
footer .footer-divider {
    padding: 2rem 0;
    background: #055491;
}
footer .footer-info {
    padding: 2rem 0;
    background: #333333;
}
footer .footer-info .footer-logo {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
}
footer .footer-info .tel {
    margin-bottom: .5rem;
}
footer .footer-info .tel a {
    font-size: 1.5em;
    text-decoration: none;
    color: #4CA0F9;
}
footer .footer-info .footer-QR {
    width: 6rem;
    height: 6rem;
    opacity: 0.9;
}
footer .footer-info .copyright a {
    font-size: .8em;
    color:  rgba(204,204,204,0.50);
}
.vertical-divider {
    width: 2px;
    height: 100%;
    background: #000000;
    opacity: 0.25;
}

/*
  目录页
*/

.huge-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2em;
    margin: 3em auto;
    border-radius: .25em;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.125);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.125);
    -webkit-transition: -webkit-box-shadow 0.5s, -webkit-transform 0.25s;
    transition: -webkit-box-shadow 0.5s, -webkit-transform 0.25s;
    -o-transition: box-shadow 0.5s, transform 0.25s;
    transition: box-shadow 0.5s, transform 0.25s;
    transition: box-shadow 0.5s, transform 0.25s, -webkit-box-shadow 0.5s, -webkit-transform 0.25s;
}
.huge-card-title {
    color: #055491;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.huge-card-title mark, .huge-card-title .mark, .huge-card-title.mark {
    margin: 0.1em 0.2em 0.1em 0.1em;
    padding: 0.1em 0.2em 0.2em 0.25em;
    color: #ffffff;
    background-color: #055491;
}
.huge-card-subtitle {
    color: #055491;
    font-size: 2em;
    letter-spacing: 0.1em;
}
.huge-card-divider {
    background: #055491;
    height: 0.2rem;
    margin: 2em 0 1.25em 0;
}
.huge-card-text {
    line-height: 2em;
    letter-spacing: 0.075em;
    white-space: nowrap;
}
a.huge-card-btn {
    display: inline-block;
    margin: 0 1rem 1rem;
    padding: 1rem 3rem;
    font-size: 1.125em;
    color: #055491;
    font-weight: bold;
    text-decoration: none;
    border: solid 0.1rem #055491;
    border-radius: 0.25rem;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.huge-card:hover a.huge-card-btn {
    background: #055491;
    color: #ffffff;
}
a.huge-card-btn:hover {
    color: #fff;
    background-color: #04477B !important;
    border-color: #044171;
}
a.huge-card-btn:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 94, 162, 0.5);
            box-shadow: 0 0 0 0.2rem rgba(5, 94, 162, 0.5);
}
.STYLE-03-icon{
    padding: 3rem;
    background-size: contain;
    background-origin: content-box;
    background-repeat: no-repeat;
    background-position: right top;
}
@media (min-width:576px) and (max-width:991px) {  
    .huge-card-title {
        font-size: 2em;
    }
    .huge-card-subtitle {
        font-size: 1.5em;
    }
    .STYLE-03-icon{
        padding: 1rem;
    }
}
@media (max-width:575px) {  
    .huge-card-title {
        font-size: 1.75em;
    }
    .huge-card-title mark, .huge-card-title .mark, .huge-card-title.mark {
        padding: 0.25em 0.15em 0.1em 0.25em;
    }
    .huge-card-subtitle {
        font-size: 1.25em;
    }
    .huge-card-text {
        line-height: 1.5em;
        letter-spacing: 0;
        font-size: 0.75em;
    }
    .huge-card {
        padding: 1em;
        margin: 0;
        border-radius: .25em;
    }
    .huge-card-divider {
        height: 0.125rem;
        margin: 1.5em 0 1em 0;
    }
    .STYLE-03-icon {
        padding: 1rem;
        height: 9rem;
        background-position: right;
        position: absolute;
        top: 2.5rem;
        opacity: .8;
        z-index: 0;
    }
    a.huge-card-btn {
        margin: 0 .5rem .5rem 0.25rem;
        padding: .5rem 3rem;
    }
}


/*
  介绍页
*/
.section {
    font-size: 1rem;
    position: relative;
}
@media (max-width: 767px) { /* 手机 小字号 Section */
    .section {
        font-size: .9rem;
    }
}
@media (min-width: 1200px) { /* 电脑 大字号 Section */
    .section {
        font-size: 1.1rem;
    }
}
.section h3.title {
    font-size: 1.75em;
    height: 2em;
    width: 10em;
    text-align: center;
    margin: 2em auto 1em;
    border-bottom: solid 2px hsla(206,93%,29%,0.25);
}
.section h3.title::after {
    content: "";
    width: 4em;
    height: 2px;
    background: #055491;
    position: absolute;
    top: calc( 4em - 2px );
    left: calc( 50% - 2em );
    border-left: solid 3em hsla(206,93%,29%,0.25);
}
.section p {
    line-height: 1.75em;
}
.section p.lead {
    font-weight: 300;
    font-size: 1.125em;
}
@media (max-width: 575px) {
    .section p.lead.text-justify {
        text-indent:2em;
    }
}
.section p.detail {
    font-size: 1.125em;
    text-align: justify;
}
.section .title-left, .section .title-right, .article .title-left, .article .title-right {
    color: #055491;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: .05em;
    margin-top: 1em;
    margin-bottom: 1em;
}
.section .title-left, .article .title-left {
    text-align: left;
}
.section .title-right, .article .title-right {
    text-align: right;
}
.section .title-left:before, .section .title-right:after, .article .title-left:before, .article .title-right:after {
    content: "";
    height: 1.25em;
    width: .5em;
    background: #055491;
    display: inline-block;
    vertical-align: middle;
}
.section .title-left:before, .article .title-left:before {
    margin-right: .5em;
}
.section .title-right:after, .article .title-right:after {
    margin-left: .5em;
}
.section p.description {
    font-size: .875em;
    line-height: 2em;
    letter-spacing: .025em;
    color: #666666;
    text-align: justify;
}
.image-background {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.image-background.safari {
    background-attachment:scroll;
}
.main-video-container {
    padding: 4em 2.25em;
}
.main-video-container video {
    width: 100%;
}
@media (max-width:575px) {
    .main-video-container {
        padding: 0;
    }
}

/*
  文章
*/
.article {
    padding: 1rem 2rem;
}
.article h3 {
    line-height: 1.5em;
    margin-bottom: .5em;
    padding: .5em;
    text-align: justify;
    font-weight: bold;
}
.article hr {
    border-top: solid #055491 2px;
    margin: 1rem 0 0;
}
.article h5 {
    font-size: 1.375em;
    line-height: 1.5em;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: justify;
}
.article p {
    font-size: 1.125em;
    line-height: 2em;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: justify;
    text-indent: 2em;
}
p.note {
    color: #666666;
    font-size: 0.875em;
    line-height: 1.75em;
    margin: 0;
    text-align: justify;
}
.article p strong {
    color: #555555;
    font-weight: 800;
}
.article p strong.text-szcl {
    font-weight: 600;
}
.article ol, .article ul {
    font-size: 1em;
    line-height: 2em;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: justify;
}
.article .lead {
    font-size: 1.125em;
    line-height: 2em;
    color: #055491;
    background: #EEF2F6;
    margin-bottom: 2em;
    padding: 1em;
    text-align: justify;
}
@media (min-width:1200px) {  /*电脑端宽敞文章排版*/
    .article p {
        font-size: 1.25em;
    }
    .article ol, .article ul {
        font-size: 1.125em;
    }
    .article .lead {
        font-size: 1.25em;
        line-height: 2em;
    }
}
@media (max-width:991px) {  /*移动端紧凑文章排版*/
    .article {
        padding: 1rem 1rem;
    }
}
/*
  晨龙文库 卡片组
*/
.article-card-deck {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    margin-right: -2rem;
    margin-left: -2rem;
    padding-top: 2rem;
}

.article-card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 260px;
            flex: 1 0 260px;
    margin: 2rem;
    border: none;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.075);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.075);
    -webkit-transition: -webkit-box-shadow 0.5s, -webkit-transform 0.25s;
    transition: -webkit-box-shadow 0.5s, -webkit-transform 0.25s;
    -o-transition: box-shadow 0.5s, transform 0.25s;
    transition: box-shadow 0.5s, transform 0.25s;
    transition: box-shadow 0.5s, transform 0.25s, -webkit-box-shadow 0.5s, -webkit-transform 0.25s;
}
@media (max-width:575px) {
    .article-card-deck {
        margin: 0;
        padding-top: 1rem;
    }
    .article-card-deck .card {
        margin: 1rem;
    }
}
.article-card-deck .card:hover {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-0.2rem);
        -ms-transform: translateY(-0.2rem);
            transform: translateY(-0.2rem);
}
.article-card-deck .card-body {
    padding: 2rem 2rem 0 2rem;
}
.article-card-deck img.card-img-top {
    opacity: 0.9;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
.article-card-deck .card-title {
    font-size: 1.5em;
}
.article-card-deck .card-text {
    font-size: .8em;
    line-height: 2em;
    color: #676C70;
    margin: 1rem 0;
}
.article-card-deck .btn {
    height: 4rem;
    font-size: 1.125em;
    line-height: 3rem;
    margin: 1rem;
}


/*
  晨龙文库 侧边栏
*/
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
}
.sticky-sidebar .card-header {
    font-weight: bold;
}
.sticky-sidebar .list-group-item {
    color: #000000;
    padding-left: 1.5em;
}
.sticky-sidebar .list-group-item:hover {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.sticky-sidebar .list-group-item:active {
    color: #212529;
    background-color: #e9ecef;
}

.sticky-sidebar .active {
    background: #ffffff;
    border-color: rgba(0,0,0,0.125);
    color: rgba(0,81,144,1.00);
    border-right: rgba(5, 84, 145, 0.5) 5px solid;
}
.card-QR {
    padding: 1rem;
}
.card-QR img {
    width: 7rem;
}

/*
  晨龙文库 文章列表
*/
.article-list .media {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    text-decoration: none;
    -webkit-transition: -webkit-box-shadow 0.25s;
    transition: -webkit-box-shadow 0.25s;
    -o-transition: box-shadow 0.25s;
    transition: box-shadow 0.25s;
    transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
    -webkit-transition: box-shadow 0.25s;
}
.article-list .media img {
    height: 8rem;
    width: 12rem;
    margin-right: 2rem;
    opacity: .9;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
    -webkit-transition: opacity 0.25s;
}
.article-list .media-body {
    overflow: hidden;
}
.article-list .media h5 {
    width: 100%;
    float: left;
    margin-bottom: 1rem;
    font-size: 1.5em;
    color: #333333;
    -o-transition: color 0.25s;
    transition: color 0.25s;
    -webkit-transition: color 0.25s;
}
.article-list .media p {
    margin-bottom: 0;
    padding-right: 1rem;
    font-size: 1em;
    font-weight: 300;
    color: #999999;
    -o-transition: color 0.25s;
    transition: color 0.25s;
    -webkit-transition: color 0.25s;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
}
.article-list .media:hover {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    text-decoration: none;
}
.article-list .media:hover img {
    opacity: 1;
}
.article-list .media:hover h5 {
    color: #000000;
}
.article-list .media:hover p {
    color: #222222;
}
@media (min-width:576px) and (max-width:991px) { /*平板端 文章列表*/
    .article-list .media img {
        height: 6rem;
        width: 9rem;
        margin-right: 1rem;
    }
    .article-list .media h5 {
        font-size: 1.25em;
        margin-bottom: .8rem;
    }
    .article-list .media p {
        font-size: .75em;
    }
}
@media (max-width:575px) { /*手机端 文章列表*/
    .article-list .media {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: .6rem;
    }
    .article-list .media img {
        height: 4rem;
        width: 6rem;
        margin-right: .8rem;
    }
    .article-list .media h5 {
        font-size: 1.125em;
        margin-bottom: .5rem;
    }
    .article-list .media p {
        font-size: .75em;
    }
}

/**
    服务支持 流程
**/
ol.process {
    padding-left: 0;
    list-style: none;
    counter-reset: process;
}
ol.process li {
    margin: 2rem -2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowarp;
            flex-flow: row nowarp;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
ol.process li div.text-container {
    margin: 2rem;
    width: 60%;
    min-height: 13rem;
    background: #ffffff;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.125);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.125);
    position: relative;
}
ol.process div.text-container::before {
    counter-increment: process;
    content: "0" counter(process);
    font-size: 6em;
    font-weight: bold;
    color: rgba(5,84,145,.125);
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    font-variant-numeric: tabular-nums;
    position: absolute;
    right: 1rem;
    bottom: 0;
    
}
ol.process li .img-container {
    width: 30%;
    height: auto;
    margin: 2rem;
    border-radius: 6px;
    border: solid #fff 4px;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.125);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.125);
}
ol.process li:nth-of-type(2n-1) .img-container {
    margin-left: auto;
    margin-right: 2rem;
}
ol.process li:nth-of-type(2n) .img-container {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-right: auto;
    margin-left: 2rem;
}
ol.process li h4 {
    background: rgba(5,84,145,.75);
    color: #ffffff;
    padding: 1em 2em;
    margin: 0;
}
ol.process li p {
    padding: 2em;
    padding-right: 10rem;
    text-align: justify;
    margin: 0;
    font-size: 1.125em;
}
@media (max-width:991px) {
    ol.process li p {
        padding-right: 2rem;
    }
}
@media (max-width:575px) {
    ol.process li .img-container {
        display: none;
    }
    ol.process li div.text-container {
        width:100%;
        margin: .5rem 0;
    }
    ol.process li {
        margin: 0;
    }
    ol.process li h4 {
        padding: 1em 1.2em;
        margin: 0;
    }
}

/**
    招聘/合作
**/
ul.job {
    list-style-type: none;
    padding: 0;
}
ul.job > li {
    background: #ffffff;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.125);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.125);
    margin: 2rem 0;
}
ul.job > li .job-title {
    font-size: 1.25em;
    color: #ffffff;
    background: #055491;
    padding: 1.5rem 2rem;
}
ul.job > li .job-title .badge {
    background: #ffffff;
    color: #005190;
}
ul.job > li .job-body {
    padding-left: 2rem;
    padding-right: 2rem;
}
ul.job .job-section {
    padding-bottom: 2rem;
    border-top: solid rgba(5,84,145,.2) 1px;
}
ul.job .job-section:first-of-type {
    border-top: none;
}
ul.job h5 {
    padding-top: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 0;
    color: #345;
}
ul.job ol {
    color: #678;
    padding-left: 1.5rem;
    line-height: 1.75em;
}
ul.job p {
    color: #678;
    padding-left: .5rem;
    line-height: 1.75em;
    text-align: justify;
}
ul.job .contact, ul.job .contact a {
    text-decoration: none;
    color: #005190;
    font-size: larger;
}
ul.job [data-toggle="collapse"] {
    background: #f8f9fa;
    text-align: center;
    cursor: pointer;
    padding: 1rem 3rem;
    -webkit-transition: background 0.125s;
    -o-transition: background 0.125s;
    transition: background 0.125s;
}
ul.job [data-toggle="collapse"]:hover {
    background: #f0f1f2;
}
ul.job [data-toggle="collapse"].collapsed {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.cooperation {
    background-size: cover;
    background-position: center;
}
.cooperation .cooperation-body {
    width: 40%;
    margin-left: 10%;
    height: 880px;
    background: rgba(0,0,0,0.35);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}
.cooperation .cooperation-text {
    color: #ffffff;
    padding-top: 3em;
}
.cooperation .cooperation-text h4 {
    font-size: 2.25em;
    font-weight: 400;
    margin: 0.8em;
}
.cooperation .cooperation-text p {
    font-size: 1.125em;
    font-weight: 300;
    margin: 1em 1.75em;
}
.cooperation .cooperation-text ul {
    font-size: 1.1em;
    background: rgba(255,255,255,0.75);
    color: #055491;
    list-style: none;
    padding: 1em 2em;
    margin: 1.5em 0;
    line-height: 2.75em;
    font-weight: 700;
}
.cooperation .cooperation-text li::before {
    content: "";
    display: inline-block;
    width: .25rem;
    height: 1.6rem;
    margin-right: 1rem;
    background: rgba(5,84,145,.75);
    vertical-align :text-top
}
.cooperation .cooperation-title span {
    background: #055491;
    padding: 0.8em 1.2em;
    font-size: 2.5em;
    color: #ffffff;
    font-weight: 700;
    position: absolute;
    top: 2em;
    left: -10%;
}
@media (max-width:991px) and (min-width:576px) {
    .cooperation .cooperation-body {
        width: 50%;
        min-width: 320px;
        margin-left: 5%;
        height: 95vh;
        min-height: 880px;
    }
    .cooperation .cooperation-text {
        padding-top: 4em;
    }
}
@media (max-width:575px) {
    .cooperation .cooperation-body {
        font-size: 1em;
        width: 92%;
        margin-left:4%;
        height: 95vh;
        min-height: 650px;
    }
    .cooperation .cooperation-text {
        padding-top: 4em;
    }
    .cooperation .cooperation-title span {
        top: 1em;
    }
}