﻿@charset "utf-8";

/**==通用内容==**/
html, body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, p, table, caption, tbody, tfoot, thead, tr, th, td, form {
    margin: 0;
    padding: 0;
}

h4, h5, h6 {
    font-weight: initial;
}

html, body {
    height: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    /*width:100%;*/
}

img, button {
    border: 0 none;
}

ul, ol {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}

a {
    color: #fff;
    text-decoration: none;
    outline: none;
    transition: color 0.2s ease;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
}

    a:hover {
        color: #0096ff;
        text-decoration: none;
    }

input, button, select, textarea {
    font-size: 12px;
    vertical-align: middle;
}

button {
    cursor: pointer;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
}

.blank10 {
    display: block;
    clear: both;
    height: 10px;
    overflow: hidden;
}

.blank5 {
    display: block;
    clear: both;
    height: 5px;
    overflow: hidden;
}

.txtRight {
    text-align: right
}

.txtCenter {
    text-align: center
}

.txtLeft {
    text-align: left
}

.fullright {
    float: right;
}

.fullleft {
    float: left;
}

body {
    background: #fff;
    color: #000;
    margin-right: 0px;
    font-family: 宋体,Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    line-height: 24px;
}
/****通用样式****/
.last {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.lastb {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.lastbg {
    background: none !important;
}

.ggw {
    margin-bottom: 10px;
}


.cgery {
    color: #818181;
}

.cred, a.cred {
    color: #c00;
}

    a.cred:hover {
        color: #db0010;
    }

.red {
    color: #C30000;
}

a.red:link, a.red:visited {
    color: #C30000;
    text-decoration: none;
}

a.red:hover {
    color: #C30000;
    text-decoration: none;
}

.ash {
    color: #343434;
}

a.ash:link, a.ash:visited {
    color: #343434;
    text-decoration: none;
}

a.ash:hover {
    color: #343434;
    text-decoration: none;
}

.fB {
    font-weight: bold;
}

.f14 {
    font-size: 14px;
    line-height: 27px;
}

button:active {
    opacity: 0.6;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}