@charset "utf-8";

html,
body,
a,
div,
iframe,
ul,
li,
p,
img {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	font-family: "Microsoft YaHei", 微软雅黑;
	font-size: calc(100vh * 14 / 1080);
	color: #FFFFFF;
}

body {
	position: relative;
	width: 100vw;
	height: 100vh;
	background-image: url('../images/body-bg.png');
	background-size:100% 100%;
	overflow: hidden;
}

ol,
ul,
li {
	list-style: none;
}

.container {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header {
	position: relative;
	margin: calc(100vh * 58 / 1080) 0 0 calc(100vh * 58 / 1080);
	margin-right: auto;
}

.header .title {
	font-size: calc(100vw * 48 / 1920);
	font-weight: 600;
	color: #2d4350;
	display: flex;
	align-items: center;
	gap: 10px;
}

.header .title img{
	width:calc(100vw * 96 / 1920); 
	height:calc(100vw * 96 / 1920); 
}

.sidebar {
	flex: 1;
	margin-top: calc(100vh * 80 / 1080);
}

.sidebar ul {
	display: flex;
	align-items: center;
}

.sidebar.shrink{
	/*transform: scale(0.9);*/
}

.sidebar ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(100vw * 278 / 1920);
	height: calc(100vw * 354 / 1920);
	margin: calc(100vw * 30 / 1920);
	background-image: url('../images/nav-bg.png');
	background-size: 100% 100%;
	cursor: pointer;
}

.sidebar ul li:hover {
	background-image: url('../images/nav-hover.png');
	background-size: 100% 100%;
	transition: all .3s;
	transform: translateY(-5%);
}
/*.sidebar ul li:hover .icon-box{transform: scale(.7) translateY(-15%);transition:all .8s;}*/

.sidebar ul li .icon-box {
	position: relative;
    width: calc(100vw* 107 / 1920);
    height: calc(100vw* 107 / 1920);
    margin-top: calc(100vw* 78 / 1920);
    background-image: url(../images/nav-bot.svg);
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar ul li .icon-box img {
	width: calc(100vw* 57 / 1920);
    height: calc(100vw* 57 / 1920);
}

.sidebar ul li span {
	margin-top: calc(100vw* 72 / 1920);
    font-size: calc(100vw* 23 / 1920);
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-style: italic;
	background: #5da970;
	text-shadow: 3px 0 8px #009944;
	border-radius: 8px;
	border:1px solid #fff;
	width: 70%;
	height: calc(100vw * 51 / 1920);
	line-height: calc(100vw * 51 / 1920);
}
.sidebar ul li:hover  span{
	background: linear-gradient(to top, #009944, #00cf5c);
}
.nav {
	margin-bottom: calc(100vh * 80 / 1080);
}

.nav ul {
	display: flex;
	align-items: center;
}

.nav ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: calc(100vh * 10 / 1080) calc(100vh * 40 / 1080);
	cursor: pointer;
}

.nav ul li img {
	width: calc(100vh * 78 / 1080);
}

.nav ul li:nth-child(1) img {
	width: calc(100vh * 92 / 1080);
}

.nav ul li:nth-child(2) img {
	width: calc(100vh * 86 / 1080);
}

.nav ul li:nth-child(3) img {
	width: calc(100vh * 68 / 1080);
}

.nav ul li span {
	display: inline-block;
	position: relative;
	margin-top: calc(100vh * 30 / 1080);
	font-size: calc(100vh * 23 / 1080);
	color: #84ABFF;
	text-align: center;
	font-weight: 500;
}

.nav ul li.active span::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100vh * 186 / 1080);
	height: calc(100vh * 79 / 1080);
	background-image: url('../images/p-nav-hover.svg');
	background-size: 100% 100%;
}

.ewm .hide{display: none;}
.ewm:hover .hide{
	display: block;
    background: url(../images/ewm.png) no-repeat;
    background-size: 100% 100%;    
    width: calc(100vw* 276 / 1920);
    height: calc(100vw* 227 / 1920);
    position: absolute;
    right: calc(-100vw* 272 / 1920);;

    top: calc(-100vw* 35 / 1920);
}

.ewm:hover .hide img{
	width:calc(100vw * 137 / 1920);
	height:calc(100vw * 137 / 1920); 
	margin: calc(100vw * 62 / 1920) 0 0 calc(100vw * 118 / 1920);
}

.footer{
	position: fixed;
    bottom: calc(100vw* 60 / 1920);
    text-align: center;
    left: 50%;
    transform: translate(-50%, 0);
    line-height: 26px;
    font-size: calc(100vw * 16 / 1920);
}
.footer .text{
	background:rgba(255,255,255,.1);
	border-radius: 4px;
	padding: 2px 10px;
	word-spacing: 10px;
	margin-bottom: 10px;
}