* {
    margin: 0;
    padding: 0;
}
html {
	display: block;
    height: 100%;
    font-size: 100px;
}
head {
    display: none;
}
meta {
    display: none;
}
body {
    font-family: Open Sans, Helvetica, Arial, sans-serif;
    font-size: .16rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga","kern";
    text-rendering: optimizelegibility;
	overflow-x: hidden;
}
body {
    display: block;
    margin: 0px;
}
#app {
    overflow: hidden;
    font-size: .16rem;
    background-color: #000;
    height: 100%;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .3s ease;
	box-sizing: border-box;
}
.header__section {
    background: #111;
    padding: .18rem 0 .12rem;
	box-sizing: border-box;
}
.navbar {
	position: relative;
	box-sizing: border-box;
}
.container {
	max-width: 16.8rem;
    margin: 0 auto;
    padding: 0 .15rem;
    line-height: .32rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
	box-sizing: border-box;
}
.gs-logo.sch {
	background-image: url(./img/logo.png);
}
.gs-logo {
	vertical-align: top;
    width: 1.66rem;
    height: .42rem;
    background-repeat: no-repeat;
    background-size: contain;
}
.navbar-collapse {
	transform: translateY(.14rem);
	box-sizing: border-box;
}
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: .3rem;
	padding-bottom: .1rem;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}
#app a {
    text-decoration: none;
}
.nav-link {
    color: #ffffff6e;
    text-decoration: none;
    font-size: .18rem;
    font-weight: 500;
    padding: .07rem 0;
    transition: color .3s ease;
}
.nav-link.nav-select {
	color: #fffc;
}
.nav-link:hover {
	color:#fff;
}

.about {
	min-height: 100vh;
	font-family: Encode Sans, sans-serif, Open Sans, Helvetica, Arial;
	background-color: #fff;
}

.about-title {
	position: relative;
	min-height: 4.5rem;
}

.about-title-background {
	position: absolute;
	inset: 0;
	background-image: url(./img/about_bg.png);
	background-size: cover;
	background-position: top center;
    background-repeat: no-repeat;
}

.about-title-content {
	position: absolute;
    top: calc(50% + .36rem);
    width: 100%;
    box-sizing: border-box;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 .2rem;
}

.about-title-text {
	font-size: .36rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.about-container {
	max-width: 11.4rem;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.about-content {
	padding: 1rem 0;
	max-width: 100%;
	margin: 0 auto;
}

.about-content-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
    gap: .3rem;
    align-items: center;
	padding: 1rem 0;
}

.content-image img {
	width: 100%;
	height: auto;
	-webkit-user-select: none;
    user-select: none;
}

.content-text h3 {
	font-size: .24rem;
    font-weight: 500;
    margin-bottom: .21rem;
    text-align: center;
    color: #052c52;
}

.content-text p {
    font-size: .16rem;
    line-height: 1.6;
    margin-bottom: .14rem;
    color: #6f7274;	
}

.content-text-left {
	padding-right: .4rem;
}

.content-text-right {
	padding-left: .4rem;
}

#app hr {
	margin-top: .2rem;
    margin-bottom: .2rem;
    border: 0;
    border-top: 1px solid #eee;
	height: .01rem;
    background: #e0e0e0;
    margin: 0;
}

.gs-bottombar {
	font-family: Microsoft YaHei UI;
    color: #dfdad3;
    text-align: center;
    width: 100%;
    height: 2.2rem;
    background: #000;
    padding-top: .4rem;
    display: flex;
    justify-content: center;
}
.gs-bottombar-container {
	font-size: .14rem;
    width: 12.9rem;
    height: .85rem;
    color: #686868;
}
.beian-item {
	margin-top: .2rem;
}

.beian-item a {
	color: #686868;
}

@media (max-width: 650px) {
   	.navbar-nav {
		gap: .1rem;
    }
	#app a {
		font-size: 0.12rem;
	}
	.about-title {
		min-height: 3rem;
	}
	.about-title-content {
		padding: .5rem;
		top: calc(50% + .26rem);
	}
	.about-title-text {
		font-size: .18rem;
	}
	.content-text-left {
	    padding: 0;
	}

	.content-text-right {
		padding: 0;
	}
}