/* ============================================================
   common.css - 公共样式表
   功能：PC端全站通用基础样式，包含重置样式、导航栏、页脚、通用组件等
   适用页面：活动首页（index.html）、评选规则页（rules.html）等PC端所有页面
   ============================================================ */

/* ============================================================
   全局颜色变量（颜色主题）
   ------------------------------------------------------------
   仅品牌主色三色（深酒红 / 强调红 / 白）使用下方变量统一管理，
   供本文件及 index.css / rules.css 引用（各页面都先加载本文件）。
   其余中性色（文字灰、背景、边框、遮罩等）直接在样式中写字面值，
   不变量化，便于一眼区分非主题色。
   后续如需调整网站主题色，只需修改下方变量的值即可全局生效。
   ============================================================ */
:root {
	--primary-color: #731521;       /* 主色（深酒红）：导航栏/页脚背景、行业分类条目文字、导航 hover 文字 */
	--accent-color: #e2070e;        /* 强调色（红）：轮播激活圆点、顶部下拉菜单、投票按钮、评选标题、行业条目 hover */
	--color-white: #ffffff;         /* 白色：导航/按钮/页脚文字，亦用于白色背景 */
}

/* ---------- 全局样式重置 ---------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	min-width: 1000px;
	height: 100%;
}

li {
	list-style: none;
}

a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	display: block;
}

img {
	display: block;
	width: 100%;
}

input {
	border: none;
	outline: none;
	display: block;
	width: 100%;
	height: 100%;
	color: #6C6C6C;
	font-size: 14px;
	box-shadow: 0 0 0 16px var(--color-white) inset;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
}

input[type='number'] {
	-moz-appearance: textfield;
}

/* .smfund {
	height: 100%;
	overflow: auto;
} */

/* ---------- 导航栏样式 ---------- */
.nav_head {
	height: 88px;
	background-color: var(--primary-color);
	/* background: url(../image/nav_tab.jpg) no-repeat; */
	background-size: 100% 100%;
}

/* 导航列表容器 */
.nav_list {
	width: 1000px;
	margin: 0 auto;
	font-size: 24px;
	color: var(--color-white);
	line-height: 88px;
	display: flex;
	align-items: center;
}

/* 导航链接样式 */
.nav_list a {
	color: var(--color-white);
}

.nav_list>li {
	flex: 1;
	text-align: center;
}

.nav_list>li:hover {
	background-color: var(--color-white);
	color: var(--primary-color);
}

.nav_list>li:hover a {
	background-color: var(--color-white);
	color: var(--primary-color);
}

/* 导航 */
.photic_li {
	position: relative;
}
.activity {
	position: absolute;
	top: 88px;
	display: none;
	left: -200%;
}
.guard_activity {
	width: 1000px;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 38%;
	background-color: #F1F1F1 !important;
	z-index: 9;
}
.guard_activity li {
	display: flex;
	align-items: center;
	/* width: 155px; */
	height: 60px;
}
.guard_activity li::after {
	content: "";
	display: block;
	width: 1px;
	height: 15px;
	background-color: var(--primary-color);
}
.guard_activity li:last-child::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
}
.guard_activity a {
	width: 100%;
	font-size: 22px;
	color: var(--primary-color);
	font-weight: 500;
	text-align: center;
	padding: 16px 23px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F1F1F1 !important;
}
/* 主体 */
.center {
	background-color: #F4F5F7;
	padding: 34px 0 40px;
}
.cen_list {
	width: 1000px;
	margin: 0 auto;
}
.cen_nav {
    background-color: var(--color-white);
    padding-bottom: 30px;
    /* margin-bottom: 40px; */
}
.nav_text {
	padding: 0 22px;
	font-size: 16px;
	line-height: 28px;
	color: #5F5F5F;
	text-align: justify;
}
.nav_top img {
	width: auto;
	padding: 28px 10px;
	height: 112px;
}

/* -----合作媒体------- */
.media,.media_mtzc,.media_hz,.media_hzmt{
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
}
.media li,.media_mtzc li,.media_hz li,.media_hzmt li{
    width: 20%;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}
.media img,.media_mtzc img,.media_hz img,.media_hzmt img{
    width: 160px;
    height: 101px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

/* ---------- 页脚区域 ---------- */
.footer {
	padding: 50px 0 40px;
	background-color: var(--primary-color);
	display: flex;
	justify-content: center;
}

.footer_cen {
	margin: 0 auto;
}

.footer_title {
	font-size: 30px;
	margin-bottom: 25px;
	color: var(--color-white);
}

.submit {
	display: flex;
	align-items: center;
	margin-bottom: 33px;
}

.submit_le {
	font-size: 18px;
	color: var(--color-white);
}

.submit_le li {
	display: flex;
	align-items: center;
	margin-bottom: 22px;
}

.submit_le li:last-child {
	margin-bottom: 0;
}

.submit_le p {
	margin-right: 8px;
	width: 95px;
}

.tel_name {
	width: 275px;
	height: 24px;
	border-radius: 4px;
	padding: 0 5px;
	overflow: hidden;
	background-color: var(--color-white);
}

.submit_tj {
	font-size: 26px;
	color: var(--primary-color);
	padding: 24px 40px;
	background-color: var(--color-white);
	border-radius: 4px;
	font-weight: 500;
	margin-left: 64px;
}

.footer_tel {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.tel_le {
	color: var(--color-white);
	font-size: 18px;
	line-height: 30px;
	margin-right: 65px;
}

.footer_tel .tel_le:last-child {
	margin-right: 0;
}

#Footer a {
	display: inline-block;
}

#Footer {
	margin: 0 auto;
	padding: 40px 0 0;
	font-size: 12px;
	text-align: center;
	clear: both;
	color: var(--color-white);
	background: var(--primary-color);
}



.tips {
	font-size: 20px;
	padding: 14px;
	background: rgba(255, 255, 255, 0);
	color: var(--color-white);
	width: 100%;
	height: 100%;
	/* line-height: 28px; */
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	text-align: center;
	display: none;
	z-index: 999;
}

.dis {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dis p {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 6px 12px 8px;
}

.new_end_le {
	display: flex;
	align-items: center;
	margin-right: 48px
}

.bottom {
	height: 80px;
	width: 100%;
	/* background-color: #000; */
	min-width: 700px;
}

.bottom .btop {
	color: #f5f5f5;
	text-align: center;
	height: 40px;
	max-width: 1200px;
	min-width: 700px;
	margin: 0 auto;
	line-height: 40px;
}

.bottom .btop a {
	font-size: 12px;
	color: var(--color-white);
	margin-right: 10px;
	text-decoration: underline;
	margin-left: 10px;
}

.bottom .btop a:hover {
	color: #ffffff;
}

.bottom .bbottom {
	max-width: 1200px;
	min-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.bottom .bbottom span {
	font-size: 12px;
	color: #f5f5f5;
}

.bottom .bbottom span a {
	color: #f5f5f5;
	text-decoration: underline;
}

.bottom .bbottom span a:hover {
	color: #ffffff;
}

/* ---------- 返回顶部按钮（PC端，公共 JS 控制显隐） ---------- */
.pc_top {
	display: none;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 40px;
	bottom: 120px;
	z-index: 100;
	cursor: pointer;
}
.pc_top img {
	width: 100%;
	height: 100%;
}
.pc_top.show {
	display: block;
}