﻿/*
 * 通用样式规定
 * @author: borainSoft
 * 首先导入此文件 再导入需要的css文件
 * 如果有任何需求需要改变 请在自己的css文件中覆盖此css文件的样式
 * 注意:此文件只是辅助文件 不保证与目前项目/程序的冲突 如果产生冲突请停止使用/引用
 */
/*所有元素:字体12px、字体微软雅黑和宋体、颜色深灰、无内边距、无外边距*/
* { font-size: 12px; font-family: "微软雅黑", "宋体"; color: #666666; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px; }
/*html:宽度满屏、宽度超出隐藏*/
html { width: 100%; overflow-x: hidden; }
/*body:宽度满屏、高度满屏、绝对定位声明祖先位置*/
body { width: 100%; height: 100%; position: relative; }
/*a标签:默认去掉下划线*/
a { text-decoration: none; }
/*a标签鼠标移入:默认添加下划线*/
a:hover { text-decoration: underline; }
/*li标签:默认去掉前面的点*/
li { list-style-type: none; }
/*img标签:默认去掉边框(针对IE低版本)*/
img { border: none; }
/*input标签:默认边框*/
input { border: 1px solid #A9A9A9; }
/*textarea标签:默认边框、textarea输入框固定大小*/
textarea { border: 1px solid #A9A9A9; resize: none; }
/*iframe标签:默认去掉边框、默认超出隐藏*/
iframe { border: none; overflow: hidden; }
/*清除浮动(float)类*/
.clear { clear: both; }
/*块元素(display:block)水平居中*/
.conter { margin-right: auto; margin-left: auto; }
/*隐藏元素*/
.hidden { display: none; }
