﻿@charset "utf-8";
/* ----------常用标签初始样式----------- */
 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /*font: inherit;*/
}

html, body {
    height: 100%;
}

body {
    line-height: 1.5;
    font-size: 13px;
    font-family: "Microsoft YaHei",Arial,Helvetica,SimSun,sans-serif;
    /*background-color: #efefef;*/

}
/*
ol, ul, ul li {
    list-style: none;
}*/

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: #363f44;
    text-decoration: none;
    cursor: pointer;
}

    a:hover, a:focus {
        color: #141719;
        text-decoration: none;
    }

    /*a:visited {
        text-decoration: none;
        color: #333;
    }*/

*:focus {
    outline: 0 !important;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.clear {
    clear: both;
}

.clearfloat:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

.clearfloat {
    zoom: 1;
}

.row {
    margin: 0;
}

* {
    -webkit-tap-highlight-color: transparent;
    outline: 0; /*去除点击是蓝色的边框*/
}

/*-----字体颜色----*/
.red {
    color: red;
}

.blue {
    color: blue;
}

.green {
    color: green;
}
.yellow {
    color:yellow;
}
/*-----字体颜色----*/

/*-----位置对其----*/
.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}
/*-----位置对其----*/

/*-----状态----*/
.error {
    color: red;
}
/*-----状态----*/

/*-----导航菜单----*/
.nav-menu {
    float: left;
    color: #fff;
    padding-left: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
}

.rotate-menu {
    -webkit-transform: rotate(180deg); /*Safari 4+,Google Chrome 1+ */
    -moz-transform: rotate(180deg); /*Firefox 3.5+*/
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); /*ie*/
}
/*-----导航菜单----*/