.banner {
    position: relative;
    overflow: hidden;
}

.banner-swipter {
    position: relative;
    z-index: 3;
}

.banner-item {
    float: left;
    position: relative;
    overflow: hidden;
}

.banner-item figure {
    display: block;
    line-height: 1;
    overflow: hidden;
}

.banner-item figure img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

.banner-item-text {
    width: 71%;
    position: absolute;
    left: 18.75%;
    top: 50%;
    margin-top: -133px;
}

.banner-item-text strong {
    display: block;
    color: #fff;
    font-size: 49px;
    line-height: 1;
    font-weight: normal;
    margin-bottom: 42px;
    opacity: 0;
    visibility: visible;
    transform: translateY(40px);
}

.banner-item-text small {
    margin-bottom: 50px;
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 54px;
    font-family: "Helvetica Bold";
    text-transform: uppercase;
    opacity: 0;
    visibility: visible;
    transform: translateY(40px);
}

.banner-item-text p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Helvetica";
    opacity: 0;
    visibility: visible;
    transform: translateY(40px);
}

.banner-item.slick-current .banner-item-text strong {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.5s;
}

.banner-item.slick-current .banner-item-text small {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.5s 0.25s;
}

.banner-item.slick-current .banner-item-text p {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.5s 0.5s;
}

.lines {
    width: 71%;
    height: 1px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.36);
    position: absolute;
    left: 18.75%;
    top: 50%;
    margin-top: -60px;
    z-index: 20;
}

.lines i {
    width: 20%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.banner-next {
    position: absolute;
    right: 10.25%;
    top: 50%;
    margin-top: -100px;
    z-index: 10;
}

.banner-next span {
    display: block;
    color: #fff;
    font-size: 20px;
    opacity: 0.36;
    line-height: 1;
    cursor: pointer;
    transition: 0.4s;
}

.banner-next span.prev {
    margin-bottom: 40px;
}

.banner-next span:hover {
    opacity: 1;
}

.banner-swipter .slick-dots {
    position: absolute;
    left: 18.75%;
    top: 50%;
    margin-top: -165px;
    z-index: 20;
    height: 11px;
    margin-left: 96px;
}

.banner-swipter .slick-list {
    position: relative;
    z-index: 3;
}

.banner-swipter .slick-dots li {
    float: left;
    margin-right: 9px;
    line-height: 1;
    overflow: hidden;
}

.banner-swipter .slick-dots li button {
    padding: 0;
    margin: 0;
    border: 1px solid #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    width: 9px;
    height: 9px;
    text-align: center;
    text-indent: 9999px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    transition: 0.3s;
    cursor: pointer;
    outline: none;
}

.banner-swipter .slick-dots li.slick-active button {
    background-color: #fff;
    border-color: #fff;
}

.banner-item.slick-current {
    z-index: 4 !important;
    animation: none;
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
}

.banner-item.slick-current figure {
    -webkit-animation: increaseHeight 0.8s forwards ease-in-out;
    animation: increaseHeight 0.8s forwards ease-in-out;
    -moz-animation: increaseHeight 0.8s forwards ease-in-out;
    -o-animation: increaseHeight 0.8s forwards ease-in-out;
}

.banner-item {
    -webkit-animation: hide 0.8s forwards ease-in-out;
    animation: hide 0.8s forwards ease-in-out;
    -moz-animation: hide 0.8s forwards ease-in-out;
    -o-animation: hide 0.8s forwards ease-in-out;
    z-index: 3 !important;
}

.banner-item figure {
    animation: none;
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
}

.banner-item.slick-current figure img {
    -webkit-animation: scaleUpDown 4.4s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
    animation: scaleUpDown 4.4s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

@-webkit-keyframes decreaseHeight {
    from {}

    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        width: 0;
    }
}

@keyframes decreaseHeight {
    from {}

    /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
    to {
        width: 0;
    }
}

@-webkit-keyframes show {
    0% {
        opacity: 0;
    }

    1%,
    100% {
        opacity: 1;
    }
}


@keyframes show {
    0% {
        opacity: 0;
    }

    1%,
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes hide {

    0%,
    99% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes hide {

    0%,
    99% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes increaseHeight {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes increaseHeight {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@-webkit-keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleUpDown {
    from {
        transform: scale(1.08);
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
        transform: scale(1);
    }
}

.numble {
    position: absolute;
    left: 18.75%;
    z-index: 20;
    top: 50%;
    margin-top: -180px;
    color: #FFFFFF;
    font-size: 20px;
    font-family: arial;
}

.nubles b {
    font-size: 20px;
    font-weight: normal;
}

.nubles i {
    font-style: normal;
    font-size: 14px;
}

.bannerline {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
}

.bannerline span {
    display: block;
    width: 38px;
    height: 1px;
    background-color: #fff;
    margin-top: 20px;
    transition: 2s;
}

.bannerline span:first-child {
    margin-top: 0;
}

.bannerline span.active {
    width: 147px;
}

.scrolldown {
    position: absolute;
    left: 50%;
    bottom: 40px;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 10;
    animation: moveDownSpot 1000ms infinite;
    -webkit-animation: moveDownSpot 1000ms infinite;
    -moz-animation: moveDownSpot 1000ms infinite;
}

@keyframes moveDownSpot {
    from {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

    to {
        transform: translateY(0);
    }
}

.home-about {
    position: relative;
}

.introduct {
    width: 50%;
    float: left;
    background-position: center;
    background-size: cover;
}

.introduct-wrap {
    padding: 88px 0 100px;
    width: 68.9%;
    margin-left: 20.4%;
}

.introduct-wrap span {
    margin-bottom: 28px;
    display: block;
    line-height: 1;
    color: #4A4A4A;
    font-size: 16px;
}

.introduct-wrap strong {
    margin-bottom: 24px;
    display: block;
    color: #4D4D4D;
    font-size: 26px;
    font-family: é»‘ä½“;
    font-weight: normal;
    line-height: 1.4;
    width: 70.6%;
    height: 72px;
    overflow: hidden;
}

.introduct-wrap p {
    color: #757272;
    font-size: 14px;
    height: 150px;
}

.introduct-wrap a {
    position: relative;
    z-index: 3;
    display: block;
    width: 150px;
    height: 39px;
    line-height: 39px;
    border-radius: 20px;
    color: #8E8E8E;
    font-size: 16px;
    font-family: "Helvetica";
    border: 1px solid #A7A7A7;
    text-align: center;
}

.introduct-wrap a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 19px;
    background-color: #2550A0;
    z-index: -1;
    transition: 0.38s;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(90deg);
}

.introduct-wrap a:hover {
    border-color: #2550A0;
    color: #fff;
}

.introduct-wrap a:hover:before {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.introduct-bann {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background: url(../images/2.jpg) center no-repeat;
    background-position: center;
}

.introwrap {
    margin-left: 8.333%;
    margin-top: 74px;
    width: 520px;
    max-width: 88%;
}

.intro-item {
    float: left;
}

.intro-item figure {
    margin-bottom: 15px;
    display: block;
    line-height: 1;
    overflow: hidden;
}

.intro-item figure img {
    display: block;
    width: 520px;
    height: 314px;
}

.intro-item p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.intro-btn {
    text-align: center;
    margin-top: 45px;
}

.introbtn {
    display: inline-block;
    line-height: 1;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    transition: 0.35s;
}

.introbtn.prev:hover {
    transform: translateX(-4px);
}

.introbtn.next:hover {
    transform: translateX(4px);
}

.number {
    display: inline-block;
    margin: 0 59px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
}

.core-business {
    position: relative;
    width: 50%;
    float: left;
}

.core-business figure {
    display: block;
    overflow: hidden;
    line-height: 1;
}

.core-business figure img {
    display: block;
    width: 100%;
    height: auto;
}

.business-wrap {
    position: absolute;
    left: 22px;
    right: 20px;
    top: 55px;
}

.business-tt {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 28px;
}

.business-tt:before {
    content: "";
    width: 26px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.business-tt strong {
    margin-bottom: 8px;
    display: block;
    line-height: 1;
    color: #f7a300;
    font-size: 20px;
    font-weight: bold;
}

.business-tt small {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
}

.business-text p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.business-text span {
    display: block;
    margin-top: 32px;
    color: #fff;
    font-size: 12px;
    font-family: "Helvetica";
    line-height: 1;
}

.home-news {
    width: 50%;
    float: left;
}

.home-news-wrap {
    padding: 42px 7.83% 0 7.666%;
}

.news-title {
    margin-bottom: 34px;
}

.news-title strong {
    display: block;
    float: left;
    line-height: 1.2;
    color: #4A4A4A;
    font-size: 16px;
    font-weight: normal;
}

.news-title a {
    display: block;
    width: 16px;
    height: 16px;
    float: right;
    position: relative;
}

.news-title a:before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #757575;
    position: absolute;
    left: 7px;
    top: 0;
}

.news-title a:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #757575;
    position: absolute;
    top: 7px;
    left: 0;
}

.news-title a:hover {
    transform: rotate(360deg);
}

.home-news-list li {
    margin-bottom: 12px;
}

.home-news-list li span {
    display: block;
    float: left;
    width: 78%;
    color: #747474;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.4s;
}

.home-news-list li time {
    display: block;
    float: right;
    color: #989898;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.home-news-list li a:hover span {
    color: #2550A0;
}

.business-item {
    width: 25%;
    float: left;
    position: relative;
}

.business-item figure {
    display: block;
    line-height: 1;
    overflow: hidden;
}

.business-item figure img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.58s;
}

.business-texts {
    position: relative;
    text-align: center;
    padding: 63px 0 47px;
    background-color: #fff;
    transition: 0.5s;
}

.business-texts span {
    margin-bottom: 16px;
    display: block;
    text-align: center;
    line-height: 1;
    color: #848484;
    font-size: 12px;
}

.business-texts strong {
    display: block;
    width: 208px;
    max-width: 90%;
    margin: auto;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    height: 44px;
    overflow: hidden;
}

.business-texts b {
    position: relative;
    z-index: 3;
    display: block;
    width: 96px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    border-radius: 14px;
    color: #A5A5A5;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin: auto;
    transition: 0.35s;
}

.business-texts b:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 14px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: #2550A0;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(180deg);
    transition: 0.4s;
}

.business-item a:hover figure img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.business-item a:hover .business-texts {
    background-color: #D4E6F1;
}

.business-item a:hover .business-texts b {
    color: #fff;
}

.business-item a:hover .business-texts b:before {
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg);
}

.business-item1 {
    padding-top: 234px;
    position: relative;
}

.business-item1 .business-texts {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.leval-menu-list {
    display: inline-block;
    margin: auto;
}

.leval-menu-list li {
    float: left;
    margin-left: 40px;
}

.leval-menu-list li:first-child {
    margin-left: 0;
}

.leval-menu-list li a {
    position: relative;
    display: inline-block;
    color: #AAAAAA;
    font-size: 18px;
    line-height: 74px;
    height: 72px;
    padding: 0 14px;
}

.leval-menu-list li a:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #2550A0;
    position: absolute;
    right: 0;
    bottom: -1px;
    transition: 0.38s;
}

.leval-menu-list li a:hover:before,
.leval-menu-list li.active a:before {
    width: 100%;
    right: auto;
    left: 0;
}

.leval-menu-list li a:hover,
.leval-menu-list li.active a {
    color: #5B5B5B;
}

.about {
    width: 967px;
    margin: auto;
    max-width: 90%;
    padding: 54px 0 24px;
}

.about-datas {
    margin-bottom: 45px;
}

.about-item {
    float: left;
    width: 31.5%;
    margin-left: 2.7%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.11);
    text-align: center;
    padding: 40px 0 30px;
}

.about-item:first-child {
    margin-left: 0;
}

.about-item i {
    display: block;
    text-align: center;
    color: #AAAAAA;
    line-height: 1;
    font-size: 48px;
    font-style: normal;
    margin-bottom: 16px;
}

.about-item span {
    display: block;
    text-align: center;
    color: #B8B8B8;
    font-size: 16px;
    line-height: 1;
}

.about-item span b {
    font-family: "Helvetica";
    font-weight: normal;
    display: inline-block;
    margin-right: 6px;
    font-size: 38px;
    color: #5B5B5B;
}

.about-item p {
    text-align: center;
    line-height: 1;
    color: #B8B8B8;
    font-size: 16px;
    margin-top: 10px;
}

.about-fix p {
    color: #848484;
    font-size: 14px;
    text-indent: 26px;
    padding-bottom: 20px;
}

.about-bann {
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.about-swiper {
    width: 968px;
    z-index: 3;
    margin: auto;
    position: relative;
}

.abouts-item {
    float: left;
    overflow: hidden;
    line-height: 0;
    width: 100%;
}

.abouts-item figure {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.abouts-item figure img {
    display: block;
    width: 100%;
    height: auto;
}

.abouts-text {
    position: absolute;
    left: 58px;
    bottom: 35px;
    z-index: 3;
    padding-bottom: 18px;
}

.abouts-text:before {
    content: "";
    width: 30px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.abouts-text span {
    margin-bottom: 8px;
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 14px;
}

.abouts-text strong {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.about-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -45px;
    z-index: 20;
    width: 103px;
    cursor: pointer;
}

.about-btn.prev {
    margin-left: -704px;
}

.about-btn.next {
    margin-left: 609px;
}

.about-btn:hover span {
    color: #2550A0;
}

.about-btn img {
    display: block;
    width: 100%;
    height: auto;
}

.about-btn span {
    display: block;
    margin-top: 12px;
    text-align: center;
    line-height: 1;
    color: #5B5B5B;
    font-size: 14px;
}

.culture-item {
    width: 20%;
    float: left;
    position: relative;
    overflow: hidden;
}

.culture-item figure {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.culture-item figure img {
    width: 100%;
    height: auto;
    transition: 0.65s;
}

.culture-texts {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -90px;
    z-index: 5;
    transition: 0.5s;
}

.culture-texts strong {
    display: block;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 20px;
    padding-bottom: 14px;
    position: relative;
    font-weight: normal;
}

.culture-texts strong:before {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    bottom: 0;
}

.culture-content {
    margin: auto;
    margin-top: 30px;
    width: 290px;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translateY(60px);
}

.culture-content p {
    color: #fff;
    font-size: 14px;
    line-height: 2;
    transition: 0.4s;
}

.culture-item:hover .culture-texts {
    top: 50%;
    margin-bottom: ;
}

.culture-item:hover figure img {
    transform: scale(1.05);
}

.culture-item:hover .culture-content {
    opacity: 1;
    transition: 0.5s 0.25s;
    visibility: visible;
    transform: translateY(0px);
}

.More {
    padding: 20px 0 10px;
    width: 100%;
    margin: auto;
}

.More-list {
    padding-bottom: 30px;
}

.More-tt {
    padding: 20px 0 15px;
    margin-bottom: 32px;
    text-align: left;
    border-bottom: 1px solid #E8E8E8;
}

.More-tt strong {
    display: block;
    line-height: 1.2;
    color: #026905;
    font-size: 18px;
}


.More-list li {
    width: 25%;
    float: left;
    margin-bottom: 32px;
}

.More-list li a {
    display: block;
    margin: 0 8px;
}

.More-list li a figure {
    position: relative;
    display: block;
    line-height: 1;
    overflow: hidden;
}

.More-list li a figure img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.More-list li a figure b {
    position: absolute;
    left: 50%;
    margin-left: -57px;
    top: 50%;
    margin-top: -18px;
    display: block;
    width: 113px;
    height: 34px;
    border: 1px solid #000;
    text-align: center;
    line-height: 34px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(90deg);
    transition: 0.4s;
    background-color: #000;
}

.More-list li a span {
    position: relative;
    z-index: 3;
    display: block;
    text-align: center;
    height: 43px;
    line-height: 43px;
    color: #5B5B5B;
    font-size: 14px;
    background-color: #F1F1F1;
    transition: 0.4s;
}

.More-list li a span:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #2550A0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(90deg);
    transition: 0.35s;
}

.More-list li a:hover figure img {
    transform: scale(1.05);
}

.More-list li a:hover figure b {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.More-list li a:hover span {
    color: #fff;
}

.More-list li a:hover span:before {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}






.staff {
    padding: 60px 0 82px;
    width: 1092px;
    margin: auto;
}

.staff-list {
    padding-bottom: 30px;
}

.staff-list li {
    width: 33.3333%;
    float: left;
    margin-bottom: 32px;
}

.staff-list li a {
    display: block;
    margin: 0 8px;
}

.staff-list li a figure {
    position: relative;
    display: block;
    line-height: 1;
    overflow: hidden;
}

.staff-list li a figure img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.staff-list li a figure b {
    position: absolute;
    left: 50%;
    margin-left: -57px;
    top: 50%;
    margin-top: -18px;
    display: block;
    width: 92px;
    height: 92px;
    text-align: center;
    line-height: 92px;
    color: #fff;
    font-size: 14px;
}

.staff-list li a span {
    position: relative;
    z-index: 3;
    display: block;
    text-align: center;
    height: 43px;
    line-height: 43px;
    color: #5B5B5B;
    font-size: 14px;
    background-color: #F1F1F1;
    transition: 0.4s;
}

.staff-list li a span:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #2550A0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(90deg);
    transition: 0.35s;
}

.staff-list li a:hover figure img {
    transform: scale(1.05);
}

.staff-list li a:hover figure b {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.staff-list li a:hover span {
    color: #fff;
}

.staff-list li a:hover span:before {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.pagelist {
    text-align: center;
    font-size: 0;
}

.pagelist a:first-child {
    margin-left: 0;
}

.pagelist a {
    display: inline-block;
    margin-left: 6px;
    width: 60px;
    height: 27px;
    line-height: 27px;
    color: #AAAAAA;
    font-size: 14px;
    text-align: center;
    border: 1px solid #D5D5D5;
    transition: 0.35s;
}

.pagelist a i {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

.pagelist a.pageprev {
    width: 83px;
}

.pagelist a:hover,
.pagelist a.on {
    background-color: #2550A0;
    border-color: #2550A0;
    color: #fff;
}

.news-box {
    width: 1104px;
    margin: auto;
    padding: 70px 0 120px;
}

.news-list li {
    position: relative;
    margin-bottom: 20px;
}

.news-list li figure {
    width: 51.6%;
    float: left;
    line-height: 1;
    overflow: hidden;
    position: relative;
}

.news-list li figure img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.56s;
}

.news-texts {
    width: 45.83%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-bottom: 1px solid #E8E8E8;
    box-sizing: border-box;
    transition: 0.35s;
}

.news-texts strong {
    display: block;
    line-height: 1.2;
    color: #585858;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 10px;
    margin-bottom: 13px;
    transition: 0.36s;
}

.news-texts p {
    color: #979797;
    font-size: 14px;
    margin-bottom: 54px;
    height: 50px;
    overflow: hidden;
}

.news-texts time {
    display: block;
    color: #A2A2A2;
    font-size: 12px;
    line-height: 16px;
}

.news-texts time i {
    display: inline-block;
    color: #C5C5C5;
    font-size: 15px;
    margin-right: 5px;
}

.news-texts span {
    width: 71px;
    border-radius: 22px;
    position: relative;
    z-index: 3;
    display: inline-block;
    color: #8E8E8E;
    font-size: 14px;
    margin-top: 47px;
    transition: 0.4s;
    height: 41px;
    line-height: 41px;
}

.news-list li a:hover figure img {
    transform: scale(1.05);
}

.news-list li a:hover .news-texts strong {
    color: #2550A0;
}

.news-list li a:hover .news-texts span {
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 20px;
    background-color: #2550A0;
    text-align: center;
    color: #fff;
}

.news-list li a:hover .news-texts {
    border-bottom: 1px solid #2550A0;
}

.news-list {
    padding-bottom: 74px;
}

.news-viewd {
    width: 987px;
    margin: auto;
    max-width: 90%;
}

.news-tt {
    padding: 90px 0 35px;
    text-align: center;
    border-bottom: 1px solid #E8E8E8;
}

.news-tt strong {
    display: block;
    text-align: center;
    line-height: 1.2;
    color: #575757;
    font-size: 30px;
}

.news-tt-text {
    margin-top: 12px;
    text-align: center;
}

.news-tt-text span,
.news-tt-text a {
    display: inline-block;
    color: #979797;
    font-size: 14px;
    line-height: 1.2;
    margin-left: 10px;
}

.news-tt-text span:first-child {
    margin-left: 0;
}

.news-tt-text a:hover {
    color: #2550A0;
}

.news-fixd {
    padding: 32px 0 90px;
}

.news-fixd p,
.news-fixd a {
    color: #979797;
    font-size: 14px;
}

.news-fixd img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.news-infod {
    position: fixed;
    top: 50%;
    margin-top: -34px;
    z-index: 10;
    width: 86px;
}

.news-infod img {
    display: block;
    width: 100%;
    height: auto;
    margin-left: -5px;
    transition: 0.35s;
}

.news-infod span {
    display: block;
    text-align: center;
    line-height: 1;
    color: #848484;
    font-size: 14px;
    margin-top: 10px;
}

.news-infod.prev {
    left: 0;
}

.news-infod.next {
    right: 0;
}

.news-infod.next img {
    margin-left: 5px;
}

.news-infod.prev:hover img {
    margin-left: 0;
}

.news-infod.next:hover img {
    margin-left: 0;
}

.honor {
    padding: 120px 0 100px;
}

.honor-list {
    margin-left: -8px;
    margin-right: -8px;
}

.honor-list li {
    float: left;
    width: 25%;
    margin-bottom: 16px;
}

.honor-list li figure {
    display: block;
    margin: 0 8px;
    border: 1px solid #ECECEC;
}

.honor-img {
    position: relative;
    z-index: 3;
    height: 285px;
    border-bottom: 1px solid #ECECEC;
}

.honor-img img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    transition: 0.45s;
}

.honor-img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.honor-img b {
    display: block;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -13px;
    text-align: center;
    font-size: 26px;
    font-weight: normal;
    z-index: 5;
    color: #FFFFFF;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: 0.4s;
}

.honor-list li figure span {
    display: block;
    text-align: center;
    height: 51px;
    line-height: 51px;
    color: #848484;
    font-size: 14px;
    transition: 0.4s;
}

.honor-list li figure:hover .honor-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.honor-list li figure:hover .honor-img:before {
    opacity: 1;
    visibility: visible;
}

.honor-list li figure:hover .honor-img b {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.honor-list li figure:hover span {
    background-color: #2550A0;
    color: #fff;
    border-color: #2550A0;
}

.honor-list {
    padding-bottom: 120px;
}

.business {
    width: 800px;
    margin: auto;
    max-width: 90%;
    padding: 106px 0 132px;
}

.business strong {
    margin-bottom: 12px;
    display: block;
    color: #5B5B5B;
    font-size: 16px;
    line-height: 1.2;
}

.business p {
    color: #848484;
    font-size: 14px;
    text-align: justify;
}

.business-boxs {
    margin-bottom: 4px;
}

.business-itemd {
    position: relative;
    width: 33.3333%;
    float: left;
}

.business-itemd figure {
    display: block;
    line-height: 1;
    overflow: hidden;
}

.business-itemd figure img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.65s;
}

.business-itemd strong {
    display: block;
    position: absolute;
    left: 38px;
    bottom: 30px;
    padding-right: 15px;
    z-index: 3;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.business-itemd:hover figure img {
    transform: scale(1.05);
}

.projects {
    width: 100%;
    margin: auto;
    max-width: 90%;
    padding: 46px 0 60px;
}

.project-list {
    margin-left: -9px;
    margin-right: -9px;
    padding-bottom: 36px;
}

.project-list li {
    width: 50%;
    float: left;
    margin-bottom: 34px;
}

.project-list li a {
    display: block;
    margin: 0 9px;
}

.project-list li a figure {
    display: block;
    line-height: 1;
    overflow: hidden;
}

.project-list li a figure img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.project-down {
    padding: 12px 12px 18px;
    border: 1px solid #ECECEC;
}

.project-down strong {
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
    color: #5B5B5B;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-down p {
    color: #AAAAAA;
}

.project-down span {
    display: block;
    margin-top: 16px;
    width: 87px;
    height: 27px;
    text-align: center;
    line-height: 27px;
    color: #AAAAAA;
    background-color: #EFEFEF;
    transition: 0.35s;
}

.project-list li a:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.project-list li a:hover figure img {
    transform: scale(1.06);
}

.project-list li a:hover .project-down span {
    background-color: #2550A0;
    color: #fff;
}

.contact-mode {
    padding: 110px 0 85px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.mode-wrap {
    width: 816px;
    margin: auto;
}

.mode-wrap-title {
    margin-bottom: 55px;
}

.mode-wrap-title strong {
    display: block;
    float: left;
    color: #3B3B3B;
    font-size: 32px;
    line-height: 1;
    padding-bottom: 28px;
    position: relative;
}

.mode-wrap-title strong:before {
    content: "";
    width: 48px;
    height: 5px;
    background-color: #2550A0;
    position: absolute;
    left: 0;
    bottom: 0;
}

.mode-address {
    margin-left: 330px;
}

.mode-address p {
    color: #5B5B5B;
    font-size: 16px;
    line-height: 2;
}

.mode-map {
    height: 390px;
}

.anchorBL {
    display: none;
}

.recruit-box {
    padding: 72px 0 97px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.recruit {
    width: 816px;
    margin: auto;
}

.recruit-tt {
    display: block;
    margin-bottom: 50px;
    position: relative;
    line-height: 1;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 26px;
}

.recruit-tt:before {
    content: "";
    width: 48px;
    height: 5px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.recuit-list {
    margin-top: 50px;
    border-top: 1px solid #57647B;
}

.recuit-item {
    border-bottom: 1px solid #57647B;
}

.recuits-fixs {
    position: relative;
    cursor: pointer;
}

.recuits-fixs span {
    height: 52px;
    line-height: 52px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.recuits-fixs b {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
    display: block;
    width: 16px;
    height: 16px;
}

.recuits-fixs b:before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    transition: 0.32s;
}

.recuits-fixs b:after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 0;
    transition: 0.32s;
}

.recuit-item:first-child .recuit-texts {
    display: block;
}

.recuit-texts {
    padding-bottom: 20px;
    display: none;
}

.recuit-texts strong,
.recuit-texts p {
    display: block;
    color: #FFFFFF;
    opacity: 0.74;
}

.recuit-texts strong {
    margin-bottom: 6px;
}

.recuits-fixs.active b:after {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
}

.home-about.article-block .introduct,
.home-business-wr.article-block .core-business {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-220px);
    transition: 0.78s;
}

.home-about.articleShow .introduct,
.home-business-wr.articleShow .core-business {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.home-about.article-block .introduct-bann,
.home-business-wr.article-block .home-news {
    opacity: 0;
    visibility: hidden;
    transform: translateX(220px);
    transition: 0.78s;
}

.home-about.articleShow .introduct-bann,
.home-business-wr.articleShow .home-news {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.business-item.article-block {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    transition: 0.78s;
}

.business-item.article-block:nth-child(2) {
    transition-delay: 0.25s;
}

.business-item.article-block:nth-child(3) {
    transition-delay: 0.5s;
}

.business-item.article-block:nth-child(4) {
    transition-delay: 0.75s;
}

.business-item.articleShow {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.shares {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.error {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.errortext {
    width: 90%;
    position: absolute;
    left: 50%;
    margin-left: -45%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.errortext strong {
    display: block;
    line-height: 1;
    text-align: center;
    color: #2550A0;
    font-size: 160px;
    font-family: "Helvetica Bold";
    margin-bottom: 13px;
}

.errortext p {
    text-align: center;
    color: #666666;
    font-size: 14px;
}

.errorbtn {
    margin-top: 72px;
    text-align: center;
}

.errorbtn a {
    display: inline-block;
    width: 160px;
    height: 64px;
    line-height: 64px;
    color: #fff;
    font-size: 14px;
    background: #2550A0;
    position: relative;
    z-index: 3;
}

.errorbtn a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(to right, #2550A0 0%, #CAE2EF 100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.56s;
}

.errorbtn a:first-child {
    margin-right: 26px;
}

.errorbtn a:hover:before {
    opacity: 1;
    visibility: visible;
}