﻿@charset "utf-8";

/*清除所有元素的内外边距*/
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
header,
nav,
section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h3,
h4,
h5,
h6 {
    font-weight: normal;
}


/*取消所有的斜体, 让这2个标签可以做其他用*/
em,
i {
    font-style: normal;
}

/*去掉li标签的黑色小点*/
ol,
ul {
    list-style: none;
}

/*设置图片没有边框, 图片和中线对齐可以去掉底部的空白缝隙*/
img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
}


/*鼠标移动到button时变成小手*/
button {
    border: 0;
    cursor: pointer;
    outline: none;
}

input,
textarea {
    border: 0;
    outline: none;
}

textarea {
    overflow: auto;
    resize: none;
}


/*设置链接没有下划线  默认灰色  鼠标移动上去红色*/
a {
    color: #333;
    text-decoration: none
}

a:hover {
    color: #006db7!important;
}

body {
    font-family: "PingFang SC","Microsoft Yahei";
    min-width: 1200px;
    font-size: 14px;
    overflow-x: hidden;
    color: #333;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.hide,
.none {
    display: none !important;
}