:root {
  /* Base font size */
  font-size: 10px;

  /* Full grid area variable */
  --fullGrid: 1 / 1 / -1 / -1;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background-color: #fcfcfc;
}

body::-webkit-scrollbar {
	width: 0px;
  display: none;
	background-color: #F5F5F5;
}
@font-face {
  font-family: 'Persagy2.0';
  src: url('https://cdn.meos.center/yushuweb/activities/meos/Persagy2.0-Medium.ttf');
}
.gonganwangbei > img{
  width: 16px;
  height: 16px;
}
.nav{
  width: 100%;
  height: 56px;
  position: fixed;
  top: 0;
  box-sizing: border-box;
  left: 0;
  transition: all 0.3s ease;
  padding-left: 20px;
  padding-right: 20px;
  right: 0;
  display: flex;
  flex-direction: row;
  background-color: transparent;
  transition: all 0.5s ease;
  align-items: center;
  justify-content: space-between;
  z-index: 909;
}
.pages{
  width: 100%;
  overflow: hidden;
}
.nav.header-scroll-up{
  top: -100%;
}

.nav.scroll{
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 10px 0px #1B21291A;
  height: 48px;
}

.nav-logo{
  cursor: pointer;
  background-image: url('https://cdn.meos.center/yushuweb/activities/meos/css/logo/logo2.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
  width: 100px;
  height: 22px;
}

.nav-log-r{
  background-image: url('https://cdn.meos.center/yushuweb/activities/meos/css/logo/logo1.png');
  background-size: auto 100%;
  width: 100px;
  opacity: 0;
  background-repeat: no-repeat;
  height: 22px;
}
.nav.scroll .nav-log-r{
  opacity: 1;
  height: 20px;
  width: auto;
}
.nav.scroll .nav-logo{
  height: 20px;
}
.nav.scroll .menu-pill{
  padding: 0px 8px;
}
.nav.scroll .menu-btn{
  height: 32px;
  width: 100px;
}
.nav-menus{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.menu-pill{
  font-family: Microsoft YaHei UI;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s ease;
  line-height: 20px;
  cursor: pointer;
  letter-spacing: 0em;
  text-align: center;
  padding: 8px;
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
}
.menu-pill+.menu-pill{
  margin-left: 64px;
}
.menu-pill.active, .menu-pill:hover, .menu-pill:active{
  font-weight: 700;
}

.menu-more{
  width: 24px;
  height: 24px;
  margin-left: 20px;
}

.menu-more img{
  width: 24px;
  height: 24px;
}

.nav.scroll .menu-pill{
  color: #1B2129;
}

.nav.scroll .menu-pill.active, .nav.scroll .menu-pill:hover, .nav.scroll .menu-pill:active{
  color: #246FE5;
}

.menu-btn{
  width: 88px;
  height: 28px;
  border-radius: 4px;
  background: #8B949E1A;
  text-align: center;
  border: 1.5px solid #FFFFFF4D;
  font-family: Microsoft YaHei UI;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav.scroll .menu-btn{
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
linear-gradient(0deg, #E1E5EB, #E1E5EB);
  color: #1B2129;
  border: 1.5px solid #E1E5EB;
} 

/**  STYLE 11 */
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0,0,0,0.1);
  border: 1px solid #ccc;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(left, #fff, #e4e4e4);
  border: 1px solid #aaa;
}

body::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

body::-webkit-scrollbar-thumb:active {
  background: linear-gradient(left, #22ADD4, #1E98BA);
}

.page-1 {
  position: relative;
  /* Create grid spanning viewport width & height */
  display: grid;
  grid-template-rows: 100vh;
  overflow: hidden;
  background-color: #000;
  z-index: 2;
}

.page-bottom{
  position: fixed;
  top: 0;
  width: 100%;
}

.video-bg {
  /* Span the full grid */
  grid-area: var(--fullGrid);

  /* Re-size video to cover full screen while maintaining aspect ratio */
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;

  /* Display video below overlay */
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-bg::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  /* Span the full grid */
  grid-area: var(--fullGrid);

  /* Center Content */
  display: grid;
  flex-direction: column;
  justify-content: center;
  align-content: flex-end;
  text-align: center;
  position: relative;
  /* Semi-transparent background */
  background-color: rgba(0, 0, 0, 0.55);
}

.video-cap{
  position: relative;
}

.video-caption{
  display: grid;
  flex-direction: column;
  justify-content: center;
  align-content: flex-end;
  text-align: center;
  width: 100%;
}
.arrowdown{
  width: 26px;
  position: absolute;
  left: 50%;
  margin-left: -13px;
  bottom: 40px;;
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}


.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.video-caption-top{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 180px;
  padding: 0 24px;
}

.video-caption-top h1{
  font-family: PingFang SC;
  font-family: PingFang SC;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF
}

.video-overlay p{
  text-align: center;
  color: #FFFFFF;
  font-family: PingFang SC;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 0px;
}

.play-video-btn, .play-video-btn-en{
  margin-top: 92px;
  margin-bottom: 9px;
  opacity: 0.9;
  cursor: pointer;
  left: 50%;
  display: flex;
  height: 57px;
  border-radius: 8px;
  align-items: center;
  padding: 0px 20px;
  justify-content: center;
  background-color: #246FE5;
}
.play-video-btn-en{
  padding: 0px 20px;
  margin-top: 18px;
  height: 54px;
  background-color: rgba(255,255,255,0.3);
  border: 2px solid rgba(255, 255, 255, 0.90);
}

.play-video-btn:hover, .play-video-btn:active{
  background-color: #215DD9;
}
.play-video-btn span, .play-video-btn-en span{
  font-family: Microsoft YaHei UI, PingFang SC;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  margin-right: 12px;
  text-align: left;
  color: #FFFFFF;
}
.play-video-btn-en span{
  font-family: Roboto, "Helvetica Neue";
}
.play-video-btn-en span{
  color: rgba(255, 255,255, 1);
}

.play-video-btn img, .play-video-btn-en img{
  width: 24px;
  height: 24px;
}

.page-2{
  position: relative;
  overflow: visible;
  background: #EBF6FF;
}

.page-window{
  background: #EBF6FF;
  box-sizing: border-box;
  overflow: hidden;
  padding: 55px 0 44px 0;
}
.page-title{
  margin-bottom: 40px;
}
.page-title h2{
  font-family: PingFang SC;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: center;
  color: #1B2129;
}

.page-title h3{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.page-title h3 span{
  font-family: PingFang SC;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
  color: #1B2129;
  margin-right: 6px;
}
.page-content-img{
  width: 371px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-title h3 img{
  width: 68px;
}

.page-title p{
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: center;
  color: #626C78;
}

.page-title p span{
  color: #168FE0;
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}

::selection {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.page-swipe{
  display: flex;
  padding: 48px 24px 24px 24px; 
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.page-swipe-title{
  width: 100%;
  flex: 1 1 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 24px;
}

.page-swipe-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 24px;
}

.page-swipe-title h2{
  font-family: PingFang SC;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: left;
  color: #246FE5;
}

.page-swipe-title h3{
  font-family: PingFang SC;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: left;
  margin: 0;
  color: #1B2129;
  position: relative;
}

.page-swipe-title p{
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: left;
  color: #626C78;
  margin: 12px 0 0 0;
}

.plsy-btns{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 36px;
  font-family: Microsoft YaHei UI;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  justify-content: center;
  color: #215DD9;
  
}
.plsy-btn{
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #9FC9FB;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.plsy-btn img{
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.plsy-btn + .plsy-btn{
  margin-left: 16px;
}

.page-swiper{
  width: 100%;
  background-color: transparent;
}
.swiper-container{
  overflow: visible;
}
.page-swiper .swiper-slide{
  width: 342px;
  max-width: 342px;
  height: 191.392px;
  border-radius: 8px;
  background-color: transparent;
  height: auto;
  box-shadow: 0px 20px 30px 0px #1B212914;
}

.page-swiper .swiper-slide .plyr{
  border-radius: 8px;
  overflow: hidden;
}
.page-swiper-img{
  width: 342px;
  height: 191.392px;
  border-radius: 8px;
}
.page-swiper-pagination.swiper-pagination-bullets{
  display: flex;
  align-items: center;
  padding-top: 24px;
  justify-content: center;
}
.page-swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet{
  width: 30px;
  height: 6px;
  border-radius: 6px;
  background-color: #C4C9CF;
  opacity: 1;
}
.page-swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
  width: 30px;
  height: 6px;
  border-radius: 6px;
  background-color: #1B2129;
  opacity: 1;
}
.page-main {
  display: flex;
  padding: 48px 24px 0px 24px; 
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #F1F4F6;
}

.page-main-title{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 31px;
}
.page-main-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 24px;
}
.page-main-title h2{
  font-family: PingFang SC;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: left;

  color: #246FE5;
}

.page-main-title h3{
  font-family: PingFang SC;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: left;
  margin: 0;
  color: #1B2129;
  position: relative;
}

.page-main-title p{
  margin: 12px 0 0 0;
  width: 100%;
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: left;
  color: #626C78;
}

.page-img-content{
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-video-wrap{
  width: 100%;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  justify-content: center;
}
.page-video-bg{
  background-image: url('https://cdn.meos.center/yushuweb/activities/meos/video/显示器边框默认.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 342px;
  height: 191.2px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.page-main-view .page-img{
  width: 328px;
  border-radius: 4px 4px 0px 0px;
  overflow: hidden;
  margin: 0 auto;
}
.page-view-grid{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.page-view-container{
  width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.page-grid-img{
  width: 580px;
  height: 630px;
  border-radius: 20px;
  border: 1px solid #C4C9CF;
  overflow: hidden;
}

.plyr__poster{
  height: 100%;
}

.page-grid-img .plyr.plyr--video{
  min-width: 100%;
  min-height: 100%;
  max-width: auto;
  max-height: auto;
  height: 100%;
}

.page-grid-img .js-player{
  grid-area: var(--fullGrid);

  /* Re-size video to cover full screen while maintaining aspect ratio */
  min-width: 100%;
  min-height: 100%;
  max-width: 342px;
  max-height: 191.392px;
  object-fit: cover;

  /* Display video below overlay */
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal-backdrop.show{
  background-color: #1b2129;
  opacity: 1;
}
.plyr__poster{
  background-color: transparent !important;
}

.footer-wrap{
  width: 100%;
  background-color: #E8ECF0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px 21px 24px;
  justify-content: flex-end;
}

.footer-links{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer-left{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-left h2{
  font-family: PingFang SC;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
  color: #2E3742;
  margin: 0;
}

.footer-left >p{
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
  color: #626C78;
  margin: 0;
}

.footer-left h3{
  display: flex;
  margin: 12px 0 0 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.phone-label img{
  font-family: PingFang SC;
  width: 32px;
  height: 32px;
  margin-right: 12;
  text-align: left;
  color: #626C78;
}

.page-9, .page-4{
  padding: 48px 24px 44px 24px;
}

.phone{
  font-family: 'Persagy2.0';
  font-size: 24px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: right;
  color: #215DD9;
}

a:active, a:hover{
  text-decoration: none;
}

.footer-right{
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  align-items: center;
  justify-content: flex-end;
}

.footer-right span{
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  margin-top: 16px;
  text-align: left;
  color: #626C78;
}
.qrcode{
  width: 116px;
  height: 116px;
  padding: 8px;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #F1F4F6;
}
.qrcode-img{
  width: 100px;
  height: 100px;
}
hr{
  width: 100%;
  margin-top: 26px;
  margin-bottom: 11px;
  border-top: none;
  border-bottom: 1px solid #E1E5EB;
}

.copy-right{
  display: block;
  flex-direction: column;
  margin-bottom: 0px;
  align-items: center;
  justify-content: center;
  font-family: PingFang TC;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  color: #222F4059;
}
.copy-right a, .copy-right a:hover, .copy-right a:active{
  color: #222F4059;
  text-decoration: none;
}

.modal.show{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal.show .modal-dialog{
  width: 80%;
  max-width: 100%;
  margin-top: 0%;
}

.modal-body{
  position: relative;
  padding: 0;
}

button:focus {outline:0;}
button:active {
  outline: none;
  border: none;
}

.close{
  position: fixed;
  right: 10px;
  top: 10px;
  border: none;
  outline: 0;
  z-index: 999;
  font-size: 32px;
  font-weight: 400;
  opacity: 1.0;
  background-color: #333;
}

.close span{
  color: #ddd;
  text-shadow: none;
}

.plyr__video-wrapper{
  background-color: transparent;
  background: none;
}

.footer-nav{
  height: 60px;
  width: 100%;
  background: linear-gradient(271.02deg, #215DD9 0%, #2481F2 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footer-nav img{
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.footer-nav span{
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0px;
  text-align: left;
  color: #D9EBFF;
}

