@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
	background-color:#ddbb99;
	padding-bottom: 60px;
}

/* 头部样式 */
.header {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}

/* 导航条 */
.topnav {
  overflow: hidden;
  background-color: #333;
	 position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* 导航链接 */
.topnav a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
	position:static;
}

/* 链接 - 修改颜色 */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* 侧向导航栏 */
ul.sidenav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: box;
    background-color: #f1f1f1;
}
 
li.sidenav a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

li.sidenav a:hover {
    background-color: #555;
    color: white;
}

/* 创建两个不相等的列 */
.column {
  float: left;
  padding: 10px;
}

/* 左右两侧宽度 */
.column.side {
  width: 20%;
margin-left:0.5%;
	margin-top:10px;
	margin-right:0.5%;
	position:static;
	background-color: lightgrey;
}

/* 侧边文本底色 */
.box {
	background-color: white;
	margin-top:10px;
}

/* 中间区域宽度 */
.column.middle {
  width: 79%;
	margin-top:10px;
	margin-bottom:10px;
	
}

/* 中间文本底色 */
.centertextcard {
	margin-top:10px;
	background-color: white;
	border-style:solid;
}

/* 中间文本内容 */
.maintext {
	margin-top:2px;
	margin-left:10px;
	margin-right:10px;
	margin-bottom:15px;
}

/* 中间文字卡内容 */
.contentcard{
	margin-top:10px;
	margin-bottom:10px;
	margin-left:1%;
	margin-right:1%;
	background-color:white;
	border-style:solid;
}

/* 中间网格格式 */
table
{
	width:80%;
	margin-bottom: 2%;
	border-collapse:collapse;
}

table,td,th
{
	border:2px solid black;
	border-color:burlywood;
	
}

/* 店铺格式 */
.wbspbfj{
	float:left;
	margin-left:10px;
	margin-top:10px;
	margin-bottom:10px;
	margin-right:10px;
	border:solid;
}

.contentcardwb{
	margin-top:10px;
	margin-bottom:10px;
	margin-left:1%;
	margin-right:1%;
	background-color:white;
	border-style:solid;
	height: 215px;
}

.testt{
	float:right;
	position:relative;
	bottom:25px;
}

/* 列后面清除浮动 */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* 页脚 */
.footer {
  background-color: #F1F1F1;
  text-align: center;
  padding: 10px;
	position:absolute;
	width:100%;
	
}