:root
{
	--background-color:linear-gradient(to left bottom,#d87a00,#f46246,#fa557c,#e75eaf,#bc74d7,#9487eb,#6197f4,#00a3f3,#00afed,#00b9e0,#00c0cf,#2ac6bc);
	--border-color:#1a65b131;
	--text-color:#34495e;
	--color1:#EC3E27;
	--color2:#fd79a8;
	--color3:#0984e3;
	--color4:#00b894;
	--color5:#fdcb6e;
	--color6:#e056fd;
	--color7:#F97F51;
	--color8:#BDC581;
	--a_border_color:#99bacc;
	--h2_border_color:#abc;
	--a_hover_background_color:#1a65b161;
	--font_color:#e8f6fd;
}

*
{
	margin: 0;
	padding: 0;
}

html
{
	font-size: 6px;
}

body
{
	width: 100vw;
	/*height: 100vh;*/
	background-image: var(--background-color);
	background-size: 200%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat',sans-serif,Arial,'Microsoft Yahei';
	animation: bgAnimation 30s linear infinite;
}

@keyframes bgAnimation
{
	0%
	{
		background-position: 0 50%;
	}

	50%
	{
		background-position: 100% 50%;
	}

	100%
	{
		background-position: 0 50%;
	}
}

.card
{
	flex-shrink: 0;
	flex-grow: 0;
	position: relative;
	width: 70px;
	height: 140px;
	overflow: hidden;
	margin: 2px;
	background-color: var(--border-color);
	border-radius: 10px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	box-shadow: 0 0 30px #2c2c2c;
	color: var(--font_color);
	margin-top: 6px;
	margin-left: 4px;
}

.photo
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	border-radius: 0;
	overflow: hidden;
	transition: .5s;
}

.photo::before
{/*20241205
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to top,#292929e9,transparent);*/
}

.card:hover .photo::before
{
	display: none;
}

.photo img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card .photo/*20241205*/
{
	width: 60px;
	height: 60px;
	top: 10px;
	border-radius: 50%;
	box-shadow: 0 0 20px #111;
}

.card:hover .photo
{
	width: 60px;
	height: 60px;
	top: 10px;
	border-radius: 50%;
	box-shadow: 0 0 20px #111;
}

.card h1
{
	position: absolute;
	top: 100px;
	transition: .5s;
	/*20241205*/
	top: 80px;

	width: 90%;
	float: left;
	line-height: 25px;
	height: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

.card:hover h1
{
	position: absolute;
	top: 80px;
}

.card h2
{
	margin-top: 100px;
	width: 90%;
	font-weight: normal;
	text-align: center;
	margin-bottom: 5px;
	padding-bottom: 0px;
	border-bottom: 1px solid var(--h2_border_color);

	width: 90%;
	float: left;
	line-height: 25px;
	height: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

.card p
{
	width: 90%;
	text-indent: 2em;
	font-size: 12px;
	margin-bottom: 10px;
	line-height: 14px;
}

.card a
{
	color: var(--font_color);
	text-decoration: none;
	padding: 1px 6px;
	border: 1px solid var(--a_border_color);
	border-radius: 8px;
	/*20241205*/
	color: #Fff;
	background-color: var(--a_hover_background_color);
}

.card a:hover
{
	color: #Fff;
	background-color: var(--a_hover_background_color);
}
.button4
{
	width: 90%;
	margin: 0 auto;
	padding: 0;
	display: block;
	/* Firefox */
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #FFFFFF;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	font-size: 16px;
	float: left -moz-box-shadow:5px 5px 5px #999 inset;
	-webkit-box-shadow: 5px 5px 5px #999 inset;
	box-shadow: 3px 3px 3px #18a0f1;
	cursor: pointer;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #07b3b3), color-stop(1, #01a4a1));/* Saf4+, Chrome */
	/* Gecko browsers */
	/* Webkit browsers */
	/* W3C syntax */
	}
