html {
    font-size: 12px;
    overflow-x: hidden;
}
html, body {
    position: relative;
    height: 100%;
}

a {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

em {
    font-style: normal;
}

ol,ul{list-style:none}

li{display:list-item}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body, button, input, select, textarea {
    font: 14px/1 Microsoft YaHei;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.containers {
    width: 84%;
    margin: 0 auto;
}

.headers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.headers .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headers .header .logo {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.headers .header .logo img {
    height: 65px;
}
.headers .header .menus {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus.none{
    display: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .menu {
    display: flex;
    align-items: center;
    justify-content: center;
}
.headers .header .menus .menu.none {
    display: none;
}
.headers .header .menus .menu .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    padding: 0 20px;
    position: relative;
}
.headers .header .menus .menu .nav a.a1 {
    font-size: 18px;
    color: #000;
    opacity: 0.9;
    padding: 15px 0px;
    position: relative;
}
.headers .header .menus .menu .nav a.a1::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    content: " ";
    height: 3px;
    background: #075EBF;
    border-radius: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .menu .nav a.a1:hover,.headers .header .menus .menu .nav.active a.a1 {
    color: #075EBF;
}

.headers .header .menus .menu .nav.active a.a1::after {
    width: 100%;
    left: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .menu .nav .children {
    position: absolute;
    left: 0;
    top: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    background: #075EBF;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    overflow: hidden;
    height: 0;
    min-width: 100%;
    z-index: 999;
}
.headers .header .menus .menu .nav:hover .children {
    height: auto !important;
    padding: 10px 0px;
    border-top: 4px solid #0F3774;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.headers .header .menus .menu .nav .children a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    min-width: 100%;
    color: #fff;
    opacity: 0.8;
    z-index: 999;
}
.headers .header .menus .menu .nav .children a:hover {
    opacity: 1;
}

.headers .header .menus .search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50px;
    overflow: hidden;
    height: 88px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search.width {
    width: 500px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.headers .header .menus .search .x {
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.headers .header .menus .search .x img {
    width: 24px;
    height: 24px;
}
.headers .header .menus .search .c {
    display: none;
}
.headers .header .menus .search .search-box {
    width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search.width .search-box {
    width: calc(100% - 34px);
    margin-right: 10px;
    border: 1px solid #EEE;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search .search-input {
    width: 0;
    border: none;
    font-size: 14px;
    color: #000;
    opacity: 0.7;
    padding: 10px 10px;
    outline: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search.width .search-input {
    width: calc(100% - 40px);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search .on-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0px;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search.width .on-search {
    width: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search .on-search img {
    width: 24px;
    height: 24px;
}

.headers .header .menus .search.width .o {
    display: none;
}
.headers .header .menus .search.width .c {
    display: flex;
}
.headers .header .menus .search .c img {
    transform: rotate(0deg);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.headers .header .menus .search .c:hover img{
    transform: rotate(180deg);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.banners {
    height: auto;
    width: 100%;
}
.banners .banner {
    width: 100%;
    position: relative;
}
.banners .banner .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banners .banner .swiper-wrapper .swiper-slide a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banners .banner .swiper-wrapper .swiper-slide a img {
    width: auto !important;
    min-width: 100%;
}
.banners .banner  .swiper-pagination-banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #075EBF;
    opacity: 0.5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}
.banners .banner  .swiper-pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 6px;
    opacity: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.gl-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}

.gl-title h1 {
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 54px;
    letter-spacing: 4px;
    position: relative;
}
.gl-title h1::after {
    position: absolute;
    left: calc(50% - 35px);
    bottom: -3px;
    content: " ";
    width: 70px;
    height: 3px;
    background: #075EBF;
}
.gl-title h6 {
    font-size: 24px;
    color: #ddd;
    text-transform: uppercase;
    margin-top: 18px;
}
.gl-title .intro {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    text-align: center;
}

.services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 80px 0 80px;
    background: #fff;
}
.services .service {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.services .service .service-list {
    margin-top: 50px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.services .service .service-list .box {
    width:calc((100% - 40px) / 6);
    margin-right: 10px;
    height: calc((((100vw * 0.84) - 40px) / 6) * 2 * 1.14);
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
    cursor: pointer;
}
.services .service .service-list .box.on {
    width: calc(((100% - 40px) / 6) * 2);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.services .service .service-list .box:last-of-type {
    margin-right: 0;
}
.services .service .service-list .box .floor {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
    opacity: 1;
}
.services .service .service-list .box.on .floor {
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.services .service .service-list .box h1 {
    position: absolute;
    left: 0;
    top: 65px;
    font-size: 32px;
    width: 100%;
    text-align: center;
    color: #fff;
}
.services .service .service-list .box .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services .service .service-list .box .image img {
    height: 100%;
}
.services .service .service-list .box .text {
    overflow: hidden;
    position: absolute;
    width: calc((((100vw * 0.84) - 40px) / 6) * 2);
    left: 0px;
    bottom: -100%;
    display: inline-block;
    text-align: left;
    background:rgba(24,81,170,0.9);
    padding: 20px 20px;
    font-size: 16px;
    color: #eee;
    line-height: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
}
.services .service .service-list .box.on .text {
    opacity: 1;
    bottom: 0;
    font-size: 16px;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}
.works {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 80px 0 80px;
    background: url("../image/work_bg.jpg") center top no-repeat;
    background-size: cover;
}
.works .work {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.works .work .work-swiper {
    width: 100%;
    margin:40px 0 0;
    position: relative;
}
.works .work .work-swiper .swiper-container {
    width: 90%;
    margin: 0 5%;
    position: unset;
}
.works .work .work-swiper .swiper-container .swiper-wrapper {
    width:100%;
}
.works .work .work-swiper .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
}
.works .work .work-swiper .swiper-container .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 0;
    padding-bottom: 88.88%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.works .work .work-swiper .swiper-container .swiper-wrapper .swiper-slide .image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.works .work .work-swiper .swiper-container .swiper-wrapper .swiper-slide:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.works .work .work-swiper .swiper-container .swiper-wrapper .swiper-slide .name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(255,255,255,0.7);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: #555;
}
.works .work .work-swiper .swiper-container .swiper-wrapper .swiper-slide:hover .name {
    background: #075EBF;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.works .work .work-swiper .swiper-container .swiper-button-prev-work {
    position: absolute;
    left: 0;
    top: 48%;
    width: 42px;
}
.works .work .work-swiper .swiper-container .swiper-button-next-work {
    position: absolute;
    right: 0;
    top: 48%;
    width: 42px;
}
.works .work .work-swiper .swiper-container .swiper-button-prev-work::after{
    background: url("../image/previous.png") center no-repeat;
    font-size: 0;
    width: 42px;
    height: 60px;
}
.works .work .work-swiper .swiper-container .swiper-button-next-work::after{
    background: url("../image/nexts.png") center no-repeat;
    font-size: 0;
    width: 42px;
    height: 60px;
}

.more-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    margin-top: 40px;
}
.more-box .more-image {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #89C443;
    border-radius: 10px 0 0 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.more-box:hover .more-image {
    background: #075EBF;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.more-box .more-image img {
    width: 36px;
    height: 36px;
    transform: rotate(0deg);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.more-box:hover .more-image img {
    transform: rotate(360deg);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.more-box .more-text {
    background: #075EBF;
    font-size: 18px;
    color: #fff;
    height: 60px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.more-box:hover .more-text {
    background: #89C443;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.abouts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 80px 0 50px;
}
.abouts .about {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.abouts .about .image {
    width: 660px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}
.abouts .about .image img {
    width: 100%;
    /*height: 100%;*/
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.abouts .about .image:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.abouts .about .r {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 700px);
}
.abouts .about .r h1 {
    font-size: 36px;
    color: #075EBF;
    font-weight: bold;
}
.abouts .about .r h6 {
    font-size: 36px;
    margin-top: 10px;
    color: #ccc;
    font-weight: bold;
    text-transform: uppercase;
}
.abouts .about .r .text {
    font-size: 15px;
    color: #555;
    line-height: 32px;
    text-indent: 2em;
    overflow: hidden;
    margin-top: 20px;
}
.abouts .about .r .more-about {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.ads .ad {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ads .ad a {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ads .ad a img {
    width: auto;
}

.articles {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 80px 0;
}
.articles .article {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.articles .article .nb-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 40px;
}
.articles .article .nb-box .nb-left {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-right: 50px;
}
.articles .article .nb-box .nb-left .title {
    font-size: 24px;
    color: #000;
    margin-top: 40px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.articles .article .nb-box .nb-left .title:hover {
    color: #075EBF;
}
.articles .article .nb-box .nb-left .text {
    font-size: 15px;
    color: #888;
    margin-top: 40px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 32px;
}
.articles .article .nb-box .nb-left .tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 100px;
}
.articles .article .nb-box .nb-left .tag .tag-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}
.articles .article .nb-box .nb-left .tag .tag-box img {
    width: 18px;
    margin-right: 5px;
}
.articles .article .nb-box .nb-right {
    width: calc(50% - 50px);
    overflow: hidden;
}
.articles .article .nb-box .nb-right img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.articles .article .nb-box .nb-right:hover img {
    width: 100%;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.articles .article .nb-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 50px;
}
.articles .article .nb-list a {
    width: calc((100% - 100px) / 3);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 50px;
}
.articles .article .nb-list a:last-of-type {
    margin-right: 0;
}
.articles .article .nb-list a .image {
    width: 240px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.articles .article .nb-list a .image img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.articles .article .nb-list a:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.articles .article .nb-list a .info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 260px);
}
.articles .article .nb-list a .info h1 {
    font-size: 16px;
    color: #222;
    line-height: 30px;
    height: 120px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
}
.articles .article .nb-list a:hover .info h1 {
    color: #075EBF;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.articles .article .nb-list a .info .tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.articles .article .nb-list a .info .tag .tag-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #999;
    margin-right: 30px;
}
.articles .article .nb-list a .info .tag .tag-box img {
    width: 18px;
    margin-right: 5px;
}
.links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    background: #F9F9F9 url("../image/chi.png") left top repeat-x;
}
.links .link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 0 20px;
    overflow: hidden;
}
.links .link .lb {
    font-size: 16px;
    color: #333;
}
.links .link a {
    color: #333;
    font-size: 16px;
    margin-right: 15px;
}
.links .link a:hover {
    color: #075EBF;
}
.footers {
    background:#183883;
    padding: 0px 0;
}
.footers .footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 40px 0;
}
.footers .footer .bottom-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 400px;
    height: 200px;
}
.footers .footer .bottom-menu {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 400px);
}
.footers .footer .bottom-menu .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}

.footers .footer .bottom-menu .box h1 {
    font-size: 16px;
    color: #fff;
    margin-top: 30px;
}
.footers .footer .bottom-menu .box h1:first-of-type {
    margin-top: 0;
}
.footers .footer .bottom-menu .box p {
    font-size: 15px;
    font-weight: lighter;
    color: #fff;
    margin-top: 20px;
}
.footers .footer .bottom-menu .list {
    display: flex;
    flex-wrap: wrap;
    width: 300px;
}
.footers .footer .bottom-menu .list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100px;
    margin-top: 40px;
    font-size: 16px;
    color: #fff;
    opacity: 1;
    font-weight: lighter;
}
.footers .footer .bottom-menu .list a img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}
.footers .footer .bottom-menu .qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 30px 50px 0;
}
.footers .footer .bottom-menu .qrcode img {
    width: 140px;
    height: 140px;
}
.footers .footer .bottom-menu .qrcode p {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
}
.footers .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px 0;
    color: #fff;
    opacity: 0.8;
}
.footers .footer-bottom a {
    color: #fff;
    opacity: 0.8;
}

/** pages **/
.page-banners {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-banners .page-banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 50vw;*/
    overflow: hidden;
    position: relative;
}
.page-banners .page-banner img {
    width: auto !important;
    height: 100%;
}
.page-banners .page-banner .page-banners-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.page-banners .page-banner .page-banners-text h1 {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
}
.page-banners .page-banner .page-banners-text h6 {
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
    position: relative;
}
.page-banners .page-banner .page-banners-text h6::after {
    position: absolute;
    left: calc(50% - 30px);
    bottom: -10px;
    width: 60px;
    height: 2px;
    background: #fff;
    content: " ";
}

.page-menus {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.page-menus .page-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #999;
    background: #fff;
    position: absolute;
    top: -40px ;
}
.page-menus .page-menu .menu {
    display: flex;
    align-items: center;justify-content: flex-start;
}
.page-menus .page-menu .menu a {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: #555;
    font-size: 18px;
}

.page-menus .page-menu .menu a:hover,.page-menus .page-menu .menu a.active {
    background-image: linear-gradient(to right, #4593FF, #065DBC);
    color: #fff;
}

.details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding-top: 50px;
}
.details .detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 100px 0 50px;
}
.details .page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 50px 0 0;
}

.details .page-title h1 {
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: bolder;
    position: relative;
}
.details .page-title h1::after {
    content: " ";
    position: absolute;
    left: calc(50% - 40px);
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: #075EBF;
}
.details .pro-lists {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
}
.details .pro-lists .pro-list {
    display: flex;
    flex-wrap: wrap;
}
.details .pro-lists .pro-list .box {
    width: calc((100% - 120px) / 4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-right: 40px;
    margin-bottom: 40px;
    background: #F4F2F3;
    position: relative;
}
.details .pro-lists .pro-list .box:nth-child(4n){
    margin-right: 0;
}
.details .pro-lists .pro-list .box .image {
    width: 100%;
    padding-bottom:100%;/* padding鐧惧垎姣旂浉瀵圭埗鍏冪礌瀹藉害璁＄畻 */
    height: 0;/*閬垮厤琚唴瀹规拺寮€澶氫綑鐨勯珮搴�*/
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.details .pro-lists .pro-list .box .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.details .pro-lists .pro-list .box:hover .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.details .pro-lists .pro-list .box .t-box {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    width: 100%;
    padding: 20px 10px;
    font-size: 16px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: rgba(255,255,255,0.7);
    color: #333;
}
.details .pro-lists .pro-list .box:hover .t-box {
    color: #fff;
    background: #1851AA;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.details .news-lists {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 50px 0;
}
.details .news-lists .news-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.details .news-lists .news-list .box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border: 1px solid #ddd;
    padding: 15px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.details .news-lists .news-list .box:hover {
    border: 1px solid #1851AA;
    background: #f9f9f9;
}
.details .news-lists .news-list .box .image {
    width: 350px;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
}
.details .news-lists .news-list .box .image img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.details .news-lists .news-list .box:hover .image img{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.details .news-lists .news-list .box .t-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 400px);
}
.details .news-lists .news-list .box .t-box h1 {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.details .news-lists .news-list .box:hover .t-box h1 {
    color: #1851AA;
    text-indent: 1rem;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.details .news-lists .news-list .box .t-box .time {
    font-size: 14px;
    color: #000;
    opacity: 0.5;
    width: 100%;
    margin-top: 10px;
}
.details .news-lists .news-list .box .t-box .news-tag {
    font-size: 14px;
    color: #000;
    opacity: 0.6;
    margin-top: 20px;
    line-height: 24px;
    max-height: 72px;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.details .news-lists .news-list .box .t-box .news-tag {
    opacity: 0.7;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.details .news-lists .news-list .box .t-box .more {
    font-size: 16px;
    color: #1851AA;
    border: 1px solid #1851AA;
    border-radius: 5px;
    padding: 10px 30px;
    margin-top: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.details .news-lists .news-list .box:hover .t-box .more {
    background: #1851AA;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.details .news-contents {
    padding: 0px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
}
.details .news-contents .news-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.details .news-contents .news-content .nc-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 24px;
    color: #1851AA;
    margin-top: 50px;
}
.details .news-contents .news-content .ncab-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 24px;
    color: #000;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bolder;
    position: relative;
}
.details .news-contents .news-content .ncab-title::after {
    position: absolute;
    left: calc(50% - 30px);
    bottom: -10px;
    width: 60px;
    content: " ";
    height: 3px;
    background: #075EBF;
    border-radius: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.details .news-contents .news-content .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0 0px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;

}
.details .news-contents .news-content .tag span {
    margin-right: 20px;
    color: #000;
    opacity: 0.6;
}
.details .news-contents .news-content .conts {
    font-size: 15px;
    color: #000;
    opacity: 0.8;
    margin-top: 30px;
    line-height: 32px;
}
.details .news-contents .news-content .conts img {
    max-width: 100%;
}
.details .news-contents .news-content .conts-x {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 40px;
}
.details .news-contents .news-content .conts-x .images {
    width:480px;
    margin-right: 30px;
}
.details .news-contents .news-content .conts-x .rc {
    font-size: 18px;
    color: #777;
    line-height: 40px;
}
.details .news-contents .news-content .nexts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #ddd;
    margin-top: 80px;
    padding-top: 40px;
}
.details .news-contents .news-content .nexts a {
    width: 49%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 15px;
    color: #888;
}
.details .news-contents .news-content .nexts a:hover{
    color: #1851AA;
}

.details .contact-x {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    margin-top: 50px;
    margin-bottom: 50px;
}
.details .contact-x .abox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}
.details .contact-x .abox .image {
    width: 620px;
    height: 380px;
}
.details .contact-x .abox .image img {
    width: 100%;
    height: 100%;
}
.details .contact-x .abox .rx {
    margin-right: 40px;
}
.details .contact-x .abox .info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: calc(100% - 620px);
    padding-left: 40px;
}
.details .contact-x .abox .info .title {
    font-size: 32px;
    color: #000;
}
.details .contact-x .abox .info .title img {
    width: 40px;
    margin-right: 20px;
    margin-top: -10px;
}
.details .contact-x .abox .info .ps {
    margin-top: 50px;
    line-height: 40px;
    font-size: 16px;
}
.details .jobs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    padding: 50px 0 80px;
}
.details .jobs .job {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.details .jobs .job .jobs-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.details .jobs .job .jobs-box .panel {
    width: 100%;
    margin-bottom: 20px;
}
.details .jobs .job .jobs-box .jobs-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 20px;
    background: #fafafa;
}
.details .jobs .job .jobs-box .jobs-list .left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
}
.details .jobs .job .jobs-box .jobs-list .left h1 {
    font-size: 24px;
    font-weight: bolder;
    color: #000;
}
.details .jobs .job .jobs-box .jobs-list .left .tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.details .jobs .job .jobs-box .jobs-list .left .tag span {
    margin-right: 40px;
    font-size: 16px;
    color: #888;
    margin-top: 10px;
}
.details .jobs .job .jobs-box .jobs-list .right {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.jobs-list:nth-child(1) .right, .jobs-box a[aria-expanded=true] .right {
    background: #fff url("../image/xia.png") center no-repeat;
}
.jobs-box a[aria-expanded=false] .right {
    background: #fff url("../image/shang.png") center no-repeat;
}
.details .jobs .job .jobs-box .jobs-contents {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    line-height: 32px;
    font-size: 16px;
    overflow: hidden;
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 40px 0px 0;
}
.details .jobs .job .jobs-box .jobs-contents p {
    padding: 0 20px;
}
.details .jobs .job .jobs-box .jobs-contents.collapse {
    display: none;
}
.details .jobs .job .jobs-box .jobs-contents.in {
    display: flex;
}
.details .jobs .job .jobs-box .jobs-contents .hs {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0;
}
.details .jobs .job .jobs-box .jobs-contents .eml {
    padding: 40px 20px 30px;
    border-top: 1px solid #EEE;
    margin-top: 40px;
    color: #f60;
    font-size: 18px;
    letter-spacing: 2px;
}


/*宸︿晶宸ュ叿鏉�*/
#toolbar {
    position: fixed;
    z-index: 9999;
    right: 17px;
    bottom: 10%;
}

#toolbar li {
    margin-bottom: 3px;
    font-size: 0;
    width: 57px;
    height: 57px;
    right: 0;
    position: relative;
}

#toolbar li a {
    display: block;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    width: 57px;
    height: 57px;
    overflow: hidden;
    background: #185FAD;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    white-space: nowrap;
    font-size: 0;
}

#toolbar li .icon-font {
    display: inline-block;
    vertical-align: middle;
    width: 57px;
    height: 57px;
    background-color: #d9d9d9;
    position: relative;
}

#toolbar li .icon-qq:after {
    background-position: 0 -150px;
}

#toolbar li .icon-phone:after {
    background-position: 0 -90px;
}

#toolbar li .icon-ewm:after {
    background-position: 0 -30px;
}

#toolbar li .icon-message:after {
    background-position: 0 -120px;
}

#toolbar li .icon-top:after {
    background-position: 0 -60px;
}

#toolbar li .icon-wangwang:after {
    background-position: 0 0;
}

#toolbar li .wz {
    display: inline-block;
    line-height: 57px;
    font-size: 14px;
    color: #fff;
    vertical-align: middle;
    padding-left: 10px;
}

#toolbar li.ewm .ewm-box {
    position: absolute;
    z-index: 1;
    padding: 5px;
    background: #185FAD;
    width: 110px;
    right: 120%;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s;
    transition: all .7s;
}

#toolbar li.ewm .ewm-box p {
    margin-bottom: 0;
}

#toolbar li.ewm .ewm-box img {
    max-width: 100%;
}

#toolbar li.ewm .ewm-box:after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: 20px;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 5px;
    cursor: pointer;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #185FAD;
    border-right: none;
}

#toolbar li.ewm:hover .icon {
    background-position: -57px -180px;
}

#toolbar li.ewm:hover .ewm-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#toolbar li.backtop {
    cursor: pointer;
}

#toolbar li.backtop .iconfont {
    color: #fff;
    background-color: #292e39;
}

#toolbar li:hover a {
    width: 200px;
}

#toolbar li:hover .icon-font {
    background-color: #185FAD;
}

#toolbar li:hover .icon-qq:after {
    background-position: -30px -150px;
}

#toolbar li:hover .icon-phone:after {
    background-position: -30px -90px;
}

#toolbar li:hover .icon-ewm:after {
    background-position: -30px -30px;
}

#toolbar li:hover .icon-message:after {
    background-position: -30px -120px;
}

#toolbar li:hover .icon-wangwang:after {
    background-position: -30px 0;
}

#toolbar li:hover .icon-top:after {
    background-position: -30px -60px;
}

@media (max-width: 990px) {
    #toolbar {
        display: none;
    }
}

.diy_page {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 100%;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



@media (min-width: 1560px) and (max-width:1660px) {
    .containers {
        width: 96%;
        margin: 0 auto;
    }
    .services .service .service-list .box {
        height: calc((((100vw * 0.96) - 40px) / 6) * 2 * 1.14);
    }
    .services .service .service-list .box .text {
        width: calc((((100vw * 0.96) - 40px) / 6) * 2);
    }
    .abouts .about .image {
        width: 660px;
    }
    .abouts .about .r {
        width: calc(100% - 700px);
    }
    .abouts .about .r .text {
        height: 350px;
        overflow: hidden;
    }
    .footers .footer .bottom-logo {
        width: 360px;
    }
    .footers .footer .bottom-menu {
        width: calc(100% - 360px);
    }
}
@media (min-width: 1460px) and (max-width:1560px) {
    .containers {
        width: 96%;
        margin: 0 auto;
    }
    .services .service .service-list .box {
        height: calc((((100vw * 0.96) - 40px) / 6) * 2 * 1.14);
    }
    .services .service .service-list .box .text {
        width: calc((((100vw * 0.96) - 40px) / 6) * 2);
    }
    .abouts .about .image {
        width: 660px;
    }
    .abouts .about .r {
        width: calc(100% - 700px);
    }
    .abouts .about .r .text {
        height: 350px;
        overflow: hidden;
    }
    .footers .footer .bottom-logo {
        width: 340px;
    }
    .footers .footer .bottom-menu {
        width: calc(100% - 340px);
    }
}
@media (min-width: 1360px) and (max-width:1460px) {
    .containers {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .headers .header .menus .menu .nav {
        padding: 0 18px;
    }
    .services .service .service-list .box {
        height: calc((((100vw - 20px) - 40px) / 6) * 2 * 1.14);
    }
    .services .service .service-list .box .text {
        width: calc((((100vw - 20px) - 40px) / 6) * 2);
    }
    .abouts .about .image {
        width: 660px;
    }
    .abouts .about .r {
        width: calc(100% - 700px);
    }
    .abouts .about .r .text {
        height: 350px;
        overflow: hidden;
    }
    .articles .article .nb-list a {
        width: calc((100% - 40px) / 3);
        margin-right: 20px;
    }
    .articles .article .nb-list a .info .tag .tag-box {
        margin-right: 10px;
    }
    .footers .footer .bottom-logo {
        width: 320px;
    }
    .footers .footer .bottom-menu {
        width: calc(100% - 320px);
    }
}
@media (min-width: 1260px) and (max-width:1360px) {
    .containers {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .headers .header .menus .menu .nav {
        padding: 0 15px;
    }
    .headers .header .menus .menu .nav a.a1{
        font-size: 16px;
    }
    .services .service .service-list .box {
        height: calc((((100vw - 20px) - 40px) / 6) * 2 * 1.14);
    }
    .services .service .service-list .box .text {
        width: calc((((100vw - 20px) - 40px) / 6) * 2);
    }
    .abouts .about .image {
        width: 540px;
    }
    .abouts .about .r {
        width: calc(100% - 580px);
    }
    .abouts .about .r .text {
        height: 250px;
        overflow: hidden;
    }
    .articles .article .nb-list a {
        width: calc((100% - 40px) / 3);
        margin-right: 20px;
    }
    .articles .article .nb-list a .info .tag .tag-box {
        margin-right: 10px;
    }
    .articles .article .nb-list a .info .tag .tag-box:last-of-type {
        display: none;
    }
    .footers .footer .bottom-logo {
        width: 300px;
    }
    .footers .footer .bottom-menu {
        width: calc(100% - 300px);
    }
}
@media (min-width: 1160px) and (max-width:1260px) {
    .containers {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .headers .header .menus .menu .nav {
        padding: 0 14px;
    }
    .headers .header .menus .menu .nav a.a1{
        font-size: 15px;
    }
    .services .service .service-list .box {
        height: calc((((100vw - 20px) - 40px) / 6) * 2 * 1.14);
    }
    .services .service .service-list .box .text {
        width: calc((((100vw - 20px) - 40px) / 6) * 2);
    }
    .abouts .about .image {
        width: 450px;
    }
    .abouts .about .r {
        width: calc(100% - 490px);
    }
    .abouts .about .r .text {
        height: 200px;
        overflow: hidden;
    }
    .articles .article .nb-list a {
        width: calc((100% - 40px) / 3);
        margin-right: 20px;
    }
    .articles .article .nb-list a .image {}
    .articles .article .nb-list a .info .tag .tag-box {
        margin-right: 10px;
    }
    .articles .article .nb-list a .info .tag .tag-box:last-of-type {
        display: none;
    }
    .footers .footer .bottom-logo {
        width: 240px;
    }
    .footers .footer .bottom-menu {
        width: calc(100% - 240px);
    }
}
@media (min-width: 992px) and (max-width:1160px) {
    .containers {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .headers .header .logo img {
        height: 40px;
    }
    .headers .header .menus .menu .nav {
        padding: 0 10px;
    }
    .headers .header .menus .menu .nav a.a1{
        font-size: 14px;
    }
    .services .service .service-list .box {
        height: calc((((100vw - 20px) - 40px) / 6) * 2 * 1.14);
    }
    .services .service .service-list .box .text {
        width: calc((((100vw - 20px) - 40px) / 6) * 2);
    }
    .abouts .about .image {
        width: 450px;
    }
    .abouts .about .r {
        width: calc(100% - 490px);
    }
    .abouts .about .r .text {
        height: 200px;
        overflow: hidden;
    }
    .articles .article .nb-list a {
        width: calc((100% - 40px) / 3);
        margin-right: 20px;
    }
    .articles .article .nb-list a .image {
        width: 180px;
        height: calc(180px * 0.625);
    }
    .articles .article .nb-list a .info {
        width: calc(100% - 180px);
    }
    .articles .article .nb-list a .info h1 {
        height: 90px;
    }
    .articles .article .nb-list a .info .tag .tag-box {
        margin-right: 10px;
    }
    .articles .article .nb-list a .info .tag .tag-box:last-of-type {
        display: none;
    }
    .footers .footer .bottom-logo {
        display: none;
    }
    .footers .footer .bottom-menu {
        width: 100%;
        padding-left: 30px;
    }
}
@media (max-width: 992px) {
    .m-head {
    }

    .m-head-box {
        position: relative;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .m-head-box .m-logo {
        height: 34px;
        padding-left: 10px;
    }

    .m-head-box .m-logo a {
        display: flex;
    }
    .m-head-box .m-logo a img {
        max-height:34px;
    }

    .m-head-box .m-logo img {
        height:34px;
    }

    .m-navbtn {
        position: absolute;
        z-index: 9;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto 0 auto 0;
        width: 27px;
        height: 20px;
    }

    .m-navbtn span, .m-navbtn:after, .m-navbtn:before {
        display: block;
        height: 2px;
        width: 100%;
        background: #1a0c07;
        -webkit-transition: all .5s;
        transition: all .5s;
    }


    .m-navbtn span {
        margin: 7px 0;
    }

    .m-navbtn:after, .m-navbtn:before {
        content: '';
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .m-navbtn.clicked span {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
    }

    .m-navbtn.clicked:after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .m-navbtn.clicked:before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .m-menu {
        display: none;
        position: absolute;
        z-index: 9999;
        left: 0;
        right: 0;
        height: 100vh;
        background: #1c1c1c;
        padding: 0 5%;
    }

    .m-menu .m-menu-box {
        height: 100vh;
        overflow: auto;
        padding-bottom: 80px;
    }

    .m-nav > li {
        border-bottom: 1px solid #2b2b2b;
        position: relative;
    }

    .m-nav > li > a {
        display: block;
        line-height: 50px;
        font-size: 16px;
        color: #ffffff;
    }

    .m-nav .m-menu-jt {
        position: absolute;
        width: 20%;
        height: 50px;
        line-height: 50px;
        right: 0;
        top: 0;
        text-align: center;
        z-index: 9;
    }

    .m-nav .m-menu-jt .icon-font {
        display: block;
        width: 100%;
        height: 100%;
    }

    .m-nav .m-menu-jt .icon-font:after {
        background-position: -30px -240px;
    }

    .m-nav .m-menu-jt.clicked .icon-font:after {
        background-position: -30px -270px;
    }

    .m-nav .m-sub-menu {
        background: #161616;
        display: none;
    }

    .m-nav .m-sub-menu > li {
        border-top: 1px dashed #2b2b2b;
    }

    .m-nav .m-sub-menu > li > a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 40px;
        text-indent: 2em;
    }

    .m-banner {
        height: 50vw;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .m-banner .swiper-wrapper .swiper-slide a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 50vw;
        position: relative;
    }
    .m-banner .swiper-wrapper .swiper-slide a img {
        width: 100%;
        height: 50vw;
    }
    .m-banner .swiper-pagination-m .swiper-pagination-bullet-active {
        background: #161616;
    }
    .containers {
        width: calc(100% - 2rem);
        margin: 0 auto;
    }

    .gl-title {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        width: 100%;
    }

    .gl-title h1 {
        font-size: 28px;
        letter-spacing: 2px;
        line-height: 48px;
    }
    .gl-title h1::after {
        left: calc(50% - 30px);
        bottom: -2px;
        width: 60px;
    }
    .gl-title h6 {
        font-size: 20px;
        margin-top: 15px;
    }
    .gl-title .intro {
        margin-top: 12px;
        font-size: 14px;
        color: #333;
        text-align: center;
    }

    .services {
        padding: 2rem 0;
    }
    .services .service .service-list {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
    }
    .services .service .service-list .box {
        width:100%;
        margin-right: 0px;
        height: calc((100vw - 2rem) * 1.14);
        margin-bottom: 1rem;
    }
    .services .service .service-list .box:last-of-type {
        margin-bottom: 1rem;
    }
    .services .service .service-list .box.on {
        width:100%;
    }
    .services .service .service-list .box .floor {
        opacity: 0;
    }
    .services .service .service-list .box h1 {
        top: 4rem;
        font-size: 32px;
    }
    .services .service .service-list .box .text {
        overflow: hidden;
        position: absolute;
        width: 100%;
        left: 0px;
        bottom: 0;
        padding: 1rem 1rem;
        font-size: 14px;
        line-height: 28px;
        opacity: 1;
    }
    .works {
        padding: 2rem 0 2rem;
    }
    .works .work .work-swiper {
        width: 100%;
        margin:1rem 0 0;
    }
    .works .work .work-swiper .swiper-container {
        width: 100%;
        margin: 0 0%;
    }
    .works .work .work-swiper .swiper-container .swiper-button-prev-work {
        display: none;
    }
    .works .work .work-swiper .swiper-container .swiper-button-next-work {
       display: none;
    }

    .more-box {
        width: 80%;
        margin-top: 1rem;
    }
    .more-box .more-image {
        width: 4rem;
        height: 3rem;
    }
    .more-box .more-image img {
        width: 1.6rem;
        height: 1.6rem;
    }
    .more-box .more-text {
        font-size: 16px;
        height: 3rem;
    }

    .abouts {
        width: 100%;
        padding: 2rem 0 1rem;
    }
    .abouts .about .image {
       display: none;
    }
    .abouts .about .r {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        width: 100%;
    }
    .abouts .about .r h1 {
        font-size: 28px;
    }
    .abouts .about .r h6 {
        font-size: 28px;
    }
    .abouts .about .r .text {
        font-size: 14px;
        line-height: 28px;
        text-indent: 1em;
        margin-top: 1rem;
    }
    .abouts .about .r .more-about {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .ads .ad a img {
        width: 100%;
    }

    .articles {
        padding: 2rem 0;
    }

    .articles .article .nb-box {
       display: none;
    }
    .articles .article .nb-list {
        margin-top: 1rem;
        flex-flow: column;
    }
    .articles .article .nb-list a {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 1rem;
    }
    .articles .article .nb-list a .image {
        width: 8rem;
        height: calc(8rem * 0.625);
        margin-right: 10px;
    }
    .articles .article .nb-list a .info {
        width: calc(100% - 8rem - 10px);
    }
    .articles .article .nb-list a .info h1 {
        font-size: 15px;
        line-height: 24px;
        height: auto;
        max-height: 48px;
    }
    .articles .article .nb-list a .info .tag .tag-box {
        margin-right: 10px;
        margin-top: 10px;
    }
    .footers {
        background:#183883;
        padding: 1rem 0;
    }
    .footers .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0px 0;
        color: #fff;
        opacity: 0.8;
        text-align: center;
        line-height: 30px;
    }
    .footers .footer-bottom a {
        color: #fff;
        opacity: 0.8;
    }


    .page-banners .page-banner {
        height: 50vw;
    }

    .mob-left-menu {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 10px;
    }

    .mob-left-menu .title {
        position: relative;
        color: #333;
        font-size: 16px;
        line-height: 40px;
        width: 100%;
    }

    .mob-left-menu .title .xymob-page-navbtn {
        position: absolute;
        z-index: 99;
        width: 30px;
        height: 30px;
        text-align: center;
        top: 4px;
        right: 0;
        cursor: pointer;
        background: url(../image/icon_spirit.png) 0 -240px no-repeat;
    }



    /* 寮瑰嚭妗嗕箣鍚� body 涓婂鍔犱竴涓姝㈡粴鍔ㄧ殑绫�*/
    body.no-scroll,
    html.no-scroll {
        height: 100vh;
        overflow: hidden;
    }
    .xymob-menu-click {
        position: fixed;
        width: 100vw;
        overflow-y: scroll;
        top: 0;
        left: 100%;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        z-index: 999999;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
    }
    .xymob-menu-click .xypg-left-news,
    .xymob-menu-click .xypg-left-keys,
    .xymob-menu-click .xypg-left-contact,
    .xymob-menu-click .page-message-img {
        display: none;
    }
    .xymob-menu-click .xymob-left-close-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        border-radius: 50%;
        border: 1px solid #fff;
        text-align: center;
        background: black;
    }
    .xymob-menu-click .xymob-left-close-btn .icon-font {
        display: block;
        width: 100%;
        height: 100%;
    }
    .xymob-menu-click .xymob-left-close-btn .icon-font:after {
        background-position: -30px -300px;
    }
    .xymob-menu-click .xypg-left .xypg-left-menu {
        width: 50%;
        background: #fff;
        float: right;
        height: 100vh;
    }
    .xymob-menu-click.click {
        left: 0;
    }
    .xymob-menu-click {
        position: absolute;
        width: 100vw;
        overflow-y: scroll;
        top: 0;
        left: 100%;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        z-index: 999999;
        height: 100vh;
    }

    .xymob-menu-click .page-shaow {
        position: absolute;
        width: 100vw;
        overflow-y: scroll;
        top: 0;
        left: 0;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        z-index: -1;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
    }
    .xypg-left-nav > li:hover .first-nav-btn {
        transform:rotate(180deg);
        -ms-transform:rotate(180deg);   /* IE 9 */
        -moz-transform:rotate(180deg);  /* Firefox */
        -webkit-transform:rotate(180deg); /* Safari 鍜� Chrome */
        -o-transform:rotate(180deg);
        top: 6px;
    }

    .xypg-left-con {
        margin-top: 10px;
    }
    .xypg-left-nav > li {
        display: inline-block;
        position: relative;
        margin: 0 5px;
    }
    .xypg-left-nav > li {
        display: block;
    }
    .xypg-left-nav > li > a {
        display: block;
        font-size: 16px;
        line-height: 22px;
        color: #303030;
        padding: 8px 30px 8px 20px;
        border: 1px solid #7a7a7a;
    }
    .xypg-left-nav > li > a {
        border: none;
        padding: 8px 0;
        line-height: 28px;
    }
    .xypg-left-nav > li .first-nav-btn {
        position: absolute;
        z-index: 99;
        width: 30px;
        height: 30px;
        text-align: center;
        top: 4px;
        right: 0;
        cursor: pointer;
        background: url(../image/icon_spirit.png) 0 -240px no-repeat;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }
    .xypg-left-nav .xypg-left-subnav {
        display: none;
        padding: 10px 0;
        position: absolute;
        top: 40px;
        left: 0;
        background: #fff;
        width: 100%;
        z-index: 9;
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,1);
    }
    .xypg-left-nav .xypg-left-subnav {
        padding: 10px 0;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        box-shadow: none;
        display: none;
    }
    .xypg-left-nav .xypg-left-subnav > li > a {
        padding: 8px;
        display: block;
        line-height: 20px;
        color: #818181;
        font-size: 14px;
        text-align: center;
    }
    .xypg-left-nav .xypg-left-subnav > li > a {
        padding: 8px;
        display: block;
        line-height: 20px;
        color: #818181;
        font-size: 14px;
        text-align: left;
    }


    .xypg-sitemap .map_title {
        line-height: 40px;
        background-color: #f5f8fa;
        border: 1px solid #d6dbe1;
        text-indent: 20px;
        color: #666;
        border-bottom: 2px solid #ccc;
        font-size: 16px;
    }

    .xypg-sitemap .map_list {
        line-height: 30px;
        padding: 0 5px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .xypg-sitemap .map_list a {
        padding: 4px;
        white-space: nowrap;
        font-size: 14px;
        color: #666;
    }

    .xypg-sitemap .map_list a:hover {
        text-decoration: none;
        color: #3b639f;
        padding: 4px;
    }

    .xypg-sitemap .map_list .layer1 {
        margin-bottom: 10px;
    }

    .xypg-sitemap .map_list h3 {
        border-bottom: 1px dashed #ccc;
        margin-bottom: 10px;
        line-height: 36px;
    }

    .xypg-sitemap .map_list h3 a {
        font-weight: normal;
    }

    .xypg-sitemap .map_list .layer2 a {
        color: #999;
    }

    .xypg-sitemap .map_list .layer2 a:hover {
        text-decoration: none;
        color: #3b639f;
    }
    .details .detail {
        padding: 1rem 0;
    }
    .details .detail .about-info {
        flex-flow: column;
        width: 100%;
    }
    .details .detail .about-info .left {
        align-items: center;
        width: 100%;
        margin-right: 0px;
    }
    .details .detail .about-info .image {
        width: 100%;
        height: calc(100vw * 0.6);
        margin-top: 1rem;
    }

    .details .infos {
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    .details .infos .bg-image {
        display: none;
    }
    .details .infos .info {
        align-items: flex-start;
        padding: 1rem 1rem 0;
        background: #1851AA;
        flex-wrap: wrap;
    }
    .details .infos .info .tag-box {
        width: 50%;
        margin-bottom: 1rem;
    }
    .details .infos .info .tag-box .tb span {
        font-size: 30px;
    }
    .details .infos .info .tag-box .tb em {
        font-size: 11px;
    }
    .details .infos .info .line {
       display: none;
    }

    .details .idea {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
        margin-bottom: 1rem;
    }
    .details .idea .box {
        flex-flow: column;
        width: 100%;
        padding: 3rem 1rem;
        margin-right: 0px;
        height: auto;
        margin-bottom: 1rem;
    }
    .details .idea .box .icon {
        margin-top: 0;
    }
    .details .idea .box h1 {
        font-size: 24px;
        margin: 20px 0 10px;
    }
    .details .idea .box h6 {
        font-size: 16px;
        line-height: 28px;
    }

    .details .about-honors {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        margin-bottom: 2rem;
        background-image: none;
    }
    .details .about-honors .about-honor {
        padding: 1rem 0;
    }
    .details .about-honors .about-honor .e-title {
        font-size: 20px;
        color: #000;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    .details .about-honors .about-honor .title {
        font-size: 20px;
        color: #000;
        letter-spacing: 5px;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    .details .about-honors .about-honor .ah-intro {
        width: 100%;
        line-height: 28px;
        font-size: 14px;
        color: #000;
        opacity: 0.7;
        margin-bottom: 1rem;
    }
    .details .about-honors .about-honor .ah-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .details .about-honors .about-honor .ah-btn a {
        font-size: 16px;
        border: 1px solid #666;
        color: #666;
        border-radius: 10px;
        padding: 10px 40px;
        opacity: 1;
    }
    .details .about-honors .about-honor .ah-btn a:first-of-type {
        margin-right: 20px;
    }
    .details .about-honors .about-honor .ah-btn a:hover {
        color: #1851AA;
        border: 1px solid #1851AA;
        opacity: 0.7;
    }
    .details .page-title {
        padding: 2rem 0;
    }
    .details .page-title h1 {
        font-size: 28px;
    }
    .details .page-title h4 {
        font-size: 20px;
    }
    .details .mien.pb50 {
        padding-bottom: 2rem;
    }
    .details .mien .lists .box {
        width: calc((100% - 1rem - 4px) / 2);
        margin-right: 1rem;
        padding: 0.5rem 0.5rem;
        margin-bottom: 1rem;
    }
    .details .mien .lists .box:nth-child(2n){
        margin-right: 0;
    }
    .details .mien .lists .box .line {
        margin: 1rem 0 0.2rem;
    }
    .details .mien .lists .box .name {
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    .details .mien .lists .more {
        padding: 1rem 0 2rem;
    }
    .details .mien .lists .more a {
        padding: 10px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1851AA;
        color: #fff;
        border-radius: 30px;
        font-size: 16px;
    }
    .details .mien .lists .more a .icon-more{
        width: 20px;
        height: 20px;
        background-position: 0 -290px;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        margin-left: 10px;
    }
    .details .mien .lists .more a:hover{
        background:#102341;
    }
    .details .mien .lists .more a:hover .icon-more {
        margin-left:20px; ;
    }

    .details .pro-lists {
        padding: 2rem 0;
    }
    .details .pro-lists .pro-list .box {
        width: calc((100% - 1rem) / 2);
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
    .details .pro-lists .pro-list .box:nth-child(2n){
        margin-right: 0;
    }
    .details .pro-lists .pro-list .box .p-box {
        border-bottom: none;
    }
    .details .pro-lists .pro-list .box .p-box h1 {
        font-size: 16px;
        color: #1851AA;
        margin: 1rem 10px;
        width: calc(100% - 20px);
    }
    .details .pro-lists .pro-list .box .p-box p {
        font-size: 12px;
        margin: 0 10px 1rem;
        line-height: 18px;
        height: 36px;
        width: calc(100% - 20px);
    }
    .details .pro-lists .pro-list .box .p-box .line {
        position: absolute;
        left: auto;
        bottom: -8px;
        height: 8px;
        width: 0;
        background-color: #1851AA;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }
    .details .pro-lists .pro-list .box:hover .p-box .line {
        width: 100%;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

    .details .pro-lists .pro-detail .info-p {
        flex-flow: column;
    }
    .details .pro-lists .pro-detail .info-p .thumb {
        width: 100%;
        height: 100%;
        margin-right: 0px;
    }
    .details .pro-lists .pro-detail .info-p .bxs {
        width: 100%;
        margin-top: 2rem;
    }
    .details .pro-lists .pro-detail .info-p .bxs .title h1 {
        font-size: 18px;
        color: #000;
        padding: 0 10px 10px;
        position: relative;
    }
    .details .pro-lists .pro-detail .info-p .bxs .tag {
        margin-top: 1rem;
        width: 100%;
        padding: 0 0 0 0px;
        margin-left: 0px;
        border-bottom: 1px dashed #ddd;
    }
    .details .pro-lists .pro-detail .info-p .bxs .tag p {
        font-size: 14px;
        margin-bottom: 1rem;
    }
    .details .pro-lists .pro-detail .info-p .bxs .tag p a {
        margin-right: 0.5rem;
    }
    .details .pro-lists .pro-detail .info-p .bxs .con {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 0 0px 0px;
        margin-left: 0px;
    }
    .details .pro-lists .pro-detail .info-p .bxs .con .icon {
        width: 36px;
        margin-right: 10px;
        margin-top: 2px;
    }
    .details .pro-lists .pro-detail .info-p .bxs .con span {
        font-size: 28px;
    }
    .details .pro-lists .pro-detail .info-p .bxs .con .tels {
        font-size: 28px;
        margin-top: 0.5rem;
        line-height: 40px;
        margin-bottom: 1rem;
    }
    .details .pro-lists .pro-detail .info-p .bxs .con .tels em {
        display: block;
        width: 0;
        height: 0px;
        overflow: hidden;
    }
    .details .pro-lists .pro-detail .info-p .bxs .btns {
        margin-top: 2rem;
        width: 100%;
        padding: 0 0 0px 00px;
        margin-left: 0px;
    }
    .details .pro-lists .pro-detail .info-p .bxs .btns a {
        padding: 8px 30px;
        border-radius: 60px;
        color: #fff;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .details .pro-lists .pro-detail .info-p .bxs .btns a:first-of-type {
        margin-right: 0px;
    }
    .details .pro-lists .pro-detail .info-p .bxs .btns a.r {
        display: none;
    }

    .details .pro-lists .pro-detail .contents {
        margin-top: 2rem;
        width: 100%;
    }
    .details .pro-lists .pro-detail .contents .title {
        margin-bottom: 1rem;
    }
    .details .pro-lists .pro-detail .contents .title span {
        padding: 10px 15px;
    }
    .details .pro-lists .pro-detail .contents .title .icon {
        width: 16px;
        margin-left: -4px;
    }

    .details .contacts {
        align-items: center;
        justify-content: center;
        flex-flow: column;
        padding-bottom: 2rem;
    }
    .details .contacts .c-box {
        width: 100%;
        height: auto;
        margin-right: 0px;
        margin-bottom: 1rem;
    }
    .details .contacts .maps {
        width: 100%;
        height: 50vw;
    }
    .details .messages {
        padding: 1rem 0 2rem;
        width: 100%;
    }
    .details .messages .message .tips {
        font-size: 14px;
        line-height: 24px;
    }
    .details .messages .message .forms {
        margin-top: 2rem;
    }
    .details .messages .message .forms .wx {
        width:100%;
        margin-right: 0px;
        margin-bottom: 1rem;
    }
    .details .messages .message .forms .wx .lab {
        margin-bottom: 1rem;
    }
    .details .messages .message .forms .wl {
        margin-bottom: 1rem;
    }
    .details .messages .message .forms .wl .lab {
        margin-bottom: 1rem;
    }
    .details .messages .message .forms .btnx {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .details .messages .message .forms .btnx span {
        font-size: 15px;
        padding: 10px 2.4rem;
    }
    .details .messages .message .forms .btnx span:first-of-type {
        margin-right: 1rem;
    }

    .details .news-lists {
        padding-bottom: 2rem;
    }
    .details .news-lists .news-list .box {
        width: 100%;
        border: none;
        border-bottom: 1px solid #ddd;
        padding: 0 0 1rem 0;
        margin-bottom: 1rem;
        border-radius: 0;
    }
    .details .news-lists .news-list .box:hover {
        border: none;
        border-bottom: 1px solid #ddd;
    }
    .details .news-lists .news-list .box .image {
        width:8rem;
        height: calc(8rem * 0.68);
        margin-right: 0.5rem;
    }
    .details .news-lists .news-list .box .t-box {
        width: calc(100% - 8.5rem);
    }
    .details .news-lists .news-list .box .t-box h1 {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: unset;
    }
    .details .news-lists .news-list .box .t-box .time {
        margin-top: 1rem;
        text-align: right;
    }
    .details .news-lists .news-list .box .t-box .news-tag {
        display: none;
    }

    .details .news-lists .news-list .box .t-box .more {
       display: none;
    }

    .details .news-contents {
        padding: 0px 0 2rem;
    }
    .details .news-contents .news-content .nc-title {
        font-size: 18px;
        margin-top: 2rem;
    }
    .details .news-contents .news-content .tag {
        margin: 1rem 0 0px;
        padding-bottom: 1rem;
    }
    .details .news-contents .news-content .tag span {
        margin-right: 1rem;
    }
    .details .news-contents .news-content .conts {
        font-size: 14px;
        margin-top: 1rem;
        line-height: 28px;
    }
    .details .news-contents .news-content .nexts {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
        width: 100%;
        border-top: 1px solid #ddd;
        margin-top: 2rem;
        padding-top: 1rem;
    }
    .details .news-contents .news-content .nexts a {
        width: 100%;
        margin-top: 1rem;
        font-size: 14px;
    }

    .details {
        padding-top: 0;
    }
    .details .contact-x {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .details .contact-x .abox {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-flow: column;
        width: 100%;
        border: 1px solid #ddd;
        margin-bottom: 1rem;
    }
    .details .contact-x .abox .image {
        width: 100%;
        height: auto;
    }
    .details .contact-x .abox .image img {
        width: 100%;
        height: 100%;
    }
    .details .contact-x .abox .rx {
        margin-right: 0px;
    }
    .details .contact-x .abox .info {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
        width: 100%;
        padding: 2rem 1rem 1rem;
    }
    .details .contact-x .abox .info .title {
        font-size: 32px;
        color: #000;
    }
    .details .contact-x .abox .info .title img {
        width: 40px;
        margin-right: 20px;
        margin-top: -10px;
    }
    .details .contact-x .abox .info .ps {
        margin-top: 1rem;
        line-height: 40px;
        font-size: 16px;
    }

    .details .news-contents .news-content .conts-x {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
        width: 100%;
        margin-top: 2rem;
    }
    .details .news-contents .news-content .conts-x .images {
        width:100%;
        margin-right: 00px;
        margin-bottom: 1rem;
    }
    .details .news-contents .news-content .conts-x .rc {
        font-size: 18px;
        color: #777;
        line-height: 40px;
    }


    .details .jobs {
        width: 100%;
        padding: 2rem 0;
    }
    .details .jobs .job .jobs-box .panel {
        width: 100%;
        margin-bottom: 1rem;
    }
    .details .jobs .job .jobs-box .jobs-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem 1rem;
    }
    .details .jobs .job .jobs-box .jobs-list .left {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .details .jobs .job .jobs-box .jobs-list .left h1 {
        font-size: 18px;
        font-weight: bolder;
        color: #000;
    }
    .details .jobs .job .jobs-box .jobs-list .left .tag {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .details .jobs .job .jobs-box .jobs-list .left .tag span {
        margin-right: 00px;
        font-size: 14px;
        color: #888;
        margin-top: 10px;
    }
    .details .jobs .job .jobs-box .jobs-list .right {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    .jobs-list:nth-child(1) .right, .jobs-box a[aria-expanded=true] .right {
        background: #fff url("../image/xia.png") center no-repeat;
    }
    .jobs-box a[aria-expanded=false] .right {
        background: #fff url("../image/shang.png") center no-repeat;
    }
    .details .jobs .job .jobs-box .jobs-contents {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
        line-height: 25px;
        font-size: 14px;
        overflow: hidden;
        background: #fafafa;
        border-top: 1px solid #eee;
        padding: 1rem 0px 0px 0;
    }
    .details .jobs .job .jobs-box .jobs-contents p {
        padding: 0 1rem;
    }
    .details .jobs .job .jobs-box .jobs-contents.collapse {
        display: none;
    }
    .details .jobs .job .jobs-box .jobs-contents.in {
        display: flex;
    }
    .details .jobs .job .jobs-box .jobs-contents .hs {
        font-size: 16px;
        font-weight: bold;
        margin: 20px 0;
    }
    .details .jobs .job .jobs-box .jobs-contents .eml {
        padding: 1rem 1rem;
        border-top: 1px solid #EEE;
        margin-top: 2rem;
        color: #f60;
        font-size: 15px;
        letter-spacing: 0px;
    }

}

@keyframes jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.icon-font:after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("../image/icon_spirit.png");
    background-repeat: no-repeat;
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
}
