﻿* 
{
	font-family:Arial;
}
body
{
    margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
a{ text-decoration:none; color:Black;}

.headDiv
{ 
    height:105px;    
     
}

.headUL
{
    list-style:none; /* 去掉ul前面的符号 */
    margin: 0px; /* 与外界元素的距离为0 */
    padding: 0px; /* 与内部元素的距离为0 */
    width: auto; /* 宽度根据元素内容调整 */
}

.headLI
{
    float:left; /* 向左漂移，将竖排变为横排 */
}


     #nav{
         
     }
     
     /* 取消列表样式，内外补间为零 */
     #nav ul{
         list-style:none;
         margin:0;
         padding:0;
     }
     
     /* 横排：控制导航高度 ，使用float 指定每个li的宽度和高度 */
     #nav li{
         float:left;
         width:110px;
         height:30px;
         line-height:30px;  /* 文字垂直居中 指定行高为li高度 自动垂直居中 */     
     }
     
     /* 将a标签区块化就可以指定高度 */
     #nav a{
         display:block;
         height:100%;
         text-decoration:none;   /* 取消a标签下划线 */
         text-align:center;      /* 文字水平居中显示 */
         color:#111010;
     }
     
     /* 鼠标放上效果 */
     #nav a:hover{
         background-color:#d7f0fb;
         color:#000;
     }
     
.footDiv
{
    margin:0 auto;       
    background-color:#fbf9f9;    
}

.divGPSDevice
{
    float:left;
    width:270px; 
    height:285px;    
}

.imgGPSDevice
{
    width:240px;
    height:240px;
}

.divAPP
{
    float:left;
    width:120px; 
    height:120px;    
}

.imgAPP
{
    width:100px;
    height:100px;
}
.divImgAPPTxt
{
    width:100px;
}

.divDefaultColor
{
    background-color:#d7f0fb;   
}