/*header*/
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /*bottom: 0;*/
    z-index: 99;
    /*padding: 10px 0;*/
    font-size: 18px;
    /*margin: 0 auto;*/
    color: #fff;
}


#logo {
    position: relative;
    margin-left: 50px;
    width: 250px;
    height: 85px;
    display: flex;
    align-items: center;
}

#logo img{
    width: 100%;
}

.nav1 {
    padding-right: 50px;
    /*height: 85px;*/
}

.nav1>li {
    /*position: relative;*/
    float: left;
    margin-left: 30px;
}

.nav1>li>a{
    position: relative;
    display: block;
    /*width: 60px;*/
    padding: 0 10px;
    /*background: darkgoldenrod;*/
    /*overflow: hidden;*/
    line-height: 85px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s ;
    -ms-transition: all .5s ;
    -o-transition: all .5s ;
    transition: all .5s ;
}
.nav1>li>a::after{
    content: '';
    position: absolute;
    left: 0;
    /*bottom: -2px;*/
    /*bottom: 10px;*/
    bottom: 0;
    width: 100%;
    height: 2px;
    /*background: #fcd20d;*/
    -webkit-transform: scaleX(.8);
    -moz-transform: scaleX(.8);
    -ms-transform: scaleX(.8);
    -o-transform: scaleX(.8);
    transform: scaleX(.8);
    -webkit-transition: all .5s;
    -moz-transition: all .5s ;
    -ms-transition: all .5s ;
    -o-transition: all .5s ;
    transition: all .5s ;
}


/*.nav1 li a:hover:not(.active)::after*/
.nav1>li:hover a:not(.active)::after{
    background: #fcd20d;
    -webkit-transform: translateY(-10px) scaleX(.8);
    -moz-transform: translateY(-10px) scaleX(.8);
    -ms-transform: translateY(-10px) scaleX(.8);
    -o-transform: translateY(-10px) scaleX(.8);
    transform: translateY(-10px) scaleX(.8);
}
.nav1 .active{
    color: #fcd20d;
}
.nav1 .active::after{
    content: '';
    position: absolute;
    left: 0;
    /*bottom: 0;*/
    bottom: 10px;
    width: 100%;
    height: 2px;
    background: #fcd20d;
}

.nav1>li{
    /*position: relative;*/
}
.nav1>li>a{
}

.nav1>li:hover .nav1_in{
    /*display: block;*/
}
.nav1_in_bg{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /*width: 200px;*/
    /*height: 100px;*/
    background: rgba(0, 0, 0, 0.5);
    /*background: yellow;*/
}

.nav1_in{
    position: absolute;
    /*top: 100%;*/
    /*left: 0;*/
    /*right: 0;*/
    text-align: center;
    /*height: 200px;*/
    /*display: none;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*background: rgba(0, 0, 0, 0.3);*/
}




.nav1_in li{
    /*float: left;*/
}

.nav1_in li a{
    display: inline-block;
    margin-top: 10px;
    /*margin: 10px;*/
    padding: 5px 5px;
    border-radius: 5px;
    /*color: #090909;*/
    color: #fff;
    font-size: 16px;
    /*background: #fff;*/
    -webkit-transition: all .5s;
    -moz-transition: all .5s ;
    -ms-transition: all .5s ;
    -o-transition: all .5s ;
    transition: all .5s ;
}
.nav1_in>li:first-child{
    margin-top: 20px;
}
.nav1_in>li:last-child{
    margin-bottom: 30px;
}
.nav1_in li a:hover{
    color: #fcd20d;
}


/*banner*/

.banner {
    position: relative;
    width: 1200px;
    height: 550px;
}

.banner_in {
    width: 100%;
    height: 550px;
}

.banner_in_left,
.banner_in_right{
    /*width: 35px;*/
    /*height: 80px;*/
    position: absolute;
    top:50%;
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /*text-align: center;*/
    /*font-size: 30px;*/
    /*background: rgba(255, 255, 255, 0.2);*/
    background: rgba(255, 255, 255, 0.3);
    /*background: rgba(112, 125, 144, 0.5);*/
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    transform: translate(0,-50%);
    -webkit-transition: all .5s;
    -moz-transition: all .5s ;
    -ms-transition: all .5s ;
    -o-transition: all .5s ;
    transition: all .5s ;
    cursor: pointer;
}
.banner_in_left{
    left: 2%;
}
.banner_in_right{
    right: 2%;
}

.banner_in_left i,
.banner_in_right i{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%,-50%);*/
    /*width: 50px;*/
    /*height: 50px;*/
    /*border-radius: 50%;*/
    /*background: #ffffff;*/
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
}
.banner_in_left i::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%,-50%);*/
    /*width: 50px;*/
    /*height: 50px;*/
    /*border-radius: 50%;*/
    /*background: #ffffff;*/
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
}
.banner_in_left i::after{
    transform: translate(30%,-50%);
    /*border-right: 10px solid rgba(255, 140, 100, 0.7);*/
    /*border-right: 10px solid rgba(255, 255, 255, 0.3);*/
}

.banner_in_left i{
    transform: translate(-70%,-50%);
    border-right: 10px solid #ffffff;
}
.banner_in_right i{
    transform: translate(-30%,-50%);
    border-left: 10px solid #ffffff;
}
.banner_in_right i::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%,-50%);*/
    /*width: 50px;*/
    /*height: 50px;*/
    /*border-radius: 50%;*/
    /*background: #ffffff;*/
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
}
.banner_in_right i::after{
    transform: translate(-130%,-50%);
    /*border-right: 10px solid rgba(255, 140, 100, 0.7);*/
    /*border-left: 10px solid rgba(255, 255, 255, 0.3);*/
}

.banner:hover .fx{
    /*display: block;*/
}
.banner .fx:hover{
    background: rgba(112, 125, 144, 0.3);
}
.banner_in_left:hover i{
    border-right: 10px solid rgb(252,210,13);
}
.banner_in_right:hover i{
    border-left: 10px solid rgb(252,210,13);
}
.banner a {
    display: block;
}

.banner_in ul li {
    position: absolute;
}

.banner_in ul li a {
    display: block;
    width: 1200px;
    height: 550px;
}

.banner_in ul li a > img {
    width: 100%;
    height: 100%;
    /*vertical-align: middle;*/
}

/*num*/
.num{
    position: absolute;
    padding: 5px 10px;
    bottom: 3%;
    left: 50%;
    /*display: none;*/
    border-radius: 8px;
    transform: translate(-50%,0);
    /*background: rgba(255, 255, 255, 0.5);*/
    background: rgba(112, 125, 144, 0.3);
}
/*addclass*/
.banner .addnum{
    background: #fcd20d;
}
/*****/
.num li{
    float: left;
    width: 30px;
    height: 6px;
    /*margin-right: 5px;*/
    margin: 0 5px;
    border-radius: 3px;
    text-align: center;
    /*background: rgba(255, 255, 255, 0.3);*/
    background: rgba(112, 125, 144, 0.3);
    /*box-shadow: 0 0 3px rgba(91, 91, 91, 0.5);*/
    -webkit-transition: all .5s;
    -moz-transition: all .5s ;
    -ms-transition: all .5s ;
    -o-transition: all .5s ;
    transition: all .5s ;
    cursor: pointer;
}

/*section*/
.section{
    margin-top: 100px;
}

/*nr_text*/
.nr_text{
    text-align: center;
}
.nr_text_in>h4{
    letter-spacing: 2px;
    font-size: 24px;
    font-weight: 400;
    font-family: "PingFang SC","Source Han Sans CN","Microsoft YaHei","STSong","SimSun",Arial,sans-serif;
    color: #333;
}
.nr_text_in_text{
    margin-top: 30px;
    font-size: 14px;
    line-height: 200%;
    color: #999;
}
.nr_text_in_text i{
    display: block;
    margin: 30px auto 0 auto;
    width: 40px;
    border-bottom: 5px solid #fcd20d;
}
/*nr1*/
.nr1{
    /*text-align: center;*/
}


.nr1_in_img{
    margin-top: 80px;
    overflow: hidden;
}
.nr1_in_img_ul{
    margin-top: -20px;
    margin-right: -20px;
}
.nr1_in_img_ul>li{
    float: left;
    margin-top: 20px;
    margin-right: 20px;
    width: 285px;
    height: 200px;
}
.nr1_in_img_ul>li>a{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.nr1_in_img_ul>li>a>img{
    width: 100%;
    height: 100%;
    vertical-align: middle;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
.nr1_in_img_ul>li>a:hover img{
    transform: scale(1.15);
}
.nr1_in_img_b{
    text-align: center;
}
.nr1_in_img_b>ul{
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}


/*nr2*/
.nr2{
    height: 400px;
    background: url("../images/nr2_in_bgimg.jpg") center center no-repeat;
    background-size: cover;
}

/*nr3*/
.nr3{
    overflow: hidden;
}
.nr3_in ul{
    margin-right: -15px;
}
.nr3_in ul li{
    float: left;
    margin-right: 15px;
    width: 390px;
    /*background: red;*/
    /*height: 390px;*/
}
.nr3_in ul li a{
    display: block;
    width: 100%;
    height: 390px;
}
.nr3_in img{
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.nr3_in h5{
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 400;
    font-family: "PingFang SC","Source Han Sans CN","Microsoft YaHei","STSong","SimSun",Arial,sans-serif;
    color: #333;
}
.nr3_in p{
    font-size: 14px;
    line-height: 200%;
    width: 80%;
    color: #999;
}
/*nr4*/
.nr4{
    /*padding: 20px 0;*/
    overflow: hidden;
}
.nr4_in{
    text-align: center;
}
.nr4_in ul{
    margin-top: -30px;
    margin-right: -30px;
    display: inline-block;
    vertical-align: middle;
    width: 1000px;
    padding: 20px;
}
.nr4_in ul li{
    float: left;
    margin-top: 30px;
    margin-right: 30px;
    width: 470px;
    /*height: 150px;*/
    text-align: left;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    transition: all .5s;
}
.nr4_in ul li:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.nr4_in ul li:hover .nr4_in_text p{
    /*color: #fcd20d;*/
}
.nr4_in ul li a{
    display: block;
    padding: 30px;
}
.nr4_in_text{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.nr4_in_text h5{
    margin: 15px 0;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 400;
    font-family: "PingFang SC","Source Han Sans CN","Microsoft YaHei","STSong","SimSun",Arial,sans-serif;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nr4_in_text p{
    text-indent: 2em;
    font-size: 14px;
    line-height: 200%;
    min-height: 60px;
    /*width: 80%;*/
    color: #999;
    transition: all .5s;
}


/*nr5*/
.nr5{
    height: 400px;
    background: url("../images/nr5_in_bgimg.jpg") center center no-repeat;
    background-size: cover;
}


/*back*/
#back{
    position: fixed;
    top:60%;
    right: 3%;
    /*border-left: 30px solid transparent;*/
    /*border-right: 30px solid transparent;*/
    /*border-bottom:35px solid rgba(198, 109, 253, 0.3);*/
    /*border-bottom:35px solid #5ad4eb;*/
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    opacity: .5;
    display: none;
    cursor: pointer;
    transition: all .5s;
    /*background: #707D90;*/
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
#back:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fcd20d;
}
#back:after{
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
}
#back:hover{
    /*border-left: 30px solid transparent;*/
    /*border-right: 30px solid transparent;*/
    /*border-bottom:35px solid rgba(198, 109, 253, 0.6);*/
    /*border-bottom:35px solid #5ad4eb;*/
    opacity: 1;
}

/*footer*/
footer{
    color: #ffffff;
    background: #495051;
}
.footer{
    width: 1050px;
    min-width: 1150px;
}
.footer_t{
    padding-top: 50px;
    /*border-bottom: 1px solid #747576;*/
    font-size: 15px;
    line-height: 150%;
}
.footer_t_t{
    color: #fcd20d;
    font-size: 16px;
}
.footer_t>ul>li{
    float: left;
    width: 175px;
}
.footer_t>ul>li>div>ul{
    margin-top: 20px;
}
.footer_t>ul>li>div>ul>li{
    margin-top: 10px;
}

.footer_t_img{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #747576;
}
.footer_t_img_in{
    position: relative;
}
.footer_t_img_bottomlogo{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    height: 65px;
    /*display: flex;*/
    /*align-items: center;*/
}
.footer_t_img_bottomlogo img{
    width: 100%;
}
.footer_t_img_bottomer{
    width: 100px;
    height: 100px;
    /*background: red;*/
}
.footer_t_img_bottomer img{
    width: 100%;
}

.footer_b{
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    /*line-height: 150%;*/
}

#designed,#ba {
    position: relative;
    margin-left: 10px;
    padding-left: 15px;
    /*font-size: 14px;*/
    /*line-height: 150%;*/
}

#ba a{
    color: rgba(255, 255, 255, 0.7);
}

#ba:hover a{
    color: #fcd20d;
}

#designed:after, #ba:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    border-left: 1px solid #ccc;
    transform: scaleY(.9);
}