/* 顶部 */
.Welcome{
    width: 100%;
    height: 40px;
    background: #029C3E;
    line-height: 40px;
}
.Welcome .Welcome_text{
    width: 1200px;
    margin: 0 auto;
    font-size:14px;
}
.Welcome .Welcome_text p{
    line-height: 40px;
    color:#fff;
    display:inline-block;
}
.Welcome .Welcome_text p b{
    font-weight: 100;
}
.Welcome .Welcome_text ul{
    height: 40px;
    float: right;
}
.Welcome .Welcome_text ul li{
    line-height: 40px;
    float: left;
}
.Welcome .Welcome_text ul li a{
    color:#fff;
    padding: 0 14px;
    border-left: 1px solid #fff;
}
.Welcome .Welcome_text ul li:first-child a{
    border:0;
}
.Welcome .Welcome_text ul li a:hover{
    color:#FF4937;
}
/* banner */
.banner{
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.banner img{
    height: 100%;
}
/* 导航 */
.nav{
    width: 100%;
    height: 50px;
    background: #029C3E;
    font-size: 20px;
}
.nav ul{
    width: 1200px;
    margin: 0 auto;
    height: 50px;
}
.nav ul li{
    width: 133px;
    line-height: 50px;
    float: left;
    text-align: center;
    position: relative;
}
.nav ul li .nav_list{
    width: 100%;
    top:50px;
    left:0;
    position: absolute;
    display: none;
    z-index: 9999;
}
.nav ul li .nav_list li{
    width: 100%;
    height: 50px;
    background: #0d823a;
}
.nav ul li .nav_list li:hover{
    background: #CF8E26;
}
.nav ul li a{
    color:#fff;
}
.nav ul li:hover{
    background: #016528;
}
.nav ul li:hover .nav_list{
    display: block;
}