﻿@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    letter-spacing: 0;
    /* 去除盒模型影响 */
    box-sizing: border-box;
    /* 点击阴影 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    height: 100%;
    color: #333;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

img {
    width: 100%;
    height: 100%;
    border: none;
    vertical-align: middle;
}

ul {
    list-style: none;
    font-size: 0;
}

    ul li {
        display: inline-block;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

span, i {
    display: inline-block;
    font-style: normal;
}

table {
    border-collapse: collapse;
}

a:link, a:visited, a:hover, a:active {
    width: 100%;
    height: 100%;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}

input, button, select, textarea {
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    font-family: not specified;
}

    input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #aaa;
        font-size: 16px;
    }

    input::-moz-placeholder, textarea::-moz-placeholder {
        color: #aaa;
        font-size: 16px;
    }

    input:-moz-placeholder, textarea:-moz-placeholder {
        color: #aaa;
        font-size: 16px;
    }

    input:-ms-input-placeholder, textarea:-ms-input-placeholder {
        color: #aaa;
        font-size: 16px;
    }

/* 显示 */
.hide {
    display: none;
}

.show {
    display: block;
}

.visib-h {
    visibility: hidden;
}

.visib-s {
    visibility: visible;
}

.over-hidden {
    overflow: hidden;
}

/* 宽高 */
.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.w-1200 {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
}

/* 文字 */
.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}

.f24 {
    font-size: 24px;
}

.f26 {
    font-size: 26px;
}

.f28 {
    font-size: 28px;
}

.f30 {
    font-size: 30px;
}

.f32 {
    font-size: 32px;
}

.f34 {
    font-size: 34px;
}

.f36 {
    font-size: 36px;
}

.f38 {
    font-size: 38px;
}

.f40 {
    font-size: 40px;
}

.f-bold {
    font-weight: bold;
}

.f-thin {
    font-weight: normal;
}

.t-l {
    text-align: left;
}

.t-c {
    text-align: center;
}

.t-r {
    text-align: right;
}

.t-j {
    text-align: justify;
}

.elli {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bg-gray {
    background: #fafafa;
}

.bg-white {
    background: #fff;
}

.f-big {
    text-transform: uppercase;
}

.f-white {
    color: #fff;
}

.f-333 {
    color: #333;
}

.f-666 {
    color: #666;
}

.f-999 {
    color: #999;
}

.line-h43 {
    line-height: 43px;
}

.line-h70 {
    line-height: 70px;
}

/* 边框 */
.border {
    border: 1px solid #f7dcb1;
}

.border-top {
    border-top: 1px solid #f7dcb1;
}

.border-right {
    border-right: 1px solid #f7dcb1;
}

.border-bottom {
    border-bottom: 1px solid #f7dcb1;
}

.border-left {
    border-left: 1px solid #f7dcb1;
}

.border-0 {
    border: 0;
}

.border-top-0 {
    border-top: 0;
}

.border-right-0 {
    border-right: 0;
}

.border-bottom-0 {
    border-bottom: 0;
}

.border-left-0 {
    border-left: 0;
}

/* 阴影 */
.shadow {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

/* 禁止 */
.forbidden {
    pointer-events: none;
}

.facultative {
    pointer-events: auto;
}

/* 弧度 */
.rounded {
    border-radius: 6px;
}

.circle {
    border-radius: 100%;
}

.circle-left {
    border-radius: 1000px 0 0 1000px;
}

.circle-right {
    border-radius: 0 1000px 1000px 0;
}

/* 布局 */
.fixed {
    position: fixed;
}

.rela {
    position: relative;
}

.abso {
    position: absolute;
}

.float-l {
    float: left;
}

.float-r {
    float: right;
}

.clear {
    clear: both;
}

/* 弹性布局 */
.flex {
    display: flex;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

/* 内边距 */
.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

/* 外边距 */
.m-auto {
    margin: 0 auto;
}

.m-15 {
    margin: 15px;
}

'
.mb-15 {
    margin-bottom: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}
