/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/



/* HTML5 display-role reset for older browsers */


* {
  box-sizing: border-box;
  font-family: "微软雅黑";
}
.menu1 {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #C93E3D;
  display: flex;
  justify-content: center;
	z-index: 999;
}
.menu1 * {
  box-sizing: border-box;
}
.menu1 .center {
  width: 1380px;
}
.menu1 .ul-list {
  display: flex;
}

/* HTML5 主菜单文字之间竖线的颜色 */
.menu1 .ul-list > li {
  flex: 1;
  border-right: 1px solid #C93E3D;
  position: relative;
	z-index: 999;
}
.menu1 .ul-list > li:last-child {
  border-right: none;
}
.menu1 .ul-list > li > a {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  color: #fff;
  background: #C93E3D;
	z-index: 999;
}
.menu1 .ul-list > li > span {
  color: #fff;
  font-size: 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A5A196;
	z-index: 999;
}
.menu1 .ul-list > li:hover .ol-list {
  display: block;
}
.menu1 .ol-list {
  display: none;
  position: absolute;
  top: 70px;/* HTML5 下拉餐单距离横条的距离 */
  left: 0;
  z-index: 999;
  background: #C93E3D;
  width: 200px;
}
/* 下拉菜单中间割线 */
.menu1 .ol-list > li > a {/* 主菜单文字设定 */
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  justify-content: center;
 padding: 0px 0px 0px 5px;
	width: 200px;
	
	z-index: 999;
}
.menu1 .ul-list > li > a:hover {
  font-weight: bold;
}
.menu1 .ol-list > li > a:hover {
  background: #C93E3D;
	color: #fff;/* 下拉菜单悬停变色、加粗 */
	font-weight: bold;
}
