:root {
	--time: 0.5s;
	/*动画时间*/
	--white: #fff;
	/*统一白色*/
	--default: #00CCCC;
	/*默认颜色*/
	--focus: #ff557f;
	/*hover色*/
	--bg: rgba(255, 255, 255, 0.2);
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	user-select: none;
}

a:link,
a:visited {
	text-decoration: none;
}

body {
	position: relative;
	font-family: "Microsoft Yahei Light", "Microsoft Yahei", PingFangSC-Regular, Helvetica, sans-serif, 等线;
	cursor: default;
	background: #000000;
}

#Tip {
	/*无实体*/
	pointer-events: none;
}

#weather-canvas {
	/*画板属性*/
	position: fixed;
	z-index: -1;
	display: none;
}

#mask,
#BG {
	/*蒙版**背景图*/
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
}

button {
	background-color: #55aa7f;
	color: #FFFFFF;
	border: none;
	padding: 2px 5px;
	font-size: 16px;
	margin: 5px;
	border-radius: 2px;
	transition: 0.1s;
}

button:hover {
	background-color: var(--focus);
}

button:focus {
	outline: none;
}

input {
	display: block;
	box-sizing: border-box;
	padding-left: 10px;
	border: none;
	height: 30px;
	border-radius: 3px;
}

input:focus,
textarea:focus {
	outline: none;
	background-color: rgba(85, 170, 255, 1.0);
	color: #fff;
}


#Tip {
	/*提示*/
	position: fixed;
	left: 50%;
	top: -50px;
	transform: translateX(-50%);
	z-index: 98;
	background-color: #fff;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 14px;
	color: #000;
	padding: 10px 30px;
	border-radius: 30px;
	opacity: 0;
}

.title {
	/*选项卡*/
	width: 100%;
	height: 30px;
	position: fixed;
	top: 0;
	user-select: none;
	background: var(--white);
	z-index: 99;
}

.nol {
	/*第一个选项卡标签*/
	margin-left: 15%;
}

#title .titl {
	/*选项卡标签*/
	width: 90px;
	height: 28px;
	float: left;
	cursor: pointer;
	transition: 0.2s;
	box-sizing: border-box;
	margin-top: 1px;
	border: 1px solid rgba(0, 0, 0, 0);
}

#title .titl:hover {
	background: #d4d4d4;
}

#title .titl div,
img {
	float: left;
}

#title .titl div {
	/*文字*/
	width: 50px;
	height: 28px;
	line-height: 28px;
	font-size: 18px;
	overflow: hidden;
}

#title .titl img {
	/*小图*/
	width: 28px;
	transform: scale(0.75);
	/* background-color: var(--white); */
}

.title-focus {
	/*当前选项卡标签*/
	background: #d4d4d4;
	border-radius: 2px;
}

#card {
	/*card外层盒子*/
	position: fixed;
	top: 30px;
	width:100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

#card card {
	/*里层*/
	padding:10px 5px;
	display: block;
	width: 1400px;
	margin: 0 auto;
	background: rgba(255,255,255,0.1);
}


#day{
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 1.0);
	height: 24px;
	width: 24px;
	line-height: 24px;
	text-align: center;
	font-size: 24px;
	color: #ffffff;
	font-weight: 700;
	padding: 10px;
}

.vue{
	position: fixed;
	top: 10px;
	right: 10px;
	width: 500px;
	background-color: #55AA7F;
	z-index: 999;
}


/****************************滚动条样式*****************************/
::-webkit-scrollbar {
	width: 10px;
	display: none;
}

::-webkit-scrollbar-thumb {
	background: var(--white);
}

::-webkit-scrollbar-track {
	background: rgba(113, 113, 113, 1.0);
}
