html,
body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #cacaca;
    font-size: 12px;
	font-family: Arial, "Microsoft YaHei", "宋体", "PingFang SC";
    font-weight: 300;
	user-select: none;
}
body{
	overflow-x: hidden;
	overflow-y: auto;
	background: linear-gradient(178deg, #d7daf1, #e8e8e8);
}
#__nuxt{
	width: 100%;
    position: relative;
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-thumb {
    background-color: #F5C51D;
}
html.dark {
	background: #222;
	color: white;
}

a {
    font-weight: 400;
    color: var(--el-color-primary);
    text-decoration: none;
}
*{
	box-sizing: border-box;
}


.introduce{
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
}
.aboutdes{
	min-width: 400px;
    width: 30vw;
    position: absolute;
    bottom: 14vh;
    left: 8vw;
	filter: drop-shadow(1px 2px 2px black);
}
.aboutdes img{
    width: 100%;
    max-width: 80vw;
}

.aboutdes .goa {
    width: max-content;
    font-size: 22px;
    display: block;
    border: 1px solid #e2e2e2;
    background-color: transparent;
    color: #eeeeee;
    min-width: 120px;
    text-align: center;
    padding: 8px 26px;
    margin-top: 10vh;
    font-weight: inherit;
    letter-spacing: 4px;
}

.aboutbg{
    width: 100%;height: 100vh;object-fit: cover;float: left;
}
.aboutbga{
    display: none;
    width: 100%;height: 100vh;object-fit: fill;float: left;
}

@media screen and (max-width: 675px) {
    .aboutdes .goa{
        margin-top: 12vh;
    }
}
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}