/* html, body{
  background: url(./bg.png) no-repeat;
  background-size: cover;
  height: 100%; 
  overflow: hidden;
} */
a{
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

.select-join-wrap{
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(./images/bg.png) no-repeat;
  background-size: cover;
}


.select-joinmeeting{
  width: 100%;
  height: 100%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 10%;
  z-index: 1;
  opacity: 0; 
}
.select-joinmeeting h4{
  padding-bottom: 30px;
  font-size: 28px;
  font-weight: 400;
  font-size: 16px;
}
.select-joinmeeting .join-items{
  width: 310px;
  padding: 30px 0;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  position: relative;
}
.select-joinmeeting .join-items:hover{
  background: #fffcfa;
}
.select-joinmeeting .join-items .t{
  padding-top: 15px;
  font-size: 16px; 
  color: #303134;
}
.select-joinmeeting .join-items .tips{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  font-size: 14px;
  color: #a4a4a4;
}

.select-joinmeeting .split-line{
  position: relative;
  padding: 5px 0;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}
.select-joinmeeting .split-line::after{
  content: '';
  display: block;
  height: 1px;
  overflow: hidden;
  background: #dbdbdb;
  position: absolute;
  left: 0;
  bottom: 19px;
  right: 0;
  z-index: 1;
}
.select-joinmeeting .split-line span {
  background: #f6f6f8;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  font-size: 14px;
}
.select-joinmeeting .download-tips{
  padding-top: 20px;
  font-size: 14px;
}
.select-joinmeeting .download-tips a{
  color: #f89b34;
}
.select-joinmeeting .download-tips a:hover{
  text-decoration: none;
}


.rmeet-text{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 40px;
  color: #6e6a67;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  -webkit-animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.rmeet-text-out{
  -webkit-animation: blur-out-expand 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: blur-out-expand 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* rmeeting 入场 */
@-webkit-keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
/* 离场 */
@-webkit-keyframes blur-out-expand {
  0% {
    -webkit-filter: blur(0.01);
            filter: blur(0.01);
  }
  100% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px) opacity(0%);
            filter: blur(12px) opacity(0%);
  }
}
@keyframes blur-out-expand {
  0% {
    -webkit-filter: blur(0.01);
            filter: blur(0.01);
  }
  100% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px) opacity(0%);
            filter: blur(12px) opacity(0%);
    z-index: 0;
  }
}

/* 入会-入场 */
.select-joinmeeting-in{
  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
          