﻿
/* reset */
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,dl,dt,dd,ol,nav ul,nav 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;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0;padding:0;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a {
	text-decoration: none;
}


/* text align center */

.right {
	float: right;
}


/* float right */

.left {
	float: left;
}


/* float left */

.clear {
	clear: both;
}
.clearfix:after {
	content: ".";
	height: 0px;
	overflow: hidden;
	clear: both;
	display: block;
}

.clearfix {
	zoom: 1;
}

/* clear float */

.pos-relative {
	position: relative;
}


/* Position Relative */

.pos-absolute {
	position: absolute;
}



/**防止用户复制和保存图片,只支持iphone、ipad、android**/

body {
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	font-family: "微软雅黑";
}
/*input textarea选中时无边框*/
input,textarea{outline:none} 

/* 去除虚线*/
body a {
	outline: none;
	blr: expression(this.onFocus=this.blur());
}

html,
body {
	width: 100%;
	height: 100%;
	color: #fff;
	font-family: "微软雅黑";
	text-align: center;
}

.main{
	max-width:800px;
	height: 100%;
	margin: 0 auto;
	background: url(/Images/YHY/Sign-bg.png) no-repeat; 
	background-size: cover;
}
/*****表单*****/
.form-input{
	width: 80%;
	height: 150px;
	background-color:rgba(255,255,255,0.8);
	border-radius: 14px;
	margin: 0 auto;
	margin-top: 4%;
	overflow: hidden;
}
.form-input input{
	font-family: "微软雅黑";
	width: 100%;
	height: 25px;
	line-height: 25px;
	border: none;
	border-bottom: 1px solid #e5e5e5;
	resize: none;
	padding: 12px 30px;
    font-size:80% ;
    color: #404040;
	background-color:rgba(255,255,255,0);	
}

.form-input input::-webkit-input-placeholder { 
	font-size: 100%;
	color:red;
	}
.form-input input::input-placeholder { 
	font-size: 100%;
	color: #404040;
	}


.form-input input::-webkit-input-placeholder { 
	font-size: 100%;
	color: #404040;
	}
#field1::-moz-placeholder{
	font-size: 100%;
	color: #404040;	
}



.index-title{
		font-size: 162.5%;
		letter-spacing: 2px;
		padding-top: 6%;
	}	

.button{
	display: block;
	width: 80%;
	height: 40px;
	line-height:40px;
	background: #f9671e;
	color: #fff;
	margin: 0 auto;
	margin-top: 3%;
	border-radius: 4px;
	border-bottom: 4px solid #e04f06;
}

.button:hover{
	background: #e04f06;
}
.password{
	display: block;
	margin-top: 4%;
	text-decoration: underline;
}

/****验证码****/
.yzm{
	display: block;
	position: absolute;
	width: 95px;
	border: 1px;
	right: 30px;
	top: 6px;
}

/*加载图*/
.pullUpIcon{
    margin: 40px auto;
    position: relative;
    width: 8px;
    height: 8px;
    background-color: rgba(250,180,30,.5);;
    box-shadow: -14px 0px 0px rgba(250,180,30,1);
    border-radius: 50%;
    -webkit-animation: circle_classic 1s ease-in-out infinite alternate;
       -moz-animation: circle_classic 1s ease-in-out infinite alternate;
            animation: circle_classic 1s ease-in-out infinite alternate;
}


    @-webkit-keyframes circle_classic {
        0% {
            opacity: 0.1;
            -webkit-transform: rotate(0deg) scale(0.5);
        }

        100% {
            opacity: 1;
            -webkit-transform: rotate(360deg) scale(1.2);
        }
    }

    @-moz-keyframes circle_classic {
        0% {
            opacity: 0.1;
            -moz-transform: rotate(0deg) scale(0.5);
        }

        100% {
            opacity: 1;
            -moz-transform: rotate(360deg) scale(1.2);
        }
    }

    @keyframes circle_classic {
        0% {
            opacity: 0.1;
            transform: rotate(0deg) scale(0.5);
        }

        100% {
            opacity: 1;
            transform: rotate(360deg) scale(1.2);
        }
    }

.shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000;
    opacity: 0.3;
    filter: Alpha(opacity=30);
    display: none;
}