html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-weight: normal;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

* {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

*:hover,
*:focus,
*:active {
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
input[type=button],
input[type=text],
input[type=number],
textarea {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

input[type=password]::-webkit-textfield-decoration-container {
  visibility: hidden;
}

.nofloat:after {
  content: "";
  display: table;
  clear: both;
}

/* ::-webkit-scrollbar{ 
	width:10px;
	height: 10px;
	background-color:#f1f1f1;
} */
::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border: 3px #f1f1f1 solid;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: background 0.5s linear;
  transition: background 0.5s linear;
}

*:hover::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
}

::-webkit-scrollbar-corner {
  background-color: #f1f1f1;
}

img {
  width: 100%;
  vertical-align: middle;
}

body {
  background: #000;
  color: #fff;
}

.notSafari {
  height: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000;
}
.notSafari .inner {
  max-width: 320px;
  width: calc(100% - 30px);
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.notSafari .top {
  padding: 25px 15px;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, #2e6fd5, #86b5fd);
}
.notSafari .top .logo {
  width: 60px;
  margin-right: 12px;
  padding: 3px;
  background-color: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 2px 2px 6px #1a4180;
}
.notSafari .top p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.notSafari .copy {
  padding: 25px 15px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.notSafari .copy input {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  background-color: #eee;
  border-radius: 5px 0 0 5px;
  font-size: 15px;
  color: #999;
}
.notSafari .copy .btn {
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
  background: linear-gradient(0deg, #2e6fd5, #86b5fd);
  border-radius: 0 5px 5px 0;
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.operate {
  height: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  padding: 25px 10px 40px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
}
.operate ul {
  max-width: 350px;
  margin: auto;
  padding-left: 22px;
  list-style: decimal;
}
.operate li + li {
  margin-top: 8px;
}
.operate .icon {
  padding-left: 4px;
}
.operate .icon img {
  width: 16px;
  vertical-align: top;
}
.operate .example {
  padding: 10px 5px;
}

.error {
  height: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error .inner {
  width: calc(100% - 20px);
  max-width: 350px;
  padding: 10px;
  background: url(/img/actress.webp) no-repeat center top/cover;
  color: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.error .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #4b024b;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}
.error .content {
  width: 100%;
  height: 100%;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(252, 201, 249, 0.5);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 0 20px #fc9df7 inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.error h5 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.error .tip {
  padding: 15px;
  background-color: rgba(143, 29, 137, 0.5);
  font-size: 13px;
  border-radius: 5px;
  text-align: center;
  color: #a5a5a5;
}
.error .tip p + p {
  margin-top: 5px;
}

iframe {
  width: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  border: none;
}/*# sourceMappingURL=main.css.map */