/*对所有超链接文本的样式进行样式规划*/
a{text-decoration: none;}  /*取消超链接的下划线显示*/
a:hover{color: red;}       /*超链接文本鼠标悬停时的颜色样式*/

/*设定段落标签的首行缩进和字体颜色*/
.black{color: black;}          /*设定段落标签字体颜色*/
.indent{text-indent: 2em;}     /*设定首行缩进2个字符*/

/*与表格标题的样式规划*/
caption{font-size: 24px;   /*文字大小*/
        line-height: 40px; /*文本行高*/
        height: 40px;      /*标题高度*/
        color:green;       /*文字颜色*/
        text-align: left;} /*对齐方式*/

/*针对表格进行样式规划*/
table,th,td{border-collapse: collapse;  /*单线条*/
            border: 1px solid black; }  /*黑色实线,线宽1px */
/*表格表头部分的样式规划*/
thead{font-size: 36px;     /*文字大小*/
      line-height: 200%;   /*文本行高*/
      color:black;         /*文本颜色*/
      background: #E0861A; /*背景颜色*/
      text-align:left;}    /*文本水平对齐方式*/
/*表格主体部分的样式规划*/
tbody{font-size: 18px;     /*文字大小*/
      color:black;         /*文字颜色*/
      background: #2ea4fe; /*背景颜色*/
      text-indent: 1em; }  /*首行缩进*/
/*表格表尾部分的样式规划*/
tfoot{font-size: 18px; color:black; background: #E0861A;}

/*针对本网页所有的显示内容进行样式规划*/
body{padding: 0px;         /*内边距设定*/                  /*使用字体族设定后IE、EDGE和chrome浏览器的字体显示相对统一了*/
     font-family: arial, "Microsoft YaHei", "Times New Roman", "SimHei", "\5b8b\4f53" , sans-serif; }  /*字体族设定*/

/*针对单元格的样式规划*/
td{padding: 10px;}             /*单元格内容与边线间距*/

/*网页头部标签元素进行样式规划*/
header{width: 1024px;          /*容器宽度*/
	   margin:0 auto;          /*容器外边距*/
	   align-items:center;}    /*内容居中*/
/*网页导航标签元素进行样式规划*/
nav{margin:0 auto;             /*容器外边距*/
	width: 1004px;             /*容器宽度*/
	height: 60px;              /*容器高度*/
	padding: 10px;             /*容器内边距*/
	background: #2ea4fe;       /*容器背景色*/
	font-size: 24px;           /*文字大小*/
	line-height: 60px;         /*文字行高与height设置值保持一致,意味着文字垂直居中显示*/
	text-align: center; }      /*文字对齐方式*/
/*网页底部标签元素进行样式规划*/
footer{ width: 1024px;         /*容器宽度*/
        margin:0 auto;         /*容器外边距*/	    	    
	    font-size: 22px;       /*文字大小*/
	    line-height: 42px;     /*文字行高*/
        /*vertical-align: middle;/*垂直居中*/
	    text-align: center; }  /*文字对齐方式*/

/*设置图像和文字垂直居中*/
img{ vertical-align:middle;} 

/*公司简介大段的文字所用到的样式*/        
.classp1{font-size: 22px;      /*文字大小*/
         line-height: 40px;    /*文字行高*/
         padding: 18px; }      /*容器内边距*/

.classp2{font-size: 22px;      /*文字大小*/
         line-height: 40px;    /*文字行高*/
         padding-left: 18px;   /*容器内边距*/
         padding-top: 0px; }   /*容器内边距*/             

/*公司简介大段的文字所用到的样式*/        
.divclass1{margin:0 auto;      /*容器外边距*/           
           width: 1024px;      /*容器宽度*/                      
           background:#F5F5DC; /*背景颜色*/
           font-size: 22px;    /*文字大小*/
           line-height: 36px;} /*文字行高*/
           

/*产生一个绿色色条*/
.divclass2{ margin:0 auto;          /*容器外边距*/
			width: 1024px;         	/*容器宽度*/
			height: 10px;	        /*容器高度*/
		    background: #9eea6a; }  /*背景颜色*/

/*产品列表使用的div标签样式*/
.divclass3{width: 1024px; margin:0 auto; align-items: center; }        
.tdclass4{   font-size: 20px;          /*文字大小*/
             line-height: 32px;  }     /*文字行高*/
.tdtxttop{vertical-align: text-top; }  /*背景颜色