html , body {   /**/
    border-style: none;              /*元素无边框*/
    padding: 0px;                   /*清除内容周围的区域，内边距是透明的。*/
    border: 0px;                    /* 围绕在内边距和内容外的边框。*/
    margin: 0px;                    /* 清除边框外的区域，外边距是透明的。*/
    white-space:normal;             /*规定如何处理空白，是否换行，默认值：normal（超出时自动换行）*/
    word-wrap:break-word;           /*normal 默认，只在内容的断点换行，即不能断开单词或break-word长单词内也可换行*/
    word-break:break-all;           /*默认，只在内容的断点换行或break-all允许断开单词keep-all只在半角或连字符处允许换行*/
    height: 100%;                    /*先设置此处为100%，后面的类按比例调整*/
    font-size: 100%;
    /*background-image:url('https://www.gzbaobao.top/images/gzbeijin.jpg');*/
    background-color: #99CCFF;       /*背景颜色*/    
    counter-reset: section;         /*设置导航栏弹出层计数变量counter-reset创建或者重置计数器*/
}
 * {
    box-sizing: border-box;  /*元素的总高度和宽度包含内边距和边框(padding 与 border)*/
}
.unselect {
    user-select: none;
}
#header {
    width: 100%;
    height: 160px;
    background-image: url('/images/gzbeijin.webp');
    background-size: 100% 160%;
    background-repeat: no-repeat;
}
h1 a:link {
    color: #0066FF;
    text-decoration: none;
}
h1 a:visited {
    color: #0066FF;
}  
h1 a:hover {
    color: #0066FF;
}
h1 a:active{
    color: #0066FF;
}
#tips {
    position:absolute;
    color: #0066FF;
    font-style:italic;              /*斜体*/
    letter-spacing: 2px;             /*字宽*/
    text-shadow: 0.0625em 0.0625em #CC0000;    /*阴影*/
    text-decoration: none;
    margin-top: 0;
    margin-left: 10px;
}
#gzhome {
    position: absolute;
    top: 3em;  
    left: 10px;  
}

/*登录栏*/
#dlinput {  
    position: absolute;              /*在父元素设置relative，子元素好定位*/  
    display: none;                       
    width: 15em;
    right: 3em;
    top: 1em;
}
#showname {  
    position: absolute;              /*在父元素设置relative，子元素好定位*/  
    display: block;                       
    width: 15em;
    right: 3em;
    top: 1em;
}
.dlform {
    display: inline-block;
}
#fname {
    margin: 0.5em 0.5em;
    border: 0.0625em solid #ccc;
    border-radius: 0.4em;           /*元素的外圆角*/       
    background-image: url('/images/gztubiao_phone.webp');
    background-repeat: no-repeat;
    background-position: 11em;
    background-size: 17% 100%;
}
#fpsw {   
    margin: 0.5em 0.5em; 
    border: 0.0625em solid #ccc;
    border-radius: 0.4em;
    box-sizing: border-box;
    background-image: url('/images/gztubiao_suo.webp');
    background-repeat: no-repeat;   /*图片不重复*/
    background-position: 11em;
    background-size: 17% 100%;
}
#dlzc {
  position: absolute;
  left: 2.5em;
  top: 4.5em;
  color: #0000FF;
}
#dlwj{
  position: absolute;
  float: right;
  right: 1.3em;
  top: 4.5em;
  color: #0000FF;
}
#dlsubmit {
    position: absolute;              /*定位父元素的位置*/
    width: 4.5em;
    left: 2em;
    top: 5.5em;
    padding: 0em 0em;  
    font-size: 1.1em;
    background-color: #CCFF33;
    cursor: pointer;
    text-align: center;
}
#dlsubmit:hover {
    background-color: #45a049;
}
#dlreset {
    position: absolute;
    width: 4.5em;
    left: 2em;
    top: 5.5em;
    padding: 0em 0em;  
    font-size: 1.1em;
    background-color: #CCFF33;
    cursor: pointer;
}
#dlchoose {
    position: absolute;
    top: 7.3em;
    right: 1.2em;
    background-color: #CCFFFF;
    height: 2em;
}
#snerror {
    display: none;
}

#dlreset:hover {
    background-color: #45a049;
}
#fname:focus {           /*聚集*/
    background-color: lightblue;
}
#fpsw:focus {
    background-color: lightblue;
}
#gzcanvas {
    width: 20em;
    margin: 0 auto;
    display: block;
}
p.normal {font-weight:normal;}      /*默认明亮400等同于normal*/
p.light {font-weight:lighter;}      /*淡*/
p.thick {font-weight:bold;}         /*加粗而700等同于bold*/
p.thicker {font-weight:900;}        /*数值加粗*/
p.pgz {white-space:nowrap;}          /*禁用一个元素内的文字环绕*/

a:link {text-decoration:none;}           /* unvisited link  未访问的链接*/
a:visited {text-decoration:none;}        /* visited link  已访问的链接*/
a:hover {text-decoration:underline;}     /*hover必须在:link和 a:visited之后定义才有效 鼠标划过链接*/
a:active {text-decoration:underline;}    /*active必须在hover之后定义是有效的. 已选中的链接*/      

@media screen and (max-width: 1100px) {
#dlinput {
    right: 0em;
    top: 2.5em;
    width: 13em;
}
#fname {
    background-position: 9em;
    width: 11em;
}
#fpsw {
    background-position: 9em;
    width: 11em;
}
#dlzc {
    top: 4em;
}
#dlwj{
    top: 4em;
}
#dlsubmit {
    width: 4em;
    top: 5em;
}
#dlchoose {
    top: 6.7em;
    width: 6em;
}

#showname { 
    right: 0em;
    top: 2em;
    width: 13em;
}
#snname {
    margin-top: 2em;
}

#tips {
  text-shadow: 0.0625em 0.0625em #CC99CC;    /*阴影*/
}
#gzcanvas {
    display: none;
}
}
