﻿@charset "utf-8";

/*CSS reset*/
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0 auto;
    padding: 0;
    font: 14px/1.5 "Helvetica";
    background: #FFF;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
tr,
td {
    margin: 0;
    padding: 0;
}

.bold {
    font-weight: bold;
}

ul,
ol,
li {
    list-style: none
}

table,
td,
input,
textarea,
button {
    font: inherit;
    outline: none;
    resize: none;
}

textarea {
    overflow-y: auto;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #B2B2B2;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/*去掉浏览器黄色背景*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
    object-fit: cover;
    image-rendering: -moz-crisp-edges;
    /* Firefox */
    image-rendering: -o-crisp-edges;
    /* Opera */
    image-rendering: -webkit-optimize-contrast;
    /*Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    /* IE (non-standard property) */
}

/*address,caption,cite,code,dfn,em,th,var,strong,i{font-style:normal;font-weight:normal}*/
q:before,
q:after {
    content: ''
}

abbr,
acronym {
    border: 0
}

a {
    text-decoration: none;
    font-family: inherit;
    color: inherit;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

:focus {
    outline: 0;
}

pre {
    white-space: pre-wrap;
    /* css-3 */
    white-space: -moz-pre-wrap;
    /* Mozilla, since 1999 */
    white-space: -pre-wrap;
    /* Opera 4-6 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* Internet Explorer 5.5+ */
}


/*定位*/
.tal {
    text-align: left !important;
}

.tac {
    text-align: center !important;
}

.tar {
    text-align: right !important;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.fn {
    float: none;
}

.clearfix {
    *zoom: 1;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.hide {
    display: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



.px-5 {
    margin-right: 5px !important;
    margin-left: 5px !important
}

.py-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important
}

.px-8 {
    margin-right: 8px !important;
    margin-left: 8px !important
}

.py-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important
}

.px-12 {
    margin-right: 12px !important;
    margin-left: 12px !important
}

.py-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important
}

.px-15 {
    margin-right: 15px !important;
    margin-left: 15px !important
}

.py-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.px-20 {
    margin-right: 20px !important;
    margin-left: 20px !important
}

.py-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.px-25 {
    margin-right: 25px !important;
    margin-left: 25px !important
}

.py-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.py-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.pt-5 {
    margin-top: 5px !important;
}

.pt-8 {
    margin-top: 8px !important;
}

.pt-12 {
    margin-top: 12px !important;
}

.pt-15 {
    margin-top: 15px !important;
}

.pt-20 {
    margin-top: 20px !important;
}

.pt-25 {
    margin-top: 25px !important;
}

.pt-40 {
    margin-top: 40px !important;
}

.pb-5 {
    margin-bottom: 5px !important;
}

.pb-8 {
    margin-bottom: 8px !important;
}

.pb-12 {
    margin-bottom: 12px !important;
}

.pb-15 {
    margin-bottom: 15px !important;
}

.pb-20 {
    margin-bottom: 20px !important;
}

.pb-25 {
    margin-bottom: 25px !important;
}

.pb-40 {
    margin-bottom: 40px !important;
}


.w100 {
    flex: 1 !important;
    width: 100% !important;
}

.img-goup {
    display: flex;
    max-width: 100%;
    justify-content: space-between;
}

.img-group {
    display: flex;
    max-width: 100%;
    justify-content: space-between;
}

.img-group .img {
    flex: 1;
    margin: 0 10px;
}

.img-group img {
    width: 100%;
}

@media (max-width:767px) {
    .img-group {
        flex-direction: column;
    }

    .img-group .img {
        margin: 10px 0;
    }
}