@import "variables";
@import "./mixins/mixins";

// ======================================================
// 通用样式类

[title="站长统计"] {
    display: none;
}

body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;

    font-family: "Microsoft YaHei", "wenquanyi micro hei", "Segoe UI", "Lucida Grande", Helvetica, Arial, FreeSans, Arimo, "Droid Sans", "Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;

    &:hover {
        text-decoration: none;
    }
}

.hidden {
    display: none;
}

// 轻量级的链接，默认不显示下划线
.light-a {
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

.text-right {
    text-align: right;
}

.clearfix:after, .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

// ======================================================
// 全局表单// 表单行
.form-row {
    margin: 13px 0;
}
