.pageList
{
	margin: auto;
	width: 980px;
}

.ui-layout-center
{
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
}

.row
{
	width: 980px;
}

.fixed-table-toolbar
{
	display: none !important;
}

.t-big-margin
{
	border-radius: 0 !important;
	margin: 0;
}

/* 为第一个列标题（文章名称）添加字符间距 */
table#bootstrap-table > thead > tr > th:first-child .th-inner
{
	letter-spacing: 3em;
}

/* 超链接美化样式 */
li a
{
	text-decoration: none; /* 移除默认下划线 */
	color: #2c66a8;
	transition: all 0.3s ease;
	position: relative;
	padding-right: 5px;
	font-size: 14px;
}

li a:hover
{
	font-size: 14px;
	color: #ff6b6b;
	text-decoration: none; /* 确保悬停时也不显示默认下划线 */
}

li a::after
{
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background-color: #ff6b6b;
	transition: width 0.9s ease;
}

/* 超链接动态下划线效果 */
a.dynamic-underline, .table a, #bootstrap-table a, .col-sm-12 a
{
	text-decoration: none; /* 移除默认下划线 */
	color: #2c66a8;
	transition: all 0.9s ease;
	position: relative;
	padding-right: 5px;
	font-size: 14px;
}

a.dynamic-underline:hover, .table a:hover, #bootstrap-table a:hover, .col-sm-12 a:hover
{
	font-size: 14px;
	color: #ff6b6b;
	text-decoration: none; /* 确保悬停时也不显示默认下划线 */
}

a.dynamic-underline::after, .table a::after, #bootstrap-table a::after, .col-sm-12 a::after
{
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background-color: #ff6b6b;
	transition: width 0.9s ease;
}

a.dynamic-underline:hover::after, .table a:hover::after, #bootstrap-table a:hover::after, .col-sm-12 a:hover::after
{
	width: 100%;
}

li a:hover::after
{
	width: 100%;
}
