/* ==================== 导航栏样式 ==================== */
.header {
	width: 100%;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1000;
	padding: 10px 0;
}

.header .container {
	width: 95%;
	max-width: 1360px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 120px;
}

/* Logo 样式 */
.header .logo {
	display: flex;
	align-items: center;
}

.header .logo-text {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	display: block;
}

.header .logo-text-en {
	font-size: 12px;
	color: #999;
	display: block;
}

/* 导航菜单样式 */
.header .nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
}

.header .nav li {
	list-style: none;
	position: relative;
}

.header .nav li a {
	color: #333;
	font-size: 18px;
	text-decoration: none;
	padding: 10px 0;
	display: block;
	transition: color 0.3s ease;
}

.header .nav li a:hover,
.header .nav li.active a {
	color: #d32f2f;
}

.header .nav li.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #d32f2f;
}

/* 二级菜单样式 */
.header .nav .submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	min-width: 180px;
	padding: 10px 0;
	margin-top: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.header .nav .has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
}

.header .nav .submenu li {
	list-style: none;
	width: 100%;
}

.header .nav .submenu li a {
	color: #666;
	font-size: 16px;
	padding: 12px 25px;
	display: block;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header .nav .submenu li a:hover {
	color: #d32f2f;
	background-color: #f5f5f5;
}

/* ==================== 轮播模块样式 ==================== */
.banner {
	width: 100%;
	position: relative;
}

.banner .swiper-container {
	width: 100%;
	height: 680px;
}

.banner .swiper-slide {
	width: 100%;
	height: 100%;
}

.banner .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 分页器样式 */
.banner .swiper-pagination {
	bottom: 20px;
}

.banner .swiper-pagination-bullet {
	width: 80px;
	height: 4px;
	background: #fff;
	opacity: 0.5;
	border-radius: 0;
}

.banner .swiper-pagination-bullet-active {
	opacity: 1;
	background: #d32f2f;
}

/* 前进后退按钮样式 */
.banner .swiper-button-prev,
.banner .swiper-button-next {
	color: #fff;
	width: 50px;
	height: 50px;
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
	font-size: 30px;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
	width: 30px;
	height: 24px;
	justify-content: space-between;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #333;
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* 汉堡菜单激活状态 */
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* 防止菜单打开时页面滚动 */
body.menu-open {
	overflow: hidden;
}

/* 遮罩层 */
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 998;
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ==================== 走进协会模块样式 ==================== */
.about-section {
	padding: 80px 0 0;
	background-color: #fff;
	position: relative;
	margin-bottom: 80px;
}

.about-section .container {
	width: 95%;
	max-width: 1360px;
	margin: 0 auto;
}

.about-content {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	position: relative;
}

/* 全局蓝色背景条 - 从窗口最左侧延伸，右侧只覆盖约三分之一宽度 */
.about-section::before {
	content: '';
	position: absolute;
	left: 0;
	right: 33%;
	bottom: 0;
	height: 220px;
	background-color: #4158b5;
	z-index: 0;
}

/* 左侧内容 */
.about-left {
	width: 49%;
	position: relative;
	z-index: 1;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	justify-content: center;
}

.title-line {
	width: 40px;
	height: 4px;
	background-color: #4158b5;
}

.section-title h2 {
	font-size: 24px;
	color: #333;
	font-weight: normal;
	margin: 0;
}

.about-title {
	font-size: 24px;
	color: #4158b5;
	margin: 0 0 20px 0;
	font-weight: bold;
}

.about-text {
	margin-bottom: 40px;
}

.about-text p {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin-bottom: 15px;
	text-align: justify;
	text-indent: 32px;
}

/* 图标区域 */
.about-icons {
	display: flex;
	gap: 30px;
	padding: 30px 40px;
	border-radius: 8px;
	position: relative;
	z-index: 1;
	margin-top: 60px;
}

.icon-item {
	text-align: center;
	cursor: pointer;
	flex: 1;
}

.icon-box {
	width: 140px;
	height: 140px;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all 0.3s ease;
	position: relative;
	padding: 20px;
	gap: 12px;
	box-sizing: border-box;
	text-decoration: none;
}

.icon-item:hover .icon-box {
	background-color: #fff;
}

.icon-box img {
	transition: all 0.3s ease;
}

/* 默认显示普通图标 */
.icon-box .icon-normal {
	display: block;
}

.icon-box .icon-hover {
	display: none;
}

/* hover 时显示 hover图标 */
.icon-item:hover .icon-box .icon-normal {
	display: none;
}

.icon-item:hover .icon-box .icon-hover {
	display: block;
}

.icon-box span {
	font-size: 16px;
	color: #fff;
	display: block;
	font-weight: normal;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.icon-item:hover .icon-box span {
	color: #4158b5;
}

/* 右侧图片 */
.about-right {
	flex: 0 0 45%;
	position: relative;
	z-index: 1;
	margin-top: 30px;
}

.about-right img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* ==================== 截图模块样式 ==================== */
.screenshot-section {
	padding: 95px 0 0 0;
	background-image: url('../img/bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.screenshot-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(65, 88, 181, 0.9), rgba(65, 88, 181, 0.7));
	z-index: 0;
}

.screenshot-section .container {
	width: 95%;
	max-width: 1360px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.about-section .container .section-title{
	justify-content: left;
}

.screenshot-section .section-title {
	margin-bottom: 200px;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.screenshot-section .section-title .title-line {
	background-color: #fff;
}

.screenshot-section .section-title h2 {
	color: #fff;
}

/* Swiper 容器 */
.screenshot-swiper {
	position: relative;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 80px 0 80px;
}

.screenshot-swiper-container {
	width: 100%;
	overflow: visible;
	height: 580px;
	display: flex;
	align-items: flex-end;
}

.screenshot-swiper-container .swiper-wrapper {
	align-items: center;
}

.screenshot-swiper-container .swiper-slide {
	width: 720px;
	transition: all 0.3s ease;
	opacity: 0.6;
}

.screenshot-swiper-container .swiper-slide-active {
	opacity: 1;
	display: flex;
	align-items: flex-end;
}

/* 内容容器 */
.screenshot-content {
	width: 100%;
	height: 100%;
	text-decoration: none;
	display: block;
}

/* 激活状态的 content */
.swiper-slide-active .screenshot-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
}

/* 卡片样式 - 默认隐藏 */
.screenshot-card {
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	position: relative;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* 标题和文字默认隐藏 */
.screenshot-card h3,
.screenshot-card p {
	display: none;
}

.screenshot-card img {
	width: 600px;
	height: 400px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	margin: 0 auto;
	transition: all 0.3s ease;
}

/* 激活状态：显示背景框和文字 */
.swiper-slide-active .screenshot-card {
	background-color: #fff;
	border-radius: 8px;
	padding: 40px 50px 100px 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	justify-content: flex-start;
	align-items: stretch;
}

.swiper-slide-active .screenshot-card h3 {
	display: block;
	font-size: 24px;
	color: #333;
	margin: 0 0 15px 0;
	font-weight: bold;
}

.swiper-slide-active .screenshot-card p {
	display: block;
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 25px;
	text-align: justify;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* 左右箭头 */
.screenshot-prev,
.screenshot-next {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border: 2px solid #fff;
	border-radius: 4px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	background-image: none;
}

.screenshot-prev {
	left: calc(50% - 360px - 70px);
}

.screenshot-next {
	right: calc(50% - 360px - 70px);
}

.screenshot-prev:hover,
.screenshot-next:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.screenshot-prev::after,
.screenshot-next::after {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
}

.screenshot-prev::after {
	content: '‹';
}

.screenshot-next::after {
	content: '›';
}

/* 分页器 */
.screenshot-pagination {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	text-align: center;
	width: 100%;
	z-index: 10;
}

.screenshot-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #4158b5;
	opacity: 0.5;
	margin: 0 5px;
	border-radius: 50%;
	opacity: 1;
}

.screenshot-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: #fff;
	border: 2px solid #4158b5;
}

/* ==================== 会员单位模块样式 ==================== */
.member-section {
    padding: 80px 0;
    background-color: #f0f4fe;
}

.member-section .container {
    width: 95%;
    max-width: 1360px;
    margin: 0 auto;
}

.member-section .section-title {
    margin-bottom: 20px;
}

.member-section .section-title .title-line {
    background-color: #4158b5;
}

.member-section .section-title h2 {
    color: #333;
}

/* 介绍文字 */
.member-intro {
    text-align: center;
    margin-bottom: 60px;
}

.member-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 5px 0;
}

/* 会员网格 */
.member-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.member-item {
    position: relative;
}

.member-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
}

.member-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.member-card img {
    width: auto;
    max-width: 150px;
    max-height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.member-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* MORE 按钮 */
.member-more {
    text-align: center;
}

.more-btn {
    display: inline-block;
    padding: 12px 40px;
    font-size: 16px;
    color: #666;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.more-btn:hover {
    color: #4158b5;
    border-color: #4158b5;
    background-color: rgba(65, 88, 181, 0.05);
}

/* ==================== 底部样式 ==================== */
.footer {
    background-color: #050c2a;
    padding: 60px 0 0;
    position: relative;
}

.footer .container {
    width: 95%;
    max-width: 1360px;
    margin: 0 auto;
}

/* 底部主内容区 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
}

/* 左侧导航区域 */
.footer-nav {
    display: flex;
    gap: 60px;
    flex: 1;
}

.footer-nav-column {
    flex-shrink: 0;
}

.footer-nav-column h4 {
    margin: 0 0 20px 0;
    padding: 0 0 8px 0;
    position: relative;
}

.footer-nav-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
}

.footer-nav-column h4 a {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-nav-column h4 a:hover {
    color: #5a9fd4;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 12px;
}

.footer-nav-column ul li:last-child {
    margin-bottom: 0;
}

.footer-nav-column ul li a {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-nav-column ul li a:hover {
    color: #fff;
}

/* 中间联系方式 */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 右侧二维码 */
.footer-qrcode {
    text-align: center;
    flex-shrink: 0;
}

.footer-qrcode img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 10px;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

.footer-qrcode p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* 底部版权信息 */
.footer-bottom {
    background-color: #040a22;
    padding: 20px 0;
    width: 100%;
}

.footer-bottom .container {
    width: 95%;
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.8;
}

.footer-bottom .copyright {
    flex: 1;
}

.footer-bottom .footer-tech {
    flex-shrink: 0;
    text-align: right;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== 内页 Banner 样式 ==================== */
.banner-n {
	height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* 标题样式 */
.banner-n .title {
	font-size: 56px;
	color: #fff;
	font-weight: bold;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	letter-spacing: 2px;
}

/* 链接容器 */
.banner-n .link {
	display: flex;
	gap: 0;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	justify-content: center;
}

/* 链接按钮样式 */
.banner-n .link a {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 20px;
	font-size: 20px;
	color: #333;
	background-color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
	box-sizing: border-box;
	max-width: 400px;
	margin-right: 2px;
	justify-content: center;
}

.banner-n .link a:last-child{
	margin-right: 0;
}

/* 第一个按钮默认激活状态 */
/*.banner-n .link a:first-child {*/
/*	background-color: #4158b5;*/
/*	color: #fff;*/
/*}*/
.banner-n .link a.on {
	background-color: #4158b5;
	color: #fff;
}

/* hover 状态 */
.banner-n .link a:hover {
	background-color: #4158b5;
	color: #fff;
}

/* ==================== 内页 Banner 响应式样式 ==================== */
/* 平板端适配 (≤768px) */
@media screen and (max-width: 768px) {
	.banner-n {
		height: 350px;
	}
	
	.banner-n .title {
		font-size: 32px;
		letter-spacing: 1px;
	}
	
	.banner-n .link {
		bottom: 15px;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		padding: 0 20px;
		width: auto;
		left: 0;
		right: 0;
		transform: none;
		display: flex;
		justify-content: safe center;
	}
	
	.banner-n .link a {
		padding: 15px 40px;
		font-size: 16px;
		min-width: auto;
		flex: 0 0 auto;
		white-space: nowrap;
	}
}

/* 小屏移动端适配 (≤480px) */
@media screen and (max-width: 480px) {
	.banner-n {
		height: 210px;
	}
	
	.banner-n .title {
		font-size: 26px;
		letter-spacing: 0;
	}
	
	.banner-n .link {
		bottom: 15px;
		border-radius: 6px;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		padding: 0 20px;
		width: auto;
		left: 0;
		right: 0;
		transform: none;
		display: flex;
		flex-direction: row;
		justify-content: safe center;
	}
	
	.banner-n .link a {
		padding: 12px 24px;
		font-size: 15px;
		min-width: auto;
		flex: 0 0 auto;
		white-space: nowrap;
	}
}

/* ==================== 新闻列表样式 ==================== */
.news-list-section {
	padding: 80px 0;
	background-color: #f5f5f5;
}

.news-list-section .container {
	width: 95%;
	max-width: 1360px;
	margin: 0 auto;
}

/* 新闻项 */
.news-item {
	margin-bottom: 40px;
	background-color: #f6fafe;
	border-bottom: 2px solid #4158b5;
	padding: 40px;
	transition: all 0.3s ease;
}

.news-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.news-link {
	display: flex;
	gap: 0;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.news-item:hover{
	border-bottom: 2px solid #d9242b;
}

.news-link:hover {
	transform: translateY(-3px);
}

.news-link:hover .news-date {
	background-color: #d9242b;
}

/* 日期标签 */
.news-date {
	width: 80px;
	flex-shrink: 0;
	background-color: #4158b5;
	color: #fff;
	text-align: center;
	padding: 15px 10px;
	box-sizing: border-box;
	transition: background-color 0.3s ease;
}

.date-day {
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 8px;
}

.date-month {
	font-size: 14px;
	line-height: 1;
}

/* 新闻图片 */
.news-image {
	width: 240px;
	height: 160px;
	flex-shrink: 0;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.news-link:hover .news-image img {
	transform: scale(1.05);
}

/* 新闻内容 */
.news-content {
	flex: 1;
	padding-top: 10px;
	padding-left: 30px;
}

.news-content h3 {
	font-size: 20px;
	color: #333;
	margin: 0 0 15px 0;
	font-weight: bold;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.news-link:hover .news-content h3 {
	color: #4158b5;
}

.news-content p {
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 分页 */
.pagination {
    text-align: center;
    margin-top: 30px;
}
.pagination a {
    padding: 10px 15px;
    border: 1px solid #ccc;
    color: #000;
    transition: all .3s;
	font-size: 14px;
}

.pagination span {
    padding:0 10px;
	font-size: 14px;
}

.pagination a:hover {
    background: #4158b5;
    color: #fff;
}

.pagination a:hover .san{
	border-left: 5px solid #fff;
}
.pagination a:hover .san2{
	border-right: 5px solid #fff;
}

.pagination input {
    padding: 3px 5px;
    text-align: center;
    width: 30px;
    border: 1px solid #ccc;
}

.pagination a:hover .san{
	border-left: 5px solid #fff;
}
.pagination a:hover .san2{
	border-right: 5px solid #fff;
}

.san , .san2{
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.san {
	border-left: 5px solid #4158b5;
	margin-left: 5px;
}
.san2 {
	border-right: 5px solid #4158b5;
	margin-right: 5px;
}

i {
    display: inline-block;
    content: '';
}

.content{
	margin: 80px 0;
}

.content .title{
	color: #222222;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

.content .title p{
	color: #999999;
	font-size: 16px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #ddd;
	font-weight: normal;
}

.content .text{
	color: #222222;
	font-size: 16px;
	margin-top: 70px;
	line-height: 2;
}

.vip{
	margin: 80px 0;
}