@charset "UTF-8";

/* 
 * @Author: lld
 * @Date: 2024-05-28
 */
:root {
	--themeColor: #003974;
}

* {
	/* 去除内外边距 */
	margin: 0;
	padding: 0;
	/* 单词自动换行 */
	word-wrap: break-word;
	/* 取消轮廓线 */
	outline: none;
	/* 去除列表元素的默认样式 */
	list-style: none;
}

/* ========== 图片设置 start ========== */
img {
	/* 清除边框 */
	border: none;
	/* 解决图片模糊 */
	image-rendering: -webkit-optimize-contrast;
	/* 去除图片底侧空白缝隙 */
	vertical-align: middle;
	max-width: 100%;
}
img[src=''] {opacity: 0;}
/* ========== 图片设置 end ========== */
/* ========== 超链接设置 start ========== */
a {color: #666;cursor: pointer;outline: none;text-decoration: none;-webkit-appearance: none;-webkit-tap-highlight-color: rgba(255, 255, 255, 0);}
/* 未访问的链接 */
a:link,
/* 已访问的链接 */
a:visited,
/* 点击激活链接 */
a:active {color: #666;blr: expression(this.onFocus=this.blur());}
/* 鼠标在链接上 */
a:hover {color: #1e5ab0;}
/* ========== 超链接设置 end ========== */
/* ========== 细线表格 start ========== */
table {border-collapse: collapse;margin: auto;}
/* ========== 细线表格 end ========== */
/* ========== 列表设置 start ========== */
ul,
li {list-style-type: none;vertical-align: middle;}
/* ========== 列表设置 end ========== */
/* ========== 表单设置 start ========== */
select,
input {
	vertical-align: middle;outline: none;background: none;
	/* 触摸元素时的高亮颜色 */
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
input[type=button],
input[type=reset],
input[type=submit],
input[type=radio],
input[type=checkbox] {
	cursor: pointer;outline: none;
	/* 控制元素的外观 */
	-webkit-appearance: none;
}
textarea {
	outline: none;background: none;
	/* 触摸元素时的高亮颜色 */
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {color: #aab2bd;}
/* ========== 表单设置 end ========== */
/* ========== 截字数 start ========== */
.clamp1{word-break: break-all;display: -webkit-box !important;-webkit-line-clamp: 1 !important;-webkit-box-orient: vertical;overflow: hidden;}
.clamp2{word-break: break-all;display: -webkit-box !important;-webkit-line-clamp: 2 !important;-webkit-box-orient: vertical;overflow: hidden;}
.clamp3{word-break: break-all;display: -webkit-box !important;-webkit-line-clamp: 3 !important;-webkit-box-orient: vertical;overflow: hidden;}
.clamp4{word-break: break-all;display: -webkit-box !important;-webkit-line-clamp: 4 !important;-webkit-box-orient: vertical;overflow: hidden;}
.clamp5{word-break: break-all;display: -webkit-box !important;-webkit-line-clamp: 5 !important;-webkit-box-orient: vertical;overflow: hidden;}
.clamp6{word-break: break-all;display: -webkit-box !important;-webkit-line-clamp: 6 !important;-webkit-box-orient: vertical;overflow: hidden;}
/* ========== 截字数 end ========== */
/* ========== 内盒子代码 start ========== */
.box-size {box-sizing: border-box;-webkit-box-sizing: border-box;}
/* ========== 内盒子代码 end ========== */
/* ========== 浮动 start ========== */
.fl {float: left;display: inline;}
.fr {float: right;display: inline;}
/* ========== 浮动 end ========== */
/* ========== 清除浮动 start ========== */
.clear {clear: both;overflow: hidden;height: 0;}
.clearC:after {display: block;content: ' ';clear: both;visibility: hidden;}
/* ========== 清除浮动 end ========== */
/* ========== 设置图片经过放大 start ========== */
.imghover .pic {overflow: hidden;}
.imghover img {overflow: hidden;transition: all 0.3s linear;-webkit-transition: all 0.3s linear;}
.imghover:hover img {transform: scale(1.05);-webkit-transform: scale(1.05);}
/* ========== 设置图片经过放大 end ========== */
/* ========== 图片自适应 start ========== */
.pic {position: relative;}
.pic:before {display: block;content: '';padding-top: 60%;}
.pic img {position: absolute;width: 100%;height: 100%;left: 0;top: 0;object-fit: cover;object-position: center center;}
/* ========== 图片自适应 end ========== */
/* ========== 设置表格方式垂直居中 start ========== */
.table {display: table;width: 100%;height: 100%;table-layout: fixed}
.tableCell {display: table-cell;width: 100%;height: 100%;vertical-align: middle;}
/* ========== 设置表格方式垂直居中 end ========== */
/* ========== 设置背景色 start ========== */
.hui.hui.hui {background: #f2f2f2;}
.bai.bai.bai {background: #fff;}
/* ========== 设置背景色 end ========== */