html {
    font-size: 100%;
    width: 100%;
    outline: none;
    min-height: 100%;
    position: relative;
}

body {
    background: #fff;
    font-family: arial, "Microsoft Yahei", "寰蒋闆呴粦", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #373737;
    text-align: left;
    margin: 0 auto;
    width: 100%;
    outline: none;
    min-width: 1300px;
}

body,
div,
p,
input,
a,
span,
img,
ul,
li,
textarea,
select,
button {
    outline: none;
}

a {
    color: #373737;
    text-decoration: none;
}

body,
div,
p,
span,
ul,
li,
a,
input,
textarea,
form {
    box-sizing: border-box;
}

.clearfix::after {
    display: block;
    content: '';
    clear: both;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

img {
    border: none;
    max-width: 100%;
}

p {
    margin: 0;
}

.boxShadow {
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
}


/* gShow */

.gShow {
    opacity: 0;
}

@keyframes mymove {
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes mymove
/* Safari and Chrome */

    {
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fontFadeIn {
    animation: 3s ease 0s 1 normal none running fontMove;
    -webkit-animation: 3s ease 0s 1 normal none running fontMove;
}

@keyframes fontMove {
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fontMove
/* Safari and Chrome */

    {
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


/* scaleImg */

.scaleImg {
    overflow: hidden;
    display: block;
}

.scaleImg img {
    transition-duration: .6s;
    -webkit-transition-duration: .6s;
    display: block;
    width: 100%;
}

.scaleImg:hover img {
    transform: scale(1.1);
    /* filter: grayscale(0); */
}


/* banner */

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    animation: 10s infinite alternate bannerMove;
    -webkit-animation: 10s infinite alternate bannerMove;
    display: block;
    width: 100%;
}

@keyframes bannerMove {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.1, 1.1);
    }
}

@-webkit-keyframes bannerMove
/*Safari and Chrome*/

    {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.1, 1.1);
    }
}


/* content */
.content {
    width: 1200px;
    margin: 0 auto;
}
/* header */
header{
    z-index: 99;
    height: 130px;
}
header .logo{
    line-height: 80px;
}
header .logo img{
    vertical-align: middle;
}
header .txt{
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.4);
    line-height: 20px;
    margin-top: 20px;
}
header form{
    position: relative;
    width: 400px;
    height: 44px;
    background: rgba(238, 238, 238, 0);
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    margin-top: 18px;
    padding: 10px 50px 10px 100px;
}
header form label{
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -10px;
    color: #666666;
    line-height: 20px;
    border-right: 1px solid #CCCCCC;
    padding-right: 15px;
}
header form button{
    width: 50px;
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    border: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
header form button img{
    vertical-align: middle;
}
header form input{
    width: 100%;
    height: 100%;
    border: 0;
}
header .bottom {
    background-color: rgba(0,0,0,0.5);
    /*opacity: 0.5;*/
}
header .nav{
    line-height: 50px;
    display: flex;
    justify-content: space-between;
}
header .nav>li>a{
    color: #fff;
    font-size: 16px;
    padding: 0 32px;
    display: block;
    transition: .5s;
    -webkit-transition: .5s;
}
header .nav>li.on>a,
header .nav>li:hover>a {
    background-color: #AE6DAB;
    color: #fff;
}
header.bg .bottom{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
/* home */
.home_1 .swiper-slide img{
    width: 100%;
    display: block;
}
.home_2{
    position: relative;
    background-color: #172A88;
    z-index: 1;
}
.home_2::before{
    content: "";
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    height: 100%;
    background-color: #F3F3F4;
    z-index: -1;
}
.home_21 {
    background-color: #172A88;
    width: 890px;
    height: 180px;
    display: flex;
    align-items: center;
    color: #fff;
}
.home_21 .fra {
    display: flex;
    align-items: center;
    margin-right: 60px;
}
.home_21 .fra .icon{
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    border: 1px solid #FFFFFF;
}
.home_21 .fra .txt{
    font-size: 18px;
    line-height: 32px;
}
.home_21 .fra .txt p:first-child{
    font-size: 20px;
}
.home_22{
    width: calc(100% - 930px);
    padding-top: 26px;
}

.home_22 .txt {
    font-size: 20px;
    line-height: 35px;
    color: #172A88;
    margin-bottom: 16px;
}

.home_22 .txt p:first-child {
    font-size: 28px;
}
.home_22 .tel{
    position: relative;
    padding: 0 68px 0 16px;
    width: 240px;
    line-height: 40px;
    background-color: #F8B62D;
    color: #fff;
    font-size: 24px;
    border-radius: 20px;
}
.home_22 .tel .icon{
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -14px;
}
.home_3{
    padding: 70px 0;
}
.home_31{
    width: 550px;
}
.home_31 .name {
    font-size: 30px;
    color: #172A88;
    font-weight: bold;
    margin-bottom: 30px;
}
.home_31 .txt{
    line-height: 30px;
    margin-bottom: 24px;
}
.home_31 .tit{
    position: relative;
    padding-left: 20px;
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 14px;
    color: #172A88;
}
.home_31 .tit::before{
    content: "";
    position: absolute;
    background-color: #172A88;
    top: 50%;
    left: 0;
    margin-top: -5px;
    width: 10px;
    height: 10px;
}
.home_31 .fra{
    margin-right: 38px;
    text-align: center;
    line-height: 14px;
    color: #666666;
}
.home_31 .fra .icon{
    width: 70px;
    height: 70px;
    border: 1px solid #D8D6D6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.moreBtn{
    width: 148px;
    height: 46px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid #D2D2D2;
    transition: .5s;
    -webkit-transition: .5s;
    position: relative;
}
.moreBtn::before{
    position: absolute;
    content: "";
    left: 0;
    width: 0;
    transition: .5s;
    -webkit-transition: .5s;
    background-color: #F8B62D;
    bottom: -3px;
    height: 3px;
}
.moreBtn img:first-child{
    display: none;
}
.moreBtn:hover{
    background-color: #172A88;
}
.moreBtn:hover::before{
    width: 100%;
}
.moreBtn:hover img:first-child{
    display: block;
}
.moreBtn:hover img:last-child{
    display: none;
}
.home_31 .moreBtn {
    margin-top: 35px;
}
.home_32{
    width: 560px;
}
.home_4{
    margin-bottom: 70px;
}
.home_41{
    margin-bottom: 30px;
}
.homeTitle p:first-child{
    font-size: 40px;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}
.homeTitle p:last-child{
    line-height: 24px;
    font-size: 24px;
}
.home_41 .list {
    margin-top: 52px;
}
.home_41 .list span {
    float: left;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    line-height: 16px;
    margin-left: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_41 .list span.on,
.home_41 .list span:hover {
    color: #172A88;
    border-bottom-color: #172A88;
}
.home_42>div{
    display: none;
}
.home_42>div.show{
    display: block;
}
.productList .fra{
    width: calc(33.333% - 34px);
    position: relative;
    margin-right: 51px;
    padding: 30px 48px 18px 48px;
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.14);
    margin-bottom: 40px;
}
.productList .fra .mImg{
    width: 100%;
    height: 270px;
    line-height: 270px;
    background-color: #F6F7FC;
}
.productList .fra .mImg img{
    max-width: 100%;
    max-height: 270px;
    display: block;
    object-fit: cover;
}
.productList .fra .tit{
    font-size: 16px;
    text-align: center;
    line-height: 16px;
    margin: 16px 0;
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .5s;
    -webkit-transition: .5s;
}
.productList .fra .btn{
    width: 140px;
    height: 40px;
    border: 1px solid #B6B6B6;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    -webkit-transition: .5s;
}
.productList .fra .btn img:last-child{
    display: none;
}
.productList .fra:nth-of-type(3n){
    margin-right: 0;
}
.productList .fra:hover .tit{
    color: #172A88;
}
.productList .fra:hover .btn{
    background-color: #172A88;
    border-color: #172A88;
}

.productList .fra:hover .btn img:first-child{
    display: none;
}

.productList .fra:hover .btn img:last-child{
    display: block;
}
.productList .moreBtn{
    margin: 0 auto;
}
.home_5{
    height: 900px;
    background: url(../images/img_04.jpg) no-repeat center;
    background-size: auto 100%;
}
.home_5 .content{
    padding-top: 80px;
}
.home_5 .homeTitle{
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
}
.home_5 .center{
    position: relative;
    margin-bottom: 55px;
}
.home_5 .center .mImg{
    display: block;
    margin: 0 auto;
}
.home_5 .mode{
    color: #fff;
    position: absolute;
    left: 0;
    top: 40px;
    width: 320px;
}
.home_5 .mode .tit{
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 26px;
}
.home_5 .mode .tit span{
    color: #F8C62D;
}
.home_5 .mode .line{
    position: relative;
    width: 230px;
    margin-bottom: 18px;
    height: 1px;
    background-color: #fff;
}
.home_5 .mode .line::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
}
.home_5 .mode .line::before{
    content: "";
    position: absolute;
    height: 1px;
    width: 70px;
    background: #FFFFFF;
    right: -63px;
    top: 20px;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
}
.home_5 .mode .txt{
    font-size: 16px;
    line-height: 30px;
}
.home_5 .mode:nth-of-type(2n){
    text-align: right;
}
.home_5 .mode:nth-of-type(2n) .line {
    margin-left: auto;
}
.home_5 .mode:nth-of-type(2n) .line::after {
    left: auto;
    right: 0;
}
.home_5 .mode:nth-of-type(2n) .line::before {
    left: -63px;
    transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
}

.home_5 .mode2 {
    right: 0;
    left: auto;
    top: 0;
}
.home_5 .mode3{
    top: auto;
    bottom: 30px;
}
.home_5 .mode4 {
    right: 0;
    left: auto;
    top: auto;
    bottom: 30px;
}
.home_5 .tel{
    height: 54px;
    line-height: 48px;
    width: 400px;
    border: 3px solid #F8B62D;
    padding-left: 9px;
    font-size: 28px;
    color: #fff;
    position: relative;
    margin: 0 auto;
}
.home_5 .tel img{
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -3px;
}
.home_5 .tel a{
    position: absolute;
    top: 0;
    width: 148px;
    text-align: center;
    font-size: 22px;
    background-color: #F8B62D;
    height: 100%;
    color: #fff;
    right: 0;
}
.home_6{
    margin: 70px auto;
}
.home_6 .homeTitle{
    margin-bottom: 40px;
}
.home_61 .swiper-slide{
    background-color: #F4F4F4;
}
.home_61 .swiper-slide a{
    display: block;
    padding: 15px 15px 20px 15px;
}
.home_61 .swiper-slide .tit{
    font-size: 16px;
    text-align: center;
    line-height: 16px;
    margin: 16px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_61 .swiper-slide .btn {
    width: 140px;
    height: 40px;
    border: 1px solid #B6B6B6;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    -webkit-transition: .5s;
}

.home_61 .swiper-slide .btn img:last-child {
    display: none;
}
.home_61 .swiper-slide:hover .tit {
    color: #172A88;
}

.home_61 .swiper-slide:hover .btn {
    background-color: #172A88;
}

.home_61 .swiper-slide:hover .btn img:first-child {
    display: none;
}

.home_61 .swiper-slide:hover .btn img:last-child {
    display: block;
}
.home_6 .swiper{
    position: relative;
}
.home_61 {
    position: initial;
}
.home_61 .swiper-button-btn{
    top: -70px;
    margin-top: 0;
    width: 84px;
    height: 30px;
    border: 1px solid #A0A0A0;
    background-size: 23px 12px;
    transition: .5s;
    -webkit-transition: .5s;
}

.home_61 .swiper-button-prev {
    background-image: url(../images/icon_17.png);
    left: auto;
    right: 100px;
}

.home_61 .swiper-button-next {
    background-image: url(../images/icon_10.png);
    right: 0;
}
.home_61 .swiper-button-btn:hover{
    border-color: #9B2A26;
    background-color: #9B2A26;
}
.home_61 .swiper-button-prev:hover {
    background-image: url(../images/icon_17_1.png);
}

.home_61 .swiper-button-next:hover {
    background-image: url(../images/icon_10_1.png);
}
.home_7{
    padding: 70px 0;
    background-color: #F8F8F8;
}
.home_71{
    width: 529px;
}
.home_71 img{
    width: 100%;
    display: block;
}
.home_72{
    width: 590px;
    position: relative;
    padding-top: 94px;
    z-index: 1;
}
.home_72::before{
    content: "";
    position: absolute;
    top: 68px;
    left: -81px;
    width: 366px;
    height: 239px;
    background-image: url(../images/icon_14.png);
    z-index: -1;
}
.home_72 .homeTitle{
    text-align: right;
    margin-bottom: 70px;
}
.home_72 .txt{
    color: #5D5D5D;
    line-height: 30px;
}
.home_72 .moreBtn{
    margin-top: 44px;
    margin-left: auto;
}
.home_73{
    position: relative;
    background-color: #fff;
    padding: 30px 75px;
    margin-top: 30px;
}
.home_73 .swiper-container{
    position: initial;
}
.home_73 .swiper-slide img{
    width: 310px;
    height: 220px;
    object-fit: cover;
}
.home_73 .swiper-button-btn{
    width: 35px;
    height: 35px;
    background-color: #CCCCCC;
    background-size: 11px 19px;
    margin-top: -17.5px;
    transition: .5s;
    -webkit-transition: .5s;
}

.home_73 .swiper-button-prev {
    background-image: url(../images/icon_13.png);
    left: 0;
}

.home_73 .swiper-button-next {
    background-image: url(../images/icon_13_1.png);
    right: 0;
}
.home_73 .swiper-button-btn:hover{
    background-color: #172A88;
}
.home_8{
    padding: 50px 0 330px 0;
    background-color: #e7d6b8;
}
.home_81{
    width: 410px;
}
.home_81 .homeTitle{
    margin:20px 0 150px 0;
}
.home_81 .fra{
    width: 380px;
    border: 8px solid #fff;
    height: 189px;
    position: relative;
}
.home_81 .fra img{
    width: 352px;
    height: 264px;
    object-fit: cover;
    display: block;
    position: absolute;
    right: -27px;
    top: -106px;
}
.home_82{
    width: calc(100% - 468px);
}
.home_82 .icon{
    width: 140px;
    margin-right: 8px;
    margin-bottom: 7px;
}
.home_82 .icon:nth-of-type(4n){
    margin-right: 0;
}

.home_82 .icon:nth-of-type(8n-3) {
    margin-left: 148px;
}
.home_82 .icon:first-child{
    margin-left: 0;
}
.home_9{
    position: relative;
    margin-top: -265px;
    z-index: 1;
}
.home_9::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #F8F8F8;
    width: 50%;
    bottom: 0;
    z-index: -1;
}
.home_9>.content>div {
    padding: 60px 60px 35px 0;
    background-color: #F8F8F8;
    width: calc(100% + 60px);
}
.home_9 .homeTitle{
    margin-top: 60px;
    margin-bottom: 50px;
}
.home_9 .moreBtn{
    background-color: #fff;
}
.home_9 .moreBtn:hover{
    background-color: #172A88;
}
.home_91{
    width: calc(100% - 290px)
}
.home_91 .swiper-slide a{
    display: block;
    padding: 50px 46px 40px 46px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_91 .tit{
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 52px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_91 .times{
    color: #8B8A8A;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 24px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_91 .txt{
    font-size: 12px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_91 .btn{
    color: #666666;
    font-size: 12px;
    line-height: 12px;
    font-weight: bold;
    padding-bottom: 15px;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_91 .btn::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 117px;
    height: 3px;
    background: #D2D2D2;
}
.home_91 .btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 31px;
    height: 3px;
    background: #091136;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_91 .swiper-slide:hover a{
    color: #fff;
    background-color: #172A88;
}
.home_91 .swiper-slide:hover .tit,
.home_91 .swiper-slide:hover .times,
.home_91 .swiper-slide:hover .txt,
.home_91 .swiper-slide:hover .btn{
    color: #fff;
}
.home_91 .swiper-slide:hover .btn::after{
    width: 100%;
    background-color: #fff;
}
.home_9>.content .home_92{
    padding: 34px 60px 24px 0;
    border-top: 1px dashed #DBDBDB;
}
.home_92 a{
    width: calc(33.333% - 32px);
    margin-right: 48px;
    line-height: 28px;
    float: left;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_92 a:nth-of-type(3n){
    margin-right: 0;
}
.home_92 a:hover{
    color: #FF8717;
}
.home_10{
    padding: 35px 0 35px 0;
    line-height: 18px;
}
.home_10 span{
    font-size: 18px;
    font-weight: bold;
    float: left;
}
.home_10 a {
    color: #999999;
    float: left;
    position: relative;
    padding: 0 30px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_10 a::before{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 12px;
    width: 1px;
    margin-top: -6px;
    background-color: #999999;
}
.home_10 a:last-child::before{
    display: none;
}
.home_10 a:hover{
    color: #333333;
}
/* footer */
footer{
    background-color: #172A88;
    padding: 70px 0;
}
.ft_1{
    width: 540px;
}
.ft_1 .logo img{
    display: block;
}
.ft_1 .txt{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 24px;
}
.ft_1 .tel{
    display: flex;
    align-items: center;
    color: #F8C62D;
    line-height: 28px;
}
.ft_1 .tel .icon{
    width: 50px;
    height: 50px;
    border: 2px solid #F8B62D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px
}
.ft_1 .tel .nums p:last-child{
    font-size: 24px;
}
.ft_2{
    max-width: 600px;
}
.ft_2 .hd{
    font-size: 30px;
    color: #FCEAA6;
    margin-bottom: 30px;
}
.ft_2 .info{
    color: #fff;
    line-height: 36px;
}
.ft_3{
    margin-top: 45px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    color: #CBCBCB;
    line-height: 14px;
}
.ft_3 a {
    color: #CBCBCB;
}
.ft_3 .link a{
    margin-left: 15px;
}
.ft_3 .mark a{
    margin-left: 15px;
}
/* pContent */
.pContent{
    padding: 30px 0 60px 0;
}
.pContent_1{
    width: 225px;
}
.pContent_1 .fra{
    margin-bottom: 30px;
}
.pContent_1 .fra .hd{
    line-height: 50px;
    background-color: #172A88;
    font-size: 20px;
    padding-left: 18px;
    color: #fff;
    font-weight: bold;
}
.pContent_1 .fra .list a{
    line-height: 44px;
    display: block;
    position: relative;
    border-bottom: 1px solid #DDDDDD;
    padding-left: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .5s;
    -webkit-transition: .5s;
}
.pContent_1 .fra .list a::before{
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: #172A88;
}
.pContent_1 .fra .list a:hover{
    color: #172A88;
}
.pContent_1 .fra .mode a{
    width: 110px;
    margin-right: 5px;
    margin-top: 10px;
    border: 1px dashed #DDDDDD;
    line-height: 34px;
    text-align: center;
    padding: 0 7px;
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .5s;
    -webkit-transition: .5s;
}
.pContent_1 .fra .mode a:nth-of-type(2n){
    margin-right: 0;
}
.pContent_1 .fra .mode a:hover{
    border-color: #172A88;
    color: #172A88;
}
.pContent_1 .fra .info {
    line-height: 36px;
    padding-top: 10px;
}
.pContent_1 .fra .info .tit{
    font-weight: bold;
}
.pContent_1 .fra .info .txt{
    color: #666666;
}
.pContent_1 .nav.list{
    font-size: 16px;
}
.pContent_1 .nav.list a::before{
    content: ">";
    height: 100%;
    width: auto;
    top: 0;
    margin-top: 0;
    background-color: transparent;
    transition: .5s;
    -webkit-transition: .5s;
}
.pContent_1 .nav.list a.on{
    color: #172A88;
}
.pContent_1 .nav.list a:hover::before,
.pContent_1 .nav.list a.on::before{
    color: #172A88;
}
.pContent_2{
    width: 900px;
}
.crumbs{
    line-height: 16px;
    padding-bottom: 26px;
    border-bottom: 1px solid #DDDDDD;
    font-size: 12px;
    color: #999999;
}
.crumbs img{
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 5px;
}
.crumbs a {
    color: #999999;
    display: inline-block;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}
.crumbs a::before{
    content: ">";
    position: absolute;
    right: -5px;
    top: 0;
    width: 10px;
    text-align: center;
}
.crumbs .link a{
    float: left;
    height: 48px;
    line-height: 48px;
    padding: 0 42px;
    font-size: 16px;
    border: 1px solid #CCCCCC;
    transition: .5s;
    -webkit-transition: .5s;
}
.crumbs .link a::before{
    display: none;
}
.crumbs .link a.on,
.crumbs .link a:hover{
    background-color: #172A88;
    border-color: #172A88;
    color: #fff;
}
.crumbs.on{
    padding: 20px 0;
    line-height: 48px;
}
/* product */
.product_1.productList{
    margin-top: 36px;
}
.product_1.productList .fra{
    margin-right: 36px;
    width: calc(33.333% - 24px);
    margin-bottom: 28px;
    padding: 30px 30px 20px 30px;
}
.product_1.productList .fra .mImg {
    height: 216px;
    line-height: 216px;
}
.product_1.productList .fra:nth-of-type(3n) {
    margin-right: 0;
}
.pages{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pages a{
    line-height: 14px;
    margin: 0 10px;
    transition: .5s;
    -webkit-transition: .5s;
}
.pages a:first-child{
    border: 6px solid;
    border-color: transparent #999999 transparent transparent;
}

.pages a:last-child {
    border: 6px solid;
    border-color: transparent transparent transparent #999999;
}
.pages a:hover,
.pages a.on{
    color: #172A88;
}
.pages a:hover:first-child{
    border-right-color: #172A88;
}

.pages a:hover:last-child {
    border-left-color: #172A88;
}
/* productDetail */
.productDetail_1{
    margin-top: 34px;
}
.productDetail_11{
    width: 400px;
    height: 400px;
    background-color: #F6F7FC;
    text-align: center;
    line-height: 400px;
}
.productDetail_11 img{
    vertical-align: middle;
    object-fit: cover;
}
.productDetail_12{
    width: calc(100% - 450px);
    padding-top: 12px;
}
.productDetail_12 .tit{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
.productDetail_12 .txt{
    line-height: 36px;
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}
.productDetail_12 .txt p{
    min-height: 36px;
    position: relative;
    padding-left: 90px;
}
.productDetail_12 .txt p span{
    position: absolute;
    left: 0;
    top: 0;
}
.productDetail_12 .btn{
    width: 160px;
    height: 46px;
    background: #172A88;
    text-align: center;
    line-height: 46px;
    color: #fff;
    font-size: 16px;
    display: block;
}
.productDetail_2{
    margin-top: 30px;
}
.productDetail_2 .hd{
    font-size: 18px;
    line-height: 18px;
    color: #999999;
    border-bottom: 1px solid #DDDDDD;
    font-weight: bold;
    display: flex;
    justify-content: center;
}
.productDetail_2 .hd span {
    padding-bottom: 20px;
    margin: 0 20px;
    cursor: pointer;
    width: 100px;
    text-align: center;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
}
.productDetail_2 .hd span::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 3px;
    background-color: #222222;
}
.productDetail_2 .hd span.on{
    color: #333333;
}
.productDetail_2 .hd span.on::before{
    width: 100%;
}
.productDetail_2 .center>div{
    display: none;
    padding-top: 24px;
    color: #666666;
    line-height: 30px;
}
.productDetail_2 .center>div.show{
    display: block;
}
.productDetail_2 .center>div .tit{
    color: #172A88;
    font-size: 16px;
}
.proPages{
    margin-top: 20px;
}
.proPages a{
    line-height: 36px;
    display: block;
    background-color: #F1F1F1;
    padding: 0 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.proPages a:hover{
    color: #333333;
}
.productDetail_3{
    margin-top: 50px;
}
.productDetail_3 .hd{
    font-size: 24px;
    line-height: 24px;
    text-align: center;
}
/* news */
.news_1{
    margin-top: 30px;
}
.news_1 .rows{
    margin-bottom: 14px;
    background-color: #F0F0F0;
    display: block;
}
.news_1 .rows .times{
    height: 160px;
    background-color: #CCCCCC;
    width: 150px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    padding-top: 55px;
    transition: .5s;
    -webkit-transition: .5s;
}
.news_1 .rows .times p:first-child{
    font-size: 20px;
    margin-bottom: 13px;
}
.news_1 .rows .info{
    width: calc(100% - 150px);
    padding: 24px 30px 0 30px;
}
.news_1 .rows .info .tit{
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_1 .rows .info .txt{
    line-height: 24px;
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}
.news_1 .rows .info .btn{
    margin-left: auto;
    width: 95px;
    height: 30px;
    border: 1px solid #AAAAAA;
    text-align: center;
    line-height: 30px;
    color: #666666;
    transition: .5s;
    -webkit-transition: .5s;
}
.news_1 .rows:hover .times{
    background-color: #999999;
}
.news_1 .rows:hover .info .btn{
    border-color: #172A88;
    background-color: #172A88;
    color: #fff;
}
/* newsDetail */
.newsDetail_1{
    padding-top: 30px;
}
.newsDetail_1 .tit{
    color: #1E50AE;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
}
.newsDetail_1 .des span{
    float: left;
    color: #999999;
    line-height: 14px;
    margin-right: 30px;
    margin-bottom: 40px;
}
.newsDetail_1 .txt{
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}
.newsDetail_1 .txt p {
    margin-bottom: 20px;
}
.newsDetail_1 .txt img{
    max-width: 100%;
    margin-bottom: 20px;
}
/* contact */
.contact_1{
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #DDDDDD;
}
.contact_11{
    padding-top: 15px;
    width: 440px;
}
.contact_11 .tit{
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 12px;
}
.contact_11 .txt{
    position: relative;
    font-size: 16px;
    color: #666666;
    line-height: 48px;
    padding-left: 122px;
    min-height: 48px;
}
.contact_11 .icon{
    width: 30px;
    height: 30px;
    background: #F8B62D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 9px;
}
.contact_11 span{
    position: absolute;
    left: 42px;
    top: 0;
}
.contact_12{
    width: calc(100% - 500px);
    height: 246px;
}

.contact_2 .tit{
        line-height: 18px;
        font-size: 18px;
        /*font-weight: bold;*/
        margin-bottom: 18px;
        text-align: center;
        font-size: 14px;
        color: #999999;
        margin-top: 15px;
}
.contact_2 .titx{
        font-size: 24px;
        font-family: Microsoft YaHei;
        font-weight: 400;
        color: #AE6DAB;
        line-height: 30px;
        text-align: center;
        margin-top: 59px;
}
.contact_2 .fra{
    position: relative;
    width: calc(33.333% - 10px);
    margin-right: 15px;
    margin-bottom: 16px;
    height: 48px;
    line-height: 48px;
    padding-left: 86px;
    border-bottom:#CCCCCC solid 1px;
    margin-top: 41px;
}
.contact_2 .fra:nth-of-type(3n){
    margin-right: 0;
}
.contact_2 .fra label{
    position: absolute;
    top: 0;
    left: 16px;
    color: #999999;
}
.contact_2 .fra label span{
    color: #FF0000;
}
.contact_2 .fra input{
    width: 100%;
    background-color: transparent;
    border: 0;
    padding: 0 10px;
}
.contact_2 textarea{
    width: 100%;
    height: 52px;
    border: 0;
    font-family: "";
    border-bottom: 1px solid #cccc;
    padding: 16px;
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
    margin-top: 55px;
}
.contact_2 button{
        width: 188px;
        height: 50px;
        font-size: 16px;
        border: 0;
        color: #fff;
        background: #D499BF;
        border-radius: 25px;
        cursor: pointer;
        margin-left: 503px;
        margin-top: 30px;
}
/* about */
.about{
    padding-bottom: 60px;
}
.about_1{
    margin-top: 40px;
    position: relative;
    z-index: 1;
}
.about_11 {
    width: 529px;
    display: block;
}
.about_12{
    width: 590px;
    padding-top: 90px;
    position: relative;
    z-index: 1;
}
.about_12 .tit{
    font-size: 80px;
    color: #6B6B6B;
    line-height: 60px;
    margin-bottom: 14px;
    text-align: right;
}
.about_12 .tits{
    font-size: 24px;
    line-height:24px;
    text-align: right;
    margin-bottom: 90px;
}
.about_12 .txt{
    line-height: 30px;
    color: #5D5D5D;
}
.about_1 .icon {
    position: absolute;
    bottom: 20px;
    z-index: -1;
    right: 0;
    width: calc(50% - 200px);
    height: 239px;
    background: url(../images/icon_14.png) center;
}
.about_2{
    margin-top: 60px;
    height: 494px;
    background: url(../images/img_11.jpg) no-repeat;
    background-size: 100% 100%;
    padding: 60px 80px;
}
.about_21{
    width: 360px;
    padding-top: 50px;
}
.about_21>div{
    width: 50%;
    color: #fff;
    line-height: 44px;
    font-size: 16px;
    text-align: center;
    float: left;
    margin-bottom: 72px;
}
.about_21>div p:first-child{
    font-size: 60px;
    margin-bottom: 12px;
}
.about_22{
    width: 504px;
}
.about_22 img{
    float: left;
    height: 120px;
    width: 120px;
    object-fit: cover;
    margin-right: 8px;
    margin-bottom: 8px;
}
.about_22 img:nth-of-type(4n){
    margin-right: 0;
}
.about .productDetail_3{
    margin-top: 60px;
}
.about .productDetail_3 .hd{
    margin-bottom: 30px;
}
.about .productList .fra{
    margin-bottom: 30px;
}
.about .moreBtn{
    margin: 0 auto;
}


/* showdiv */
.moveLeft {
    transform: translateX(-160px);
    -webkit-transform: translateX(-160px);
    opacity: 0;
    transition: 1.6s;
    -webkit-transition: 1.6s;
}

.moveRight {
    transform: translateX(160px);
    -webkit-transform: translateX(160px);
    opacity: 0;
    transition: 1.6s;
    -webkit-transition: 1.6s;
}

.moveBottom {
    transform: translateY(160px);
    -webkit-transform: translateY(160px);
    opacity: 0;
    transition: 1.6s;
    -webkit-transition: 1.6s;
}

.moveTop {
    transform: translateY(-160px);
    -webkit-transform: translateY(-160px);
    opacity: 0;
    transition: 1.6s;
    -webkit-transition: 1.6s;
}

.showdiv.moveLeft,
.showdiv.moveRight,
.showdiv.moveBottom,
.showdiv.moveTop {
    transform: none;
    -webkit-transform: none;
    opacity: 1;
}