﻿@charset "utf-8";
/* CSS Document */
* {
    padding: 0px;
    margin: 0px;
    font-family: "Microsoft YaHei","Hiragino Sans GB","Hiragino Sans GB W3","微软雅黑","Helvetica Neue",Arial,sans-serif;
    font-size: 16px;
    line-height: 1.6em;
}

a {
    text-decoration: none;
}

    a img {
        border: none;
    }

ul {
    list-style: none;
}
/* 浮动 */
.left {
    float: left;
}

.right {
    float: right;
}
/* 按钮 */
.btn-a {
    display: inline-block;
    padding: 8px 18px;
    font-size: 18px;
    color: #fff;
    background: #222;
    margin: 5px;
}

.btn-a-unable {
    display: inline-block;
    padding: 8px 18px;
    font-size: 18px;
    color: #fff;
    background: #ccc;
    margin: 5px;
    cursor: default;
}

.btn-a:hover, .btn-a:active {
    background: #000;
}
/* 文字排序 */
.text-l {
    text-align: left;
}

.text-c {
    text-align: center;
}

.text-r {
    text-align: right;
}
/* 分割线 */
.hr {
    width: 100%;
    height: 0px;
    font-size: 0px;
    border-bottom: 1px solid #ebebeb;
    margin: 10px 0px;
}
 