﻿html,
body {
  width: 100%;
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

canvas {
  display: block;
  vertical-align: bottom;
}

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

#particles-js {
  width: 100%;
  padding-bottom: 100%;
}

.sk-rotating-plane {
  display: none;
  width: 80px;
  height: 80px;
  margin: auto;
  background-color: white;
  -webkit-animation: sk-rotating-plane 1.2s infinite ease-in-out;
  animation: sk-rotating-plane 1.2s infinite ease-in-out;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -80px;
}

.sk-rotating-plane.active {
  display: block;
}

@keyframes sk-rotating-plane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

@keyframes login-small {
  0% {
    transform: scale(1);
    -moz-transform: scale(1);
    /* Firefox 4 */
    -webkit-transform: scale(1);
    /* Safari 和 Chrome */
    -o-transform: scale(1);
    /* Opera */
    -ms-transform: scale(1);
    /* IE 9 */
  }

  100% {
    transform: scale(0.2);
    -moz-transform: scale(0.1);
    /* Firefox 4 */
    -webkit-transform: scale(0.2);
    /* Safari 和 Chrome */
    -o-transform: scale(0.1);
    /* Opera */
    -ms-transform: scale(0.1);
    /* IE 9 */
  }
}

.login {
  width: 100%;
  border-radius: 5px;
  margin-top: 50px;
}

.login-top {
  font-size: 24px;
  margin-top: 30px;
  padding-left: 40px;
  box-sizing: border-box;
  color: #333333;
  margin-bottom: 50px;
}

.login-center {
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.login-center-img {
  width: 20px;
  height: 20px;
  float: left;
  margin-top: 5px;
}

.login-center-img > img {
  width: 100%;
}

.login-center-input {
  flex: 1;
  height: 30px;
  position: relative;
}

.login-center-input input {
  z-index: 2;
  transition: all 0.5s;
  padding-left: 10px;
  color: #333333;
  width: 100%;
  height: 30px;
  border: 0;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  box-sizing: border-box;
  outline: none;
  position: relative;
}

.login-center-input input:focus {
  border: 1px solid dodgerblue;
}

.login-center-input-text {
  background: white;
  padding: 0 5px;
  position: absolute;
  z-index: 0;
  opacity: 0;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  font-size: 14px;
  left: 5px;
  color: dodgerblue;
  line-height: 20px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 和 Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}

.login-center-input input:focus ~ .login-center-input-text {
  top: 0;
  z-index: 3;
  opacity: 1;
  margin-top: -15px;
}

.login.active {
  -webkit-animation: login-small 0.8s;
  animation: login-small 0.8s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.btn-group {
  display: flex;
  align-items: center;
  width: 80%;
  margin: auto;
  flex-wrap: wrap;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.btn-group > div{
  width: 100%;
  display: flex;
  border-bottom: 1px solid white;
}
.btn-group > div:last-child{
  border: none;
}
.btn-group > div >div {
  cursor: pointer;
  width: calc(50% - 2px);
  text-align: center;
  height: 40px;
  line-height: 40px;
  color: white;
  /* border: 1px solid white; */
}
.btn-group > div >div:nth-child(1){
  border-right: 1px solid white;
}
.btn-group .login-button{
  width: 100%;
}
.form {
  font-size: 12px;
}

.login-center-form {
  display: flex;
}

.login-center-label {
  width: 60px;
}

.form-input {
  width: 180px;
}

.form-radio {
  justify-content: space-between;
}

.radio-box {
  display: flex;
  align-items: center;
}

.radio-box input {
  width: 15px;
  height: 15px;
  margin: 0 5px;
}

.form-radio {
  display: flex;
}

.submit-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.submit-box input {
  border-color: #1e9fff;
  background-color: #1e9fff;
  color: #fff;
  height: 28px;
  line-height: 28px;
  margin: 5px 5px 0;
  padding: 0 15px;
  border-radius: 2px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
}
.submit {
  margin: 0 auto 40px;
  border: none;
}

.login-select select {
  width: 80px !important;
  margin-right: 5px;
}

/* .select-box{
  width:100%;
} */
.select-box {
  width: calc(100%);
  display: flex;
  justify-content: space-between;
}

.select-box > div:nth-child(1) {
  display: flex;
  align-items: center;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  color: #000000;
  text-align:center;
}

.event-visit{
	color: #000000;
}

.event-ip{
	color: #000000;
}
.check-option {
  padding: 20px;
}
.check-option .option {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.check-option .option > div {
  width: 40%;
  padding: 5px 10px;
  border: 1px solid #f1f1f1;
}
.allCheck {
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.log {
  padding: 15px;
}
.log ul li {
  font-size: 12px;
  margin-bottom: 5px;
}

:root {
  --swiper-height: calc(((600 - 80) / 1024 * 729 / 750) * 100vw);
  --pagination-height: calc((120 / 1024 * 729 / 750) * 100vw);
  --pagination-top: calc(((600) / 1024 * 729 / 750) * 100vw);
}

* {
  margin: 0;
  padding: 0;
}
.swiper-container {
  padding: 20px;
  position: relative;
}
.swiper {
  width: 100%;
  border-radius: calc(16 / 750 * 100vw);
  height: var(--swiper-height);
}
.swiper-wrapper {
  width: 80vw;
  height: var(--swiper-height);
}
.swiper-pagination-container {
  width: calc(100% - 40px);
  overflow: hidden;
  position: absolute;
  left: 20px !important;
  top: var(--pagination-top) !important;
  display: flex;
}
.swiper-pagination {
  min-width: calc(100% - 40px);
  overflow-x: scroll;
  overflow-y: hidden;
  position: static !important;
  display: flex;
  height: var(--pagination-height) !important;
}
.custom-pagination {
  flex-shrink: 0;
  width: var(--pagination-height) !important;
  margin-bottom: 10px !important;
}
.custom-pagination img {
  width: var(--pagination-height) !important;
}
.swiper-slide-content {
  height: var(--swiper-height);
  background-size: 100%;
  background-repeat: no-repeat;
}

.dialog-container {
  padding: 20px;
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}

.dialog-container > .item {
  width: 100%;
  display: flex;
}
.dialog-container > .item > div {
  border: 1px solid #f1f1f1;
  padding: 5px 10px;
}
.dialog-container > .item .left {
  width: 30%;
}
.dialog-container > .item .right {
  flex: 1;
}

.tips{
  font-size: 13px;
  margin-top: 20px;
}
.tips-content{
  text-align: center;
  margin-top: 20px;
}