/* ******************************************** *
 * ******* reset the default CSS style ******** *
 * *************** by Cool 2017 *************** *
 * ******************************************** */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
    min-height: 100%;
}
body {
    width: 100%;
    color: #000;
    font-family: 'Helvetica Neue',Helvetica,STheiti,'Microsoft YaHei UI','Microsoft YaHei',Arial,Tahoma,sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    line-height: 1em;
}
li {
    list-style: none;
}
a,
a:hover,
a:focus,
span {
    line-height: 1em;
    color: inherit;
    text-decoration: none;
}
a {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
input,
button,
textarea {
    vertical-align: middle;
    outline: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,
                        box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,
                   box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,
                box-shadow ease-in-out .15s;
}
input:focus,
button:focus,
textarea:focus {
    border-color: #66afe9 !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
                        0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
                0 0 8px rgba(102,175,233,.6);
}
input[type='submit'],
input[type='button'],
input[type='reset'],
button {
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
input[type='submit']:focus,
input[type='button']:focus,
input[type='reset']:focus,
button {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
textarea {
    resize: none;
}
.ellipsis {
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: horizontal;
}
.clear,
.wrapper:after {
    display: block;
    height: 0;
    clear: both;
    content: '';
    visibility: hidden;
}
.wrapper {
    margin: 0 auto;
}
