@charset "UTF-8";
/*清除默认样式*/
.body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*最顶上的导航栏*/
.body .title {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  top: 0;
  height: 60px;
  width: 100%;
  z-index: 99;
  background-color: #fff;
}

.body .title .logo {
  margin-left: 240px;
  width: 232px;
  height: 48px;
}

.body .title .navigation {
  margin-right: 90px;
  width: 50px;
  height: 50px;
  /* background: #888; */
  cursor: pointer;
}

/*上部的公司标语展示*/
.body .slogan{
	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	background-image: url(../img/ade/introduce/image_title_di.png);
  	width: 100%;
  	height: 240px;
}

.body .slogan .text-slogan{
  margin-top: 50px;
	font-weight: bold;
	font-size: 30px;
  color: #ffffff;
}

/*中部的公司介绍*/
.body .company{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.body .company .company-title{
	margin-top: 50px;
	font-weight: bold;
	font-size: 30px;
  background: #fff;
}

.body .company .image-profile{
	width: 429px;
	height: 32px;
}

.body .company .text-company-desc{
  margin-left: 480px;
	margin-top: 70px;
	font-size: 24px;
	color: #000;
	width: 100%;
}


/*底边部的公司图标和网站备案信息*/
.body .company-icon{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 180px;
  background: #000;
}

.body .company-icon .ade-icon{
  padding-top: 65px;
  width: 291px;
  height: 59px;
}

.body .company-icon .ade-son-icon{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 500px;
}

.body .company-icon .ade-son-icon .image-ade-son-icon{
  width: 158px;
  height: 80px;
}

.body .company-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 41px;
  background: #1a1a1a;
}

.body .bg-company-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 41px;
  background: #1a1a1a;
}

.body .bg-company-title .company-title{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 600px;
  height: 41px;
}

.body .bg-company-title .company-title .company-title-text{
  font-size: 14px;
  color: #8c8c8c;
}

.body .bg-company-title .company-title .company-title-curindex-text{
  font-size: 14px;
  color: #d3d3d3;
}

.body .copy-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 220px;
  background: #000;
}

.body .copy-right .healthy-game-tips{
  margin-top: 30px;
  font-size: 14px;
  color: #8c8c8c;
}

.body .copy-right .part-line{
  height: 1px;
  width: 1260px;
  background: #2c2c2c;
  margin-top: 20px;
}

.body .copy-right .text-copy-right-1{
  margin-top: 20px;
  font-size: 14px;
  color: #8c8c8c;
}

.body .copy-right .police-check-in{
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.body .copy-right .police-check-in .image-police{
  width: 20px;
  height: 20px;
}

.body .copy-right .police-check-in .text-copy-right-2{
  margin-left: 5px;
  font-size: 14px;
  color: #8c8c8c;
}

.body .side-menu__overlay {
  background-color: rgba(0, 0, 0, .8);
  height: 100vh;
  position: fixed;
  width: 100vw;
  z-index: 999;
  opacity: 0;
}

@keyframes bg-menu-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes bg-menu-hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.body .side-menu {
  background-color: rgba(1, 0, 0, .8);
  display: flex;
  flex-flow: column nowrap;
  font-size: 15px;
  max-width: 550px;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  user-select: none;
  z-index: 1000;
}

@keyframes menu-show {
  0% {
    height: 0px;
    width: 0px;
    border-radius: 0 0 0 550px;
  }

  60% {
    border-radius: 0px;
  }

  100% {
    height: 100vh;
    width: 100vw;
  }
}

@keyframes menu-hide {
  0% {
    height: 100vh;
    width: 100vw;
    border-radius: 0px;
  }

  40% {
    border-radius: 0 0 0 550px;
  }

  100% {
    height: 0px;
    width: 0px;
  }
}

.body .side-menu .btn-close {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  height: 25px;
  margin-top: 15px;
}

.body .side-menu .image-close {
  width: 31px;
  height: 25px;
  margin-right: 15px;
  background-image: url(../img/ade/index/btn_close.png);
  cursor: pointer;
}

.body .side-menu .image-close:hover {
  background-image: url(../img/ade/index/on_btn_close.png);
}

.body .side-menu .menu-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin-top: 50px;
}

.body .side-menu .menu-title .first-menu {
  font-size: 28px;
  color: #fff;
  text-align: left;
  font-family: "方正正中黑简体";
  cursor: pointer;
  text-decoration: none;
  width: 400px;
  margin-left: 60px;
  opacity: 0;
}

.body .side-menu .menu-title .first-menu:hover {
  color: #007ecf;
}

.body .side-menu .menu-title .first-menu:not(:first-child) {
  margin-top: 40px;
}

@keyframes menu-fade-in {
  0% {
    opacity: 0;
    margin-left: 320px;
  }

  100% {
    opacity: 1;
    margin-left: 60px;
  }
}

@keyframes menu-fade-out {
  0% {
    opacity: 1;
    margin-left: 60px;
  }

  100% {
    opacity: 0;
    margin-left: 320px;
  }
}


.body .side-menu .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 390px;
  height: 130px;
  border-radius: 20px;
  background: #141414;
  margin-left: 100px;
  position: absolute;
  bottom: 80px;
  opacity: 0;
}

@keyframes contact-fade-in {
  0% {
    opacity: 0;
    margin-left: 320px;
  }

  100% {
    opacity: 1;
    margin-left: 100px;
  }
}

@keyframes contact-fade-out {
  0% {
    opacity: 1;
    margin-left: 100px;
  }

  100% {
    opacity: 0;
    margin-left: 320px;
  }
}

.body .side-menu .contact .text-contact{
  margin-top: 10px;
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
}

.body .side-menu .contact .text-contact-detail{
  width: 320px;
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
}

/*# sourceMappingURL=index.css.map */
