@import url(./layout.css);

/* ==========================================================================
   common part
========================================================================== */
.pic {
    overflow: hidden;
    position: relative;
    height: auto;
}

.bgimg {
    width: 100%;
}

.upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.pic:hover .upimg {
    transform: scale(1.05);
}

/* 没有放大效果 */
.upimg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 居中对齐 */
.upimg3 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
}

.pic:hover .upimg3 {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* 缩小放大 */
.upimg4 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%) scale(0.93);
    transform: translate(-50%, -50%) scale(0.93);
    transition: all .5s;
}

.pic:hover .upimg4 {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.container img {
    max-width: 100%;
}




/* ==========================================================================
   part01
========================================================================== */

.part01 {background: url(../images/homebg.jpeg) no-repeat;    background-size: cover;}



.part01 .about1 {    padding: 1.2rem 0 0 0; }

.part01 .num_list { margin-left: -0.4rem; width: 100%;  }
  
.part01 .num_list li { width: calc(25% - .4rem); margin: 0 0 .4rem .4rem;  }
  
.part01 .num_box {
    box-sizing: border-box;    height: 100%;    border-radius: .08rem;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
    background: linear-gradient(75.00deg, rgb(41,102, 203), rgb(17,47, 116) 100%);
    padding: .5rem;    flex-direction: column;    transition: all .4s;
  }
  
  .part01 .num_box:hover {    }  

  
  .part01 .number {    color: rgb(255, 255, 255);    font-size: .70rem;    font-weight: 500;    align-items: baseline;  }
  
  .part01 .num_box:hover .number {    color: #fff;  }
  .part01 .number .counter{font-size: .70rem;    font-weight: 500; }
  
  .part01 .num_name {    color: rgb(255, 255, 255); font-size: .16rem; font-weight: 300;  }
  
  .part01  .num_box:hover .num_name {    color: #fff;  }
  
  .part01 .num_unit { color: rgb(255, 255, 255); font-size: .16rem; font-weight: 300;  }
  
  .part01 .num_box:hover .num_unit { color: #fff;  }

  .home_head { padding: .9rem 0; width: 100%;}

.home_title {line-height: 1; color:rgb(0, 58, 121); text-transform:Uppercase; text-shadow: 0 1px 0 rgb(0 0 0 / 25%); 
    text-shadow:1px 1px 2px rgb(0 0 0 / 25%), 0 0 1em rgb(0 0 0 / 25%), 0 0 0.2em rgb(0 0 0 / 25%);
    font-size: .68rem; font-weight:500;}



.homeRd_more {margin:.24rem 0 0 0;}

.homeRd_link {
    position: relative;
    color: rgb(4, 36,94);
    font-size: .20rem;
    width: 1.25rem;
}

.homeRd_link .icon {
    margin-left: .2rem;
    transition: all .3s;
}

.homeRd_link:hover{color: rgb(4, 36,94);}

.homeRd_link:hover .icon {
    margin-left: .3rem;
}

.homeRd_link::before {
    content: "";
    position: absolute;
    left: -1.24rem;
    top: 50%;
    transform: translateX(-50%);
    width: 1.74rem;
    height: .01rem;
    background: rgb(4, 36,94);
    transition: all .3s;
}

.homeRd_link:hover::before {
    width:50%;
}




.home_about {
    padding:0 0 1rem 0; 
}


.homeAbout_left,.homeAbout_right{flex-direction: column;
    border-radius: 8px;height: 6rem; overflow: hidden;
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.05);
    background: rgb(255, 255, 255);
    transition: all .3s;}
.homeAbout_left {
    width: calc(58% - .4rem); padding: .1rem; 
}

.homeAbout_right {
    width: calc(42% - .2rem);padding: .1rem; 
}

.homeAbout_table {
    padding: .25rem .15rem .25rem .05rem;
    /*animation: mymove 4s linear infinite;*/
}

.homeAbout_table th,.homeAbout_table td{padding:.25rem .15rem; text-align: center;border-bottom: 1px solid #DEDEDE; height: .6rem;font-size: .18rem;}
.homeAbout_table td .tabletit span{display: inline-block; text-align: center;line-height: .2rem;width: 1.4rem;padding:.1rem;font-size: .14rem; }
.homeAbout_table td .tabletit{border:1px solid #DEDEDE;height: .6rem;width: 1.4rem;border-radius:36px;display:flex; align-items:center; }
.homeAbout_table .bor_0{border:0;}
.homeAbout_table th .icon{width: .16rem;}
.homeAbout_table th{font-size: .14rem;}
.homeAbout_table td .icon {width: .18rem; height: .24rem; display: inline-block;}
.homeAbout_table td .up{background: url(../images/icons/icon-up.png) no-repeat center;}
.homeAbout_table td .down{background: url(../images/icons/icon-down.png) no-repeat center;  }
@keyframes mymove {
    0% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(0px, -0.1rem);
    }

    50% {
        transform: translate(0px, 0);
    }

    75% {
        transform: translate(0px, .1rem);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.homeAbout_intro {
    color: rgb(255, 255, 255);
    font-size: .18rem;
    font-weight: 400;
    line-height: 175%;
    margin-bottom: .55rem;
}

.homeAbout_btn {
    width: 2.12rem;
    height: .66rem;
    border-radius: 44px;
    background: rgb(255, 255, 255);
    color: rgb(243, 149, 0);
    font-size: .2rem;
    font-weight: 400;
    transition: all .3s;
}

.homeAbout_btn img {
    margin-right: .2rem;
}

.homeAbout_btn:hover {
    box-shadow: 0px 0px 8px #fff;
}





/* ==========================================================================
   part02
========================================================================== */
.part02 {
    background: url(../images/homebg02.jpeg) no-repeat;
    background-size: cover;
    padding: 0.8rem 0 1.15rem; position: relative; height: 10.8rem;
}

.part02 .home_head {
    position: relative;
}

.part02 .home_title{color: #fff;}
.part02 .homeRd_link{color: rgb(255, 255, 255);}
.part02 .wrapper{position: relative;}

.part02 .homeRd_link::before{background: rgb(255, 255, 255);}
.part02 .homeRd_link .homeRd_link .icon{color: rgb(255, 255, 255);}

.Description{font-size: .24rem; font-weight:300;color: rgb(255, 255, 255); width: 8.5rem; }

.homePro_list {
    margin: 0 0 0 -0.5rem; position:absolute ; right: 0;  top: 2.45rem; width:5.5rem;
}

.homePro_list li {
    width: 100%;
    margin-bottom: .5rem;
}

.homePro_list li:nth-child(2){color:#f00; margin-left:-6.5rem; margin-top: -3.4rem;}
.homePro_list li:nth-child(3){margin-top: -1.2rem;}

.homePro_box {
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.05);
    background: rgb(255, 255, 255); background: url(../images/homeprobg.jpg) no-repeat bottom center;
    background-size: cover; height:4.65rem;
    padding: .75rem ;
    transition: all .3s;
}

.homePro_name {
    margin-top: .45rem;
    color: rgb(51, 51, 51);
    font-size: .36rem;
    font-weight: 300;
}

.homePro_box:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.homePro_img {
    width: 1.3rem;
    transition: all .8s;
}

.homePro_box:hover .homePro_img {
    transform: rotateY(360deg);
}

.homePro_ms{color: #555;font-size: .16rem;margin-top: 10px;}

@media only screen and (max-width: 1600px) {
    .homePro_list{right: .2rem;}
}

@media only screen and (max-width: 1440px) {
    .home_title{font-size: .48rem;}
}

@media only screen and (max-width: 1280px) {
    .homePro_ms{font-size: .2rem;}
}

@media only screen and (max-width: 768px) {
    .homePro_list{width:100%; position: relative; top: 0; right: auto;margin-left: -.4rem;margin-top:20px; }
    .homePro_list li:nth-child(2) {
        margin-left:.4rem;
        margin-top:0;
    }
    .homePro_list li:nth-child(3){ margin-top:0;}
    .homePro_list li{width: calc(33.33% - .4rem); float: left; margin-left: .4rem;}
    .homePro_ms{display: none;}
    .part02{height: auto;}
    .part02{    padding: 0.4rem 0 .4rem;}
    .homePro_box{padding:.4rem; height: auto; }
    .homePro_name{font-size: .24rem;}
    .part03{padding:0;}
}

@media only screen and (max-width: 500px) {

}



/* ==========================================================================
   part03
========================================================================== */
.part03 { padding: .6rem 0; background: url(../images/home03.png) no-repeat; background-size: cover;}

.home_contact .home_head{width:5rem;}
.home_contact .homeRd_link{margin-left:2.24rem;}
.home_contact .email{margin-top: .74rem;margin-left: .2rem;    transition: all .3s;}
.home_contact .email:hover{margin-left: .5rem;}


/* ==========================================================================
   part04
========================================================================== */
.part04 { padding: .6rem 0 1.2rem 0; background: url(../images/homebg03.jpeg) no-repeat; background-size: cover;}

.part04 .home_title{color: #fff;}
.part04 .homeRd_link{color: rgb(255, 255, 255);}
.part04 .homeRd_link::before{background: rgb(255, 255, 255);}

.homenews_list {
    margin: 0 0 0 -0.5rem;
}

.homenews_list li {
    width: calc(33.33% - .5rem);
    margin: 0 0 0 .5rem;
}

.homenews_box {
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.05);
    background: rgb(255, 255, 255);
    padding: .5rem .4rem;
    transition: all .3s; background: linear-gradient(180.00deg, rgb(255,255, 255), rgb(218,231, 255) 100%);
}

.homenews_date {
    color: rgb(51, 51, 51);
    font-size: .16rem;
    font-weight: 500;
}
.homenews_name {
    margin: .25rem 0;
    color: rgb(51, 51, 51);
    font-size: .18rem;
    font-weight: 400;
}

.homenews_box:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.homenews_box .more a {
    position: relative;
    color: rgb(4, 36,94);
    font-size: .16rem;
    width: 1.25rem; transition: all .3s;
}

.homenews_box .more .icon {
    margin-left: .2rem;
    transition: all .3s;
}

.homenews_box .more:hover a{ margin-left: .1rem;}

.homenews_box .more:hover .icon {
    margin-left: .3rem;
}










/* ==========================================================================
   footer
   ========================================================================== */

   footer {color: #888;}
footer a {
    color: #888; 
}

footer a:hover {
    text-decoration: underline;
    color: #555555;
}


.foot_lr {
    padding: .4rem 0;
    justify-content: space-between;
}

.foot_left {
    width: 10rem;
}
.foot_box{margin-top: .1rem;}
.foot_box a,.foot_box span{margin-right: .1rem;}


.foot_right {
    width: 1.25rem;
}

.space {
    display: inline-block;
    width: .2rem;
}


@media only screen and (max-width: 1280px) {
    .homenews_box .more a{font-size: .2rem;}
    .homenews_name{font-size: .2rem;}
}

@media only screen and (max-width: 980px) {
    .home_contact .email img{width: 1.8rem;}
}

@media only screen and (max-width: 768px) {
    .part01 .number .counter{    font-size: .54rem;}
    .part01 .about1 { padding: .6rem 0 0 0;}
    .home_head { padding: .6rem 0;}
    .footer_main {
        display: none;
    }

    .space {
        width: 20px;
    }

    .foothd {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {

    .space {
        width: 5px;
    }

    .foothd .wrapper {
        padding: 0;
    }
}




@media only screen and (max-width: 1536px) {
    .Description{width:6rem;}
}

@media only screen and (max-width: 1400px) {

}

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width:920px) {

}

@media only screen and (max-width: 768px) {
    .homeAbout_left,.homeAbout_right{ width: calc(100% - .4rem); padding: .2rem; float: none;height: auto; }
    .homeAbout_right{margin-top: .4rem;}
    .Description{width: 100%;}
}


@media only screen and (max-width:500px) {
    .homenews_list li { width:100%; float: none; margin: 0; margin-bottom: .4rem;}
    .homenews_list{margin:0;}
    .part04{padding: .4rem 0;}

    .part01 .num_list li { width: calc(50% - .4rem); margin: 0 0 .4rem .4rem;    }
    .homePro_list{margin:0;}
    .homePro_list li { width:100%; float: none; margin-left:0;text-align: center;    }
    .homePro_img{margin: 0 auto;}
    .homePro_list li:nth-child(2) { margin-left:0;}
    .Description{margin-bottom: .4rem;}
    .home_contact .email { margin-top:0; margin-left:0; float: right;}
    .home_contact .home_head{padding: .2rem 0; width:4rem ;}
    .homeAbout_table td .icon {height: 24px;}
    .homeRd_link::before{display: none;}
    .home_contact .homeRd_link{margin-left: 0;}
    .homeRd_more{margin-top: 0;}
}