@charset "utf-8";
/* reset.css */
body {
  overflow-y: visible !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
body * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
}
/** html4 reset **/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
fieldset,
img {
  border: 0 none;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var,
b,
h1,
h2,
h3 {
  font-style: normal;
  font-weight: normal;
}
ol,
ul,
li {
  list-style-type: none;
}
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td,
caption {
  vertical-align: top;
  text-align: left;
}
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="date"],
input[type="month"],
input[type="tel"],
input[type="radio"],
input[type="checkbox"],
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
img {
  vertical-align: middle;
  font-size: 0;
  display: block;
  width: 100%;
}
h1 {
  font-size: 0.24rem;
}
h2 {
  font-size: 0.2rem;
}
h3 {
  font-size: 0.18rem;
}
h4 {
  font-size: 0.16rem;
}
h5 {
  font-size: 0.14rem;
}
/** html5 reset **/
header,
footer,
section,
nav,
menu,
details,
hgroup,
figure,
figcaption,
article,
aside {
  margin: 0;
  padding: 0;
  display: block;
}
::-moz-placeholder {
	color: #ABADAF;
}
::-webkit-input-placeholder {
	color: #ABADAF;
}
a {
  text-decoration: none;
  color: #333;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  opacity: 1;
}
.clear {
  clear: both;
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
  content: "";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.clearfix {
  zoom: 1;
}
/** Body, links, basics **/
html {
  font-size: 100px;
}
html,
body {
  width: 100%;
  height: 100%;
  position: relative;
}
body {
  font-size: 0.14rem;
  line-height: 1.8;
  font-family: -apple-system-font, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #21292E;
  background: #F5F7F8;
}

.boost {
  -webkit-overflow-scrolling: touch;
}
/* 布局grid */
section.main {
  height: auto;
  position: relative;
}
section.main.fixed {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
section.main.fixed > article {
  -moz-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
section.main.fixed > article[data-scroll="true"] {
  overflow: hidden;
}
.ui.layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  height: inherit!important;
}
.ui.layout.vertical {
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ui.layout > .row-1 {
  -moz-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.ui.layout > .row-2 {
  -moz-box-flex: 2;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  flex: 2;
}
.ui.layout > .row-3 {
  -moz-box-flex: 3;
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  flex: 3;
}
.ui.layout:not(.vertical) > .row-1,
.ui.layout:not(.vertical) > .row-2,
.ui.layout:not(.vertical) > .row-3 {
  width: 0.2rem;
}
.scroll {
  overflow-x: hidden;
  overflow-y: scroll;
}

/* 弹窗Dialog */
.ui.dialog-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 24, 38, 0.7);
  z-index: 5999;
  display: block;
}
.ui.dialog {
  position: fixed;
  z-index: 6000;
  left: 10%;
  top: 50%;
  width: 80%;
  transform: translateY(-50%);
  word-break: break-all;
  text-align: center;
  background-color: rgba(253, 253, 253, 0.95);
  -moz-border-radius: 0.07rem;
  -webkit-border-radius: 0.07rem;
  border-radius: 0.07rem;
}
.ui.dialog .ui.dialog-cnt {
  padding: 0.15rem 0.2rem;
}
.ui.dialog .ui.dialog-cnt h4 {
  font-size: 0.18rem;
  color: #0F1826;
  line-height: 0.25rem;
  font-weight: 700;
}
.ui.dialog .ui.dialog-cnt .txt {
  font-size: 0.14rem;
  color: #6E7580;
  line-height: 0.2rem;
  text-align: justify;
}
.ui.dialog .ui.dialog-cnt .txt strong {
  color: #0F1826;
  margin-right: 0.05rem;
  font-weight: 700;
}
.ui.dialog .ui.dialog-cnt .txt.text-center {
  text-align: center;
}
.ui.dialog .ui.dialog-cnt .txt span {
  color: #0F1826;
}
.ui.dialog-btn {
  border-top: 1px solid #EBEDF0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.ui.dialog-btn .ui.button {
  -moz-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
  height: 0.52rem;
  line-height: 0.52rem;
  background: none;
  font-size: 0.16rem;
  color: #A9AFB8;
}
.ui.dialog-btn .ui.button.act {
  color: #FF5353;
}
.ui.dialog-btn .ui.button:not(:nth-child(1)) {
  border-left: 1px solid #EBEDF0;
}
