@charset "utf-8";
/* CSS Document */
:root {
	--bgs: #111111;
	--blue: #3071b7;
	--color: #ffffff;
	--colors: #d71a0c;
	--colors2: #1a1a1a;
	--yellow: linear-gradient(90deg, rgba(17, 54, 147, 1) 0%, rgba(24, 152, 213, 1) 100%);
	--swiper-preloader-color: #014099;
}
*{
    border: 0;
    font-size: 62.5%;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    list-style: none;
    font-family:"myfont", sans-serif;
}

a {
    color: currentColor;
    outline: none;
    text-decoration: none;
    color: var(--color);
}

input,
input:after,
input:before {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial
}

button,
textarea {
    outline: none
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    margin: 0;
    padding: 0
}

html {
    color: var(--color);
}
header .ssmenup .bbs dl{
    transform: translateY(10px);
}
header .ssmenup .bbs dl.animatedol{
    transform: translateY(0px);
}
.flexBox{
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}
.flexBox .ll{
    width: 46%;
}
.flexBox .rr{
    width: 46%;
}
/* loadding */
.loading{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0%;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    background: #fff;
}
.loading .bgs {
    width: 100vw;
    height: 100vw;
    left: 50%;
    top: 50%;
    transform:translate(-50%,-50%) scale(1);
    position: absolute;
    background: url(../images/circle0.png) no-repeat center/ cover ;
    z-index: 5;
}
.loading .contain{
    text-align: center;
    letter-spacing: 3px;
    position: relative;
    z-index: 6;
    transform: scale(0);
}
.loading .contain .logos{
    display: flex;
    color: var(--colors);
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    font-family: "title";
    font-weight: bold;
}
.loading .contain .logos img{
    width: 22rem;
    margin-right: 5rem;
}
.loading p{
    font-size: 2.6rem;
    color:#626266;
    margin-top: 4rem;
    letter-spacing: 6px;
    font-family: "title";
    opacity: 0;
    transform: translateY(20px);
}