
body {
    font-size: 16px;
}
header {
    padding: 2px 10px 0px 10px;
    margin: 0px;
}
.logo {
  text-align: left; 
   font-size: 30px;
    line-height: 0px; /* 设置行间距为字体大小的1.5倍 */
}
.lianjie {
  text-align: left;
  line-height: 0px; 
  color: red; /* 点的颜色 */
}
header a {
    color: inherit;      /* 文字颜色继承父元素 */
    text-decoration: none; /* 去掉下划线 */
    border-bottom: none;   /* 去掉下划线 */
    /* pointer-events: none;  禁止点击事件 */
  }

nav {
    background-color: #cccccc;
	margin: 20px 0 20px 0;
	padding: 10px 0 10px 0;
  }
nav a {
    color: inherit;       /*文字颜色继承父元素 */
    text-decoration: none;  /*去掉下划线 */
    /*border-bottom: none;    去掉下划线 */
    border-bottom: 1px solid red;
    /* pointer-events: none;  禁止点击事件 */
  }
nav ul {
	margin: 0px;
  }
.list-with-dots li {
  display: inline; 
  float: left;/*解决li本身换行问题*/
  margin: 0 20px 0 0;
  
}
nav ul::after { /*float: left;导致的ul元素不跟着换行问题*/
    content: "";
    display: table;
    clear: both;
}
.list-with-dots li:before {
  content: "★";
  color: red; /* 点的颜色 */
  display: inline-block;
  width: 1em;
  margin-left: -1em; /* 确保点与文本对齐 */
}
section{
  padding: 1px 20px 10px 20px;
  margin: 10px;
  background-color: #f0f0f0;
}
section img{
    /*max-width:750px;屏蔽这一条，新增下面两条*/
    width:100% !important;
    height:auto !important;
}
section img[src$="gif"]{
    /*新增，用于控制gif表情字符大小*/
    width:auto !important;
} 

H3 {
  border-bottom: 2px solid #cccccc; /* 上边框宽度为2px，颜色为黑色 */
}
.red-text{
	color:  red;
}
.green-text{
	color:  green;
}

.jianyan {
   font-size: 60px;
    line-height: 90px; /* 设置行间距为字体大小的1.5倍 */
}
.lan {
   font-size: 90px;
}
.mingci {
   font-size: 16px;
   line-height: 24px; /* 设置行间距为字体大小的1.5倍 */
   color:  red;
}
.wenzhangzhuangtai {
   font-size: 20px;
    line-height: 30px; /* 设置行间距为字体大小的1.5倍 */
}


footer {
  border-top: 2px solid #cccccc; /* 上边框宽度为2px，颜色为黑色 */
  color:  red;
}
@media screen and (min-width: 1000px) {
	
section img{
    width:49% !important;
    height:auto !important;
    border: 2px solid black;
}
section img[src$="gif"]{
    /*新增，用于控制gif表情字符大小*/
    width:auto !important;
} 

}
@media screen and (max-width: 800px) {
	
section{
  padding: 1px 10px 10px 10px;
  background-color: #f0f0f0;
}
.jianyan {
   font-size: 40px;
    line-height: 60px; /* 设置行间距为字体大小的1.5倍 */
}
.lan {
   font-size: 60px;
}

}
