@charset "UTF-8";
/* 换行*/
@keyframes img_zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
body, * {
  font-family: 微软雅黑, Helvetica, sans-serif;
  font-size: 18px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 700px) {
  body, * {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #c8c8c8;
}

@media screen and (max-width: 700px) {
  /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  ::-webkit-scrollbar {
    width: 1px;
    height: 1px;
    background-color: #F5F5F5;
  }

  /*定义滚动条轨道 内阴影+圆角*/
  ::-webkit-scrollbar-track {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 1px;
    background-color: transparent;
  }

  /*定义滑块 内阴影+圆角*/
  ::-webkit-scrollbar-thumb {
    border-radius: 1px;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: transparent;
  }
}
.flex1 {
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
}

.container {
  margin: auto;
}
.container .page1 {
  position: relative;
}
.container .page1 .huibg {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 200;
  z-index: 10;
}
.container .page1 .huibg div {
  padding: 5px 20px;
}
@media screen and (max-width: 700px) {
  .container .page1 .huibg div {
    padding: 0;
  }
}
.container .page1 .huibg div .Ctext {
  font-size: 30px;
}
@media screen and (max-width: 700px) {
  .container .page1 .huibg div .Ctext {
    font-size: 20px;
  }
}
.container .page1 .huibg div .Etext {
  font-size: 22px;
  margin: 25px auto 0;
  opacity: 0.7;
  font-weight: 100;
}
@media screen and (max-width: 700px) {
  .container .page1 .huibg div .Etext {
    font-size: 13px;
    margin: 15px auto 0;
  }
}
.container .page1 .huibg div .learnMore {
  border: 1px solid white;
  color: white;
  font-size: 25px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding: 5px 20px;
}
.container .page1 .huibg div .learnMore:hover {
  background-color: #0C4381;
  border: 1px solid #0C4381;
  box-shadow: 0 0 10px 5px rgba(12, 67, 129, 0.5);
}
@media screen and (max-width: 700px) {
  .container .page1 .huibg div .learnMore {
    font-size: 16px;
  }
}
.container .page1 video, .container .page1 .page1_bg, .container .page1 .huibg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container .page1 .page1_bg {
  display: block;
  min-height: 200px;
}
.container .page2 {
  padding: 80px 0 20px;
}
@media screen and (max-width: 1200px) {
  .container .page2 {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 700px) {
  .container .page2 {
    padding: 30px 0 0;
  }
}
.container .page2 .content {
  max-width: 1400px;
  width: 76%;
  margin: auto;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content {
    width: 94%;
    margin-bottom: 20px;
  }
}
.container .page2 .content .about {
  width: 100%;
}
.container .page2 .content .about .title {
  font-size: 42px;
  color: #333333;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.container .page2 .content .about .details {
  font-size: 18px;
  color: #666666;
  line-height: 35px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details {
    font-size: 15px;
    line-height: 25px;
  }
}
.container .page2 .content .about .details img {
  max-width: 100%;
}
.container .page2 .content .about .details .img {
  width: 70%;
  border-radius: 10px;
  margin: 40px 15%;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .img {
    width: 90%;
    margin: 10px 5%;
  }
}
.container .page2 .content .about .details .honor {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 50px auto;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .honor {
    margin: 20px auto;
  }
}
.container .page2 .content .about .details .honor div {
  flex: 0 0 48%;
  text-align: center;
}
.container .page2 .content .about .details .honor div img {
  height: 350px;
  object-fit: contain;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .container .page2 .content .about .details .honor div img {
    height: 280px;
  }
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .honor div img {
    height: 150px;
  }
}
.container .page2 .content .about .details .honor div p {
  font-size: 22px;
  font-weight: 500;
  color: #343434;
  line-height: 50px;
  border-bottom: 1px solid #CCCCCC;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .honor div p {
    font-size: 15px;
    line-height: 30px;
  }
}
.container .page2 .content .about .details .certificate {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 50px auto 0;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .certificate {
    margin: 20px auto;
  }
}
.container .page2 .content .about .details .certificate div {
  flex: 0 0 24%;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .certificate div {
    flex: 0 0 48%;
  }
}
.container .page2 .content .about .details .certificate div img {
  height: 380px;
  object-fit: contain;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .container .page2 .content .about .details .certificate div img {
    height: 300px;
  }
}
.container .page2 .content .about .details .certificate div p {
  font-size: 22px;
  font-weight: 500;
  color: #343434;
  line-height: 50px;
  border-bottom: 1px solid #CCCCCC;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .certificate div p {
    font-size: 15px;
    line-height: 30px;
  }
}
.container .page2 .content .about .details .p1 {
  font-size: 28px;
  font-weight: bold;
  color: #343434;
  line-height: 35px;
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .p1 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 5px;
  }
}
.container .page2 .content .about .details .p2 {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 35px;
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .p2 {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
  }
}
.container .page2 .content .about .details .Culture1 img {
  width: 100%;
  object-fit: contain;
}
.container .page2 .content .about .details .Culture2 {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.container .page2 .content .about .details .Culture2 div {
  flex: 0 0 48%;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .Culture2 div {
    flex: 0 0 100%;
  }
}
.container .page2 .content .about .details .Culture2 div img {
  border-radius: 10px;
  height: 490px;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .container .page2 .content .about .details .Culture2 div img {
    height: 400px;
  }
}
@media screen and (max-width: 700px) {
  .container .page2 .content .about .details .Culture2 div img {
    height: auto;
    width: 100%;
  }
}
.container .page2 .content .recruit {
  width: 100%;
}
.container .page2 .content .recruit .recruitNav {
  margin-bottom: 110px;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .recruitNav {
    margin-bottom: 30px;
  }
}
.container .page2 .content .recruit .recruitNav .recruitNavLi {
  flex: 0 0 32%;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .recruitNav .recruitNavLi {
    box-shadow: 0 0 10px 2px rgba(6, 0, 1, 0.1);
  }
}
.container .page2 .content .recruit .recruitNav .recruitNavLi .recruitJoin {
  width: 100%;
}
.container .page2 .content .recruit .recruitNav .recruitNavLi p {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  margin: 15px auto 20px;
}
@media screen and (max-width: 1200px) {
  .container .page2 .content .recruit .recruitNav .recruitNavLi p {
    font-size: 20px;
    margin: 10px auto 15px;
  }
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .recruitNav .recruitNavLi p {
    font-size: 16px;
    margin: 5px auto;
  }
}
.container .page2 .content .recruit .recruitNav .recruitNavLi .recruitDetails {
  width: 80%;
  margin: auto;
  font-size: 16px;
  color: #656565;
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .recruitNav .recruitNavLi .recruitDetails {
    width: 95%;
    font-size: 14px;
    opacity: 1;
  }
}
.container .page2 .content .recruit .recruitNav .recruitNavLi .recruitBtn {
  font-size: 20px;
  font-weight: 400;
  color: #11437B;
  margin: 20px auto 40px;
  display: block;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .container .page2 .content .recruit .recruitNav .recruitNavLi .recruitBtn {
    font-size: 18px;
    margin: 15px auto 30px;
  }
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .recruitNav .recruitNavLi .recruitBtn {
    font-size: 15px;
    opacity: 1;
  }
}
.container .page2 .content .recruit .recruitNav .recruitNavLi:hover {
  box-shadow: 0 0 10px 2px rgba(6, 0, 1, 0.1);
}
.container .page2 .content .recruit .recruitNav .recruitNavLi:hover .recruitBtn, .container .page2 .content .recruit .recruitNav .recruitNavLi:hover .recruitDetails {
  opacity: 1;
}
.container .page2 .content .recruit .title {
  font-size: 30px;
  font-weight: bold;
  color: #343434;
  margin-bottom: 30px;
}
.container .page2 .content .recruit .bghjDetails img {
  max-width: 100%;
}
.container .page2 .content .recruit .bghjDetails .bghjImg {
  border-radius: 5px;
  object-fit: cover;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .bghjDetails .bghjImg {
    margin-bottom: 10px;
  }
}
.container .page2 .content .recruit .bghjDetails .bghjImg:nth-child(1) {
  width: 100%;
}
.container .page2 .content .recruit .bghjDetails .bghjImg:nth-child(2) {
  width: 59%;
  float: left;
  height: 350px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .bghjDetails .bghjImg:nth-child(2) {
    height: 150px;
  }
}
.container .page2 .content .recruit .bghjDetails .bghjImg:nth-child(3) {
  width: 39%;
  float: right;
  height: 350px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .recruit .bghjDetails .bghjImg:nth-child(3) {
    height: 150px;
  }
}
.container .page2 .content .contact {
  width: 100%;
}
.container .page2 .content .contact .title {
  font-size: 30px;
  font-weight: bold;
  color: #343434;
  margin: 80px auto 30px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .title {
    font-size: 20px;
    margin: 0 auto 15px;
  }
}
.container .page2 .content .contact .contactTop1 {
  font-size: 18px;
  color: #666666;
  line-height: 35px;
  margin: 50px auto;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactTop1 {
    font-size: 16px;
    margin: 15px auto;
  }
}
.container .page2 .content .contact .map {
  height: 400px;
  width: 100%;
  overflow: hidden;
}
.container .page2 .content .contact .map img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .map {
    height: 200px;
  }
}
.container .page2 .content .contact .contactTop2 {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.container .page2 .content .contact .contactTop2 .contactTopLI {
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
}
.container .page2 .content .contact .contactTop2 .contactTopLI p {
  font-size: 18px;
  color: #666666;
  line-height: 35px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactTop2 .contactTopLI p {
    font-size: 15px;
    line-height: 25px;
  }
}
.container .page2 .content .contact .contactTop2 .contactTopLI .titleP {
  font-size: 24px;
  font-weight: bold;
  color: #343434;
  line-height: 83px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactTop2 .contactTopLI .titleP {
    font-size: 16px;
    line-height: 40px;
  }
}
.container .page2 .content .contact .contactBottom {
  margin-top: 50px;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactBottom {
    margin-top: 20px;
  }
}
.container .page2 .content .contact .contactBottom .contactBottomLi {
  flex: 0 0 24%;
  border: 1px solid #F3F3F3;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactBottom .contactBottomLi {
    flex: 0 0 49%;
    margin-bottom: 10px;
  }
}
.container .page2 .content .contact .contactBottom .contactBottomLi img {
  width: 70px;
  height: 70px;
  margin: 40px auto 20px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactBottom .contactBottomLi img {
    width: 35px;
    height: 35px;
    margin: 20px auto 10px;
  }
}
.container .page2 .content .contact .contactBottom .contactBottomLi p {
  font-size: 24px;
  color: #343434;
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactBottom .contactBottomLi p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.container .page2 .content .contact .contactBottom .contactBottomLi .t2 {
  display: none;
}
.container .page2 .content .contact .contactBottom .contactBottomLi .t2 .Dot {
  width: 6px;
  height: 6px;
  background: #999999;
  border-radius: 50%;
  display: inline-block;
}
.container .page2 .content .contact .contactBottom .contactBottomLi .t2 .Dot + span {
  margin-right: 15px;
}
@media screen and (max-width: 700px) {
  .container .page2 .content .contact .contactBottom .contactBottomLi .t2 .Dot + span {
    margin-right: 5px;
  }
}
.container .page2 .content .contact .contactBottom .contactBottomLi:hover .t1 {
  display: none;
}
.container .page2 .content .contact .contactBottom .contactBottomLi:hover .t2 {
  display: block;
}
.container .about_footer {
  padding: 35px 0;
  max-width: 1400px;
  width: 76%;
  margin: auto;
  text-align: center;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .container .about_footer {
    width: 94%;
    padding: 10px 0;
    display: block;
  }
}
.container .about_footer > div {
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  border-right: 1px solid #E9E9E9;
  font-size: 16px;
}
.container .about_footer > div:last-child {
  border-right: 0;
}
@media screen and (max-width: 700px) {
  .container .about_footer > div {
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    display: flex;
    /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
    align-items: center;
    justify-content: center;
    justify-content: left;
    margin-bottom: 15px;
  }
  .container .about_footer > div div {
    font-size: 13px;
  }
}
.container .about_footer img {
  margin-bottom: 15px;
}
@media screen and (max-width: 700px) {
  .container .about_footer img {
    width: 25px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}

.hide {
  display: none;
}

hr {
  height: 1px;
  width: 100%;
  border: 0;
  background-color: #DEDEDE;
}

/*# sourceMappingURL=about.css.map */
