/* 内页产品服务 */

.section-service {}

.section-service ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-service ul li {
    float: left;
    flex: 1;
    /* width: 300px; */
    height: 143px;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    padding: 20px 12px;
    margin-left: 10px;
    background-color: #fff;
    cursor: pointer;
}

.section-service ul li:first-child {
    margin-left: 0;
}

.section-service ul li img {
    max-height: 50px;
    line-height: 50px;
    float: left;
    margin-right: 10px;
}

.section-service ul li h4 {
    float: left;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.section-service ul li p {
    height: 30px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 12px;
    color: #666;
}

.section-service ul li .link {
    text-align: center;
}

.section-service ul li .link a {
    display: inline-block;
    font-size: 16px;
    color: #2e328d;
    font-weight: bold;
    margin: 0 6px;
}

.section-service ul li .link a:hover {
    text-decoration: underline;
}

.section-service ul li:hover {
    background-color: #1d2976;
}

.section-service ul li:hover h4,
.section-service ul li:hover p,
.section-service ul li:hover .link a {
    color: #fff;
}

.section-service .goshop {
    width: 100%;
    height: 88px;
    line-height: 88px;
    text-align: center;
    margin: 20px 0;
}


/* 内页新闻版本 */

.section-news {}

.section-news .first {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section-news .first .pic {
    width: 260px;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.section-news .first .pic img {
    width: 100%;
    height: 100%;
}

.section-news .first .text {
    flex: 1;
}

.section-news .first .title {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: normal;
    line-height: 36px;
    max-width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-news .first .title:hover {
    color: #2e328d;
}

.section-news .first .time {
    font-size: 12px;
    color: #666;
    line-height: 24px;
}

.section-news .first .desc {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    max-height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.section-news .first .more {
    font-size: 14px;
    color: #2e328d;
    margin-top: 20px;
}

.section-news .first .more:hover {
    text-decoration: underline;
}

.section-news .first .more img {
    vertical-align: middle;
    margin-left: 10px;
}

.section-news ul li {
    line-height: 42px;
    border-bottom: 1px dashed #dcdcdc;
}

.section-news ul li:first-child {
    border-top: 1px dashed #dcdcdc;
}

.section-news ul li .title {
    font-size: 14px;
    color: #1a1a1a;
    max-width: 80%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}

.section-news ul li .title:hover {
    transform: translateX(-4px);
    -webkit-transform: translateX(-4px);
    -moz-transform: translateX(-4px);
}

.section-news ul li .title:before {
    content: "·";
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
    margin-right: 10px;
}

.section-news ul li .title:hover {
    color: #2e328d;
}

.section-news ul li .time {
    font-size: 14px;
    color: #999;
    flex-shrink: 0;
}

.section-news ul li .download {
    color: #2e328d;
    margin-right: 20px;
}

.section-news ul li .download:hover {
    text-decoration: underline;
}

.section-news ul li:first-child {
    margin-top: 0;
}


/* 内页图片列表 */

.section-piclist {}

.section-piclist ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-piclist ul li {
    width: 232px;
    margin-bottom: 20px;
}

.section-piclist ul li .pic {
    position: relative;
    width: 100%;
    height: 162px;
    padding: 10px;
    border: 1px solid #dbdbdb;
    overflow: hidden;
}

.section-piclist ul li .pic img {
    width: 100%;
    height: 100%;
}

.section-piclist ul li .title {
    font-size: 14px;
    color: #333333;
    text-align: center;
    margin-top: 10px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 详情页 */

.section-details {
    padding-bottom: 20px;
}

.section-details .art-title {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.section-details .art-title h4 {
    font-size: 30px;
    color: #222;
    font-weight: normal;
    line-height: 46px;
    margin-bottom: 10px;
}

.section-details .art-title .info {
    width: 100%;
    font-size: 14px;
    color: #999;
    box-sizing: border-box;
    line-height: 34px;
}

.section-details .art-title .info span {
    margin-right: 20px;
}

.section-details .art-content {
    text-align: justify;
}

.section-details .art-content * {
    max-width: 100%;
}

.section-details .art-content img {
    height: auto !important;
}

.section-details .art-content a:hover,
.section-details .art-content a *:hover {
    color: #0058a8;
    text-decoration: underline;
}

.section-details .art_share {
    margin-top: 20px;
}

.bsBox,
.bsBox * {
    box-sizing: content-box;
}

.section-details .art_share .label {
    font-size: 16px;
    color: #999;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.section-details .art_share .share-item {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    border: 1px solid #e7e7e7;
    font-size: 22px;
    background: #fff;
    padding: 0;
    border-radius: 50%;
}

.section-details .art_share .bshare-weixin {
    color: #2ea45d;
}

.section-details .art_share .bshare-sinaminiblog {
    color: #b40009;
}

.section-details .art_share .bshare-qqim {
    color: #ec8000;
}

.section-details .art-page {
    margin-top: 80px;
}

.section-details .art-page li {
    padding: 16px 0;
    border-top: 1px dashed #dcdcdc;
    margin-top: 10px;
}

.section-details .art-page li:first-child {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
}

.section-details .art-page li .label {
    font-size: 16px;
    color: #999;
    line-height: 28px;
}

.section-details .art-page li .time {
    font-size: 16px;
    color: #999;
    line-height: 28px;
}

.section-details .art-page li .title {
    font-size: 22px;
    color: #333;
    line-height: 32px;
    margin-top: 10px;
}

/* 联系我们，联系电话 */

.section-contact {
    margin-top: 20px;
}

.section-contact ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-contact ul li {
    width: 280px;
    margin-bottom: 20px;
}

.section-contact ul li .title {
    font-size: 24px;
    color: #1a1a1a;
    line-height: 36px;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 10px;
}

.section-contact ul li .desc {
    font-size: 14px;
    color: #808080;
    line-height: 28px;
    margin-top: 10px;
}


/* 人才招聘列表 */

.section-job .job-table {
    width: 100%;
    border-collapse: collapse
}

.section-job .job-table thead {
    background-color: #e6e6f1;
}

.section-job .job-table thead tr td {
    padding: 10px 20px;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: bold;
}

.section-job .job-table tbody tr {
    border-bottom: 1px solid #dbdbdb;
}

.section-job .job-table tbody tr td {
    padding: 10px 20px;
    font-size: 14px;
    color: #1a1a1a;
}

.section-job .job-table a {
    color: #2e328d;
}

.section-job .job-table a:hover {
    text-decoration: underline;
}

/*招商引资单页*/
.invest_pic {
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
}

.invest_pic em {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.invest_txt1 {
    position: absolute;
    top: 40px;
    left: 40px;
    max-width: 366px;
}

.invest_txt1 h4 {
    font-size: 18px;
    color: #2e3297;
}

.invest_txt1 p {
    line-height: 28px;
}

.invest_txt1 span {
    display: block;
    margin: 10px 0;
}

.invest_txt1 .gray_line {
    border-bottom: solid 1px #cccccc;
}

.invest_txt1 .bf {
    color: #2e328d;
}

.invest_txt1 .bf:before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #3c4094;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
}

.color_bg {
    background-color: #2e328d;
    margin: 10px 0;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.adv_cloumn {
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 40%;
}

.adv_box {
    margin: 0 20px;
}

.invest_pic .adv {
    max-width: 490px;
    margin-left: 12px;
}

.invest_pic .adv h4 {
    font-size: 14px;
    font-weight: normal;
    color: white;
}

.invest_pic .adv p {
    color: white;
    font-size: 12px;
    opacity: 0.5;
    line-height: 20px;
    margin-top: 8px;
    max-width: 260px;
}

.invest_pic .invest_txt2 {
    position: absolute;
    right: 40px;
    top: 40px;
    max-width: 466px;
    line-height: 28px;
}

/*联系我们*/
.ny_contact.bd ul li {
    border: 1px solid #e6e6e6;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}


/* 留言 */

.section-leave-message {}

.section-leave-message .form-item {
    margin-bottom: 15px;
    clear: both;
}

.section-leave-message .form-block {
    margin-left: 110px;
    min-height: 36px;
}

.section-leave-message .form-inline {
    width: 320px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
    margin-right: 50px;
}

.section-leave-message .form-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-leave-message .input-block {
    position: relative;
    margin-left: 110px;
    min-height: 36px;
}

.section-leave-message .input-inline {
    float: left;
    width: 190px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.section-leave-message .form-required {
    font-size: 14px;
    color: #ff0000;
    padding: 0 10px;
}

.section-leave-message .form-input-block {
    border: 1px solid #dbdbdb;
    height: 40px;
    line-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.section-leave-message .form-input-block .form-label {
    padding-left: 10px;
    padding-right: 10px;
    flex-shrink: 0;
}

.section-leave-message .form-input-block .form-input {
    border: none;
    font-size: 14px;
    color: #333;
    display: block;
    height: 100%;
    width: 100%;
    flex: 1;
}

.section-leave-message .sms-verification {
    width: 100px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #dbdbdb;
    background-color: #f6f6f6;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    color: #2e328d;
    text-align: center;
}

.section-leave-message .form-textarea-block {
    position: relative;
    width: 100%;
    height: 158px;
    border: 1px solid #d7e2e9;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section-leave-message .form-textarea-block .form-label {
    width: 83px;
    height: 100%;
    background: #fafafa;
    font-size: 14px;
    color: #333;
    text-align: center;
    border-right: 1px solid #d7e2e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-leave-message .form-textarea-block .form-textarea {
    display: block;
    flex: 1;
    height: 140px;
    padding: 5px;
    box-sizing: border-box;
    border: none;
    background: #fff;
    font-family: "Microsoft Yahei";
    font-size: 14px;
    color: #333;
}

.section-leave-message .button-group {
    margin-top: 40px;
}

.section-leave-message .form-submit {
    width: 120px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-color: #2e328d;
    font-size: 14px;
    color: #ffff00;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}

.section-leave-message .form-textarea-block .character-limit {
    position: absolute;
    bottom: 5px;
    right: 0;
    font-size: 12px;
    color: #999;
}

@media screen and (max-width: 992px) {
    .section-service ul {
        flex-wrap: wrap;
    }

    .section-service ul li {
        width: 46%;
        flex: 0 1 auto;
        margin: 10px 2%;
        text-align: center;
    }

    .section-service ul li:first-child {
        margin-left: 2%;
    }

    .section-service ul li img {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .section-service ul li h4 {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }
}

@media screen and (max-width: 768px) {
    .section-piclist ul {
        justify-content: space-around;
    }

    .section-news {
        padding: 0 2%;
    }

    .section-details .art-page {
        margin-top: 40px;
    }

    .section-details .art-page li .title {
        font-size: 18px;
    }

}

@media screen and (max-width: 576px) {
    .color_bg {
        height: auto;
    }

    .adv_cloumn {
        flex-direction: column;
    }

    .adv_box {
        margin: 20px 10px;
    }

    .invest_txt1 {
        max-width: 100%;
        top: 20px;
        left: 0;
        margin: 0 20px;
        max-height: 300px;
        overflow-y: auto;
    }

    .invest_pic .invest_txt2 {
        right: 0;
        top: 20px;
        bottom: 20px;
        margin: 0 20px;
        max-width: 100%;
        max-height: 300px;
        overflow-y: auto;
    }

    .section-service {
        padding: 10px 0;
    }

    .section-service .goshop {
        display: none;
    }

    .section-service ul li {
        padding: 10px 20px;
        height: auto;
        margin: 5px 2%;
        text-align: center;
    }

    .section-service ul li img {
        height: 52px;
        line-height: 52px;
    }

    .section-service ul li img,
    .section-service ul li h4 {
        display: block;
        margin: 0 auto;
    }

    .section-service ul li p {
        height: auto;
        min-height: 40px;
        line-height: 20px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .section-piclist ul li {
        width: 48%;
    }

    .section-piclist ul li .pic {
        height: 0;
        padding-top: 60%;
    }

    .section-piclist ul li .pic a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
    }

    .section-contact {
        padding: 0 2%;
    }

    .section-contact ul li {
        width: 100%;
    }

    .section-news .first {
        display: block;
    }

    .section-news .first .pic {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 60%;
    }

    .section-news .first .pic img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .section-news ul li .title {
        max-width: 76%;
    }

    .section-job .job-table thead tr td,
    .section-job .job-table tbody tr td {
        padding: 10px 10px;
    }
}

.section-picnews {
    margin-top: -20px;
}

.section-picnews .news-item {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px dashed #dcdcdc;
}

.section-picnews .news-item:hover {
    background-color: #f2f2f2;
}

.section-picnews .news-item .pic {
    width: 260px;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.section-picnews .news-item .pic img {
    width: 100%;
    height: 100%;
}

.section-picnews .news-item .text {
    flex: 1;
}

.section-picnews .news-item .title {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: normal;
    line-height: 36px;
    max-width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-picnews .news-item .title:hover {
    color: #2e328d;
}

.section-picnews .news-item .time {
    font-size: 12px;
    color: #666;
    line-height: 24px;
}

.section-picnews .news-item .desc {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    max-height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.section-picnews .news-item .more {
    font-size: 14px;
    color: #2e328d;
    margin-top: 20px;
}

.section-picnews .news-item .more:hover {
    text-decoration: underline;
}

.section-picnews .news-item .more img {
    vertical-align: middle;
    margin-left: 10px;
}

/*.section-picnews .news-item:hover {*/
/*    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);*/
/*}*/

@media screen and (max-width: 576px) {
    .section-picnews .news-item {
        display: block;
    }

    .section-picnews .news-item .pic {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 60%;
    }

    .section-picnews .news-item .pic img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
}

.section-job .job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-job .job-card .job-card-item {
    /* background-color: #f2f2f2; */
    border: 1px solid #f2f2f2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 49%;
    padding: 20px;
    margin-bottom: 20px;
}

.section-job .job-card .job-card-item:hover {
    /*background-color: #fcfcfc;*/
    box-shadow: 0 0 8px rgba(46, 50, 140, 1);
}

.section-job .job-card .job-card-item .title {
    font-size: 24px;
    color: #333;
}

.section-job .job-card .job-card-item .title .iconfont {
    font-size: 16px;
    color: #fff;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    background-color: #2e328d;
    margin-right: 6px;
}

.section-job .job-card .job-card-item .content {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    line-height: 1.5;
    height: 200px;
    overflow: auto;
}

.section-job .job-card .job-card-item .tool {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #bbb;
    font-size: 14px;
    color: #666;
}

@media screen and (max-width: 768px) {
    .section-job .job-card .job-card-item {
        width: 100%;
    }
}


.art-like {
    margin-top: 50px;
}

.art-like .like-title {
    position: relative;
    font-size: 30px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.art-like .like-title b {
    margin: 0 20px;
    font-weight: normal;
}

.art-like .like-title::before,
.art-like .like-title::after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

.art-like ul {
    margin-top: 20px;
}

.art-like ul li a {
    display: block;
    padding: 12px 6px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px dashed #dcdcdc;
}

.art-like ul li a:hover {
    background-color: #f1f1f1;
}

.art-like ul li .pic {
    width: 160px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.art-like ul li .pic img {
    width: 100%;
    height: 100%;
}

.art-like ul li .text {
    flex: 1;
}

.art-like ul li .title {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: normal;
    line-height: 36px;
    max-width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.art-like ul li .title:hover {
    color: #2e328d;
}

.art-like ul li .desc {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    max-height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


#allmap {
    width: 100%;
    /* height: 400px;
    overflow: hidden; */
    font-family: "微软雅黑";
    margin-bottom: 35px;
}

/* #allmap b {
    color: #CC5522;
    font-size: 14px;
}

#allmap img {
    max-width: none;
} */


.ny_contact .contact:after {
    content: '.';
    height: 0;
    display: block;
    clear: both;
    overflow: hidden;
}

.ny_contact .contact {
    *zoom: 1;
}

.ny_contact .contact {
    margin-bottom: 35px;
    background-color: #f5f5f5;
}

.ny_contact .contact div {
    float: left;
    width: 50%;
}

.ny_contact .contact img {
    width: 100%;
}

.ny_contact .contact div:last-child {
    padding:55px 0 0 60px;
}

.ny_contact .contact div:last-child p {
    line-height: 32px;
}

.ny_contact .contact div:last-child h4 {
    color: #015cb5;
    font-size: 16px;
    margin: 5px 0;
}

@media screen and (max-width: 576px) {
    .art-like ul li a {
        display: block;
    }

    .art-like ul li .pic {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 60%;
    }

    .art-like ul li .pic img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .ny_contact .contact div {
        width: 100%;
    }


}
