/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
ol,
ul,
li{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  scroll-behavior: smooth;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
.head_table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
  font-family: "微软雅黑";
}
.menu {
  position: sticky;
  top: 5px;
  left: 0;
  width: 100%;
  /* background: #000; */
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}
.menu * {
  box-sizing: border-box;
}
.menu .ul-list {
  display: flex;
}
.menu .center {
  width: 1326px;
}
.menu .ul-list > li {
  position: relative;
}
.menu .ul-list > li:last-child {
  border-right: none;
}
.menu .ul-list > li > a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  padding: 18px;
}
.menu .ul-list > li > span {
  color: #fff;
  font-size: 14px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu .ul-list > li:hover .ol-list {
  display: block;
}
.menu .ol-list {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 999;
  width: 100%;
}
.menu .ol-list > li > a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  height: 50px;
  display: flow-root;
  align-items: center;
  border-bottom: 1px solid #d8dadc;
  border-left: 1px solid #d8dadc;
  border-right: 1px solid #d8dadc;
  justify-content: center;
  width: 225px;
  padding: 20px 25px 20px 18px;
  background: white;
}
.menu .ol-list > li > a:hover {
  color: #F5255D;
}
