html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
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,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

*[hidden] {
  display: none;
}
body {
  line-height: 1;
}
menu,
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  
  color: #2db7f5;
  background: none;
  border: none;
  outline: none;
}


::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

html,
body {
  scrollbar-width: none;
}

html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  
  flex-direction: column;
  scroll-behavior: smooth;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
  font-family: "Rubik", "Open Sans", sans-serif;
}

select {
  height: 40px;
}

html {
  
  touch-action: manipulation;
}

body {
  
  -webkit-text-size-adjust: 100% !important;
}

b {
  font-weight: 700;
}


:root {
  
  --header-bgcolor: #ff1744;

  
  --button-color: #e91e63;
  --color-warning: #ffc107;
  --color-icon: #00b578;
  --color-light: #f8f9fa;
  --color-dark: #343a40;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #343a40;
  
  --black-90: #121212;
  --black-70: #4d4d4d;
  --black-50: #808080;
  --black-30: #b3b3b3;
  --black-10: #e6e6e6;

  
  --color-red: #e53935;
  --color-orange: #fb8c00;
  --color-yellow: #fdd835;
  --color-green: #43a047;
  --color-blue: #1e88e5;
  --color-indigo: #3949ab;
  --color-purple: #8e24aa;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #000; 
  cursor: pointer;
  border-radius: 4px;
  margin: 0;
  padding: 0;
}


input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: #000; 
  border-radius: 4px;
}


input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red; 
  border: none;
  margin-top: -6px; 
}


input[type="range"]::-moz-range-track {
  height: 8px;
  background: #000; 
  border-radius: 4px;
}


input[type="range"]::-moz-range-progress {
  height: 8px;
  background: black; 
  border-radius: 4px;
}


input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red; 
  border: none;
}

input[type="file"] {
  font-size: 13px;

  border-radius: 5px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="file"]::-webkit-file-upload-button {
  background-color: #000000; 
  color: white; 
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #666;
}



header.header {
  
  min-height: 50px;

  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--header-bgcolor);
  color: black;
  flex-wrap: wrap;
  
  position: sticky;
  top: 0;
  z-index: 1;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

header.header .logo img {
  margin-left: 3px;
  background-color: #fff;
  width: 46px;
  height: 46px;
}

.header-left {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.header-right {
  visibility: hidden;
  display: flex;
  gap: 8px;
  font-size: 14px;
  flex-wrap: wrap;
}
.header-right a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  background-color: #fafafa;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 12px;
}
.header-right a:hover {
  background-color: #e0e0e0;
}

.header a.selectable {
  text-decoration: none;
  padding: 5px 16px 5px 5px;

  display: inline-block;
  color: #fff;
  
  border-radius: 3px;
  transition: all 0.3s ease;
  font-size: 16px;
}

header.title {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--header-bgcolor);
  min-height: 50px;
  font-size: 16px;
  color: #fff;
}

.title a {
  color: #fff;
  text-decoration: none;

  font-size: 14px;

  display: flex;
  align-items: center;
}

#site_title {
  margin-left: 3px;
}

#headerUserBack {
  margin-right: 8px;
}

#app_title {
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
  display: none;
}

.title span {
  font-size: 18px;
}

#site_title img {
  width: 46px;
  height: 46px;
}



.container {
  flex: 1;
  width: 1080px;

  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;

  border: 1px solid #e91e63;

  margin: 1% auto;
}

@media screen and (orientation: portrait) {
  .container {
    height: 100%;
    width: 96%;
    padding: 1%;
    justify-content: space-between;
    font-size: 14px;
  }
}


#page_footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  color: #666;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  min-height: 36px;
}

#page_footer a {
  text-decoration: none;
  margin: 0 8px;
  color: #666;
}


@media screen and (orientation: portrait) {
  .beian {
    display: none;
  }
}


.dataSafeTips {
  text-align: center;
  margin-top: 24px;
  color: var(--button-color);
  line-height: 20px;
}

.dataSafeTips span {
  font-weight: 500;
}
