﻿/*===================	css style ===================*/

/*===================	subnav 纯CSS滑动核心样式 ===================*/
.subnav {
	margin: 15px 0;
	background: #f7f7f7;
    padding: 15px 0; /* 容器内边距 */
}

/* 滑动容器：溢出隐藏+横向滚动 */
.subnav-scroll {
    width: 100%;
    overflow-x: auto; /* 水平滚动 */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* 移动端顺滑滚动 */
    scrollbar-width: none; /* 隐藏Firefox滚动条 */
}
/* 隐藏Chrome/Safari滚动条 */
.subnav-scroll::-webkit-scrollbar {
    display: none;
}

/* 导航列表：强制一行排列 */
.subnav-list {
    display: flex;
    flex-wrap: nowrap; /* 禁止换行 */
    gap: 10px; /* 导航项间距 */
    padding: 0 5px; /* 左右内边距 */
}

/* 导航项样式 */
.subnav-item {
	display: block;
	max-width: 150px;
	height: 28px;
	line-height: 28px;
	color: #666;
	text-align: center;
	background: #fff;
	border: 1px solid #efefef;
	border-radius: 20px;
	padding: 0 12px;
	text-decoration: none; /* 去除链接下划线 */
	white-space: nowrap; /* 文字不换行 */
}
.subnav-item:hover, .subnav-item.active {
	color: #fff;
	background: #00a0ea;
	border: 1px solid #00a0ea;
}

/*===================	position ===================*/
.position {
	width: 100%;
	height: 50px;
	line-height: 50px;
	color: #999;
	background: #fff;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	overflow: hidden;
}
.position p {
	float: left;
	width: 20px;
	height: 20px;
	margin: 15px 0;
	margin-right: 6px;
	text-align: center;
	line-height: 22px;
	background: #00a0ea;
	border-radius: 50%;
}

.position span, .position a {
	font-size: 14px;
	color: #999;
}
.position a:last-child {
	color: #00a0ea;
}


body {
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-family: Roboto, sans-serif;
    color: #999;
    background-color: #f7f7f7
}

a {
    color: #039be5;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 90%
}

/* 移除所有owl-carousel相关样式（已不再使用） */