/***************************************************
功能: 基础风格
版本: 0.1
作者: Tony
日期: 20120411
***************************************************/

/**************************************************/
/* 基础风格设定(全局) */
/**************************************************/
html,body 
{
	margin: 0 auto;
	padding: 0 auto;
	color: #000000;
	font-size: 1em;
	font-family: Cambria, Tahoma, Verdana, Consolas;
	line-height: 180%;
	width: 100%;
	height: 100%;
}

a:link,a:visited 
{
	color: #000000;
	text-decoration: none;
}

a:hover 
{
	text-decoration: underline;
}

a:active 
{
	color: #999999;	
}

button
{
	border-radius: 5px;/*圆角半径*/
}

img
{
	border-radius:25px;	/*圆角半径*/
}

h1,h2,h3
{
	line-height: 120%;
}


/**************************************************/
/* ID */
/**************************************************/

#PageAll
{
	position: relative; 
	z-index: 0;
	margin: 0 auto; 
	padding: 0;
}

/**************************************************/
/* Class */
/**************************************************/

/* 背景块 */
.div_bg
{
	width: 100%;
	height: 100%;
	position: absolute;	/*必须设置,才会正常覆盖*/
	background-image: url("");
	background-image: linear-gradient(to bottom,white,silver);	/* 背景色渐变条纹效果 */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: alpha(opacity=1);
	opacity: 1;	
}

/* 页面主内容块 */
.div_page_main
{
	width: 100%;
	height: 100%;
}

/* 头部块-定位 */
.div_header
{
	position: fixed;
	width: 100%;
	height: 100px;
}

/* 头部块-主体 */
.div_header_main
{
	display: table-cell;
	vertical-align: middle;
	padding-right: 20px;	
	line-height: 120%;
	height: 100px;
}

/* 内容块-定位 */
.div_subject
{
	float: left;
	margin: 150px;
}

/* 内容块-主体 */
.div_subject_main
{
	display: table-cell;
	font-size: 2em;
/*	width: 600px;*/
/*	height: 400px;*/
}

/* 页脚块-定位 */
.div_footer
{
	position: absolute;
	width: 100%;
	min-width: 800px;
	bottom: 100px;
}

/* 页脚块-主体 */
.div_footer_main
{
	float: right;
	margin-right: 100px;
}

/* 页脚块-标题 */
.div_footer_title
{
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	padding-right: 20px;
	line-height: 120%;
}

/* logo块 */
.div_logo
{
	display: table-cell; 
	vertical-align: middle;
	text-align: center;
	width: 100px;
	height: 100px;
	background-image: url("/resource/style/default/image/logo/taoya_flower_border_2022.svg");
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
}

/* 竖向分隔线 */
.div_line_v
{
	display: table-cell; 
	vertical-align: middle;
	width: 1px;
	background: #333333;
}

/*横向分隔线*/
.div_line_h1
{
	width:100%;
	min-width:900px;
	border:none; 
	border-color: silver; 
	background: silver; 
	background-image: linear-gradient(to bottom right,red,yellow);
}

/*横向分隔线*/
.div_line_h2
{
	width: 100%; 
	min-width: 900px; 
	height: 1px; 
	background: silver; 
	border: none
}

/* Clear Floated Elements http://sonspring.com/journal/clearing-floats */
.clear
{
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/**************************************************/
/* 风格效果 */
/**************************************************/

/* 数据內容 */
.data 
{
	font-size: 1em;
	line-height: normal;
	vertical-align: top;
	empty-cells:show;
	white-space: pre-wrap;/*显示换行,空格*/
	line-height: 180%;
}

/* 文字阴影效果 */
.shadow
{
	text-shadow: 2px 2px 5px silver;
}

/* 块阴影效果 */
.box_shadow
{
	box-shadow: 2px 2px 5px silver;
}

/* 半透明效果 */
.hyaline
{	
	opacity: 0.9;
	filter: alpha(opacity=90);
}

/* 反色 */
.inverted {
    filter: invert(100%);
}

/* 原色 */
.normal {
    filter: invert(0%);
}

/* div输入 */
.edit
{
	width: 100%;
	background-color: #ffffff;
    word-wrap: break-word;
    overflow-x: hidden;
    overflow-y: auto;
}