/************************************************************
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示                                  **
************************************************************/

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  height: 100vh;
}

body * {
  box-sizing: border-box;
  flex-shrink: 0;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.mb-8 {
  margin-bottom: 18px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mr-16{
  margin-right: 16px;
}
.menu {
  position: absolute;
  left: 0px;
  top: 56px;
  width: 100%;
  z-index: 999;
  display: none;
}

.menu ul {
  list-style: none;
  padding-left: 0px !important;
}
a{
  color: #383B46;
}
.menu>nav>ul>li {
  width: 100%;
  height: 56px;
  background: #FFFFFF;
  padding: 14px 16px;
  font-family: 'PingFang SC';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #383B46;
}
.menu nav ul li a{
  color: #383B46;
}
.menu nav ul li a:hover {
color:#4EBB6E;
}
.collapse ul li{
  width: 100%;
}
.dropdown-menu li{
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  padding: 14px 16px;
  font-family: 'PingFang SC';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #383B46;
}
video{
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.news-mobile{
  width: 100%;
  height: 100%;
  margin-top: 12px;
}