/*global config*/
* {
    box-sizing: border-box;
    clear: both;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    /* cursor: default; */
    user-select: none;
    /* font-size: 1rem; */
}

html,
body {
    width: 100%;
    height: 100%;
    /* color: black; */
}

button,
.button {
    cursor: pointer;
}

img {
    -webkit-user-drag: none !important;
    /* Safari/Chrome */
    /* user-drag: none; */
    /* Firefox */
}

/*main title*/

section{
    width: 1200px;
    margin: auto;
    margin-bottom: 80px;
}

.mainContent {
    min-width: 1200px;
    max-width: 1200px;
    margin: auto;
}

.mainColor {
    color: #0061bf;
}

.mainBgColor {
    background-color: #0061bf;
}

.blackColor {
    color: black;
}
.whiteColor{
    color: white;
}

.blackBgColor {
    background-color: black;
}

/*fast style*/

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex1{
    flex:1;
}
/*fast verdom*/
.vLine{
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    width: 100%;
    /* margin: 1rem 0; */
}