 body {
     text-align: center;
     /* 文字居中 */

 }

 ul {
     list-style-type: none;
     /* ul前面的点  */
 }

 * {
     margin: 0px 0px;
     /* 到边框的距离 */
 }

 .menu {

     background: rgb(255, 255, 255);
     width: 100%;	
     /* 导航条背景的颜色  */

 }

 .nav {
     margin: 0 auto;
     /* 导航栏文字的位置  */
     width:100%;
     /* 和文字宽度有关，不能小于文字宽度的总和  */
     height: 70px;
     /* 导航栏的宽度  */

 }

 .nav a
{
    float:right;				 /* 导航栏的位置配置 */
    width:10%;			 /* 选中的文字块的长度  */
    line-height:50px; 		         /* 选中的文字块的宽度  */
    text-decoration: none;               /* 去掉连接下划线  */
    font-size:15px;			 /* 字体大小 */
    color: #000;			 /* 字体颜色 */
}

.nav li a:hover
{
                /* 选中的文字块的颜色 */
    text-decoration:none;		/* 选中时去掉连接下划线 */	
    color:#ffc813;
    font-size:20px;

}
.nav li a:link{
    text-decoration:none; /* 连接被点之后没有下划线  */
}

 .bg1 {
     width: 100%;
     background: rgb(37, 58, 70);
     color: #fff;


 }

 .bg2 {
     width: 1902px;

 }

 .bg3 {
     width: 1902px;

     background: rgb(255, 255, 255);
 }

 .p {
     font-size: 20px;
 }

 .bg4 {
     width: 100%;
     height: 100%;
     background: rgb(52, 78, 94);

 }

 .pp {
     color: white;
 }

 .pp1 {
     margin-top: 20px;
     margin-bottom: 10px;
     color: rgb(255, 255, 255);
 }

 .bg5 {
     background-color: rgb(240, 251, 255);
     width: 100%;
 }

 .bg6 {
     width: 80%;
     background-color: white;
     text-align: center;
     margin: 0 auto;
 }

 .pos_fixed {
     position: fixed;
     bottom: 100px;
     right: 60px;
 }


 #no {

     display: none;
     float: left;
 }

 .hov:hover #no {
     display: block;
 }

 .parentf {

     display: flex;
     flex-direction: row;
     justify-content: flex-start;
     width: 100%;

 }
 .left4 {
     height: 500px;
     width: 60%;
 }

 .right4 {
     height: 500px;
     width: 40%;
     margin-top: 40px;
     margin-right: 100px;
 }

 .headbox {

    display: flex;
    flex-direction: row;   
    justify-content: flex-start;   
    width: 100%;
    background: rgb(255, 255, 255);

 }

 .leftbox {

    height: 70px;
    width: 20%;
    margin-left: 35px;
 }

 .rightbox {

    height: 70px;
    width: 80%;
    margin-right:20%;

 }


