@media (min-width: 1200px){
    .container {
        min-width: 1200px ;
        max-width: 100%;
    }
}
@media (max-width: 1200px){
    .second {
	display:none;
	}	
    .huodong {
    margin-top: 200px;
    display: none;
	}
    .header .nav{
	display:none
	}
}

/*index*/
.header {
    position: absolute;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 0;
}
.header img{
    width:100%;
}
.nav{
    float: right;
}
.nav .ml-md-auto{
    margin-left: 15px !important;
}
.nav .nav-item .nav-link {
    color: #fff;
}
.nav .nav-item .nav-link:hover{
    color: #e62022;
}
.slide{
    width: 100%;
}
.slide .carousel-caption{
    bottom: 320px;
}
.slide .carousel-caption h4{
    font-size: 60px;
    font-weight: 700;
    animation: slidemove-h4 2s infinite;
    -webkit-animation : slidemove-h4 2s infinite;
    animation-iteration-count:1;
    -webkit-animation-iteration-count:1;
    animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
}
@keyframes slidemove-h4 {
    0% {margin-left:-400px;}
    100% {margin-left: 0px;}
  }
.slide .carousel-caption p{
    margin-top: 20px;
    font-size: 20px;
    animation: slidemove-p 2s infinite;
    -webkit-animation: slidemove-p 2s infinite;
    animation-iteration-count:1;
    -webkit-animation-iteration-count:1;
    animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
}
@keyframes slidemove-p {
    0% {margin-left:400px;}
    100% {margin-left: 0px;}
  }

.second {
    height: 180px;
    position: absolute;
    z-index: 100;
    left: 30px;
    top: -290px;
    width: 100%;
    padding: 20px 0;
    background-color: #284f77;
    color:#fff;
    animation: second 2s infinite;
    -webkit-animation: second 2s infinite;
    animation-iteration-count:1;
    -webkit-animation-iteration-count:1;
    animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
}
@keyframes second {
    0% {margin-top:400px;}
    100% {margin-top: 0px;}
  }

.second .content {
    padding:  0 !important;
}
.second .content h3,.blockquote{
    margin: 0 auto !important;
    width: fit-content;
    padding: 0;
    font-size: 1.1rem;
    border-left:unset;
}
.second .content h3 span{
    font-size: 58px;
    margin-right: 5px;
}
.second .content h3{
    font-size: 18px;
}
.second .content p{
    margin-top: 20px;
}
.huodong{
    margin-top:200px;
}
.huodong h3 {
    font-size: 33px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}
.thrid {
    margin-top: 50px;
}
.thrid .service{
    animation: bounceInLeft 2s infinite;
    -webkit-animation: bounceInLeft 2s infinite;
    animation-iteration-count:1;
    -webkit-animation-iteration-count:1;
    animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
}
@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0);
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0);
        transform: translate3d(-25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0);
        transform: translate3d(-5px,0,0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}
.thrid h3{
    font-size: 33px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}
.thrid .box{
    padding:unset;
    border: 1px solid #f4f4f4;
    margin: 0 1.66% ;
}
.thrid .box:hover{
    box-shadow: 0 0 26px #cacaca;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    border-color: #d6d6d6;
    transition: all 0.5s;
}
.thrid .image{
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    font-size: 0;
    display: block;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
}
.thrid .image:hover{
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.thrid .box .more{
    margin: 0;
}
.thrid .box h4{
    margin: 0 auto;
    font-size: 22px;
    font-weight:500;
}
.thrid .box p{
    margin: 10px 25px;
    color: #868686;
    text-align: justify;
    font-size: 14px;
    line-height: 1.5;
}
.thrid .box span{
    display: block;
    line-height: 54px;
    background-color: #f9f9f9;
    color: #868686;
    border-top: 1px solid #f4f4f4;
    font-size: 16px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}
.thrid .box span:hover{
    background-color: #284f77;
    color: #fff;
}

.forth {
    background-image: url(/images/indexlogobg.jpg);
    padding: 80px 0;
    color: #fff;
    margin-top: 80px;
}
.forth .forthimage{
    animation: bounceInLeft 4s infinite;
    -webkit-animation: bounceInLeft 4s infinite;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.forth .forthinfo{
    animation: bounceInRight 4s infinite;
    -webkit-animation: bounceInRight 4s infinite;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.forth h3{
    margin: 20px 0;
    font-weight: 800;
    font-size: xx-large;
}
.forth h5{
    margin: 20px 0;
    font-weight: 800;
    font-size: larger;
}
.forth p{
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}
.forth .btn-primary{
    display: inline-block;
    background-color: #fff;
    color: black;
    width: 236px;
    line-height: 32px;
    padding-right: 40px;
    text-align: center;
    font-size: 18px;
    margin: 30px 30px 0 0;
    border-radius: 40px;
}
.forth .bi-person-add,.bi-person-check{
    position: absolute;
    margin-top: 7px;
    margin-left: 10px;
}
.fifth{
    margin-top: 80px;
}
.fifth .boxs{
    animation: slideInUp 2s infinite;
    -webkit-animation: slideInUp 2s infinite;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.fifth .title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 33px;
}
.fifth .title-introduce{
    font-size: 18px;
    margin: 5px auto 20px auto;
    color: #666;
    display: table;
}
.fifth .box:nth-child(odd){
    background: url('/images/product-bg-red.jpg') no-repeat center/cover;
    display: block;
    color: #fff;
    text-align: center;
    padding: 30px;
}
.fifth .box:nth-child(even){
    display: block;
    color: #000;
    text-align: center;
    padding: 30px;
}
.fifth .box:hover{
    animation-name: slideInUp;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.fifth .box p{
    margin: 15px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fifth .box .box-image{
    height: 74px;
    line-height: 74px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    font-size: 0;
}
.fifth .box img{
    width: 180px;
}
.sixth {
    margin-top: 80px;
    margin-bottom: 40px;
}
.sixth .sixth-title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 33px;
}
.sixth .sixth-title-introduce{
    font-size: 18px;
    margin: 5px auto 20px auto;
    color: #666;
    display: table;
}
.sixth .sixth-box{
    min-height: 180px;
    padding: 20px 0;
    animation: bounceInLeft 2s infinite;
    -webkit-animation: bounceInLeft 2s infinite;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.sixth .sixth-box:hover{
    box-shadow: 0 0 26px #cacaca;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    border-color: #d6d6d6;
    transition: all 0.5s;
    color: #284f77;
}
.sixth .sixth-box .sixth-box-image{
    text-align: center;
}
.sixth .sixth-box .sixth-box-image svg{
    z-index: -1;
    position: relative;
}
.sixth .sixth-box .sixth-box-info{
    text-align: center;
}
.sixth .sixth-box .sixth-box-info h4{
    margin: 15px 0 0;
    font-size: 18px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sixth .sixth-box .sixth-box-image:hover {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    animation-delay:2s;
    -webkit-transition: all 3s;
    transition: all 3s;
}
.sixth .sixth-box .sixth-box-info p{
    margin: 10px 0 0;
    font-size: 12px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #888;
}
.footer{
    background-color: #246ABF;
    columns: #fff;
}
.footer .nav {
    float: left;
    margin-top: 20px;
}
.footer .nav .nav-item .nav-link{
    font-size: 16px;
    color: #eae8e8 !important;
    margin-bottom: 20px;
    min-width: 80px;
}
.footer .nav .nav-item .nav-link:hover{
    color: #e62022 !important;
}
.footer .address{
    margin-top: 20px;
    font-size: 16px;
    color: #eae8e8 !important;
    padding: .5em 1em;
}
.footer .address .title{
    margin-bottom: 12px;
}
.footer .address address p{
    line-height: 24px;
    margin-bottom: 0.3rem;
    font-size: 14px;
}
.footer-split{
    height: 2px;
}
.footer-copyright{
    background-color: #246ABF;
    color: #fff !important;
    border-top: 1px solid #fff;
    padding: 20px 0;
    line-height: 1.42857143;
    font-size: 14px;
}
.footer-copyright a {
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.footer-copyright a:hover{
    color: #e62022 !important;
}
.gonggao {
    font-size: 12px;
    padding: 0 10px;
}

.gonggao_title {
    text-align: center;
    margin: 5px 0 5px 0;
    color: #C00;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
}

.gonggao_title a {
    color: #C00;
}

.gonggao_body {
    line-height: 20px;
    margin-bottom: 40px;
    margin-top: 15px;
    margin-left: 10px;
    margin-right: 10px;
}

.gonggao_sm {
    text-align: right;
    margin-bottom: 5px;
}

.gonggao_data {
    text-align: right;
}

.fixediv {
    position: fixed;
    z-index: 9999;
    height: 330px;
    width: 350px;
    bottom: 150px;
}

.fixediv-l {
    right: 0px;
    border: 1px solid #09F;
    background: #fff;
    font-size: 14px;
}

.fixediv-r {
    right: 0px;
}

.fixediv .btn {
    height: 20px;
    float: right;
    line-height: 20px;
    font-size: 18px;
    padding-right: 10px;
}
.fixediv .btn a{
    color:red;
}
/*product*/
.neirong{
    padding: 20px 0;
    background-color: #ededed;
    color: #777;
    line-height: 1.42857143;
    font-size: 14px;
}
.neirong a {
    color: #333;
    text-decoration: none;
}
.neirong a:hover {
    color: #284f77;
}
.neirong-more{
    margin:40px 0;
}
.tc_mon{ line-height:25px; padding-left:20px; font-size:14px; color:#fff; background-color:#333; overflow:hidden;}
.tc_pic{ width:30%; height:200px;}
.tc_text{ color:#777;padding: 0 15px;}
.tc_text span{ color:#000;}
td {
    border: 1px solid #ccc;
}
tr {
    border: 1px solid #ccc;
}
.ny{
    font-size: 16px;
    line-height: 35px;

}
.in-process li a:hover img{
    filter:url(#change);
}
