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;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

body{
    font-family: 'Microsoft YaHei', Tahoma, Helvetica, Arial, sans-serif;
		-webkit-overflow-scrolling: touch;
}

::-webkit-scrollbar {
    display: none;
}


/* �����ɫ�ɲ㱳�� */
.modal-overlay, .popup-overlay, .preloader-indicator-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 10600;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    transition-property: opacity;
    -webkit-transition-property: opacity;
}
/* �����ɫ�ɲ���ʾ */
.modal-overlay.modal-overlay-visible, .popup-overlay.modal-overlay-visible, .preloader-indicator-overlay.modal-overlay-visible {
    visibility: visible !important;
    opacity: 1 !important;
}
.preLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
   -webkit-transform: translate3d(-50%,-50%,0);
}
img.preImg01 {
    position: absolute;
}
img.preImg02 {
    transition: 1s;
    display: block;
    animation:rotate 0.5s infinite linear;
    -webkit-animation:rotate 0.5s infinite linear;
}
@-webkit-keyframes rotate {
    from{
        transform: rotate(0);
        -webkit-transform:rotate(0);
    }
    to{
        transform: rotate(360deg);
        -webkit-transform:rotate(360deg);
    }
}
/* ͼƬ�������� */
.img-100{
    width: 100%;
    display: block;
}
/* ý���ѯ */
@media screen and (min-width: 280px) {
    html {
        font-size: 12px !important;
    }
}

@media screen and (min-width: 320px) {
    html {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 360px) {
    html {
        font-size: 16px !important;
    }
}

@media screen and (min-width: 400px) {
    html {
        font-size: 18px !important;
    }
}

@media screen and (min-width: 440px) {
    html {
        font-size: 20px !important;
    }
}

@media screen and (min-width: 480px) {
    html {
        font-size: 22px !important;
    }
}

@media screen and (min-width: 640px) {
    html {
        font-size: 28px !important;
    }
}
/* ������� */
.clearfix:before,
.clearfix:after
{
    display: table;
    content: " ";
}
.clearfix:after{
    clear: both;
}
/*����*/
p{
    margin: 0;
    padding: 0;
}
/*�����ڲ����� */
.Box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    background-color: antiquewhite;
    width: 80%;
    border-radius: 4px;
    padding: 5px;
}
/* ����رհ�ť */
.close {
    width: 10%;
    float: right;
    margin-right: -5%;
    margin-top: -5%;
}


.Toast {
    position: fixed;
    top: 50%;
    left: 50%;
    background: rgba(0,0,0,0.8);
    color: white;
    border-radius: 6px;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform:translate3d(-50%,-50%,0);
    width: 80%;
    padding: 10px 2px;
    text-align: center;
    z-index: 99;
    font-size: 1rem;
    visibility: hidden;
    opacity: 0;
}
.show_Toast{
    visibility: visible;
    opacity: 1;
}

/* zt_alertDialog弹框 */

#zt_alertDialog .alert_box{
    width: 80%;
    border-radius: 8px;
    background: #e8e8e8;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
}
#zt_alertDialog .alert_des{
    width: 90%;
    margin: 0 auto;
    padding: 1.5rem 0;
    color: #333;
    font-size: 1rem;
}
#zt_alertDialog .alert_btn_box{
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    border-top: 1px solid #cccccc;
    -webkit-justify-content:space-between;
    justify-content: space-between;
    -moz-box-pack:space-between;
    -webkit-box-pack:space-between;
    box-pack:space-between;
}
#zt_alertDialog .alert_btn_box>div{
    -webkit-box-flex:1;
    box-flex:1;
    -webkit-flex: 1;
    flex: 1;
    color: #3a95f9;
    padding: .8rem 0;
}
#zt_alertDialog .alert_btn_right{
    border-left: 1px solid #cccccc;
}