﻿@charset "utf-8";
/* CSS Document */

::selection{ color: #ffce3a; background-color: none;}
::-moz-selection{ color: #ffce3a; background-color: none;}
::-webkit-selection{ color: #ffce3a; background-color: none;}

body{
    margin:0;padding: 0;
	/*background-size: cover;*/
	/*-webkit-background-size: cover;*//* 兼容Webkit内核浏览器如Chrome和Safari */ 
	/*-o-background-size: cover;*//* 兼容Opera */ 
	zoom: 1;	
    /*text-shadow: 1px 1px 1px #DDD;*/font-family: 微软雅黑, 宋体, Arial, Gadget, Consolas, Monaco, Courier New, Courier, monospace, sans-serif;
}

/*超链 取消虚框*/
a{color: #433725; text-decoration: none;bblr:expression(this.onFocus=this.blur());/*IE使用*/outline-style:none;/*FF使用*/text-decoration: none;}
a:hover{color: #FF0000;}

/*取消firefox内置*/
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner, 
input[type="button"]::-moz-focus-inner, 
input[type="submit"]::-moz-focus-inner, 
input[type="file"] > input[type="button"]::-moz-focus-inner{border:none;padding:0;}

/*控件*/
select,input[type="text"],input[type="password"],input[type="email"],input[type="number"],input[type="tel"],input[type="url"],input[type="file"],textarea{
    outline: medium none;border: 1px solid #CCCCCC;padding: 7px 8px;
	-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.075) inset;-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.075) inset;box-shadow:0px 1px 2px rgba(0, 0, 0, 0.075) inset;
    -moz-box-sizing: border-box;box-sizing:border-box;
    background-color: #FFFFFF;background-repeat: no-repeat;background-position: right center;	
    transition: all 0.15s ease-in 0s;-webkit-transition:all 0.15s ease-in 0;
    font-size:12px;color: #333333;vertical-align: middle;
}
select:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="tel"]:focus,input[type="url"]:focus,input[type="file"]:focus,textarea.focus{
    border-color: #1E90FF;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.075) inset, 0px 0px 5px rgba(81, 167, 232, 0.5);-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.075) inset, 0px 0px 5px rgba(81, 167, 232, 0.5);	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.075) inset, 0px 0px 5px rgba(81, 167, 232, 0.5);	
}

/*按钮*/
button,input[type="button"],input[type="reset"],input[type="submit"]
{
    border-width: 1px;border-style: solid;border-color: #DDDDDD #DDDDDD #C5DDC5;padding: 7px 15px;min-height:16px;
	-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
    background-color: #EAEAEA;background-image: linear-gradient(#FAFAFA, #EAEAEA);background-repeat: repeat-x;	
    font-size:12px;line-height:1.4;font-weight: bold;color: #333333;white-space: nowrap;text-align:center;vertical-align: middle;text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.9);
    transition: all 0.15s ease-in 0s;-webkit-transition:all 0.15s ease-in 0;
    cursor: pointer;
}	
button:hover,button:active,input[type="button"]:hover,input[type="button"]:active,input[type="reset"]:hover,input[type="reset"]:active,input[type="submit"]:hover,input[type="submit"]:active
{
    border-color: #CCCCCC #CCCCCC #B5B5B5;
    background-color: #DADADA;background-image: linear-gradient(#EAEAEA, #DADADA);background-repeat: repeat-x;
    text-decoration: none;
}