﻿
* {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
    color: #000;
    font-family: "PingFang SC", "Microsoft Yahei", "微软雅黑","黑体","宋体", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6em;
}



h1, h2, h3, h4, h5, h6, th {
    font-weight: 300;
}

h3 {
    font-size: 2rem;
    line-height: 1.1em;
}

h5 {
    font-size: 1.6rem;
}

ul, ul li {
    list-style: none;
}

a {
    text-decoration: none; 
}
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px  ;
}

.mt-30{
    margin-top:30px;
}

.ml-20{
    margin-left:20px;
}

.text-white{
    color:#ffffff;
}
.text-med{
    font-size:16px;
}

.text-lg{
    font-size:1.6rem;
}

.text-bold{
    font-weight:600;
}

.mo_padding20 {
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.disinblock {
    display: inline-block;
}


.flex {
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
    /*    display: -webkit-box; 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
}

.align-items__center {
    -webkit-align-items: center;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}


.align-items__baseline {
    -webkit-align-items: baseline;
    align-items: baseline;
    -moz-box-align: baseline;
    -webkit-box-align: baseline;
}

.justify-content__center {
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
}

.flex1 {
    -webkit-flex: 1; /* Chrome */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1; /* OLD - Firefox 19- */
}

.flex-direction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
}

