/*
 * @Desc: 公共样式
 * @Author: 赵佳明
 * @Date: 2023-01-30 09:11:04
 * @LastEditors: wanglidong 王立冬
 * @LastEditTime: 2023-05-18 15:48:36
 * Copyright (c) 2023 山木枝(河北)技术服务有限公司, All Rights Reserved. 
 */
body {
	margin: 0 auto !important;
}

.ellipsis1 {
	/* 1.文字强制一行显示 */
	white-space: nowrap;
	/* 2.溢出部分隐藏 */
	overflow: hidden;
	/* 3.溢出部分用省略号代替 */
	text-overflow: ellipsis;
}

.ellipsis2 {
	/* 溢出部分隐藏 */
	overflow: hidden;
	/* 溢出部分用省略号代替 */
	text-overflow: ellipsis;
	/* 弹性伸缩盒子模型显示 */
	display: -webkit-box;
	/* 限制一个块元素显示的文本行数 */
	-webkit-line-clamp: 2;
	/* 设置伸缩盒对象子元素的排列方式 */
	-webkit-box-orient: vertical;
}
.ellipsis3 {
	/* 溢出部分隐藏 */
	overflow: hidden;
	/* 溢出部分用省略号代替 */
	text-overflow: ellipsis;
	/* 弹性伸缩盒子模型显示 */
	display: -webkit-box;
	/* 限制一个块元素显示的文本行数 */
	-webkit-line-clamp: 3;
	/* 设置伸缩盒对象子元素的排列方式 */
	-webkit-box-orient: vertical;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.title-hold {
	display: flex;
	justify-content: space-between;
}

.title-hold .title {
	position: relative;
}

.title-hold .title::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: -15px;
	width: 212px;
	height: 28px;
	background: url(../images/Index/SchoolProfile-title-desc.png);
}

.title-hold .title .pic {
	position: relative;
	z-index: 2;
}

.title-hold .title-more {
	width: 118px;
	height: 44px;
	background: #1677FF;
	font-size: 14px;
	font-family: AppleSystemUIFont;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.title-hold .title-more .thu{
	margin-left: 15px;
}
/*  */
.nav-hold{
	position: fixed;
	z-index: 100;
	right: 20px;
	bottom: 30px;
}
.nav-hold .nav-top{
	width: 44px;
	height: 44px;
	background: #1677FF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-hold .nav-top .thu{
	transform: rotateZ(-90deg);
}