/*
    common.css是用于保存一些常用的样式，
    如果你需要在html中使用这些样式
    直接在标签class属性上添加样式对应的名称即可

    例如你需要清除浮动

    <div class="cfx">
        ...
    </div>
*/

/*
    .cfx 清除浮动
    .row 分行结构
*/
.cfx, .row {
    +zoom: 1;
}

.cfx:after, .row:after {
    content: "";
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
    clear: both;
    font-size: 0;
    visibility: hidden;
}

/*
    .hide 隐藏元素
*/
.hide {
    display: none;
}

/*
    .hitx 隐藏文字
*/
.hitx {
    text-indent: -9999em;
}

/*
    .ac 自动居中
*/
.ac {
    margin-left: auto;
    margin-right: auto;
}

/*
    .ac-950 自动居中，并且设置宽度为950px
*/
.ac-950 {
    margin-left: auto;
    margin-right: auto;
    width: 950px;
}

/*
    .ac-960 自动居中，并且设置宽度为960px
*/
.ac-960 {
    margin-left: auto;
    margin-right: auto;
    width: 960px;
}

/*
    .ac-990 自动居中，并且设置宽度为990px
*/
.ac-990 {
    margin-left: auto;
    margin-right: auto;
    width: 990px;
}


/*
    .ac-1000 自动居中，并且设置宽度为1000px
*/
.ac-1000 {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

/*
    .ac-1000 自动居中，并且设置宽度为1440px
*/
.ac-1440 {
    margin-left: auto;
    margin-right: auto;
    width: 1440px;
}

/*
    .f-msyh 字体设置成微软雅黑
*/
.f-msyh {
    font-family: Arial "Microsoft YaHei" sans-serif;
}

/*
    .f-song 字体设置成宋体
*/
.f-song {
    font-family: Georgia "SimSun" serif;
}

/*
    .fx-200 200毫秒的过渡（快速过渡）
*/
.fx-200 {
    -webkit-transition: all 200ms ease;
       -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
         -o-transition: all 200ms ease;
            transition: all 200ms ease;
}

/*
    .f-500 500毫秒的过渡（标准过渡）
*/
.fx-500 {
    -webkit-transition: all 500ms ease;
       -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
         -o-transition: all 500ms ease;
            transition: all 500ms ease;
}

/*
    .fx-800 800毫秒的过渡（慢速过渡）
*/
.fx-800 {
    -webkit-transition: all 800ms ease;
       -moz-transition: all 800ms ease;
        -ms-transition: all 800ms ease;
         -o-transition: all 800ms ease;
            transition: all 800ms ease;
}

/*
    .footer 页脚的样式，已经添加到模板内
*/

.footer {
	padding:2px 0 0 0;
  /*  border-bottom: 1px solid #666;*/
    color: #535353;
    font-size: 13px; 
	background-color: #ccc; 
	width:100%;
}

.footer p {
    line-height: 30px;
}

.footer .footer_title {
    padding-left: 10px;
    float: left;
}

.footer .footer_copywriting {
    padding-right: 10px;
    float: right;
}

.footer .footer_copywriting span {
    padding-left: 10px;
}
.foot-box {
	font-size: 12px;
}
a {
	color: #333;
	text-decoration:none;
}
a:hover {
	color: #343434;
	text-decoration:underline;
}
.an {
	background:url(images/an.gif) no-repeat;
	width:200px;
	height:50px;
	cursor:pointer;
	border:0px;
}

/*
    头尾样式
*/
.header_yc {width:100%; height:40px; font-size:12px;}
.footer_yc {width:100%; font-size:12px;}

.left{ float:left;}
.right{ float:right;}
.fb{ font-weight:700;}
.indent{ text-indent:2em;}
.f12{ font-size:12px;}
.f14{ font-size:14px;}
.f18{ font-size:18px;}
.f24{ font-size:24px;}
.f30{ font-size:30px;}
