/*
* @Author: ww
* @Date:   2017-05-16 16:57:57
* @Last Modified by:   Marte
* @Last Modified time: 2017-07-04 14:53:27
*/
html{
    font-size:100px;
}
*,::before,::after{
    margin: 0;
    padding: 0;
    /* ����ƶ�������������Ч�� */
    -webkit-tap-highlight-color:transparent;
    /*box-sizing*/
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
body{
    font-family: "MicroSoft YaHei,sans-serif";
}
a{
    color:#333;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
ul,ol{
    list-style: none;

}
select:hover{
    text-decoration: none;
    border: none;
}
input{
    border:none;
    outline:none;
    /*����ƶ��˱���ʽ*/
    -webkit-appearance:none;
}
.f_clr{
    clear: both;
}
/* ������ */
.layout{
    width: 100%;
    height: 100vh;
    /*max-width: 640px;*//*�������Ŵ�*/
    min-width: 320px;
    margin:0px auto;
    padding: 0;
    /*padding:0 0.08rem;*/
    font-size: 0.14rem;
    position: relative;
}
/*进度条*/
::-webkit-scrollbar {
    width: 0px;
    height: 2px;
}
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0);
}

.green{
    color: #2e8e01;
}
.orange{
    color:orange;
}
.red{
    color: red;
}
.bggreen{
    background: #2e8e01;
}
.bgorange{
    background:orange;
}
.bgred{
    background:red;
}