
/* ============================================================
   index.css - PC 首页样式
   适用页面：PC端 index.html（与 common.css 一起引入）
   说明：本文件中的颜色均引用 common.css 顶部 :root 中定义的
   全局颜色变量，如需调色请修改 common.css 中的变量值。
   ============================================================ */
.time{
	padding: 0 20px;
}
.cen_list{
	margin-bottom: 40px;
}
.center{
	/* padding-bottom: 0; */
	position: relative;
}
.in_zt{
	width: 1000px;
	margin: 34px auto 0;
}
.nav_list li{
	position: relative;
	cursor:pointer;
}

/* 轮播 */
#swi2{
    width: 800px;
    /* padding-bottom: 65px; */
    overflow: hidden;
    margin: 0 auto 30px;
    position: relative;
}
.my-bulletsw{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid var(--color-white);
	background-color: transparent;
	margin: 0 6px;
}
.my-bullet-activesw{
    border: 2px solid var(--accent-color);
	background-color: var(--accent-color);
}
.swiper-pagination{
	height: 23px;
	bottom: 16px!important;
	display: flex;
	justify-content: center;
}
.swi_img,.swi_img img{
	height: 100%;
}

.tp_list{
	position: relative;
}
.tp_title{
	display: none;
	position: absolute;
	top: 88px;
	left: -34%;
	z-index: 3;
}
.tp_class{
	width: 405px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
}
.tp_class a{
	flex: 1;
	color: var(--color-white);
	font-size: 22px;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}
.nav_list>li.tp_list:hover .tp_title{
	display: block;
}
.nav_list>li.tp_list:hover a {
    background-color: var(--accent-color);
    color: var(--color-white);
}

.hjmd_but{
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ---------- 行业分类（三列布局） ---------- */
.company_list {
    width: 100%;
	padding: 40px 80px 0;
	display: flex;
	flex-wrap: wrap;
}
.company_list li {
	width: 30%;
	padding-bottom: 50px;
}
.company_list li:nth-of-type(3n - 1) {
	margin: 0 5%;
}
.company {
    width: 100%;
    height: 52px;
    display: flex !important;
    align-items: center;
	font-size: 24px;
	color: var(--primary-color);
	font-weight: bold;
	background-image: url(../image/icon_select2.png);
	background-size: 100% 100%;
	cursor: pointer;
}
.company_num {
    width: 64px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: bold;
    font-size: 36px;
    font-family: "黑体";
    padding-left: 26px;
}
.company_text{
    flex: 1;
    text-align: center;
}
.company:hover {
	background-image: url(../image/icon_select.png) !important;
	color: var(--accent-color) !important;
}