@CHARSET "UTF-8";
html {
    width: 100%;
    overflow-x: hidden;
}

body {
    color: #000;
    width: 100%;
    overflow-x: hidden;
    /*font-family: 'Microsoft YaHei', sans-serif;*/
}

@media (min-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* 按钮 */
.btn-light {
    background-color: #fff;
    color: #000;
    border-radius: 18px;
    padding-left: 20px;
    padding-right: 20px;
}

/* 字体颜色 */
.text-233160 {
    color: #658ddb !important;
}

/* 背景色 */
.bg-233160 {
    background-color: #233160 !important;
}

.bg-eee {
    background-color: #eee !important;
}

/* 表单 */
.form-control {
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.input-group-addon {
    border-radius: 0;
}

.form-control::placeholder {
    color: #999;
}

.form-group .captcha {
    width: 100%;
    height: 38px;
    display: block;
    margin: 0 auto;
}

/* 滚动动画 */
.wow {
    visibility: hidden;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(360deg);
    }
}

/* 旋转 */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pin {
    -webkit-animation: spin 5s linear 1s infinite normal;
    -o-animation: spin 5s linear 1s infinite normal;
    animation: spin 5s linear 1s infinite normal;
}

/**
    返回顶部
 */
#toTop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 10;
    border: 1px solid #eee;
    background-color: rgba(0, 0, 0, 0.6);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); /*IE8支持*/
    text-align: center;
    padding: 5px;
    position: fixed;
    bottom: 60px;
    right: 10px;
    cursor: pointer;
    display: none;
    color: #fff;
    text-transform: lowercase;
    font-size: 24px;
}

#toTop i {
    display: block;
}

/**
    顶部导航条
 */
.top-nav #logo {
    width: 10rem;
}

@media (min-width: 768px) {
    .top-nav #logo {
        width: 8rem;
    }
}

@media (min-width: 1200px) {
    .top-nav #logo {
        width: 10rem;
    }
}

/**
    页脚
 */
.foot {
    background-color: #f8f8f8;
}

#foot-menu a {
    color: #000;
    display: inline-block;
    margin-bottom: 0.5rem;
}

#foot-menu a:hover {
    text-decoration: underline;
    background-color: transparent;
}

.links a {
    display: inline-block;
    color: #666;
    border-right: 1px solid #666;
    padding-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.links a:first-child {
    padding-left: 0;
}

.links a:last-child {
    border-right: none;
}

.outsite.links a {
    border-right: none;
}

@media (max-width: 768px) {
    .foot {
        text-align: center;
    }
}

/**
    面包屑
*/
.breadcrumb {
    padding: 1rem 0;
    margin: 0;
    border-radius: 0;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
}

/**
    顶部banner
 */
.top-banner {
    min-height: 37.5rem;
    background-size: cover !important;
}

/* 页面标题 */
.page-title {
    position: relative;
}

.page-title::after {
    content: '';
    width: 40px;
    height: 1px;
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: #fff;
}

.page-title.inverse::after {
    background-color: #000;
}

/* 页面副标题 */
.page-sub-title {
    border-left: 10px solid #658ddb;
    padding-left: 10px;
}

.page-sub-title.white {
    border-left: 10px solid #fff;
    color: #fff;
}

/* 首页：顶部banner */
#index-page .top-banner {
    background: #a0b4cc no-repeat center center;
}

.top-banner .wrapper {
    /*max-width: 750px;*/
    color: #a9b7d8;
}

/* 首页：mertro导航块 */
#index-page .metro .metro-item {
    height: 11.25rem;
    background-size: contain;
    background: #fff no-repeat center left;
}

#index-page .metro .metro-item .inner {
    max-width: 720px;
}

#index-page .metro .metro-item-0 {
    height: 23.5rem;
    padding-top: 11.75rem;
    background: #fff no-repeat top left;
    background-size: 100% 11.75rem;
}

#index-page .metro .metro-item-0 .inner {
    height: 11.75rem;
}
#index-page .metro .metro-item-1 .inner {
    text-align: right;
}

/* 首页：新闻列表 */
#index-page .news-list .img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#index-page .news-list .img img {
    height: 100%;
    transition: transform .3s ease-in-out;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out;
}

#index-page .news-list .img img:hover {
    -webkit-transform: scale(1.5, 1.5);
    -moz-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    -o-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
}

#index-page .news-list .title {
    height: 2.5rem;
    color: #000;
}

@media (min-width: 768px) {
    #index-page .news-list .img {
        height: 15.625rem;
    }
}

@media (min-width: 992px) {
    #index-page .news-list .img {
        height: 11.25rem;
    }
}

/* 首页：联系我们 */
#index-page #contact-page .top-banner {
    min-height: 25rem;
}

/* 科研页：顶部banner */
#research-page .top-banner {
    background: #141936 no-repeat center center;
}

.top-banner .tech-item {
    background-color: #fff;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
}

.top-banner .tech-item .desc {
    min-height: 4.5rem;
}

@media (min-height: 768px) and (max-width: 992px) {
    .top-banner .tech-item {
        min-height: 17.1rem;
    }
}

.top-banner .tech-item .item-title {
    font-weight: bold;
    color: #666;
}

#research-page .univ-item {
    position: relative;
    overflow: hidden;
}

#research-page .univ-item > img {
    width: 100%;
}

#research-page .univ-item .desc {
    font-size: 0.875rem;
    background-color: #233160;
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    -webkit-transition: -webkit-transform .3s ease-in-out, top .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out, top .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out, top .3s ease-in-out;
}

@media (min-width: 768px) {
    #research-page .univ-item .desc {
        min-height: 22.75rem;
    }
}

@media (min-width: 992px) {
    #research-page .univ-item .desc {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 100%;
        left: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        transition: transform .3s ease-in-out, top .3s ease-in-out;
        -webkit-transition: -webkit-transform .3s ease-in-out, top .3s ease-in-out;
        -moz-transition: -moz-transform .3s ease-in-out, top .3s ease-in-out;
        -o-transition: -o-transform .3s ease-in-out, top .3s ease-in-out;
    }

    #research-page .univ-item:hover .desc {
        top: 0;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
    }
}

#research-page .yjll {
    background: url("../images/research/bg_yjll.jpg") #6a99ef;
}

/* 联系我们：顶部banner */
#contact-page .top-banner {
    background: #20325f no-repeat center center;
}

@media (min-width: 992px) {
    #contact-page .top-banner .text {
        height: 20.75rem;
    }
}
/* 新闻列表页：顶部banner */
#news-page .top-banner {
    background: #20325f no-repeat center center;
}

#news-page .top-banner .img {
    width: 100%;
    height: 12.5rem;
    overflow: hidden;
}

#news-page .top-banner .img img {
    transition: transform .3s ease-in-out;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out;
}

#news-page .top-banner .img img:hover {
    -webkit-transform: scale(1.5, 1.5);
    -moz-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    -o-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
}

@media (min-width: 768px) {
    #news-page .top-banner .img {
        height: 9.375rem;
    }
}

@media (min-width: 992px) {
    #news-page .top-banner .img {
        height: 15.625rem;
    }
}

#news-page .top-banner .desc {
    height: 6.25rem;
    overflow: hidden;
}

@media (min-width: 992px) {
    #news-page .box:nth-child(even) {
        border-left: 1px solid #ccc;
    }
}

/* 文章页 */
@media (min-width: 768px) {
    #article-page .post-source {
        text-align: right;
    }
}

#article-page .article-info {
    border-bottom: 1px dashed #1d1618;
}

/*#article-page #article_content p {*/
/*margin: 0;*/
/*}*/

#article-page #article_content img {
    max-width: 100% !important;
    height: auto !important;
}

/* 关于我们：顶部banner */
#about-page .top-banner {
    background: #20325f no-repeat center center;
}

#about-page .nav-tabs {
    border-bottom: none;
    flex-wrap: nowrap;
}

#about-page .nav-tabs a {
    color: #fff;
}

#about-page .nav-tabs .nav-link:focus, #about-page .nav-tabs .nav-link:hover {
    border: none;
}

#about-page .nav-tabs .nav-item.show .nav-link, #about-page .nav-tabs .nav-link.active {
    background-color: #233160;
    font-weight: 800;
    border: none;
}

#about-page .nav-tabs .nav-link {
    position: relative;
    border: none;
}

#about-page .nav-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

#about-page .nav-tabs .nav-item {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* 应用页：topbanner */
#application-page .top-banner {
    background: #20223a no-repeat center center;
}

#application-page .top-banner .item:nth-of-type(odd) {
    background-color: #658ddb;
}

#application-page .top-banner .item:nth-of-type(even) {
    background-color: #233160;
}

#application-page .top-banner .item-icon {
    width: 2rem;
    height: 2rem;
}

#application-page .top-banner .line {
    width: 1rem;
    height: 1px;
    background-color: #fff;
}

/* 团队页：研究团队 */
#team-page .top-banner {
    background: #20223a no-repeat center center;
}
#team-page .team-yj .media img {
    height: 10.3rem;
}

#team-page .team-yj .media .desc {
    font-size: 0.875rem;
}

#team-page .team-yj .media .desc p {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    #team-page .team-yj .media .media-body {
        background-color: #fff;
    }
}

/* 团队页：生产管理团队 */
@media (min-width: 768px) {
    #team-page .team-scgl .card .card-body {
        min-height: 15rem;
    }
}

@media (min-width: 992px) {
    #team-page .team-scgl .container {
        padding-left: 5px;
        padding-right: 5px;
    }

    #team-page .team-scgl .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    #team-page .team-scgl .col-12, #team-page .team-scgl .col-md-4 {
        padding-left: 5px;
        padding-right: 5px;
    }

    #team-page .team-scgl .card .card-body {
        min-height: 19rem;
    }
}

#team-page .team-scgl .card {
    border: none;
    background-color: #01426c;
    color: #fff;
    border-radius: 0;
    font-size: 0.875rem;
}

/* 产品页：顶部banner */
#product-page .top-banner {
    background: #fff no-repeat center center;
}

/* 可持续发展页：顶部banner */
#sustainability-page .top-banner {
    background: #fff no-repeat center center;
}

/* 特膳页：顶部banner */
#specialmeal-page .top-banner {
    background: #20325f no-repeat center center;
}

/* 特膳页： */
#specialmeal-page .item-list .item{
    border-top: 10px solid;
    position: relative;
}
#specialmeal-page .item-list .col-lg-3:nth-of-type(1) .item{
    border-top-color: #e38e2c;
}
#specialmeal-page .item-list .col-lg-3:nth-of-type(2) .item{
    border-top-color: #f8aa90;
}
#specialmeal-page .item-list .col-lg-3:nth-of-type(3) .item{
    border-top-color: #2eae6d;
}
#specialmeal-page .item-list .col-lg-3:nth-of-type(4) .item{
    border-top-color: #50a1de;
}
#specialmeal-page .item-list .item img{
    width: 100%;
}
#specialmeal-page .item-list .item .title{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* 人才招聘页：顶部banner */
#recruit-page .top-banner {
    background: #20325f no-repeat center center;
}
