@charset "utf-8";
/* CSS Document */

.min-container .container,
.min-container.container {
    max-width: 1240px;
}

.banner {
    position: relative;
    min-height: 200px;
    max-height: 520px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: #f2f2f2;
}
.banner:before {
    display: block;
    padding-bottom: 27%;
    content: '';
}
.banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: scaleUpDown 5s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner .text-box {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    width: 100%;
    line-height: 1.5;
    transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
}
.banner .text-box * {
    text-shadow: 1px 1px 3px rgba(4, 0, 0, 0.5);
}
.banner .title {
    font-size: 56px;
    font-weight: 700;
    animation: bannerFadeInRight .7s forwards ease-out;
    line-height: 76px;
    color: #fff;
}
.banner .info {
    font-size: 36px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    animation: bannerFadeInLeft .7s forwards ease-out;
}
@media screen and (max-width: 540px) {
    .banner:before {
        display: block;
        padding-bottom: 37.3%;
        content: '';
    }
    .banner .title {
        font-size: 36px;
        line-height: 46px;
    }
    .banner .info {
        margin-top: 5px;
        font-size: 24px;
        line-height: 34px;
    }
}


.sub-body-container {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}
@media screen and (max-width: 900px) {
    .sub-body-container {
        padding-top: 0;
    }
}
@media screen and (max-width: 540px) {
    .sub-body-container {
        padding-bottom: 45px;
    }
}


.sub-head-box {
    padding-bottom: 50px;
}
.sub-head-box .container {
    height: 100%;
}
.sub-head-box .position-box {
    float: left;
    padding-left: 10px;
    border-left: 3px solid #7a7d81;
    font-size: 24px;
    font-weight: 700;
    color: #38393b;
    line-height: 1;
}
@media screen and (max-width: 900px) {
    .sub-head-box .container {
        padding: 0;
    }
}
@media screen and (max-width: 540px) {
    .sub-head-box {
        padding-bottom: 35px;
    }
}
.sub-nav .mobile-show {
    position: relative;
    z-index: 5;
    display: block;
    height: 100%;
    padding: 0 10px;
    font-size: 16px;
    line-height: 45px;
    color: #38393b;
    cursor: pointer;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
}
.sub-nav .mobile-show:before {
    position: absolute;
    top: 7px;
    right: 10px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-family: 'iconfont';
    content: '\e803';
    transform: rotate(90deg);
    transition: transform .36s ease-out 0s;
}
.sub-nav.mobile-active .mobile-show:before {
    transform: rotate(270deg);
}
.sub-nav .list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}
.sub-nav a {
    display: block;
    transition: all .3s;
}
.sub-nav dl {
    position: relative;
    z-index: 2;
    display: inline-block;
    height: 100%;
}
.sub-nav dt a {
    margin-left: 26px;
    line-height: 24px;
    color: #7a7d81;
}
.sub-nav dt a:after {
    position: absolute;
    top: 50%;
    right: -13px;
    width: 1px;
    height: 16px;
    margin-top: -8px;
    background: #7a7d81;
    content: '';
    pointer-events: none;
}
.sub-nav dl:hover dt a,
.sub-nav dl.active dt a {
    text-decoration: underline;
    color: #38393b;
}
.sub-nav dl:last-child dt a:after {
    display: none;
}
.sub-nav dd {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    width: 220px;
    background: #fefefe;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    opacity: 0;
    text-align: left;
    visibility: hidden;
    transform: translate3d(0, 10px, 0);
    transition: all .4s;
}
.sub-nav dl:hover dd {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.sub-nav dd a {
    height: 48px;
    padding: 0 25px;
    line-height: 48px;
    color: #666;
    overflow: hidden;
}
.sub-nav dd a:hover,
.sub-nav dd a.active {
    background: #e2f4fe;
}
@media screen and (min-width: 900px) {
    .sub-nav .list,
    .sub-nav .list dd {
        height: auto !important;
    }
}
@media screen and (max-width: 900px) {
    .sub-nav {
        position: relative;
        height: 45px;
    }
    .sub-nav .list {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 4;
        width: 100%;
        height: 0;
        padding-bottom: 0;
        background: #fff;
        text-align: left;
        overflow: hidden;
    }
    .sub-nav dl {
        display: block;
        height: auto;
    }
    .sub-nav dd {
        transition: all 0s;
    }
    .sub-nav a {
        height: 45px !important;
        border-bottom: 1px solid #eee;
        background: none !important;
        line-height: 44px !important;
        overflow: hidden;
    }
    .sub-nav dt a {
        margin: 0;
        padding: 0 40px;
    }
    .sub-nav dl:hover dt a,
    .sub-nav dl.active dt a,
    .sub-nav dd a.active,
    .sub-nav dd a:hover {
        color: #38393b !important;
    }
    .sub-nav dd {
        position: relative;
        top: 0;
        width: 100%;
        height: 0;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, 0, 0);
        overflow: hidden;
    }
    .sub-nav dd a {
        padding: 0 60px;
    }
    .sub-nav dl.has-sub dt {
        position: relative;
    }
    .sub-nav dl.has-sub dt:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: '';
    }
}
.ie .sub-nav .list {
    float: right;
}


.column-description {
    margin-top: 40px;
    padding: 10px 20px;
    border: 1px solid #f2f2f2;
    background: #fff;
    line-height: 30px;
}
.column-description p {
    text-indent: 2em;
    font-size: 14px;
    color: #666;
}


.page-btn {
    padding: 50px 0 0;
    text-align: center;
}
.page-btn * {
    position: relative;
    display: inline-block;
    width: 36px;
    margin: 0 2px;
    line-height: 36px;
    transition: all .3s ease 0s;
}
.page-btn .num {
    font-family: 'Arial';
    font-size: 12px;
    color: #a9a9a9;
}
.page-btn .num i {
    font-style: normal;
    width: auto;
    margin: 0;
    line-height: 18px;
}
.page-btn .num:hover,
.page-btn span.num {
    color: #38393b;
    /*text-decoration: underline;*/
}
.page-btn .num:hover i,
.page-btn span.num i {
    border-bottom: 1px solid #38393b
}
.page-btn .iconfont {
    color: #8e8e8e;
}
.page-btn .iconfont:before {
    font-size: 12px;
    transition: all 0s;
}
.page-btn a.iconfont:hover {
    color: #1b1b1b;
}
.page-btn span.iconfont {
    visibility: hidden;
}
@media screen and (max-width: 540px) {
    .page-btn {
        padding: 35px 0 0;
    }
}


/******* 详情前后页按钮 *******/
.article-page-btn {
    text-align: center;
}
.article-page-btn .prev-btn,
.article-page-btn .next-btn {
    max-width: 42%;
    font-family: 'iconfont';
    font-size: 150px;
    color: #d0d0d0;
    line-height: 60px;
    overflow: hidden;
}
.article-page-btn .prev-btn:before {
    content: '\e699';
}
.article-page-btn .next-btn:before {
    content: '\e69b';
}
.article-page-btn .prev-btn {
    float: left;    
}
.article-page-btn .next-btn {
    float: right;
}
.article-page-btn .column {
    font-family: 'iconfont';
    font-size: 80px;
    color: #d0d0d0;
    line-height: 80px;
}
.article-page-btn .column:before {
    content: '\e698';
}
.article-page-btn a:hover {
    color: #333;
}
@media screen and (max-width: 540px) {
    .article-page-btn .prev-btn,
    .article-page-btn .next-btn {
        font-size: 80px;
    }
    .article-page-btn .column {
        font-size: 50px;
    }
}


.aside-data > .header-box {
    padding: 80px 0 45px;
    line-height: 40px;
    color: #5f6061;
    text-align: center;
}
.aside-data > .header-box .china {
    font-size: 24px;
}
.aside-data > .header-box .en {
    position: relative;
    font-size: 18px;
}
.aside-data > .header-box .en:before {
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -7px;
    font-size: 14px;
    font-family: 'iconfont';
    content: '\e801';
    line-height: 1;
}
@media screen and (max-width: 540px) {
    .aside-data > .header-box {
        padding: 55px 0 30px;
        line-height: 30px;
    }
    .aside-data > .header-box .china {
        font-size: 18px;
    }
    .aside-data > .header-box .en {
        font-size: 14px;
    }
}


/***** 案例广告 *****/
.case-ad-block {
    height: 400px;
    background: #ebc230;
    color: #fff;
    text-align: center;
}
.case-ad-block .china {
    margin-bottom: 30px;
    font-size: 54px;
    line-height: 64px;
}
.case-ad-block .en {
    font-size: 22px;
    line-height: 32px;
}
@media screen and (max-width: 540px) {
    .case-ad-block {
        height: 250px;
    }
    .case-ad-block .china {
        margin-bottom: 15px;
        font-size: 36px;
        line-height: 46px;
    }
    .case-ad-block .en {
        font-size: 14px;
        line-height: 24px;
    }
}
.ie .case-ad-block {
    padding-top: 120px;
}


/***** 作品详情 *****/
.case-body .case-header-main .left-box,
.case-body .case-header-main .right-box {
    float: left;
    width: 50%;
}
.case-body .case-header-main .left-box {
    padding-left: 10px;
    border-left: 3px solid #7a7d81;
    font-size: 24px;
    font-weight: 700;
    color: #38393b;
    line-height: 1;
}
.case-body .case-header-main .right-box {
    font-size: 14px;
    line-height: 28px;
    color: #7a7d81;
}
@media screen and (max-width: 540px) {
    .case-body .case-header-main .left-box,
    .case-body .case-header-main .right-box {
        float: none;
        width: 100%;
    }
    .case-body .case-header-main .left-box {
        border: none;
        padding: 0 0 30px 0;
    }
}


/***** 单页详情 *****/
.about-body-container {
    padding-top: 80px;
    padding-bottom: 100px;
}
.about-body-container .left-box {
    float: left;
    width: 40%;
    font-size: 24px;
    line-height: 34px;
    color: #38393b;
}
.about-body-container .right-box {
    float: right;
    width: 60%;
    /*font-size: 18px;*/
    line-height: 28px;
    color: #38393b;
}
.about-body-container .section-head {
    padding-bottom: 55px;
}
.about-body-container .section-head .title {
    margin-bottom: 5px;
    text-align: center;
    font-size: 24px;
    line-height: 34px;
    color: #222;
    font-weight: 700;
}
.about-body-container .section-head .info {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #999;
}
@media screen and (max-width: 540px) {
    .about-body-container {
        padding-top: 35px;
        padding-bottom: 60px;
    }
    .about-body-container.first {
        padding-top: 0;
    }
    .about-body-container .section-head {
        padding-bottom: 35px;
    }
    .about-body-container .section-head .title {
        font-size: 20px;
    }
    .about-body-container .left-box,
    .about-body-container .right-box {
        float: none;
        width: 100%;
    }
    .about-body-container .left-box {
        padding-bottom: 10px;
        font-size: 18px;
        line-height: 28px;
    }
    .about-body-container .right-box {
        font-size: 16px;
    }
}


/******* 新闻详情 *******/
.article-body .article-header {
    margin-top: -4px;
    padding: 0 0 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.article-body .article-header .title {
    padding-bottom: 10px;
    font-size: 24px;
    color: #333;
    font-weight: 400;
    line-height: 32px;
}
.article-body .article-header .info {
    font-size: 12px;
    color: #848484;
    font-family: 'Tahoma';
    line-height: 1;
}
.article-body .article-header .num {
    position: relative;
    padding-left: 15px;
}
.article-body .article-header .num:before {
    position: absolute;
    left: 0;
    font-family: 'iconfont';
    font-size: 14px;
    content: '\e713';
}
.article-body .article-thumb {
    padding-top: 30px;
}
.article-body .article-thumb img {
    display: block;
    max-width: 100%;
    margin: auto;
}
.article-body .article-content {
    padding-top: 25px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.article-body .article-content p {
    text-indent: 2em;
}
.article-body .article-content p img{
    display:block;
    margin: auto;
}
@media screen and (max-width: 539px) {
    .article-body .article-header {
        margin-top: -3px;
        padding: 0 0 12px;
    }
    .article-body .article-header .title {
        padding-bottom: 7px;
        font-size: 16px;
        line-height: 22px;
    }
    .article-body .article-thumb {
        padding-top: 15px;
    }
    .article-body .article-content {
        padding-top: 10px;
    }
}


/******* 新闻列表 *******/
.news-list-body .list {
    margin-top: -40px;
}
.news-list-body .list li {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}
.news-list-body .list .whole-pic {
    float: left;
    width: 360px;
}
.news-list-body .list .whole-pic:before {
    display: block;
    padding-bottom: 100%;
    content: '';
}
.news-list-body .list .content{
    height: 360px;
    margin-left: 420px;
    padding: 20px 0;
}
.news-list-body .list .time {
    color: #7a7d81;
    font-size: 16px;
    line-height: 26px;
}
.news-list-body .list .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #38393b;
}
.news-list-body .list .info {
    position: relative;
    max-height: 48px;
    font-size: 14px;
    color: #7a7d81;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-list-body .list a:hover .img {
    transform: scale(1.1);
}
.news-list-body .list a:hover .title,
.news-list-body .list a:hover .info {
    text-decoration: underline;
}
.news-list-body .list a:hover .more-btn {
    color: #38393b;
}
.news-list-body .list a:hover .more-btn:after{
    width: 100%;
}
@media screen and (max-width: 540px) {
    .news-list-body .list {
        margin-top: -25px;
    }
    .news-list-body .list li {
        padding: 25px 0;
    }
    .news-list-body .list .whole-pic {
        float: none;
        width: 100%;
    }
    .news-list-body .list .content {
        height: auto;
        margin: 0;
        padding: 0;
    }
    .news-list-body .list .time,
    .news-list-body .list .info {
        margin: 8px 0;
    }
}


/******* 相关新闻列表 *******/
.aside-news-list-body .list {
    margin-top: -20px;
    margin-right: -20px;
}
.aside-news-list-body .list li {
    float: left;
    width: 50%;
    padding: 20px 20px 0 0;
}
.aside-news-list-body .list a {
    display: block;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgba(6, 0, 1, 0.06);
    transition: background .3s;
}
.aside-news-list-body .list .pic {
    float: left;
    width: 180px;
}
.aside-news-list-body .list .pic:before {
    display: block;
    padding-bottom: 66.666%;
    content: '';
}
.aside-news-list-body .list .cont {
    margin-left: 200px;
    padding: 8px 0 0;
}
.aside-news-list-body .list .title {
    font-size: 16px;
    color: #333;
}
.aside-news-list-body .list .info {
    margin: 8px 0px 0;
    max-height: 48px;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.aside-news-list-body .list .time {
    font-size: 12px;
    line-height: 30px;
    color: #999;
}
.aside-news-list-body .list a:hover {
    background: #38393b;
}
.aside-news-list-body .list .title,
.aside-news-list-body .list .time,
.aside-news-list-body .list .info {
    transition: color .36s;
}
.aside-news-list-body .list a:hover .title,
.aside-news-list-body .list a:hover .time,
.aside-news-list-body .list a:hover .info {
    color: #fff;
}
@media screen and (max-width: 540px) {
    .aside-news-list-body .list {
        margin-top: -10px;
        margin-right: -10px;
    }
    .aside-news-list-body .list li {
        float: none;
        width: 100%;
        padding: 10px 10px 0 0;
    }
    .aside-news-list-body .list a {
        padding: 10px;
    }
    .aside-news-list-body .list .pic {
        width: 130px;
    }
    .aside-news-list-body .list .cont {
        margin-left: 140px;
        padding: 0;
    }
    .aside-news-list-body .list .time {
        line-height: 20px;
    }
    .aside-news-list-body .list .info {
        margin-top: 3px;
        line-height: 20px;
        max-height: 40px;
    }
}


/****** 问题列表 ******/
.question-list-container .question-list-block {
    margin-top: -12px;
}
.question-list-container .question-list-block:before {
    display: table;
    content: '';
}
.question-list-container .question-list-block dl {
    margin-top: 12px;
    background: #f3f3f3;
    border-radius: 8px;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    cursor: pointer;
    overflow: hidden;
}
.question-list-container .question-list-block dt {
    position: relative;
    padding: 20px 50px 20px 30px;
    transition: all .5s;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.question-list-container .question-list-block dt .close {
    position: absolute;
    right: 30px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    transition: transform .5s;
}
.question-list-container .question-list-block dt .close:before,
.question-list-container .question-list-block dt .close:after {
    position: absolute;
    background: #38393b;
    content: '';
    transition: background .5s;
}
.question-list-container .question-list-block dt .close:before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}
.question-list-container .question-list-block dt .close:after {
    left: 7px;
    top: 0;
    height: 100%;
    width: 2px;
}
.question-list-container .question-list-block dd {
    height: 0;
    font-size: 14px;
    line-height: 30px;
    overflow: hidden;
}
.question-list-container .question-list-block dd .dd-content {
    padding: 30px;
}
.question-list-container .question-list-block dl:hover dt {
    color: #38393b;
}
.question-list-container .question-list-block dl.active dt {
    background: #38393b;
    color: #fff !important;
}
.question-list-container .question-list-block dl.active dt .close {
    transform: rotate(45deg);
}
.question-list-container .question-list-block dl.active dt .close:before,
.question-list-container .question-list-block dl.active dt .close:after {
    background-color: #fff;
}
@media screen and (max-width: 539px) {
    .question-list-container .question-list-block dt {
        padding: 12px 30px 12px 15px;
    }
    .question-list-container .question-list-block dt .close {
        right: 15px;
    }
    .question-list-container .question-list-block dd .dd-content {
        padding: 15px;
    }
}


/*联系我们*/
.contact-body-container {
    background: url(/static/img/contact.jpg) center no-repeat;
    background-size: cover;
}
.contact-body-container .form-container {
    padding: 45px 50px 80px;
    border-top: 5px solid #38393b;
    background: #fff;
}
.contact-body-container .form-container .block-title {
    padding-bottom: 10px;
    font-size: 24px;
    color: #38393b;
    font-weight: 700;
    line-height: 34px;
}
.contact-body-container .form-container .block-sub-title {
    font-size: 18px;
    color: #333;
    font-weight: 700;
    line-height: 28px;
}
.contact-body-container .form-container .content-block {
    float: left;
    width: 35%;
    font-size: 16px;
    line-height: 30px;
    color: #333;
    margin-right: 5%;
}
.contact-body-container .form-container .content-block .m-top {
    margin-top: 30px;
}
.contact-body-container .form-container .content-block .small-text {
    font-size: 18px;
    line-height: 36px;
}
.contact-body-container .form-container .content-block .tel-text {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}
.contact-body-container .form-container .form-block {
    float: left;
    width: 60%;
}
.contact-body-container .form-container .form-block .form-cells {
    margin-right: -30px;
}
.contact-body-container .form-container .form-block .form-cells .cell {
    float: left;
    width: 100%;
    padding: 30px 30px 0 0;
}
.contact-body-container .form-container .form-block .form-cells .input-cell {
    width: 50%;
}
.contact-body-container .form-container .form-block .input {
    width: 100%;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 16px;
    background-image: none;
}
.contact-body-container .form-container .form-block .textarea {
    width: 100%;
    height: 160px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
}
.contact-body-container .form-container .form-block .submit-btn {
    position: relative;
    display: block;
    width: 200px;
    height: 60px;
    background: #7a7d81;
    border-radius: 5px;
    color: #fff;
    line-height: 60px;
    font-size: 16px;
    text-align: center;
    overflow: hidden;
}
.contact-body-container .form-container .form-block .submit-btn em {
    position: relative;
    z-index: 1;
    font-style: normal;
}
.contact-body-container .form-container .form-block .submit-btn em:after {
    position: relative;
    margin-left: 10px;
    font-family: 'iconfont';
    content: '\e803';
    font-size: 12px;
    left: 0;
    transition: left .3s;
}
.contact-body-container .form-container .form-block .submit-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width .3s;
    background: #38393b;
    content: '';
}
.contact-body-container .form-container .form-block .submit-btn:hover:before {
    width: 100%;
}
.contact-body-container .form-container .form-block .submit-btn:hover em:after {
    left: 10px;
}
@media screen and (max-width: 539px) {
    .contact-body-container .form-container {
        padding: 20px 25px 40px;
    }
    .contact-body-container .form-container .block-title {
        padding-bottom: 0px;
        font-size: 16px;
        line-height: 26px;
    }
    .contact-body-container .form-container .block-sub-title {
        font-size: 14px;
        line-height: 24px;
    }
    .contact-body-container .form-container .content-block,
    .contact-body-container .form-container .form-block {
        float: none;
        width: 100%;
    }
    .contact-body-container .form-container .content-block {
        font-size: 14px;
        line-height: 24px;
    }
    .contact-body-container .form-container .content-block .m-top {
        margin-top: 24px;
    }
    .contact-body-container .form-container .content-block .small-text {
        font-size: 16px;
        line-height: 28px;
    }
    .contact-body-container .form-container .content-block .tel-text {
         font-size: 24px;
        line-height: 32px; 
    }
    .contact-body-container .form-container .form-block {
        padding-top: 20px;
    }
    .contact-body-container .form-container .form-block .form-cells .cell {
        width: 100% !important;
        padding-top: 15px;
    }
    .contact-body-container .form-container .form-block .input {
        height: 40px;
        padding: 0 10px;
    }
    .contact-body-container .form-container .form-block .textarea {
        height: 100px;
    }
    .contact-body-container .form-container .form-block .submit-btn {
        width: 100%;
        height: 40px;
        line-height: 40px;
    }
}


/***** 视频列表 *****/
.video-list-container .video-list-block {
    margin-top: -30px;
    margin-right: -30px;
}
.video-list-container .video-list-block li {
    float: left;
    width: 50%;
    padding: 40px 40px 0 0;
}
.video-list-container .video-list-block .cell {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
}
.video-list-container .video-list-block .pic-box {
    position: relative;
    overflow: hidden;
}
.video-list-container .video-list-block .pic-box:before {
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    content: '';
    transition: all .36s ease;
}
.video-list-container .video-list-block .pic-box:after {
    display: block;
    padding-bottom: 66.6%;
    content: '';
}
.video-list-container .video-list-block .img {
    background-size: cover;
}
.video-list-container .video-list-block .content-box {
    position: absolute;
    left: 0;
    bottom: 33px;
    z-index: 2;
    width: 82%;
    height: 80px;
    padding: 10px 10px 10px 20px;
    background: #fff;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    line-height: 60px;
}
.video-list-container .video-list-block .title {
    flex: 1;
    float: left;
    width: 80%;
    font-size: 18px;
    color: #38393b;
    font-weight: 400;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .35s;
}
.video-list-container .video-list-block .iconfont {
    float: right;
    width: 60px;
    height: 60px;
    background: #38393b;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    text-align: center;
    transition: background .3s;
}
.video-list-container .video-list-block a:hover .img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.video-list-container .video-list-block a:hover .iconfont {
    background: #f6ca27;
}
@media screen and (max-width: 539px) {
    .video-list-container .video-list-block {
        margin-top: -15px;
        margin-right: 0;
    }
    .video-list-container .video-list-block li {
        width: 100%;
        padding-top: 15px;
        padding-right: 0;
    }
    .video-list-container .video-list-block .cell {
        border-radius: 20px;
    }
    .video-list-container .video-list-block .content-box {
        bottom: 23px;
        height: 55px;
        padding: 5px 5px 10px;
        line-height: 45px;
    }
    .video-list-container .video-list-block .iconfont {
        width: 45px;
        height: 45px;
    }
}


/****** 网站地图 ******/
.sitemap-body .list li {
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    line-height: 30px;
    text-align: center;
}
.sitemap-body .list li:last-child {
    border: none;
}
.sitemap-body .list li:after {
    display: block;
    clear: both;
    content: '';
}
.sitemap-body .list .topclass {
    float: left;
    width: 120px;
    height: 30px;
    background: #f6ca27;
    color: #fff;
    -webkit-transition: background .3s ease-out;
    transition: background .3s ease-out;
}
.sitemap-body .list .topclass:hover {
    background: #58c78d;
}
.sitemap-body .list .box {
    margin-left: 130px;
}
.sitemap-body .list dl {
    float: left;
}
.sitemap-body .list dt {
    position: relative;
}
.sitemap-body .list dt:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 16px;
    margin-top: -8px;
    border-left: 1px solid #e5e5e5;
    content: '';
}
.sitemap-body .list dt a {
    color: #089549;
}
.sitemap-body .list dt a:hover {
    color: #f6ca27;
}
.sitemap-body .list dt,
.sitemap-body .list dd {
    padding: 0 15px;
}
.sitemap-body .list li dl:last-child dt:after {
    display: none;
}
.sitemap-body .list li dd {
    font-size: 12px;
    line-height: 26px;
}


/*招聘列表*/
.job-list-body .list dt {
    height: 70px;
    padding: 0 70px 0 30px;
    background: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 70px;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.job-list-body .list dd.active .head-box {
    background: #7a7d81;
    color: #fff;
}
.job-list-body .list dd {
    margin-top: 12px;
    background: #f3f3f3;
    border-radius: 8px;
    overflow: hidden;
}
.job-list-body .list .head-box {
    position: relative;
    height: 70px;
    padding: 0 70px 0 30px;
    font-size: 15px;
    line-height: 70px;
    color: #666;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    cursor: pointer;
}
.job-list-body .list .head-box .sign {
    position: absolute;
    top: 27px;
    right: 30px;
    width: 16px;
    height: 16px;
    transition: transform .2s ease-out;
}
.job-list-body .list .head-box .sign:before,
.job-list-body .list .head-box .sign:after {
    position: absolute;
    background: #38393b;
    content: '';
    -webkit-transition: background .2s ease-out;
    transition: background .2s ease-out;
}
.job-list-body .list .head-box .sign:before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}
.job-list-body .list .head-box .sign:after {
    top: 0;
    right: 7px;
    width: 2px;
    height: 100%;
}
.job-list-body .list .head-box:hover {
    background: #7a7d81;
    color: #fff;
}
.job-list-body .list dd.active .head-box .sign,
.job-list-body .list dd.active .head-box .sign,
.job-list-body .list .head-box:hover .sign,
.job-list-body .list .head-box:hover .sign {
    transform: rotate(45deg);
}
.job-list-body .list dd.active .head-box .sign:before,
.job-list-body .list dd.active .head-box .sign:after,
.job-list-body .list .head-box:hover .sign:before,
.job-list-body .list .head-box:hover .sign:after {
    background: #fff;
}
.job-list-body .list .cont-box {
    height: 0;
    font-size: 15px;
    line-height: 30px;
    color: #666;
    overflow: hidden;
}
.job-list-body .list .cont-box .box {
    padding: 22px 30px 30px;
}
.job-list-body .list .name {
    float: left;
    width: 35%;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-list-body .list .number {
    float: left;
    width: 30%;
    text-align: center;
}
.job-list-body .list .time {
    float: left;
    width: 35%;
    text-align: center;
}
@media screen and (max-width: 539px) {
    .job-list-body .list dt,
    .job-list-body .list .head-box {
        height: 50px;
        padding-left: 15px;
        padding-right: 30px;
        line-height: 50px;
    }
    .job-list-body .list .head-box .sign {
        right: 10px;
        top: 17px;
    }
    .job-list-body .list .cont-box .box {
        padding: 10px 15px;
    }
}


/****** 资质列表 ******/
.qua-list-container .qua-list-block {
    margin-top: -30px;
    margin-right: -30px;
}
.qua-list-container .qua-list-section {
    float: left;
    width: 33.33%;
    padding: 30px 30px 0 0;
}
.qua-list-container .qua-list-section .pic-box {
    position: relative;
    padding-bottom: 100%;
    border: 1px solid #eee;
    border-radius: 30px;
    overflow: hidden;
}
.qua-list-container .qua-list-section .pic-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    transition: all .3s;
}
.qua-list-container .qua-list-section .pic-box .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    background: rgba(0, 0, 0, .67);
    border-radius: 5px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-family: 'iconfont';
    font-size: 24px;
    content: '\e706';
}
.qua-list-container .qua-list-section .pic-box:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    content: '';
    transition: opacity .3s;
}
.qua-list-container .qua-list-section .whole-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.qua-list-container .qua-list-section .whole-pic > .img {
    background-color: #fff;
}
.qua-list-container .qua-list-section .whole-pic:before {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .5);
    transform: scale(1.2);
    opacity: 0;
    content: '';
    transition: all .3s;
    border-radius: 30px;
}
.qua-list-container .qua-list-section .title {
    padding: 20px 0 0;
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #444;
    transition: all .3s;
}
.qua-list-container .qua-list-section a:hover .pic-box:after {
    opacity: 1;
}
.qua-list-container .qua-list-section a:hover .whole-pic:before {
    transform: scale(1);
    opacity: 1;
}
.qua-list-container .qua-list-section a:hover .pic-box .icon {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.qua-list-container .qua-list-section a:hover .title {
    color: #f9c03d;
    /*transform: translate3d(0, -10px, 0);*/
}
@media screen and (max-width: 899px) and (min-width: 540px) {
    .qua-list-container .qua-list-section {
        width: 50%;
    }
}
@media screen and (max-width: 539px) {
    .qua-list-container .qua-list-block {
        margin-top: -20px;
        margin-right: -10px;
    }
    .qua-list-container .qua-list-section {
        width: 50%;
        padding: 20px 10px 0 0;
    }
    .qua-list-container .qua-list-section .pic-box,
    .qua-list-container .qua-list-section .whole-pic:before {
        border-radius: 10px;
    }
    .qua-list-container .qua-list-section .title {
        padding-top: 13px;
        font-size: 16px;
        line-height: 22px;
    }
}


/***** 专家列表 *****/
.team-list-container .data-list-block {
    margin-top: -30px;
    margin-left: -15px;
    margin-right: -15px;
}
.team-list-container .data-list-block li {
    float: left;
    width: 50%;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
}
.team-list-container .data-list-block .box {
    display: block;
    display: flex;
    height: 255px;
    padding: 26px 28px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
    color: #7f8897;
}
.team-list-container .data-list-block .img-box {
    float: left;
    width: 200px;
    height: 200px;
    margin-right: 20px;
    border-radius: 50%;
}
.team-list-container .data-list-block .img-box:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(34, 127, 169, .9);
    opacity: 0;
    content: '';
    transition: opacity .36s;
    border-radius: 50%;
}
.team-list-container .data-list-block .content-box {
    flex: 1;
    width: calc(100% - 220px);
}
.team-list-container .data-list-block .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    opacity: 0;
    transform: translateY(100%);
    transition: all .36s;
}
.team-list-container .data-list-block .icon:before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    border-top: 4px solid #fff;
    content: '';
}
.team-list-container .data-list-block .icon:after {
    position: absolute;
    left: 10px;
    right: 0;
    height: 100%;
    border-left: 4px solid #fff;
    content: '';
}
.team-list-container .data-list-block .title {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .36s;
}
.team-list-container .data-list-block .sub-title {
    margin: 5px 0 15px;
    font-size: 15px;
    line-height: 25px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #7f8897;
}
.team-list-container .data-list-block .info {
    max-height: 68px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    white-space: normal;
    word-break: inherit;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.team-list-container .data-list-block .btn {
    display: inline-block;
    width: 120px;
    height: 46px;
    border-radius: 23px;
    border: 1px solid #dadde1;
    background: #f2f3f4;
    text-align: center;
    color: #7f8897;
    font-size: 15px;
    line-height: 44px;
    transition: all .36s;
}
.team-list-container .data-list-block .box:hover .img-box:before {
    opacity: 1;
}
.team-list-container .data-list-block .box:hover .icon {
    opacity: 1;
    transform: translateY(0px);
}
.team-list-container .data-list-block .box:hover .title {
    color: #f6ca27;
}
.team-list-container .data-list-block .box:hover .btn {
    background: #f6ca27;
    border-color: #f6ca27;
    color: #fff;
}
@media screen and (max-width: 539px) {
    .team-list-container .data-list-block {
        margin-top: -20px;
    }
    .team-list-container .data-list-block .box {
        height: auto;
        padding: 14px;
        align-items: center;
    }
    .team-list-container .data-list-block li {
        float: none;
        width: 100%;
        padding-top: 20px;
    }
    .team-list-container .data-list-block .img-box {
        width: 120px;
        height: 120px;
        margin-right: 10px;
    }
    .team-list-container .data-list-block .content-box {
        width: calc(100% - 130px);
    }
    .team-list-container .data-list-block .sub-title {
        margin: 0 0 10px;
    }
    .team-list-container .data-list-block .info {
        margin-bottom: 10px;
        padding-top: 10px;
        max-height: 50px;
        line-height: 20px;
    }
    .team-list-container .data-list-block .btn {
        height: 36px;
        line-height: 34px;
    }
}


/****** 团队详情 ******/
.team-body-container .pic-section {
    float: left;
    width: 35%;
    padding-right: 50px;
}
.team-body-container .pic-section img {
    display: block;
    width: 100%
}
.team-body-container .content-section {
    float: left;
    width: 65%;
}
.team-body-container .team-header {
    margin-top: -4px;
    padding: 0 0 30px;
    border-bottom: 1px solid #eee;
}
.team-body-container .team-header .title {
    padding-bottom: 10px;
    font-size: 18px;
    color: #f6ca27;
    font-weight: 400;
    line-height: 28px;
}
.team-body-container .team-header .info {
    font-size: 15px;
    color: #7f8897;
    line-height: 1;
}
.team-body-container .team-content {
    padding-top: 25px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
@media screen and (max-width: 539px) {
    .team-body-container .pic-section {
        float: none;
        width: 100%;
        padding: 0 0 15px;
    }
    .team-body-container .content-section {
        float: none;
        width: 100%;
    }
    .team-body-container .team-header {
        margin-top: -3px;
        margin-left: -5.5%;
        margin-right: -5.5%;
        padding: 0 5% 12px;
    }
    .team-body-container .team-header .title {
        padding-bottom: 7px;
        line-height: 22px;
    }
    .team-body-container .team-content {
        padding-top: 10px;
    }
}