* {
    margin: 0;
    padding: 0;
}
#main {
    background: #fdfdfd;
}
#down_wrap {
    width: 1060px;
    min-height: 640px;
    margin: 30px auto;
}
.down_up {
    width: 728px;
    height: 90px;
    margin: 20px auto;
}
#down_wrap h2 {
    line-height: 32px;
    font-size: 20px;
    text-align: center;
}
a {
    color: #369/*#424242*/;
    text-decoration: none;
}
.down_box {
    width: 100%;
    margin: 10px auto;
    border: 1px solid #d3d3d3;
}
.down_box p {
    line-height: 30px;
    padding: 10px;
    text-align: center;
}
.down_form {
    height: 60px;
    overflow: hidden;
}
.captcha {
float: left;
    /*margin-left: 99px;*/
    padding: 1px;
    background: #ffffff26;
    cursor: pointer;
    border: 1px dashed #ded8d8;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
img {
    border: none;
}
.ipt_captcha {
    float: left;
    width: 104px;
    margin-left: 3px;
    margin-right: 0px;
    padding: 10px;
    border: 1px solid #d3d3d3;
}
.green {
    color: #e8f0de;
    border: solid 1px #538312;
    background: #64991e;
    background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
    background: -moz-linear-gradient(top, #7db72f, #4e7d0e);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
.button {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 18px/100% 'Microsoft yahei',Arial, Helvetica, sans-serif;
    padding: .5em 2em .55em;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.h5ui-btn_danger {
font-size: 17px;
    -webkit-border-radius: 5px;
    float: left;
    width: 101px;
    margin-left: 4px;
    margin-right: 2px;
    padding: 7px;
    border: 1px solid #d3d3d3;
	box-shadow: 0 3px 2px rgba(0,0,0,.2);
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	cursor: pointer;

}
.h5utent {
    display: inline-block;
}
/****************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  /*line-height: 1;*/
}
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;
}
* {
  box-sizing: border-box;
  font-family: "Î¢ÈíÑÅºÚ";
}
.loadingBox {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
.loadingBox .loadingIcon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loadingBox .loadingIcon span {
  height: 64px;
  width: 64px;
  background: url(../yzm/loading.png) center center no-repeat;
  background-size: 100% 100%;
  animation: rotateBox 2s linear infinite;
}
.loadingBox .loadingMain {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100vw;
  height: 100vh;
  cursor: not-allowed;
}
.loadingBox p {
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@keyframes rotateBox {
  0 {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loadingBox[data-show="0"] {
  display: none;
}