/*初始化内外边距*/
*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #e2e2e2;/*设置网页的背景颜色*/
}

.box{/*设置大盒子*/
    width: 1339px;
    overflow: hidden;/*高度由内容决定*/
    margin: 0 auto;
}

.toubu{/*设置头部盒子*/
    width: 1339px;
    height: 282px;
    background-image: url(../img/bj1.png);
    position: relative;/*设置设置相对定位不设置偏移量，为子盒子bokebiaoti提供绝对定位的使用*/
}

.toubu .wangyebiaoti{/*头部盒子的子盒子-网页标题*/
    height: 20px;
    width: 200px;

    position: absolute;/*绝对定位，基于父盒子toubu*/
    top: 141px;
    left: 669.5px;

    margin-left: -75px;/*设置文字在盒子中居中*/
    text-align: center;
    font-size: 30px;

    font-family: 宋体;/*设置字体*/
}

.toubu .daohanglan{/*头部盒子的子盒子-导航栏*/
    position: absolute;/*绝对定位，基于父盒子toubu*/
    top: 240px;
    left: 600px;
}

.toubu .daohanglan span{/*头部盒子的子盒子-导航栏-SPAN文字*/
    margin: 10px;/*通过设置外边距-让SPAN文字有间距*/
}

.toubu .daohanglan a{/*头部盒子的子盒子-导航栏-A标签*/
    text-decoration: none;/*取消下划线*/
    color:black;/*字体颜色*/
}


.neirong{/*内容盒子*/
    width: 1000px;
    height: 800px;
    margin: 0 auto;/*内容盒子居中*/
    margin-top: 20px;
}

.jiaobu{/*脚部盒子*/
    width: 1000px;
    height: 100px;
    margin: 0 auto;/*内容盒子居中*/
    margin-top: 20px;
    text-align: center;
}

.jiaobu span{/*脚部盒子-SPAN文字*/
    color: grey;font-size: 16px;
    font-family: 楷体;
}

.jiaobu a{/*脚部盒子-A标签*/
    color: grey;font-size: 16px;
    

}





/*----------------------------------------内容盒子子盒子-文章-开始----------------------------------------*/

.neirong .wenzhang{/*内容盒子子盒子-文章*/
    width: 1000px;
    height: 800px;
    border: 1px dashed rgb(239, 85, 175);
    background-color: #e7e6e6;
    border-radius: 10px;
}

.neirong .wenzhang .wenzhangbiaoti{/*内容盒子子盒子-文章-文章标题盒子*/
    width: 1000px;
    height: 20px;
    background-color: rgb(230, 225, 225);
    border-bottom: 2px solid #d9d9ff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.neirong .wenzhang .wenzhan1{/*内容盒子子盒子-文章-文章1盒子*/
    width: 1000px;
    height: 240px;
    background-color: #d6d5d5;
}

.neirong .wenzhang .wenzhan2{/*内容盒子子盒子-文章-文章2盒子*/
    width: 1000px;
    height: 240px;
    background-color: #d6d5d5;
    margin-top: 29px;
}

.neirong .wenzhang .wenzhan3{/*内容盒子子盒子-文章-文章3盒子*/
    width: 1000px;
    height: 240px;
    background-color: #d6d5d5;
    margin-top: 29px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/*----------------------------------------内容盒子子盒子-文章-结束----------------------------------------*/




