@charset "utf-8";

/*-----------------------------------
|	开发时间2021.02.01
|	index.css
|	网站首页样式表
--------------------------------------*/
body {
	background: #f8f8f8;
}

header .header_nav .nav_left_list ul {
	display: block;
	/*首页附导航默认显示*/
}

/*------ 首页轮播图 ------*/
.slideBox {
	width: 100%;
	min-width: 1200px;
	height: auto;
	overflow: hidden;
	position: relative;
}

.slideBox .bd {
	position: relative;
	z-index: 0;
}

.slideBox .bd li {
	zoom: 1;
	vertical-align: middle;
	display: block;
}

.slideBox .bd a {
	display: block;
	height: 400px;
	background-color: #ded0b9;
	background-position: center top !important;
	background-repeat: no-repeat !important;
}

.slideBox .hd {
	width: 188px;
	height: 20px;
	margin: 8px auto 0 auto;
	overflow: hidden;
	z-index: 1;
}

.slideBox .hd ul {
	overflow: hidden;
	zoom: 1;
	float: left;
}

.slideBox .hd ul li {
	background: #c7c7c7;
	float: left;
	margin: 0 5px;
	width: 50px;
	height: 5px;
	line-height: 14px;
	text-align: center;
	cursor: pointer;
}

.slideBox .hd ul li.on {
	background: #9d8a6c;
	color: #fff;
}

/*------ 主要内容 ------*/
.main {
	width: 1200px;
	margin: 0 auto;
}

/* 首页四图导航 */
/* .nav_four{
	width:100%;
}
.nav_four ul li{
	display:inline-block;
	width:272px;
	height:120px;
	color:#fff;
	padding:20px 0 0 20px;
	margin:0 2px;
	line-height:26px;
	
}
.nav_four ul li:nth-of-type(1){background:url(/2index/static/pc/images/nav_four_1.jpg) no-repeat;}
.nav_four ul li:nth-of-type(2){background:url(/2index/static/pc/images/nav_four_2.jpg) no-repeat;}
.nav_four ul li:nth-of-type(3){background:url(/2index/static/pc/images/nav_four_3.jpg) no-repeat;}
.nav_four ul li:nth-of-type(4){background:url(/2index/static/pc/images/nav_four_4.jpg) no-repeat;}
.nav_four ul li span{
	font-size:16px;
}
.nav_four ul li p{
	font-size:14px;
}
.nav_four ul li a{
	display:block;
    width: 65px;
    height: 25px;
	margin-top:6px;
    line-height: 22px;
    text-align: center;
    font-size: 14px;
    background: transparent;
	color:#fff;
    border: 1px solid #fff;
    border-radius: 12px;
    cursor: pointer;
} */
/* 首页我们是谁 */
.about-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	/* 左右内容间距 */
	padding: 60px 80px;
	/* 上下左右内边距 */
	max-width: 1400px;
	/* 最大宽度，避免大屏过宽 */
	margin: 0 auto;
	/* 水平居中 */
	background-color: #ffffff;
	/* 纯白背景，还原原图 */
}

/* 左侧图片容器 */
.about-img-wrap {
	flex: 0 0 50%;
	/* 占50%宽度 */
	max-width: 500px;
	/* 限制最大宽度，避免图片拉伸 */
}

.about-img-wrap img {
	width: 100%;
	height: auto;
	/* 自适应高度，保持比例 */
	display: block;
	/* 消除图片底部默认间距 */
}

/* 右侧内容容器 */
.about-content {
	flex: 0 0 50%;
	/* 占50%宽度 */
	max-width: 600px;
	/* 限制最大宽度，优化阅读体验 */
}

/* 主标题：我们是谁？ */
.about-title {
	font-size: 48px;
	font-weight: 700;
	/* 加粗 */
	color: #333333;
	/* 黑色主体 */
	margin-bottom: 30px;
	line-height: 1.2;
}

/* 标题高亮："谁?" 用品牌蓝色 */
.about-title .highlight {
	color: #165DFF;
	/* OKmaster品牌蓝，还原原图 */
}

/* 副标题：累计30年经验... */
.about-subtitle {
	font-size: 28px;
	color: #333333;
	margin-bottom: 20px;
	line-height: 1.4;
	font-weight: 400;
	/* 常规字重 */
}

/* 正文描述 */
.about-desc {
	font-size: 16px;
	color: #666666;
	/* 灰色正文，提升可读性 */
	line-height: 1.8;
	/* 行高优化阅读 */
	margin-bottom: 35px;
}

/* 按钮：关于我们 + */
.about-btn {
	display: inline-block;
	padding: 15px 40px;
	/* 按钮内边距 */
	background-color: #FFC107;
	/* 亮黄色，还原原图按钮 */
	color: #000000;
	/* 黑色文字 */
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	/* 去掉下划线 */
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	/* hover过渡效果 */
}

.about-btn:hover {
	background-color: #FFB300;
	/* hover加深黄色，提升交互感 */
}


/* 案例板块容器 */
.case-section {
	background-color: #fff;
	/* 还原原图浅灰背景 */
	padding: 40px 20px;
	max-width: 1400px;
	/* 限制最大宽度，适配大屏 */
	margin: 30px auto;
	/* 水平居中 */
}

/* 头部标题区：左右分栏 */
.case-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	/* 小屏自动换行 */
	gap: 20px;
}

/* 主标题样式 */
.case-title {
	font-size: 48px;
	font-weight: 700;
	color: #333333;
	line-height: 1.2;
}

/* 标题高亮："遍布深圳"用品牌蓝色 */
.case-title span {
	color: #165DFF;
	/* 防补大师品牌蓝，完全匹配原图 */
}

/* 右侧说明文字 */
.case-desc {
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	max-width: 600px;
	/* 限制宽度，优化阅读 */
}

/* 案例网格：2行3列布局 */
.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* 大屏3列 */
	gap: 30px;
	/* 卡片间距 */
}

/* 单个案例卡片容器 */
.case-card {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	cursor: pointer;
}

/* 案例图片 */
.case-card img {
	width: 100%;
	height: 320px;
	/* 固定高度，统一卡片尺寸 */
	object-fit: cover;
	/* 保持图片比例，裁剪多余部分 */
	display: block;
	transition: transform 0.3s ease;
	/* hover放大动画 */
}

/* 卡片hover效果：图片轻微放大 */
.case-card:hover img {
	transform: scale(1.05);
}

/* 播放按钮：居中悬浮 */
.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 8px;
	color: #003bb0;
	background-color: #ffffff;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	z-index: 10;
}

/* 播放图标：蓝色圆形 */
.play-btn .play-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #0099FF;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.play-btn span {
	padding-right: 16px;
}

/* 底部蓝色标签栏 */
.case-tag {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #0099FF;
	/* 品牌蓝背景 */
	color: #ffffff;
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

/* 定位图标：黄色，匹配原图 */
.case-tag i {
	color: #ffc107;
	margin-right: 6px;
}


/* ---------穿插服务引导---------- */
/* 核心横幅容器：深蓝色背景+内容居中 */
.service-banner {
	background-color: #0066CC;
	/* 精准匹配原图深蓝色 */
	padding: 40px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
	/* width: 100%; */
	position: relative;
	overflow: hidden;
}

/* 背景水滴装饰（还原原图淡蓝色水滴） */
.service-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(40px);
	z-index: 1;
}

/* 文字容器：左对齐，适配响应式 */
.banner-text {
	flex: 1;
	max-width: 80%;
	position: relative;
	z-index: 2;
	padding-left: 80px;
	/* 还原原图文字左侧间距 */
}

/* 核心文案样式 */
.banner-text p {
	font-size: 36px;
	/* 匹配原图字体大小 */
	color: #ffffff;
	font-weight: 500;
	line-height: 1.4;
}

/* 高亮文字：快至1小时（黄色） */
.banner-text .highlight {
	color: #FFD100;
	/* 精准匹配原图黄色 */
	font-weight: 700;
}

/* 预约按钮容器：右对齐 */
.banner-btn {
	position: relative;
	z-index: 2;
	padding-right: 80px;
	/* 还原原图按钮右侧间距 */
}

/* 立即预约按钮样式 */
.banner-btn a {
	display: inline-block;
	padding: 18px 50px;
	/* 匹配原图按钮尺寸 */
	background-color: #FFD100;
	/* 按钮黄色 */
	color: #000000;
	/* 按钮文字黑色 */
	font-size: 18px;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

/* 按钮hover效果：加深黄色 */
.banner-btn a:hover {
	background-color: #FFC107;
}



/* ----------我们的优势板块---------------- */
/* 核心优势板块容器：深蓝色背景+内边距 */
.advantage-section {
	background-color: #0047AB;
	margin: 30px auto;
	/* 精准匹配原图深蓝色背景 */
	padding: 60px 80px;
	/* 上下左右内边距 */
	/* max-width: 100%; */
	/* width: 100%; */
}

/* 头部标题区域 */
.advantage-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	/* 小屏自动换行 */
	gap: 20px;
}

/* 主标题：为什么选择防补大师？ */
.advantage-title {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
}

/* 标题高亮：黄色 */
.advantage-title span {
	color: #FFD100;
	/* 匹配原图黄色高亮 */
}

/* 头部右侧说明文字 */
.advantage-desc {
	font-size: 14px;
	color: #ffffff;
	line-height: 1.6;
	max-width: 500px;
	/* 限制宽度，优化阅读 */
}

/* 优势卡片网格布局 */
.advantage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	/* 大屏3列 */
	grid-template-rows: auto auto;
	/* 2行 */
	gap: 20px;
	/* 卡片间距 */
}

/* 单个优势卡片样式 */
.advantage-card {
	background-color: #ffffff;
	/* 白色卡片背景 */
	padding: 30px 25px;
	position: relative;
	overflow: hidden;
	/* height: 100%; */
	/* 卡片高度统一 */
}

/* 卡片右下角黄色三角装饰（还原原图） */
.advantage-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 60px 60px;
	border-color: transparent transparent #FFD100 transparent;
	/* 黄色三角 */
}

/* 左侧大图卡片（30年经验沉淀） */
.card-big {
	grid-row: 1 / 3;
	/* 跨2行 */
	display: flex;
	flex-direction: column;
}

/* 大图卡片内的图片容器 */
.card-img {
	flex: 1;
	/* 占满剩余高度 */
	margin-top: 20px;
	overflow: hidden;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 保持图片比例 */
	display: block;
}

/* 卡片标题样式 */
.card-title {
	font-size: 24px;
	color: #0052D9;
	/* 蓝色标题，匹配原图 */
	font-weight: 700;
	margin-bottom: 15px;
}

/* 卡片正文样式 */
.card-text {
	font-size: 14px;
	color: #666666;
	/* 灰色正文 */
	line-height: 1.8;
}


/* 评价板块容器 */
.review-section {
	padding: 60px 20px;
	background-color: #f9f9f9;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

/* 标题样式 */
.review-title {
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	color: #333;
	margin-bottom: 50px;
}

.review-title span {
	color: #165DFF;
	/* 品牌蓝高亮 */
}

/* 滑动容器：隐藏溢出部分 */
.review-slider-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	cursor: grab;
	/* 拖拽光标提示 */
}

.review-slider-wrap.grabbing {
	cursor: grabbing;
	/* 拖拽中光标提示 */
}

/* 滑动轨道：横向排列所有卡片 */
.review-slider-track {
	display: flex;
	transition: transform 0.5s ease;
	/* 滑动过渡动画 */
	width: fit-content;
	/* 自适应内容宽度 */
}

/* 单个评价卡片 */
.review-card {
	width: 380px;
	/* 卡片宽度 */
	margin: 0 15px;
	background-color: #fff;
	padding: 30px 25px;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
	/* 禁止卡片收缩 */
}

/* 卡片头部：头像+昵称+星级 */
.review-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

/* 头像 */
.avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 昵称+星级 */
.user-info {
	flex: 1;
}

.user-name {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-bottom: 5px;
}

.star-rating {
	color: #FFD100;
	/* 星级黄色 */
	font-size: 14px;
}

/* 评价内容 */
.review-content {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* 评价图片组 */
.review-imgs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.review-imgs img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 4px;
}

/* 左右切换按钮 */
.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	color: #165DFF;
	font-size: 20px;
	border: none;
	outline: none;
	transition: background-color 0.3s ease;
}

.slider-btn:hover {
	background-color: #165DFF;
	color: #fff;
}

/* 左按钮 */
.prev-btn {
	left: 10px;
}

/* 右按钮 */
.next-btn {
	right: 10px;
}





/*------ 首页板块通用标题 ------*/
.box_title {
	width: 100%;
	height: 40px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ededed;
}

.box_title h2 {
	display: inline-block;
	height: 40px;
	line-height: 38px;
	color: #F6BB42;
	padding-left: 36px;
	border-bottom: 2px solid #F6BB42;
	font-size: 24px;
	background: url(/2index/static/pc/images/index_box_title_ico.png) left center no-repeat;
}

.box_title .box_title_more {
	float: right;
	margin-top: 16px;
}

.box_title .box_title_more a {
	float: left;
	height: 16px;
	font-size: 14px;
	color: #999;
	border-left: 1px solid #ededed;
	padding: 0 16px;
}

.box_title .box_title_more a:hover {
	color: #F6BB42 !important
}

.box_title .box_title_more a:nth-of-type(1) {
	border: 0;
}

/*------ A型内容列表 ------*/
.main_list_a {
	background: #fff;
	padding: 10px 8px 10px 0;
	margin-top: 20px;
	height: 424px;
}

.main_list_a .main_list_left {
	float: left;
	width: 300px;
	text-align: center;
	margin-top: 30px;
}

.main_list_a .main_list_left span {
	font-size: 18px;
}

.main_list_a .main_list_left p {
	font-size: 14px;
	margin-top: 20px;
	line-height: 30px;
	margin-bottom: 2px;
}

.main_list_a .main_list_left font {
	color: #ff465a !important;
}

.main_list_a .main_list_left a {
	display: block;
	width: 206px;
	height: 40px;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid #d99c00;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 16px;
	color: #bb9767;
	line-height: 40px;
}

.main_list_a .main_list_right {
	column-count: 2;
	font-size: 14px;
	border-left: 1px solid #f4f3f4;
}

.main_list_a .main_list_right ul li {
	display: block;
	width: 380px;
	height: 38px;
	padding-left: 10px;
	margin-left: 24px;
	line-height: 38px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;

}

.main_list_a .main_list_right ul li a {
	display: inline-block;
	width: 274px;
	color: #666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.main_list_a .main_list_right ul li a:hover {
	color: #ff465a;
}

.main_list_a .main_list_right ul li span {
	float: right;
	color: #999
}

/*------ B型内容列表 ------*/
.main_list_b {
	background: #fff;
	padding: 10px 8px 10px 0;
	margin-top: 20px;
}

.main_list_b .main_list_left {
	float: left;
	font-size: 14px;
	border-left: 1px solid #f4f3f4;
}

.main_list_b .main_list_left ul li {
	display: block;
	width: 360px;
	height: 38px;
	padding-left: 10px;
	margin: 0 30px 0 24px;
	line-height: 38px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;

}

.main_list_b .main_list_left ul li a {
	display: inline-block;
	width: 274px;
	color: #666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.main_list_b .main_list_left ul li a:hover {
	color: #ff465a;
}

.main_list_b .main_list_left ul li span {
	float: right;
	color: #999
}

.main_list_b .main_list_right {
	column-count: 2;
}

.main_list_b .main_list_right ul li {
	display: inline-block;
	width: 368px;
	height: 124px;
	padding: 10px 0;
	margin: 0 10px;
	border-bottom: 1px solid #F2F2F2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.main_list_b .main_list_right ul li:nth-of-type(3),
.main_list_b .main_list_right ul li:nth-of-type(6) {
	border: 0;
}

.main_list_b .main_list_right ul li a {}

.main_list_b .main_list_right ul li a img {
	float: left;
	width: 142px;
	height: 110px;
	object-fit: cover;
}

.main_list_b .main_list_right .index_img_list_right {
	width: 206px;
	margin: 0 0 10px 154px;
}

.main_list_b .main_list_right ul li h4 {
	display: block;
	width: 206px;
	margin: 0 0 10px 154px;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.main_list_b .main_list_right ul li span {
	font-size: 12px;
	margin: 0 10px;
	color: #B3B3B3;
	display: inline-block;
	padding-left: 14px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;
}

.main_list_b .main_list_right ul li em {
	font-size: 12px;
	color: #1663ff;
}

.main_list_b .main_list_right ul li p {
	font-size: 12px;
	color: #808080;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

/*------ C型内容列表 ------*/
.main_list_c {
	background: #fff;
	padding: 10px 8px 10px 0;
	margin-top: 20px;
}

.main_list_c .main_list_top {
	width: 100%;
	height: 150px;
	text-align: center;
	margin-left: 4px;
}

.main_list_c .main_list_top ul li {
	display: inline-block;
	width: 222px;
	height: 148px;
	margin: 0 6px;
}

.main_list_c .main_list_top ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_list_c .main_list_top ul li p {
	display: block;
	width: 90%;
	height: 50px;
	line-height: 68px;
	font-size: 14px;
	padding: 0 5%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	top: -52px;
	color: #fff;
	background: url(/2index/static/pc/images/index_img_list_bg.png) repeat;
}

.main_list_c .main_list_bottom {
	column-count: 3;
	font-size: 14px;
	padding: 18px 24px 0 0;
}

.main_list_c .main_list_bottom ul li {
	display: block;
	width: 360px;
	height: 38px;
	padding-left: 10px;
	margin: 0 30px 0 24px;
	line-height: 38px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;

}

.main_list_c .main_list_bottom ul li a {
	display: inline-block;
	width: 270px;
	color: #666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.main_list_c .main_list_bottom ul li a:hover {
	color: #ff465a;
}

.main_list_c .main_list_bottom ul li span {
	float: right;
	color: #999
}

/*------ D型内容列表 ------*/
.main_list_d {
	background: #fff;
	padding: 10px 8px 10px 0;
	margin-top: 20px;
}

.main_list_d .main_list_left {
	float: left;
	font-size: 14px;
}

.main_list_d .main_list_left ul li {
	display: block;
	width: 336px;
	height: 38px;
	padding-left: 10px;
	margin: 0 30px 0 24px;
	line-height: 38px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;

}

.main_list_d .main_list_left ul li a {
	display: inline-block;
	width: 238px;
	color: #666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.main_list_d .main_list_left ul li a:hover {
	color: #ff465a;
}

.main_list_d .main_list_left ul li span {
	float: right;
	color: #999
}

.main_list_d .main_list_middle {}

.main_list_d .main_list_middle ul li {
	display: inline-block;
	width: 368px;
	height: 124px;
	padding: 10px 0;
	margin: 0 10px;
	border-bottom: 1px solid #F2F2F2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.main_list_d .main_list_middle ul li:nth-of-type(3),
.main_list_b .main_list_middle ul li:nth-of-type(6) {
	border: 0;
}

.main_list_d .main_list_middle ul li a {}

.main_list_d .main_list_middle ul li a img {
	float: left;
	width: 142px;
	height: 110px;
	object-fit: cover;
}

.main_list_d .main_list_middle .index_img_list_right {
	width: 206px;
	margin: 0 0 10px 154px;
}

.main_list_d .main_list_middle ul li h4 {
	display: block;
	width: 206px;
	margin: 0 0 10px 154px;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.main_list_d .main_list_middle ul li span {
	font-size: 12px;
	margin: 0 10px;
	color: #B3B3B3;
	display: inline-block;
	padding-left: 14px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;
}

.main_list_d .main_list_middle ul li em {
	font-size: 12px;
	color: #1663ff;
}

.main_list_d .main_list_middle ul li p {
	font-size: 12px;
	color: #808080;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.main_list_d .main_list_right {
	float: right;
	font-size: 14px;
}

.main_list_d .main_list_right ul li {
	display: block;
	width: 336px;
	height: 38px;
	padding-left: 10px;
	margin: 0 30px 0 24px;
	line-height: 38px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;

}

.main_list_d .main_list_right ul li a {
	display: inline-block;
	width: 238px;
	color: #666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.main_list_d .main_list_right ul li a:hover {
	color: #ff465a;
}

.main_list_d .main_list_right ul li span {
	float: right;
	color: #999
}

.main_list_d .main_list_middle {}

/*------ E型内容列表 ------*/
.main_list_e {
	background: #fff;
	padding: 10px 8px 10px 0;
	margin-top: 20px;
}

.main_list_e .main_list_left {
	float: left;
	font-size: 14px;
}

.main_list_e .main_list_left ul li {
	display: block;
	width: 336px;
	height: 38px;
	padding-left: 10px;
	margin: 0 30px 0 24px;
	line-height: 38px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;

}

.main_list_e .main_list_left ul li a {
	display: inline-block;
	width: 238px;
	color: #666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.main_list_e .main_list_left ul li a:hover {
	color: #ff465a;
}

.main_list_e .main_list_left ul li span {
	float: right;
	color: #999
}

.main_list_e .main_list_top {
	column-count: 1;
}

.main_list_e .main_list_top ul li {
	display: inline-block;
	width: 368px;
	height: 124px;
	padding: 10px 0;
	margin: 0 10px;
	border-bottom: 1px solid #F2F2F2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.main_list_e .main_list_top ul li:nth-of-type(3),
.main_list_b .main_list_top ul li:nth-of-type(6) {
	border: 0;
}

.main_list_e .main_list_top ul li a {}

.main_list_e .main_list_top ul li a img {
	float: left;
	width: 142px;
	height: 110px;
	object-fit: cover;
}

.main_list_e .main_list_top .index_img_list_right {
	width: 206px;
	margin: 0 0 10px 154px;
}

.main_list_e .main_list_top ul li h4 {
	display: block;
	width: 206px;
	margin: 0 0 10px 154px;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.main_list_e .main_list_top ul li span {
	font-size: 12px;
	margin: 0 10px;
	color: #B3B3B3;
	display: inline-block;
	padding-left: 14px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;
}

.main_list_e .main_list_top ul li em {
	font-size: 12px;
	color: #1663ff;
}

.main_list_e .main_list_top ul li p {
	font-size: 12px;
	color: #808080;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.main_list_e .main_list_bottom {
	float: right;
	font-size: 14px;
	column-count: 2;
}

.main_list_e .main_list_bottom ul li {
	display: block;
	width: 350px;
	height: 38px;
	padding-left: 10px;
	margin: 0 26px 0 0;
	line-height: 38px;
	background: url(/2index/static/pc/images/list_spot.jpg) center left no-repeat;

}

.main_list_e .main_list_bottom ul li a {
	display: inline-block;
	width: 238px;
	color: #666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.main_list_e .main_list_bottom ul li a:hover {
	color: #ff465a;
}

.main_list_e .main_list_bottom ul li span {
	float: right;
	color: #999
}

/*------ F型内容列表 ------*/
.main_list_f {
	height: 356px;
	background: #fff;
	padding: 10px 8px 10px 0;
	margin-top: 20px;
}

.main_list_f .main_list_img {
	position: relative;
}

.main_list_f .main_list_img ul li {
	position: absolute;
	overflow: hidden;
}

.main_list_f .main_list_img ul li:nth-of-type(1) {
	width: 280px;
	height: 300px;
	top: 0;
	left: 0;
}

.main_list_f .main_list_img ul li:nth-of-type(2) {
	width: 290px;
	height: 145px;
	top: 0;
	left: 290px;
}

.main_list_f .main_list_img ul li:nth-of-type(3) {
	width: 290px;
	height: 145px;
	top: 155px;
	left: 290px;
}

.main_list_f .main_list_img ul li:nth-of-type(4) {
	width: 290px;
	height: 300px;
	top: 0;
	left: 590px;
}

.main_list_f .main_list_img ul li:nth-of-type(5) {
	width: 145px;
	height: 145px;
	top: 0;
	left: 890px;
}

.main_list_f .main_list_img ul li:nth-of-type(6) {
	width: 145px;
	height: 145px;
	top: 0;
	left: 1045px;
}

.main_list_f .main_list_img ul li:nth-of-type(7) {
	width: 145px;
	height: 145px;
	top: 155px;
	left: 890px;
}

.main_list_f .main_list_img ul li:nth-of-type(8) {
	width: 145px;
	height: 145px;
	top: 155px;
	left: 1045px;
}

.main_list_f .main_list_img ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_list_f .main_list_img ul li a p {
	height: 30px;
	padding: 20px 15px 10px 15px;
	color: #fff;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	background: linear-gradient(transparent, #333);

}

.main_list_f .main_list_img ul li a:hover>p {
	position: relative;
	left: 0;
	top: -60px;
	animation: showinfo 0.3s 1;
	-webkit-animation: showinfo 0.3s 1;
}

@keyframes showinfo {
	0% {
		top: 0px;
	}

	20% {
		top: -20px;
	}

	40% {
		top: -30px;
	}

	60% {
		top: -40px;
	}

	80% {
		top: -50px;
	}

	100% {
		top: -60px;
	}
}

@-webkit-keyframes {
	0% {
		top: 0px;
	}

	20% {
		top: -20px;
	}

	40% {
		top: -30px;
	}

	60% {
		top: -40px;
	}

	80% {
		top: -50px;
	}

	100% {
		top: -60px;
	}
}