.mod-hd {
    width: 93vw;
    padding: 5px 10px;
    margin-top: 20px;
}
.header-container {
    position:relative;
}
/* 导航容器样式 */
.nav-menu {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    /* padding: 0 10px; */
    -webkit-overflow-scrolling: touch;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu .menu-item {
    flex-shrink: 0;
    min-width: 80px; 
    text-align: center;
    list-style: none;
}

.nav-menu .nav-a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.nav-menu .nav-a.active {
    color: #00b64f;
    font-weight: bold;
    border-bottom: 2px solid #00b64f;
}

ul.menu-list {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 10px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

ul.menu-list::-webkit-scrollbar {
    display: none;
}

ul.menu-list .menu-item {
    flex-shrink: 0;
    list-style: none;
    padding: 0 5px;
}
/* 排行榜列表容器 */
.seo-rank-list {
    padding: 0 10px;
    margin-top: 10px;
    /* 初始化CSS计数器 */
    counter-reset: rank-counter;
}

/* 列表项样式 */
.seo-rank-list li {
    margin-bottom: 10px;
    position: relative;
    /* 自动递增计数器 */
    counter-increment: rank-counter;
}
#soft-rank{
	display:none;
}
/* 链接整体布局：Flex左右结构 */
.seo-rank-list li a {
    display: flex;
    align-items: center;
    background-color: #f5f5f5; /* 默认灰色背景 */
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

/* 前3名特殊背景色处理 */
.seo-rank-list li:nth-child(1) a {
    background-color: #fffbe6; /* 金色淡背景 */
    border: 1px solid #ffe58f;
}
.seo-rank-list li:nth-child(2) a {
    background-color: #f6ffed; /* 银色/淡绿背景，也可改为 #fafafa */
    border: 1px solid #b7eb8f;
}
.seo-rank-list li:nth-child(3) a {
    background-color: #e6f7ff; /* 铜色/淡蓝背景 */
    border: 1px solid #91d5ff;
}

/* 左侧图片区域 */
.rank-img-box {
    width: 60px;
    height: 60px;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.rank-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CSS生成序号样式 */
.rank-img-box::before {
    content: counter(rank-counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    border-bottom-right-radius: 8px;
    z-index: 2;
}

/* 前3名序号颜色优化 */
.seo-rank-list li:nth-child(1) .rank-img-box::before { background-color: #ff4d4f; }
.seo-rank-list li:nth-child(2) .rank-img-box::before { background-color: #faad14; }
.seo-rank-list li:nth-child(3) .rank-img-box::before { background-color: #52c41a; }

/* 右侧信息区域 */
.rank-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.rank-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.rank-desc {
    font-size: 12px;
    color: #999;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 专题网格容器 */
.seo-topic-grid {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    padding: 0 10px; /* 左右内边距 */
    margin-top: 10px;
    list-style: none;
    margin-bottom: 10px;
}

/* 每个专题项：一行两个 */
.seo-topic-grid li {
    width: 50%; /* 占据一半宽度 */
    box-sizing: border-box; /* 包含padding */
    padding: 5px; /* 项之间的间距 */
}

/* 链接整体样式 */
.seo-topic-grid li a {
    display: flex;
    flex-direction: column; /* 上下结构：上图下文 */
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%; /* 确保高度一致 */
}

.seo-topic-grid li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #ff6600;
}

/* 图片区域 */
.topic-img-wrap {
    width: 100%;
    padding-top: 60%; /* 保持图片比例，避免变形 */
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.topic-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 覆盖填充 */
    display: block;
}

/* 文字区域 */
.topic-text-wrap {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* 专题名称 */
.topic-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 标签/描述 */
.topic-tag {
    font-size: 12px;
    color: #999;
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    align-self: flex-start;
}

/* 移动端适配：如果屏幕极小，保持一行两个 */
@media (max-width: 320px) {
    .seo-topic-grid li {
        width: 100%; /* 超小屏改为一行一个，可选 */
    }
}
.category-scroll-list li a span {
    display: block; /* 或者 inline-block，取决于您希望的布局效果 */
    font-size: 12px;
    text-align: center;
}
/* 安卓下载按钮图标 */
/* 注意：请确保 #anzhuo-down 或其祖先元素设置了 background-image (sprites图) */
#anzhuo-down i {
    width: 15.5px;
    height: 18px;
    background-position: -142px -44px;
    display: inline-block;
    position: relative;
    top: 3px;
    right: 9px;
    /* 如果图标不显示，可能需要添加 background-repeat: no-repeat; */
}

/* 主色调按钮 (蓝色渐变) */
.c-btn--primary {
    color: #fff;
    /* 移除错误的 -moz- old... 和冗余前缀，保留标准 gradient */
    background-image: linear-gradient(35deg, #25cdff, #467bf3);
    background-color: #467bf3; /* 降级背景色 */
}

/* 橙色按钮 (橙色渐变) */
.c-btn--orange {
    color: #fff;
    background-image: linear-gradient(35deg, #f9c37d, #f59c26);
    background-color: #f59c26;
}

/* 灰色按钮 (灰色渐变) */
.c-btn--gray {
    color: #fff;
    background-image: linear-gradient(35deg, #e7e7e7, #d7d7d7);
    background-color: #d7d7d7;
}

/* 修复 primary 按钮伪元素颜色问题 */
.c-btn--primary:before {
    border-color: transparent; /* 原代码是 color: transparent，但伪元素是边框，应用 border-color */
}

/* 按钮基础样式 */
.c-btn {
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* 移除 -moz- 前缀 */
    padding: 5px 13.5px 6px;
    border-radius: 50px; /* 移除 -moz- 前缀 */
    font-size: 13px;
    position: relative;
    background-color: #fff;
    /* 建议添加 border: none; 以防止默认边框干扰 */
    border: none; 
}

/* 按钮伪元素 - 用于实现细边框效果 (Retina屏优化常见技巧) */
.c-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    pointer-events: none;
    display: block;
    width: 200%;
    height: 200%;
    border-radius: 50px; /* 移除 -moz- 前缀 */
    border: 1px solid rgba(0, 0, 0, 0.1); /* 建议给边框一个默认颜色，否则不可见 */
    transform: scale(0.5); /* 合并所有 transform 前缀 */
    transform-origin: 0 0; /* 合并所有 origin 前缀 */
}

/* 文本省略号工具类 */
.c-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 应用信息容器 */
.player_xsoft_info {
    position: relative;
    /* 保持原有的 box-pd padding 效果，如果需要可以在此调整 */
}

/* 应用标题样式 */
.player_xsoft_info .app-title {
    font-weight: normal;
    margin: 10px 0; /* 建议添加适当的外边距，使布局更美观 */
    font-size: 18px; /* 建议设置字体大小 */
    color: #333;
}

/* 下载按钮显示控制 */
#anzhuo-down {
    display: block;
}
/* 推荐列表容器 */
.recommend-grid-list {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 每个推荐项：一行4个 */
.recommend-grid-list li {
    width: 25%; /* 占据四分之一宽度 */
    box-sizing: border-box; /* 包含padding */
    padding: 10px; /* 项之间的间距 */
}

/* 链接整体样式 */
.recommend-grid-list li a {
    display: flex;
    flex-direction: column; /* 上下结构：上图下文 */
    align-items: center;
    text-align: center;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.recommend-grid-list li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ff6600;
}

/* 图片区域 */
.rec-img-box {
    width: 100%;
    padding-top: 100%; /* 保持1:1正方形比例，也可改为75%等 */
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.rec-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 覆盖填充 */
    display: block;
}

/* 标题样式 */
.rec-title {
    font-size: 13px;
    font-weight: normal;
    color: #333;
    margin: 8px 0;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 文字过长省略 */
    width: 100%;
}

/* 移动端适配：如果屏幕太窄，改为一行2个或3个 */
@media (max-width: 480px) {
    .recommend-grid-list li {
        width: 25%; /* 小屏一行3个 */
    }
}

@media (max-width: 360px) {
    .recommend-grid-list li {
        width: 50%; /* 超小屏一行2个 */
    }
}
/* 同类热门容器 */
.similar-games-section {
    position: relative;
}

/* 头部布局：标题和更多链接同行 */
.similar-games-section .mod-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.similar-games-section .more-link {
    font-size: 12px;
    color: #999;
    text-decoration: none;
}

/* 游戏列表网格 */
.similar-games-grid {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 每个游戏项：一行4个 */
.similar-games-grid li {
    width: 25%; /* 占据四分之一宽度 */
    box-sizing: border-box; /* 包含padding */
    padding: 5px; /* 项之间的间距 */
}

/* 链接整体样式 */
.similar-games-grid li a {
    display: flex;
    flex-direction: column; /* 上下结构 */
    align-items: center;
    text-align: center;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    padding-bottom: 10px;
}

.similar-games-grid li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ff6600;
}

/* 图片区域 */
.game-img-box {
    width: 100%;
    padding-top: 100%; /* 保持1:1正方形比例 */
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.game-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 覆盖填充 */
    display: block;
}

/* 标题样式 */
.game-title {
    font-size: 13px;
    font-weight: normal;
    color: #333;
    margin: 8px 0 4px 0;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 文字过长省略 */
    width: 100%;
}

/* 大小样式 */
.game-size {
    font-size: 12px;
    color: #999;
    margin: 0 0 8px 0;
}

/* 按钮样式 */
.game-btn {
    font-size: 12px;
    color: #ff6600;
    border: 1px solid #ff6600;
    padding: 2px 12px;
    border-radius: 12px;
    background-color: #fff;
}

/* 移动端适配：如果屏幕太窄，改为一行2个或3个 */
@media (max-width: 480px) {
    .similar-games-grid li {
        width: 33.33%; /* 小屏一行3个 */
    }
}

@media (max-width: 360px) {
    .similar-games-grid li {
        width: 50%; /* 超小屏一行2个 */
    }
}
/* 1. 设置列表项为相对定位 */
.latest-games-grid li {
    position: relative;
    list-style: none;
    margin-bottom: 15px;
    /* 关键修改：左边距 = 图片宽(65) + 间距(10) = 75px */
    padding: 10px 0 10px 75px; 
    border-bottom: 1px solid #f0f0f0;
}

/* 2. 链接标签样式 */
.latest-games-grid li a {
    display: block;
    text-decoration: none;
    color: #333;
}

/* 3. 图片绝对定位到左侧，尺寸改为 65x65 */
.latest-games-grid li .game-img-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;  /* 修改宽度 */
    height: 65px; /* 修改高度 */
}

.latest-games-grid li .game-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* 4. 右侧内容样式 */

/* 标题 */
.latest-games-grid li h3.game-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
}

/* 信息 */
.latest-games-grid li p.game-info {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #999;
}

/* 5. 查看按钮：绿底白字 */
.latest-games-grid li span.game-btn {
    display: inline-block;
    background-color: #28a745;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    line-height: 1.2;
    cursor: pointer;
}
/* 鼠标悬停效果 */
.latest-games-grid li span.game-btn:hover {
    background-color: #218838;
}
.tempWrap .bd {
    position: relative;
    padding: 0;
    margin: 0;
}
.tempWrap .bd .tab-item {
    vertical-align: top;
    width: 100%;
    display: block; 
}
/* soft/index */
body {
	overflow-x: hidden;
}

.box-fixed {
	margin-top: -16px;
}

.type-tab ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.type-tab ul li {
	width: 20%;
	margin: 6px 2.1%;
	border-radius: 5px !important;
	border: 1px solid #CCCCCC;
}

.navigation-container {
	margin: 20px 20px 15px 20px;
}

.navigation-container a {
	color: #00b64f;
}

.text {
	/* margin-top: 20px; */
}

.hr {
	border-top: 1px dotted #e5e5e5;
	padding-top: 10px;
}

/* android */
.mod-title {
	padding: 10px 0px 5px 0px;
}

/* toppic/index */
.mod-three1 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 10px auto;
	padding-left: 12px;
}
.box-fixed .tempWrap-tag{min-height: 80vh;}
.tab-hd .on a{color: #fff;}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.mod-three1 { width: 100vw; }
}

.mod-three1 li {
	margin: 10px 2.5vw;
}

.mod-three1 li img {
	width: 42vw;
}

.mod-three1 h3 {
	text-align: center;
	margin-top: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 40vw;
	margin: 0 auto;
	font-weight: normal;
}

.mod-three {
	width: 90vw;
	margin: 0 auto;
}

.mod-three .title span {
	display: inline-block;
	width: 100px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mod-three li {
	width: 100vw;
	margin-bottom: 5px;
	/* padding: 0 10px; */
}
.mod-three .text {
	/* margin-top: 20px; */
	font-size: 14px;
}

/* topic/detail */
.zhuanti_container {
	background-color: gainsboro;
}

.zhuanti_header {
	background-color: white;
	position: relative;
}

.zhuanti_header img {
	width: 100%;
	/* height: 220px; */
}

.more_btn_m2 {
	/* position: absolute; */
	z-index: 9999;
}

.zhuanti_time {
	color: #868686;
	background-color: #F5F5F5;
	padding: 6px 20px;
}

.zhuangti_time_total {
	position: absolute;
	right: 20px;
}

.zhuanti_header h1 {
	width: 89vw;
	height: 40px;
	line-height: 40px;
	position: absolute;
	bottom: 0px;
	padding: 0 20px;
	color: white;
	background-color: rgb(0,0,0,0.4);
}

.more_update_btn {
	background-color: #F5F5F5;
	border-radius: 20px;
	border: 0px !important;
	color: #999999;
}

.zhuanti_header p {
	margin: 0px 20px;
}

.overflow-class {
	padding-bottom: 10px;
	/* overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical; */
}

.more_btn {
	color: #00b64f;
	text-align: right;
	margin: 1px 20px;
}

.white {
	background-color: white;
}

.white li {
	/* width: 92vw; */
	border-bottom: 1px dotted #e5e5e5;
}

.white li:last-child {
	border-bottom: 0px;
}

.more_game_btn {
	width: 100px;
	padding: 5px 30px;
	margin: 15px auto;
	border: 1px dotted #e5e5e5;
	text-align: center;
}

.heji_container {
	margin: 5px 10px;
}

.more_heji_btn {
	width: 50px;
	margin: -20px 0px;
	border: 1px dotted #e5e5e5;
	text-align: center;
	float: right;
	margin-right: 10px;
}

.heji_div {
	margin: 0px 20px;
}

.heji_content {
	display: flex;
	overflow-x: auto;
	/* flex-wrap: wrap; */
	width: 90vw;
}

.heji_content li {
	margin: 5px 15px 0px 0px;
}

.heji_content img {
	width: 43vw;
	/* width: 160px;
	height: 100px; */
}

.heji_content h3 {
	text-align: center;
	margin-top:5px;
}

/* soft/detail */
.crumb {
	margin-top: 16px;
}

.more_btn_m {
    cursor: pointer;
    font-size: 14px;
    color: #00b64f;
	text-align: center;
	padding: 0px;
	margin: 10px auto;
}

.more_btn_m3 {
	margin-top: -5px;
}

.swiper-container-initialize {
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: rgb(0,0,0,0.6);
	width: 100%;
	height: 100%;
	z-index: 1000;
}

.version_more_ul {
	background-color: white;
	margin: 0px;
	padding: 2px 0px;
}

.version_more_ul li {
	margin: 10px 0px;
	border: 1px solid #ECECEC;
	padding: 10px;
}

.version_more_ul li:hover {
	background-color: #ECECEC;
}

.version_more_ul li h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 200px;
}

.download_small {
	width: 60px;
	height: 24px;
	background-color: #00b64f;
	text-align: center;
	padding-top: 5px;
	margin-top: -25px;
	border-radius: 5px;
}

.download_small a {
	color: white;
	text-decoration: none;
}

.float_left {
	float: right;
}

.download_margin {
	margin-top: -22px;
}

.download_text {
	color: white !important;
	text-decoration: none !important;
}

.paddingtop45 {
	margin-top: -45px;
	margin-right: 40px;
}

.more_btn11 {
	border: 1px solid #00b64f;
	width: 60px;
	/* float: right; */
	text-align: center;
	border-radius: 5px;
	margin-top: -24px;
	margin-right: 0;
	position: absolute;
	right: 18px;
}

.more-btn .down {
	margin: 20px auto;
	background-color: white;
	color: black;
	border: 1px solid #00b64f;
	border-radius: 5px;
}

.t_nav {
	margin: 10px 0px;
	font-size: 16px;
	display: flex;
	justify-content: space-around;
}

.t_nav_on {
	color:  #00b64f;
	border-bottom: 1px solid #00b64f;
}

.t_nav_on a {
	color:  #00b64f;
}
.order_container_content {
	width: 90vw !important;
}
#input-area {
	border: 1px solid #cccccc;
	width: 36vw;
}
.order_button {
	width: 90vw !important;
	margin-left: 10vw!important;
}
.display {
	display: none;
}
.yellow {
	background-color: #F4C239;
}
.order_container {
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0,0.6);
	top: 0;
	left: 0;
	position: fixed;
	z-index: 999;
	overflow: hidden;
}
.order_container_content {
	width: 400px;
	height: 260px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.order_title {
	background-color: #CCCCCC;
	height: 40px;
	padding: 10px;
}
.order_content {
	background-color: white;
	height: 220px;
}
.order_time,.order_phone {
	padding: 10px 20px;
}
.order_time span,.order_phone span {
	padding: 10px;
}
.order_content p {
	
	padding: 0px 30px;
}
.order_tip_title {
	margin-top: 20px;
	color: orangered;
}
.order_tip_content {
	margin-bottom: 20px;
}
.order_button {
	margin: 20px 100px;
	width: 400px;
}
.order_button button {
	width: 100px;
}
.submit {
	background-color: orangered;
	border: 0px;
	color: white;
}
.close {
	background-color: #ECECEC;
	border: 0px;
}


.heji_content1 {
	display: flex;
	overflow-x: auto;
	/* flex-wrap: wrap; */
	/* width: 100vw; */
}

.heji_content1 li {	
	margin: 15px 15px 15px 0px;
	height:180px
}
.heji_content1 img {
	width: auto;	
	height:100%;
}

.heji_content1 h3 {
	text-align: center;
}

/* 猜你喜欢 */
.zhuanti_love {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
}

.zhuanti_love div{
	margin-right: 10px;
}

.zhuanti_love h3 {
	width: 150px;
	background-color: #ECECEC;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 5px 0px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow : ellipsis;
	font-weight: normal;
	text-align: center;
}

.zhuanti_love_container {
	display: flex;
}

.zhuanti_love_title {
	margin: 0 10px;
}
.zhuanti_love_title  p:nth-child(1){
	white-space:nowrap;
	overflow:hidden;
	text-overflow : ellipsis;
	color: #D9001B;
	font-size: 14px;
	text-align: center;
	margin:10px  0;
}
.zhuanti_love_title p:nth-child(2){
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	color: #999999;
	font-size: 13px;
}
.zhuanti_love_img {
	width: 50%;
}
.zhuanti_love_img img{
	width: 100%;
	height: 80px;
}
.zhuanti_love_title {
	width: 100%;
}

.zhuanti_love_content {
	display: flex;
	flex-wrap: wrap;
	margin-left: -14px;
}
.zhuanti_love_content li{
	display: block;
	width: 15%;
	margin: 8px 5.0%;
}

.zhuanti_love_content img {
	width: 60px;
	height: 60px;
	border-radius: 6px;
}
.zhuanti_love_content h3 {
	text-align: center;
	white-space:nowrap;
	overflow:hidden;
	text-overflow : ellipsis;
	width: 60px;
	font-weight: normal;
}

.height5 {
	height: 370px;
	overflow:hidden;
}
.height55 {
	height: 740px;
	overflow:hidden;
}
.chang-line {
	height: 2px;
	background-color: #cccccc;
}
.more-bd h3 {
	color: #00b64f;
}

#category_info {
	margin-top: 12px;
}

.m-hover-game-box{position:fixed;display: none;top:0;left:0;z-index:999;width:100%;padding-bottom: 5px;background:#fafafa;-webkit-box-shadow:0 1px .6rem 0 rgba(0,0,0,.2);box-shadow:0 1px .6rem 0 rgba(0,0,0,.2);}
.m-tr .m-td{display:inline-block}
.m-hover-game-box .m-left{overflow:hidden;margin-left:10px;width: 68%;}
.m-hover-game-box .m-left img{float:left;margin-top:8px;width:36px;height:36px;border-radius:5px}
.m-hover-game-box .m-left .m-intro-box{margin-top:8px;margin-left:45px}
.m-hover-game-box .m-left .m-intro-box .u-title{overflow:hidden;color:#464646;text-overflow:ellipsis;white-space:nowrap;font-size: 14px;-ms-text-overflow:ellipsis;}
.m-hover-game-box .m-left .m-intro-box .u-type{color:#aaa;font-size: 12px;}
.m-hover-game-box .m-right{width: 25%;vertical-align:top;text-align:right;}
.m-hover-game-box .m-right .u-btn-dload{display:inline-block;margin-top:10px;width:60px;height:30px;border:none;border-radius:15px;background-image: -webkit-linear-gradient(-90deg,#5adef1 0,#1aabc0 94%);background-image: linear-gradient(-90deg,#5adef1 0,#1aabc0 94%);color:#fff;text-align:center;font-size:14px;line-height:30px;}


.downgbtn {
	margin-top: 12px;
	color: white;
	margin-right: 9px;
}
.topRankingUl li {
	border-bottom: 1px solid rgb(243, 238, 238);
	width: 42%;
	padding-bottom: 5px;
	padding:2px 0;
	position: relative;
}
.topRankingUl3 li {
	width: 100%;
}
.topRankingUl .down {
	right: 0px;
}
.topRankingUl .text {
	font-size: 12px;
}
.a-tag {
	display: flex;
	width: 60%;
	
	/* margin-top:-25px; */
	margin-left:68px;
}
.a-tag .on {
    border: 1px solid #00b64f;
    background-color: white;
    color: #00b64f !important;
}

.a-tag li a {
	margin: 3px;
	line-height:25px;
	color: #00b64f !important;
}
.a-tag li {
	/* width:56px; */
	height: 16px;
	font-size: 12px;
    border: 1px solid #cccccc;
    padding: 1px;
	color: #999999;
	text-align: center;
	margin: 0 2px;
}
.a-tag li span {
	display: inline-block;
	width:80%;
	text-overflow :ellipsis;
	white-space:nowrap;
	overflow: hidden;
}
.topRankingUl3 {
	position: relative;
}
.topRankingUl3 li{
	padding-bottom: 3px;
}
.topRankingUl3 a {
	padding-top: 3px;
}
.juxing {
    background-image: url(../images/juxing25.png);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    padding-left: 0px;
    padding-top: 2px;
    color: white;
    position: absolute;
    z-index: 99;
    width: 24px;
    height: 24px;
	left: -10px;
    text-align: center;
}
.rank1 {
	background-image: url(../images/f1.png);
	background-size: 22px 28px;
	width: 22px;
	height: 28px;
}
.rank2 {
	background-image: url(../images/f2.png);
	background-size: 22px 28px;
	width: 22px;
	height: 28px;
}
.rank3 {
	background-image: url(../images/f3.png);
	background-size: 22px 28px;
	width: 22px;
	height: 28px;
}
.paihang-more-btn {
	text-align: center;
	width:150px;
	height: 30px;
	line-height: 30px;
	background-color: rgba(232, 234, 234, 1);
	color: #999999;
	margin: 15px auto;
	margin-bottom: 10px;
	border-radius: 20px;
}
.mod-img-list1 {
	margin-left: 10px;
}
.other-paihang-item {
	width: 40% !important;
	margin: 4px 14px !important;
	border-radius: 2px;
}
.other-paihang-item a {
	color: #565656;
	width: 80% !important;
	text-overflow :ellipsis;
	white-space:nowrap;
	overflow: hidden;
	background-color: rgba(242, 242, 242, 1);
	border: 1px solid rgba(242, 242, 242, 1);
	padding: 4px 20px;
	text-align: center;
}
.other-more-btn {
	border: 1px solid rgba(51, 153, 204, 1) !important;
	background-color: white !important;
	color:  rgba(51, 153, 204, 1) !important;
}
.bianji-tuijian-container {
	display: flex;
	overflow-x: auto;
}
.bianji-tuijian-container li {
	margin:0 2px;
	border-bottom: 0px;
}
.bianji-tuijian-container .title {
	font-size: 12px;
	width:60px;
	height: auto;
	text-overflow :ellipsis;
	/* white-space:nowrap; */
	overflow: hidden;
	margin-right: 0 !important;
	font-weight: normal;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-align: center;
}
/* 热门标签 */
/* .tags_box {
	display: flex;
	flex-wrap: wrap;
	width: 90vw;
} */


/* 热门标签 */
/* .tags_box{padding: 0 10px; overflow: hidden; zoom: 1;display: flex;
	flex-wrap: wrap;width: 95vw;justify-content:space-between}
.tags_box a{display: inline-block; padding: 0 12px; width:36vw;text-overflow :ellipsis;
	white-space:nowrap;
	overflow: hidden;height: 28px; line-height:28px; font-size: 14px; color: #333; border:1px solid #e5e5e5; border-radius: 15px; float: left; margin-right: 8px;margin-bottom: 10px;}
.tags_box a:nth-child(12n+1){background: #6cd47d; border-color: #6cd47d; color: #fff;}
.tags_box a:nth-child(12n+2){background: #ff8b62; border-color: #ff8b62; color: #fff;}
.tags_box a:nth-child(12n+5){background: #37afff; border-color: #37afff; color: #fff;}
.tags_box a:nth-child(12n+6){background: #ff6f6f; border-color: #ff6f6f; color: #fff;}
.tags_box a:nth-child(12n+7){background: #6b6b6b; border-color: #6b6b6b; color: #fff;}
.tags_box a:nth-child(12n+8){background: #ffbc53; border-color: #ffbc53; color: #fff;} */


.game-video { height:14rem;margin:auto;position:relative;overflow:hidden;background-size:cover;background-position:50%}
.game-video video{width:100%;height:100%;-o-object-fit:fill;object-fit:fill;position:absolute;left:0;top:0}
.game-video img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.game-video .vback{display:none;width:100%;height:14rem;position:absolute;left:0;z-index:1;background:rgba(0, 0, 0, 0.6);}
.game-video .vback .info{width:120px;flex-wrap:wrap;margin:30px auto .3rem auto;}
.game-video .vback .info .img_box{width:80px;text-align:center;position:relative;margin:0 auto;}
.game-video .vback .info img{display:block;width:80px;height:80px;border-radius:.3rem;margin:0 auto;}
.game-video .vback .info p{color:#fff;font-size:14px;overflow:hidden;white-space:nowrap;margin:.1rem auto 0 auto;text-align:center;}
.game-video .vback .info .replay{display:block;width:80px;height:80px;background:rgba(0, 0, 0, 0.3);position:absolute;top:0;left:.2rem;border-radius:.3rem;}
.game-video .vback .info .replay i{display:block;width:80px;height:80px;background-position:-3.74rem -3.02rem;margin:.44rem auto;}
.game-video .vback .btn{display:block;width:160px;height:34px;line-height:34px;color:#fff;background:#2596fc;border-radius:20px;font-size:16px;text-align:center;margin:10px auto;}
.game-video .vback .btn i{display:inline-block;
	background-image: url(../images/icon.png);
    background-size: 7.5rem 6rem;
	width:12px;height:12px;border-radius:.38rem;margin-left:.1rem;background-position:-1.06rem -4.35rem;position:relative;top:.08rem;}

/*游戏详情*/
.player_xsoft_info{padding: 0px 0;background: #fff;margin: 12px;}
.player_xsoft_info .player_soft_img{position:relative;width: 110px;height: 110px;margin: 0 auto;margin-top: 6px;overflow: hidden;}
.player_xsoft_info .player_soft_img img{width: 110px;height: 110px;border-radius: 16px;}
.player_xsoft_info h1{font-size: 17px;color: #222;height: 33px;line-height: 33px;overflow: hidden;font-weight: normal;font-weight: bold; text-align: center;}

.player_xsoft_info .txt { margin: 5px 0; color: #b0b0b0; font-size: 12px; line-height: 16px; text-align: center;}
.player_xsoft_info .txt2 { text-align: center; font-size: 14px; color: #686868; margin: 5px auto 10px; height: 20px; line-height: 20px; overflow: hidden; width:85%;}
.player_tips{text-align: center;font-size: 12px;color: #358FF0;}
.player_tips span{padding: 0 16px;position: relative;}
.player_tips span::after{content: "";position: absolute;width: 11px;height: 11px;left: 0;top: 50%;margin-top: -5px;background: url(../images/dyw-tip.png) no-repeat;background-size: 11px;}


/* .player_xsoft_info .g_down{width: 95%;height: 40px;display:block;background: #ff8a00;border-radius: 3px;font-size: 18px;color:#FFFFFF;text-align:center;line-height: 40px;margin: 12px auto;}
.player_xsoft_info .down{ background-color: #358FF0;width:80%;border-radius: 20px; }
.player_xsoft_info .nodown{ background-color: #ccc; }
.player_xsoft_info .yuyue{ background-color: #259d5d; }
.player_xsoft_info .downbtn_a{display:inline-block;width: 40%;margin: 10px 4% 10px 3%;background:#fff;border: 1px solid #ff8a00;color: #ff8a00;box-sizing:  border-box;font-size: 18px; border-radius: 5px;}
.player_xsoft_info .downbtn_b{background: #ff8a00;display: inline-block;width: 50%;margin:10px 0;line-height: 20px;height: 38px;padding-top:  2px;vertical-align: top; font-size: 18px; color: #fff; text-align: center; border-radius: 5px;}
.player_xsoft_info .downbtn_b i{display:block;height: 16px;line-height: 16px;font-size:12px;text-align:center;font-style:normal;opacity:.8;}
.player_xsoft_info p{font-size:12px;margin:0 3%;color:#787878; padding:4px 8px;box-sizing:border-box;line-height:20px; margin-bottom:10px;border-radius:5px;}
.player_xsoft_info p em{ color:#f75934;} */

.player_right_soft_info{ overflow:hidden; padding: 0 0 10px;}
.player_right_soft_info .player_ginfoset{ font-size: 12px; color: #808080; overflow: hidden; zoom:1; padding: 0 10px; }
.player_right_soft_info .player_ginfoset li{width: 50%;float: left;line-height: 24px;color: #929292;height: 24px;overflow: hidden;}
.player_right_soft_info .player_ginfoset li a{color: #358FF0;}

.pd_wrap{ width: 100%; overflow: hidden;zoom:1; padding-top: 10px; }
.pd_in {position: relative;color: #AAAAAA;text-align: center; width: 33.3%; float: left;}
.pd_in>div {font-size: 21px;color: #5d5d5d;margin-bottom: 0px;text-align: center;}
.pd_in>div .icon1 { background-image: url(../images/icon-hot.png);}
.pd_in>div .icon2 { background-image: url(../images/icon-star.png);}
.pd_in>div .icon3 { background-image: url(../images/icon-score.png);}
.pd_in>div i {position: relative;top: 1px;width: 20px;height: 21px;margin-right: 5px;display: inline-block;background-size: contain;
background-position: center center;background-repeat: no-repeat;}
.pd_in:not(:last-child):after { content: ""; position: absolute; display: block; width: 1px; height: 30px;}

	.paihang_logo {
		position: absolute;
		top: -16px;
		right: 0px;
	}

	.viewer-next {
		width:60px !important;
		height:60px !important;
		position: fixed;
		top: 40%;
		right: 10px;
		font-size: 20px;
	}
	.viewer-prev {
		width:60px !important;
		height:60px !important;
		position: fixed;
		top: 40%;
		left: 10px;
		font-size: 20px;
	}
	.viewer-toolbar > ul > li::before {
		margin: 20px !important;
	}
.detail-tag {
	margin: 1px 0;
	width: 90vw;
	display: flex;
	flex-wrap: wrap;
}
.detail-tag li {
	margin: 5px;
	/* width: 20%; */
	height: 25px;
	line-height: 25px;
}
.more_btn_m {
	color: #999;
	background-color: #E8EAEA;
	width: 150px;
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
}
.topRankingUl-down-right .down {
	right: 13px;
}
.more_btn12 {
	margin-right: 3vw;
	width: 58px;
}
.more_btn13 {
	margin-right: 27px;
}

.detail-tag-width li {
	display: inline-block;
	min-width: 20%;
	max-width: 100%;
	/* width: auto !important; */
}


.detail-tag-width li span {  
    width: 100%;
    padding: 0 4px;
}

.qiyhi1 {
	text-align: center;
}


.fanli {
	width: 110px;
   height: 110px;
   position: absolute;
   bottom: 0px;
   right: 0px;
}

.fanli img {
   width: 100%;
}

.player_right_soft_info .player_ginfoset .detail-long-li {
    width: 100%;
}
.ranklist {
    position: relative;
    z-index: 3;
    /* background: #f2f2f2; */
}
/* .ranklist ul {

} */
.ranklist ul li {
    background: #f2f2f2;
    /* width: 345px; */
    height: 90px;
    margin: 10px 16px 10px 20px;
    border-radius: 7.5px;
    position: relative;
}
.ranklist ul li img {
    width: 60px;
    height: 60px;
    border-radius: 9px;
    float: left;
    margin: 15px 12px;
}
.ranklist ul li .info {
    float: left;
    /* width: 260px; */
}
.ranklist ul li .info .name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 19px;
    margin-top: 17px;
    max-width: 200px;

    max-width: 160px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ranklist ul li:nth-child(1) .info .name i {
    background-position: -262px -117.5px;
}
.ranklist ul li:nth-child(2) .info .name i {
    background-position: -282.5px -117.5px;
}
.ranklist ul li:nth-child(3) .info .name i {
    background-position: -303.5px -117.5px;
}
.ranklist ul li .info .name i {
    width: 17.5px;
    height: 21px;
    vertical-align: middle;
    margin-right: 5px;
}
.icon {
    background-image: url(../images/rank_icon.png);
    background-size: 375px 300px;
    display: inline-block;
}
.ranklist ul li .info .name em {
    color: #ccc;
    margin-right: 5px;
}
.ranklist ul li .info p:nth-child(2) {
    font-size: 11;
    line-height: 13px;
    color: #999;
    margin-top: 7px;
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
}
.ranklist ul li .info p:nth-last-child(1) {
    font-size: 11px;
    color: #999;
    line-height: 13px;
    margin-top: 5px;
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranklist ul li a>span {
    display: block;
    width: 66px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    background: #00b64f;
    position: absolute;
    right: 10px;
    top: 37%;
    border-radius: 2px;
}
.top_list {
    padding-bottom: 5px;
}

.top-fixed {
    height:auto;
}
.up-down {
    margin:0 15px;
    font-size:20px;
}


/* 广告位 */
.guanggao-container{
    position: relative;
}

.guanggao-container .guanggao-img {
    width: 100vw;
    
}

.guanggao-container .guanggao-img img {
    width: 100%;
}

.guanggao-container .guanggao-text{
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding: 1px 3px;
    background-color: #999;
    color: white;
    font-size: 11px;
}


/* 404页面 */
.error-header {
    text-align: center;
    width: 90%;
    margin: 20px auto;
}
.error-header-404 {
    width: 100%;
}
.error-header-404 img {
    width: 100%;
}
.error-header-text {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
}
.error-header-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.error-header-btn a {
    padding: 10px 20px;
    border: 1px solid #23A7F1;
    margin: 0 10px;
    color: #23A7F1;
}
.error-footer {
    width: 90%;
    margin: 20px auto;
}

.error-footer a {
    display: block;
    width: 90%;
    margin: 20px auto;
    text-align: center;
    background-color: #23A7F1;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    color: white;
}
.error-footer-text {
    text-align: center;
}

/* 新闻列表容器 */
.news-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

/* 列表项样式 */
.news-list li {
    display: flex;
    justify-content: space-between; /* 两端对齐：标题在左，日期在右 */
    align-items: center; /* 垂直居中 */
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0; /* 中间虚线分隔 */
    font-size: 14px;
}

/* 移除最后一项的底边框 */
.news-list li:last-child {
    border-bottom: none;
}

/* 标题链接样式 */
.news-list li a {
    flex: 1; /* 占据剩余空间 */
    text-decoration: none;
    color: #333;
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 超出隐藏 */
    text-overflow: ellipsis; /* 显示省略号 */
    margin-right: 10px; /* 与日期保持间距 */
    position: relative;
    padding-left: 10px; /* 为灰色点留出空间 */
}
.pd-10{padding:10px;}
/* 标题前面的灰色点 (使用伪元素实现) */
.news-list li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #999; /* 灰色点 */
    border-radius: 50%; /* 圆形 */
}

/* 鼠标悬停效果 */
.news-list li a:hover {
    color: #00b64f; /* 主题绿色，可根据需要修改 */
}

/* 日期样式 */
.news-list li .news-date {
    font-size: 12px; /* 字体小一些 */
    color: #999; /* 浅灰色 */
    flex-shrink: 0; /* 防止日期被压缩 */
}
/* 新闻头部容器 */
.news-header {
    padding: 20px 15px;
    background-color: #fff;
}

/* 主标题样式 */
.news-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-align: left; /* 或者 center，根据设计风格调整 */
}

/* 元数据容器（时间、来源等） */
.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

/* 单个元数据项 */
.news-meta .meta-item {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

/* 图标占位符 (如果没有真实图标，可以用伪元素或文字代替) */
.news-meta .meta-item i {
    margin-right: 4px;
    font-style: normal;
    /* 如果引入字体图标库如 FontAwesome，这里可以设置具体的 icon 类 */
}

/* 底部分隔线 */
.news-divider {
    height: 1px;
    background-color: #f0f0f0;
    width: 100%;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .news-title {
        font-size: 18px;
    }
    
    .news-meta .meta-item {
        margin-right: 10px;
        margin-bottom: 5px; /* 小屏幕下允许换行 */
    }
}

/* 新闻正文基础样式 */
.news-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* 首段引导文字 */
.news-content .lead {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-bottom: 20px;
}

/* 标题样式 */
.news-content h2 {
    font-size: 18px;
    color: #00b64f; /* 主题色 */
    margin-top: 25px;
    margin-bottom: 15px;
    border-left: 4px solid #00b64f;
    padding-left: 10px;
}

.news-content h3 {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 引用块样式 */
.news-content blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    margin: 20px 0;
    padding: 15px;
    font-style: italic;
    color: #666;
    font-size: 14px;
}

/* 列表样式 */
.news-content ul.feature-list,
.news-content ol.feature-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.news-content li {
    margin-bottom: 8px;
}

/* 图片样式 */
.news-content figure.news-image {
    margin: 20px 0;
    text-align: center;
}

.news-content figure.news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-content figure.news-image figcaption {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* 分隔线 */
.news-content .divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

/* 上一篇/下一篇 导航 */
.post-navigation {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.post-navigation div {
    font-size: 14px;
    color: #666;
}

.post-navigation span {
    color: #999;
    margin-right: 5px;
}

.post-navigation a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.post-navigation a:hover {
    color: #00b64f;
    text-decoration: underline;
}

/* 移动端适配 */
@media (min-width: 768px) {
    .post-navigation {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* 分页容器 */
.pagination-section {
    padding: 20px 0;
    text-align: center;
}

.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* 分页项基础样式 */
.pagination .page-item {
    margin: 0 4px;
}

.pagination .page-item a,
.pagination .page-item span {
    display: block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

/* 鼠标悬停效果 */
.pagination .page-item a:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
    color: #00b64f; /* 主题色 */
}

/* 当前激活页 */
.pagination .page-item.active a {
    background-color: #00b64f; /* 主题绿色 */
    color: #fff;
    border-color: #00b64f;
}

/* 禁用状态（如第一页时的上一页） */
.pagination .page-item.disabled a {
    color: #ccc;
    background-color: #f9f9f9;
    cursor: not-allowed;
    border-color: #eee;
}

.pagination .page-item.disabled a:hover {
    background-color: #f9f9f9;
    color: #ccc;
}

/* 省略号样式 */
.pagination .page-item.ellipsis span {
    border: none;
    background: transparent;
    color: #999;
    cursor: default;
}

/* 移动端适配：减小间距和尺寸 */
@media (max-width: 480px) {
    .pagination .page-item {
        margin: 0 2px;
    }
    
    .pagination .page-item a,
    .pagination .page-item span {
        min-width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
    }
}
.mod-hd {
    width: 80vw;
    padding: 5px 10px;
    margin-top: 20px;
}
.header-container {
    position:relative;
}
.swiper-container {
  width: 100%;
  height: 188px !important;
}

.swiper-container img {
  width: 100%;
  height: 188px !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-button-next,.swiper-button-prev  {
    color: white !important;
    background-color:rgba(0,0,0,0.5);
    padding:15px;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    font-size:16px;
}
.swiper-button-prev  {
    /* left: -20px; */
}
.swiper-button-next  {
    /* right: -20px; */
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size:16px;
}
.ppt-content {
    width: 100%;
    height:40px;
    line-height: 40px;
    font-size:13px;
    color:white;
    background-color:rgba(0,0,0,0.5);
    position:absolute;
    bottom:0px;
    z-index:999;
    
    text-align:left;
}

.ppt-content span {
    padding:0 10px;
}

@charset "utf-8";
	body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td {
	margin:0;
	padding:0
}
body,button,input,select,textarea {
	font:14px/1.5 Arial,"Microsoft YaHei","SimSun";
	color:#323232
}
button,input,select,textarea,img {
	vertical-align:middle;
	outline:none;
	border:0
}
body {
	width:100%;
	background:#fff;
	overflow-x:hidden
}




.header11 {
	PADDING-BOTTOM: 0px; LINE-HEIGHT: 50px; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BACKGROUND: #00b64f; HEIGHT: 50px; PADDING-TOP: 0px
}
.header11 .logo {
	FLOAT: left
}
.header11 .logo IMG {
	DISPLAY: inline-block;
	MARGIN-BOTTOM: 3px;
	HEIGHT: 18px;
	VERTICAL-ALIGN: middle;
}
.header11 .searchBox {
	MARGIN-TOP: 10px; FLOAT: right
}
.searchBox {
	PADDING-BOTTOM: 0px; PADDING-LEFT: 10px; WIDTH: 60%; PADDING-RIGHT: 10px; DISPLAY: inline-block; BACKGROUND: #fff; HEIGHT: 30px; VERTICAL-ALIGN: middle; PADDING-TOP: 0px; border-radius: 8px
}
.searchBox INPUT {
	LINE-HEIGHT: 30px; FLOAT: left; HEIGHT: 30px
}
.searchBox .so-inp {
	WIDTH: 50%; BACKGROUND: none transparent scroll repeat 0% 0%; FONT-SIZE: 12px
}
.searchBox .so-sub {
	WIDTH: 20px; BACKGROUND: #fff; FLOAT: right; CURSOR: pointer; background-size: 18px auto
}






em,i {
	font-style:normal;
	font-weight:normal
}
ul,ol,li {
	list-style:none
}
img {
	font-size:0;
	line-height:0;
	border:0;
	vertical-align:middle
}
h1,h2,h3 {
	font-size:14px
}
.text-indent {
	text-indent:-999999px;
	display:block
}
.clear {
	zoom:1
}
.clear:after {
	font-size:0;
	height:0;
	content:"";
	clear:both;
	display:block;
	visibility:hidden
}
.zm {
	overflow:hidden;
	zoom:1
}
.ds-n {
	display:none
}
.ds-b {
	display:block
}
.ds-ib {
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle
}
.pos-r {
	position:relative
}
.pos-a {
	position:absolute
}
.pos-f {
	position:fixed;
	z-index:99999
}
.textct {
	text-align:center
}
.fl-lf {
	float:left
}
.fl-rt {
	float:right
}
.mg-lr {
	margin-left:auto;
	margin-right:auto
}
.box .mg-t0 {
	margin-top:0
}
.mg-t10 {
	margin-top:15px
}
.pd-t10 {
	padding-top:10px
}
.box-sz {
	box-sizing:border-box
}
::-webkit-input-placeholder {
	color:#888
}
::-moz-placeholder {
	color:#888
}
.flex {
	display:-moz-box;
	display:-webkit-box;
	display:box
}
.box-flex {
	box-flex:1;
	-webkit-box-flex:1;
	-moz-box-flex:1;
	display:block
}
.box-center {
	box-pack:center;
	-webkit-box-pack:center;
	-moz-box-pack:center;
	box-align:center;
	-webkit-box-align:center;
	-moz-box-align:center
}
.flex-alignment {
	box-pack:justify;
	-webkit-box-pack:justify;
	-moz-box-pack:justify
}
a {
	color:#323232;
	text-decoration:none
}
a:focus {
	outline:0
}
.top-fixed {
	width:100%;
	height:80px
}
.box-fixed {
	margin-top:10px
}
.header {
	line-height:40px;
	padding:0 10px;
	background:#00b64f;
	overflow:hidden;
	zoom:1;
	background-size:auto 23px
}






/*分页*/
.mpage{padding:8px;text-align:center;clear:both;font-size:14px}
.mpage span{padding:5px 8px;color:#FFF;background-color:#00b64f;border:1px solid #64BBE6}
.mpage a,.mpage a:link,.mpage a:visited{color:#666;background-color:#FFF;border:1px solid #DDD;padding:5px 8px;text-decoration:none;margin:0 2px}
.mpage a:active,.mpage a:hover{color:#115F85;background-color:#FFF;border:1px solid #00b64f}




/*首页专题*/
.hot_zone{overflow:hidden}
.hot_zone li{border-bottom:1px solid #ccc}
.hot_zone .rezq{position:relative;padding:0 3%}
.hot_zone .rezq .img{display:block;overflow:hidden;position:relative}
.hot_zone .rezq .img img{width:100%}
.hot_zone .rezq .img em{float:right;height:32px;line-height:32px;color:#666}
.hot_zone .rezq .img .re_hd{width:47px;height:47px;position:absolute;left:6px;top:7px}
.hot_zone .rezq .img .re_hd img{max-height:100%;max-width:100%}
.hot_zone .rezq p{height:32px;line-height:32px}











.header .icon1,.header .icon3 {
	font-size:24px
}
.header .icon2 {
	font-size:26px
}
.header .icon1 {
	margin-right:5px
}
.header .icon3 {
	font-weight:bold;
	margin-right:5px
}
.header .icon4 {
	font-size:28px
}
.nav {
	font-size:15px;
	width:100%;
	height:40px;
	line-height:40px;
	/* display:-moz-box; */
	/* display:-webkit-box; */
	/* display:box; */
	display: flex;
	background:#f0f0f0;
	overflow:hidden;
	zoom:1
}
.nav a {
	text-align:center;
	box-flex:1;
	-webkit-box-flex:1;
	-moz-box-flex:1;
	display:block
}
.nav a span {
	padding:0 5px;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle
}
.nav .current span {
	color:#00b64f;
	height:36px;
	line-height:37px;
	border-bottom:2px solid #00b64f
}
.nav .current-menu-parent a,.nav .current-menu-item a{
	color:#00b64f;
	height:36px;
	line-height:37px;
	border-bottom:2px solid #00b64f
}

.top-nav .bg {
	width:100%;
	height:100%;
	position:fixed;
	z-index:99999;
	z-index:999999;
	background:rgba(0,0,0,0.3);
	left:0;
	top:0
}
.top-nav .classify {
	width:170px;
	background:#fff;
	position:absolute;
	top:40px;
	right:-170px;
	z-index:999999;
	overflow:hidden;
	zoom:1
}
@keyframes fadeIn {
	0% {
	transform:translate3d(100%, 0, 0)
}
100% {
	transform:none
}
}@keyframes fadeOut {
	0% {
	transform:translate3d(-100%, 0, 0)
}
100% {
	transform:none
}
}.top-nav .fadeIn {
	animation:fadeIn 1s both;
	right:0
}
.top-nav .fadeOut {
	animation:fadeOut 1s both;
	right:-170px
}
.top-nav h2 {
	font-size:15px;
	line-height:39px;
	padding-left:18px;
	border-bottom:1px solid #e5e5e5
}
.top-nav h2:before {
	content:'S';
	color:#fff;
	font-family:'IcoMoon';
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	color:#00b64f;
	font-size:20px;
	font-weight:normal;
	margin:0 12px 0 0
}
.top-nav li {
	line-height:29px;
	border-bottom:1px solid #e5e5e5
}
.top-nav a {
	padding-left:20px;
	display:block
}
.top-nav a:before {
	color:#fff;
	font-family:'IcoMoon';
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	color:#00b64f;
	font-size:20px;
	margin:0 10px 0 0
}
.top-nav .icon1:before {
	content:'F'
}
.top-nav .icon2:before {
	content:'G'
}
.top-nav .icon3:before {
	content:'H'
}
.top-nav .icon4:before {
	content:'I'
}
.top-nav .icon5:before {
	content:'J'
}
.top-nav .icon6:before {
	content:'K'
}
.top-nav .icon7:before {
	content:'L'
}
.top-nav .icon8:before {
	content:'M'
}
.top-nav .icon9:before {
	content:'N'
}
.top-nav .icon10:before {
	content:'O'
}
.top-nav .icon11:before {
	content:'V'
}
.top-nav .icon12:before {
	content:'W'
}
.top-nav .icon13:before {
	content:'X'
}
.top-nav .icon14:before {
	content:'Y'
}
.top-nav .icon15:before {
	content:'P'
}
.top-nav .icon16:before {
	content:'Q'
}
.top-nav .icon17:before {
	content:'R'
}
.top-nav .icon18:before {
	content:'Z'
}
.top-nav .icon19:before {
	content:'['
}
.top-nav .icon20:before {
	content:'\\'
}
.top-nav .icon21:before {
	content:']'
}
.top-nav .icon22:before {
	content:'^'
}
.top-nav .icon23:before {
	content:'_'
}
.top-nav .icon24:before {
	content:'`'
}
.top-nav .icon25:before {
	content:'a'
}
.top-nav .icon26:before {
	content:'b'
}
.top-nav .icon27:before {
	content:'c'
}
.top-nav .icon28:before {
	content:'d'
}
.search {
	padding:5px 10px 15px;
	border-bottom:1px solid #e5e5e5
}
.search .flex {
	width:100%
}
.search-input {
	font-size:12px;
	padding:8px 0 8px 15px;
	border:1px solid #e5e5e5;
	border-right:0;
	border-radius:4px 0 0 4px;
	box-flex:1;
	-webkit-box-flex:1;
	-moz-box-flex:1;
	display:block
}
.search-btn {
	width:60px;
	border-radius:0 4px 4px 0;
	text-indent:-999999px;
	display:block
}
.search-list .mod-hd h2 {
	color:#666;
	font-size:12px;
	font-weight:normal;
	border:0;
	padding:0
}
.slideBox {
	height:82px;
	overflow:hidden;
	zoom:1;
	position:relative
}
.slideBox .hd {
	width:100%
}
.slideBox .hd a {
	color:#b3b3b3;
	font-size:40px;
	height:100%;
	display:block;
	position:absolute;
	top:5px
}
.slideBox .hd .prev {
	left:0
}
.slideBox .hd .next {
	right:0
}
.slideBox .bd {
	margin:0 20px
}
.slideBox .bd li {
	text-align:center
}
.slideBox .bd li a {
	width:25%;
	float:left
}
.slideBox .bd li img {
	width:60px;
	margin:0 auto
}
.details-pic {
	height:auto;
	position:relative;
	text-align:center;
	padding-bottom:10px
}
.details-pic .hd {
	margin-top:0
}
.details-pic .hd .lf,.details-pic .hd .rt {
	height:100%;
	position:absolute;
	top:0
}
.details-pic .hd .lf {
	left:5px
}
.details-pic .hd .rt {
	right:5px
}
.details-pic .hd a {
	display:-moz-box;
	display:-webkit-box;
	display:box;
	box-pack:center;
	-webkit-box-pack:center;
	-moz-box-pack:center;
	box-align:center;
	-webkit-box-align:center;
	-moz-box-align:center;
	position:static
}
.details-pic .bd {
	margin:0;
	position:relative;
	z-index:0
}
.details-pic .bd ul {
	display:-moz-box;
	display:-webkit-box;
	display:box
}
.details-pic .bd li {
	position:relative
}
.details-pic .bd li span {
	width:100%;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	position:relative;
	box-sizing:border-box;
	padding:0 5px
}
.details-pic .bd li img {
	width:100%;
	max-width:160px;
	display:block;
	margin:0 auto
}
.cross-img .bd li span {
	width:100%
}
.cross-img .bd li span img {
	width:100%;
	max-width:500px
}
.box-pd {
	padding:0 10px
}
.mod-one {
	text-align:center
}
.mod-one li a {
	width:60px;
	display:block
}
.mod-one li img {
	width:60px;
	height:60px;
	display:block;
	border-radius:6px
}
.mod-one li span {
	height:22px;
	line-height:22px;
	overflow:hidden;
	zoom:1;
	display:block
}
.mod-two {
	width:100%;
	overflow:hidden;
	zoom:1
}
.mod-two li {
	position:relative
}
.mod-two li span {
	position:absolute;
	text-align:center;
	color:#fff;
	font-size:12px;
	width:100%;
	height:20px;
	line-height:20px;
	background:rgba(0,0,0,0.7);
	left:0;
	bottom:0;
	word-break:break-all;
	overflow:hidden
}
.mod-two img {
	width:240px;
	height:120px
}
.mod-list {
	line-height:34px
}
.mod-list li {
	height:34px;
	padding-left:9px;
	border-bottom:1px solid #e5e5e5;
	overflow:hidden;
	zoom:1
}
.mod-list span {
	color:#999;
	font-size:12px;
	margin-left:5px;
	float:right
}
.down {
	color:#fff;
	text-align:center;
	min-width:40px;
	height:30px;
	line-height:30px;
	background:#00b64f;
	border-radius:4px;
	padding:0 10px;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	overflow:hidden;
	zoom:1
}
.down a {
	color:#fff
}
.more {
	line-height:26px;
	padding:0 10px;
	border:1px solid #00b64f;
	border-radius:4px
}
.mod-img-list {
	overflow:hidden;
	zoom:1;
}
.mod-img-list-250 {
	height: 250px;
}
.mod-img-list li {
	width:25%;
	margin-top:10px;
	float:left
}
.mod-img-list a {
	margin:0 auto
}
.mod-img-list2 li {
	width:25%;
	margin-top:10px;
	float:left
}
.mod-img-list2 a {
	margin:0 auto
}
.mod-five li {
	width:20%;
	margin-top:0
}
.mod-six {
	font-size:0;
	margin:0;
	text-align:justify
}
.mod-six:after {
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	width:100%;
	height:0;
	content:'';
	vertical-align:top;
	overflow:hidden;
	zoom:1
}
.mod-six li {
	font-size:14px;
	width:60px;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	float:inherit;
	overflow:hidden;
	zoom:1;
	margin-top:10px
}
.mod-six a {
	margin:0 auto
}
.mod-six img {
	width:60px;
	height:60px;
	display:block;
	border-radius:6px
}
.mod-six span {
	text-align:center;
	height:22px;
	line-height:22px;
	overflow:hidden;
	zoom:1;
	display:block
}
.mod-hd {
	height:30px;
	position:relative
}
.mod-hd h2 {
	font-size: 16px;
	height:16px;
	line-height:16px;
	border-left:3px solid #00b64f;
	padding-left:10px;
	position:absolute;
	top:11px
}
.mod-hd ul {
	float:right
}
.tab-list .mod-hd ul {
	width:auto;
	float:none;
	position:absolute;
	right:10px;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle
}
.tab-list .mod-hd ul li {
	float:left
}
.tab-hd ul {
	/* text-align:center; */
	/* width:100%; */
	/* line-height:28px; */
	/* display:-moz-box; */
	/* display:-webkit-box; */
	/* display:box; */
	/* justify-content:space-between; */
}

.hj-tab-hd,.rank-tab-hd{
	text-align:center;
	width:100%;
	line-height:28px;
	display:-moz-box;
	display:-webkit-box;
	display:box;
	justify-content:space-between;
	width:94%;padding-left:12px
}


.tab-hd li {
	width: 42vw;
	height:28px;
	line-height:28px;
	/* padding:0 10px; */
	box-flex:1;
	-webkit-box-flex:1;
	-moz-box-flex:1;
	display:block;
	border:1px solid #00b64f;
	border-left:0;
	overflow:hidden;
	zoom:1
}
.tab-hd li:first-child {
	border-radius:4px 0 0 4px;
	border-left:1px solid #00b64f
}
.tab-hd li:last-child {
	border-radius:0 4px 4px 0
}
.tab-hd .on {
	color:#fff;
	background:#00b64f;
	border:1px solid #00b64f;
}
.page {
	text-align:center;
	padding:10px;
	overflow:hidden;
	zoom:1
}
.page-bd {
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle
}
.page-bd a {
	margin-left:10px;
	padding:5px 8px;
	background:#f2f2f2;
	border:1px solid #ddd;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle
}
.mod-title {
	line-height:30px;
	margin-top:5px
}
.mod-title h2:before {
	color:#fff;
	font-family:'IcoMoon';
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	color:#00b64f;
	font-size:18px;
	margin:0 15px;
	font-weight:normal
}
.classify-title h2:before {
	content:'〓';
	margin-top:-2px
}
.classify-bd {
	border-bottom:1px solid #e5e5e5;
	overflow:hidden;
	zoom:1
}
.classify-bd li {
	width:50%;
	padding:10px;
	border:1px solid #e5e5e5;
	border-left:0;
	box-sizing:border-box;
	margin-bottom:-1px;
	float:left
}
.classify-bd li i {
	color:#fff;
	font-family:'IcoMoon';
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	font-size:30px;
	width:60px;
	height:60px;
	border-radius:8px;
	display:-moz-box;
	display:-webkit-box;
	display:box;
	box-pack:center;
	-webkit-box-pack:center;
	-moz-box-pack:center;
	box-align:center;
	-webkit-box-align:center;
	-moz-box-align:center
}
.classify-bd li h3,.classify-bd li span {
	height:30px;
	line-height:30px;
	overflow:hidden;
	zoom:1;
	display:block;
	margin-left:70px
}
.classify-bd li h3 {
	font-weight:normal;
	margin-top:-60px
}
.classify-bd li span {
	font-size:12px
}
.classify-bd li a {
	display:block
}
.classify-bd li .bg1 {
	background:#71b5f7
}
.classify-bd li .bg2 {
	background:#5ca3e7
}
.classify-bd li .bg3 {
	background:#aeadee
}
.classify-bd li .bg4 {
	background:#f9b87b
}
.classify-bd li .bg5 {
	background:#5ca3e7
}
.classify-bd li .bg6 {
	background:#ffa6a5
}
.classify-bd li .bg7 {
	background:#f9b87b
}
.classify-bd li .bg8 {
	background:#aeadee
}
.mod-icon1 h2:before {
	content:'〓';
	margin-top:-5px
}
.mod-icon2 h2:before {
	content:'〓';
	margin-top:-3px
}
.mod-icon3 h2:before {
	content:'〓';
	margin-top:-5px
}
.mod-icon4 h2:before {
	content:'〓';
	margin:-3px 10px 0 0
}
.mod-icon5 h3:before {
	content:'〓';
	width:8px;
	height:8px;
	background:#00b64f;
	border-radius:50%;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	margin:-3px 13px 0 -5px
}
.mod-icon6 h2:before,.mod-icon7 h2:before,.mod-icon8 h2:before,.mod-icon9 h2:before {
	font-size:20px;
	margin:-5px 10px 0 8px
}
.mod-icon6 h2:before {
	content:'〓'
}
.mod-icon7 h2:before {
	content:'〓'
}
.mod-icon8 h2:before {
	content:'〓';
	font-size:18px
}
.mod-icon9 h2:before {
	content:'〓'
}
.category h2:before {
	margin-left:0
}
.mod-three .item,.mod-three li>a {
	/* padding-top:10px; */
	/* border-top:1px dotted #e5e5e5; */
	margin: 0px 0px 8px 0px;
	display:block;
	overflow:hidden;
	zoom:1;
	position:relative
}
.mod-three img {
	width:60px;
	height:60px;
	margin-right:10px;
	border-radius:6px;
	float:left;
	/* margin-left: 5px; */
}
.mod-three .title,.mod-three p {
	height:20px;
	line-height:20px;
	word-break:break-all;
	overflow:hidden;
	zoom:1
}
.mod-three p {
	font-size:12px
}
.mod-three .title,.mod-three p {
	margin-right:120px
}
.mod-three .ft1 {
	color:#00b64f;
	margin-right:0
}
.mod-three .score {
	color:#ff9727
}
.mod-three .down {
	position:absolute;
	top:32%;
	right:42px;
}
.mod-three .text {
	color:#888
}

.text a {
	color:#888
}

.star-icon {
	height:12px;
	display:block
		color:#ff9727
}
.starbg {
	width:75px;
	background-position:0 0;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	margin-right:5px;
	vertical-align:text-top
}
.star1 {
	width:14px
}
.star2 {
	width:28px
}
.star3 {
	width:43px
}
.star4 {
	width:57px
}
.star5 {
	width:75px
}
.img-one img {
	width:70px;
	height:100px;
	border-radius:0
}
.img-one .title {
	height:40px;
	margin:8px 80px 5px 0;
	overflow:hidden;
	zoom:1
}
.img-two img {
	width:100px;
	height:60px;
	border-radius:0
}
.img-two .title {
	font-weight:normal;
	height:40px;
	margin:0;
	overflow:hidden;
	zoom:1
}
.img-two .ft1 i {
	color:#888
}
.mod-four {
	margin-left:6px;
	padding-bottom:5px;
	border-left:2px solid #e5e5e5;
	zoom:1
}
.mod-four:after {
	font-size:0;
	height:0;
	content:"";
	clear:both;
	display:block;
	visibility:hidden
}
.mod-four ul {
	padding-left:17px
}
.mod-four h3 {
	font-weight:normal
}
.category li {
	width:33.33%;
	float:left;
	margin-top:10px
}
.category a {
	color:#fff;
	text-align:center;
	min-width:40px;
	height:30px;
	line-height:30px;
	background:#00b64f;
	border-radius:4px;
	padding:0 10px;
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	overflow:hidden;
	zoom:1;
	width:66px
}
.category a a {
	color:#fff
}
.info .ft1 {
	font-size:14px
}
.info .title,.info p {
	margin:0
}
.info .mod-three {
	padding-bottom:10px;
	overflow:hidden;
	zoom:1
}
.info .info-btn .down {
	font-size:15px;
	text-align:center;
	width:96%;
	height:40px;
	line-height:40px;
	box-sizing:border-box;
	margin-left: 10px;
}
.info .info-btn .down:before {

	color:#fff;
	font-family:'IcoMoon';
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	font-size:30px;
	margin-right:5px
}
.android:before,.iphone:before {
	color:#fff;
	font-family:'IcoMoon';
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle;
	font-size:20px;
	margin:-2px 5px 0 0
}
.android:before {
	color:#97c024;
	content:"m"
}
.iphone:before {
	color:#333;
	content:"n"
}
.ad {
	margin-top:10px
}
.ad img {
	max-width:100%
}
.adleft {
	margin:10px 0 0 -10px
}
.details-title {
	font-size:18px;
	font-weight:normal;
	line-height:25px;
	padding:10px 0 0
}
.details-titbar {
	color:#999
}
.details-titbar span {
	margin-left:10px
}
.details-titbar i,.details-titbar span:before {
	color:#00b64f;
	font-size:18px;
	margin-right:5px
}
.details-bd {
	line-height:25px;
	word-break:break-all;
	overflow:hidden;
	zoom:1
}
.details-bd p {
	margin-top:5px
}
.details-bd p img {
	max-width:90%;
	display:block;
	margin:5px auto 0
}
.details-bd p a {
	color:#00b64f
}
.details-bd .title {
	font-weight:bold;
	color:#00b64f;
	line-height:25px;
	text-indent:0;
	padding:0 0 0 10px;
	background:#fafafa;
	border:1px solid #efefef
}
.details-one {
	margin-top:10px;
	padding-top:10px;
	border-top:1px dashed #dedede
}
.details-one p {
	margin:0
}
.details-one a {
	background:#f0f0f0;
	border:0;
	border-radius:6px
}
.details-one .title {
	color:#323232
}
.details-one .down {
	position:absolute;
	top:32%;
	right:10px
}
.tips1 {
	color:#666;
	background:#ececec;
	padding:10px
}
.tips1 span {
	color:#323232;
	font-weight:bold;
	display:block
}

.more-btn .down {
	width:80px;
	height:28px;
	line-height:28px;
	border-radius:0;
	margin-bottom:10px
}
.details-item {
	max-height:none
}
.more-btn .details-more {
	color:#00b64f;
	width:40px;
	height:50px;
	line-height:20px;
	padding-top:10px;
	border-radius:50%;
	background:#fff;
	box-shadow:1px 1px 10px #e5e5e5
}
.tab-w1 {
	width:90%;
	margin:0 auto
}
.tab-w2 {
	width:60%;
	margin:0 auto
}
.topic-img {
	padding-bottom:10px
}
.topic-img li {
	width:33.33%;
	padding:0 5px;
	box-sizing:border-box
}
.topic-img li a {
	width:120px
}
.topic-img li img {
	width:120px;
	height:61px;
	border-radius:0
}
.topics-details {
	margin:0 10px;
	padding-bottom:5px;
	background:#e5e5e5
}
.topics-details .more-con {
	/* max-height:90px;
	padding:5px 10px 0;
	overflow:hidden;
	zoom:1 */
}
.content800 {
	/*max-height: 500px;*/
    -webkit-mask-box-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #ffffff 0.6rem);
}
.topics-details .more-btn {
	text-align:right;
	margin-right:10px
}
.topics-details .more-btn .down {
	width:auto;
	margin:5px 0
}
.topics-details-hd {
	position:relative
}
.topics-details-hd img {
	width:100%;
	height:200px
}
.topics-details-hd span {
	position:absolute;
	text-align:center;
	color:#fff;
	width:100%;
	height:30px;
	line-height:30px;
	background:rgba(0,0,0,0.5);
	left:0;
	bottom:0;
	word-break:break-all;
	overflow:hidden
}
.topics-tab {
	margin-top:5px
}
.topics-tab .mod-three .item,.topics-tab .mod-three li>a {
	padding:10px 0
}
.topics-tab .mod-three .down {
	right:0
}
.topics-hd .topics-title span a {
	color:#00b64f;
	font-weight:bold
}
.topics-hd .topics-title em {
	color:#888;
	margin-left:5px
}
.topics-hd a {
	color:#00b64f
}
.topics-hd p {
	max-height:66px;
	line-height:22px;
	overflow:hidden;
	zoom:1
}
#go-top a {
	width:40px;
	height:40px;
	position:fixed;
	z-index:99999;
	right:10px;
	bottom:100px
}
.crumb {
	color:#323232;
	height:30px;
	line-height:30px;
	background:#f9f9f9;
	padding:0 18px;
	overflow:hidden;
	zoom:1
}
.crumb i {
	font-family:"SimSun";
	padding:0 5px
}
.crumb a {
	color:#00b64f
}
@media screen and (max-width:540px) {
	.mod-two img {
	width:190px;
	height:95px
}
}@media screen and (max-width:400px) {
	.slideBox .hd {
	margin-top:-70px
}
.slideBox .hd a {
	font-size:30px
}
.details-pic .hd {
	margin-top:0
}
.last-update .tab-hd li {
	padding:0
}
.mod-two img {
	width:170px;
	height:85px
}
.topic-img li a {
	width:110px
}
.topic-img li img {
	width:110px;
	height:56px;
	border-radius:0
}
}@media screen and (max-width:360px) {
	.mod-two img {
	width:145px;
	height:73px
}
.topic-img li a {
	width:90px
}
.topic-img li img {
	width:90px;
	height:46px;
	border-radius:0
}
.mod-five li a {
	width:55px
}
.mod-five li img {
	width:55px;
	height:55px
}
.mod-five li span {
	font-size:13px
}
.mod-six li {
	width:55px;
	text-align:center
}
.mod-six li img {
	width:55px;
	height:55px
}
.mod-six li span {
	font-size:13px
}
.mod-six .down {
	min-width:35px
}
.topics-details-hd img {
	width:100%;
	height:170px
}
}@media screen and (max-width:320px) {
	.topics-details-hd img {
	width:100%;
	height:150px
}
}@media screen and (min-width:470px) {
	.classify-bd li {
	padding:20px 25px
}
.classify-bd li i {
	font-size:40px;
	width:100px
}
.classify-bd li h3,.classify-bd li span {
	margin-left:110px
}
.topic-img li a {
	width:150px
}
.topic-img li img {
	width:150px;
	height:76px;
	border-radius:0
}
}@font-face {
	font-family:'IcoMoon';
	src:url('')
}
.ft-icon {
	color:#fff;
	font-family:'IcoMoon';
	display:inline-block;
	*display:inline;
	*zoom:1;
	vertical-align:middle
}
.links {
	line-height:22px
}

.newBox {
	display:none;
	background-color:#fff;
	overflow:hidden;
	min-height:85px
}
.newBox .btn-checkbox {
	display:block;
	height:36px;
	line-height:36px;
	font-size:16px;
	margin-right:30px
}
.newBox .icon-check {
	display:inline-block;
	width:19px;
	height:20px;
	margin:7px 5px 0 0;
	float:left;

}
.newBox .icon-active {

}
.newBox .tipShow {
	background:#d1def9;
	padding:6px
}
.newBox .topBox {
	display:-moz-box;
	display:-webkit-box;
	display:box;
	padding-bottom:10px
}
.newBox .pptvHref {
	box-flex:1;
	-webkit-box-flex:1;
	-moz-box-flex:1;
	display:block;
	height:36px;
	color:#fff;
	font-size:18px;
	border-radius:3px;
	background:#00b64f;
	line-height:36px;
	text-align:center
}
.newBox .noBg {
	background:none;
	border:1px solid #00b64f;
	color:#00b64f
}
.newBox-on {
	background:#fff;
	left:0;
	z-index:99;
	padding:10px;
	box-shadow:0 1px 2px #ccc
}
#info .normal {
	clear:both
}
#info .normal span {
	font-size:13px;
	line-height:20px;
	min-height:40px;
	color:#999
}
#info .normal .icon {
	display:none;
	margin:2px 5px 0 0;
	float:left;
	width:20px;
	height:20px;

}
#info .tipShow span {
	color:#3266cc
}
#info .tipShow .icon {
	display:block
}
#topsug {
	position:fixed;
	top:0;
	z-index:9999;
	width:100%;
	height:46px;
	line-height:45px;
	background:#444;
	color:#fff;
	font-size:16px;
	font-family:'\5fae\8f6f\96c5\9ed1'
}
#topsug a {
	color:#fff;
	display:block
}
#topsug em {
	position:absolute;
	right:16px;
	top:8px;
	width:110px;
	height:30px;
	line-height:30px;
	background:#f90;
	text-align:center;
	color:#fff;
	font-size:16px;
	font-family:'\5fae\8f6f\96c5\9ed1'
}
#topsug i {
	position:absolute;
	display:inline-block;
	width:24px;
	height:24px;
	left:16px;
	top:10px;

}
#topsug p {
	padding-left:49px
}
#topsug .close {
	width:18px;
	height:18px;
	position:fixed;
	top:0;
	left:0;
	cursor:pointer;
	background-size:18px;
	z-index:99999
}



footer {
	font-size:12px;TEXT-ALIGN: center; PADDING-BOTTOM: 10px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 10px
}
.fnav {
	display: flex; BORDER-BOTTOM: #d3d3d3 1px solid; LINE-HEIGHT: 28px; MARGIN-BOTTOM: 10px; BACKGROUND: #f5f5f5; HEIGHT: 28px; OVERFLOW: hidden; BORDER-TOP: #d3d3d3 1px solid
}
.footer p {
	color:#666;
	padding-top:5px
}
.fnav LI {
	flex:1; BOX-SIZING: border-box; FLOAT: left; BORDER-RIGHT: #d3d3d3 1px solid; BORDER-LEFT: #d3d3d3 1px solid; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box
}
.fnav LI A {
}
	

.more-bd img {
	max-width:80%;
	clear: both; 
display: block; 
margin:auto; 
	}
.mod-tj1{
    border-bottom: 1px solid #dfdfdf;
    overflow: hidden;
    line-height: 30px;
	font-weight:bold;
    padding: 0px;
    position: relative;
}
.clea{ clear:both;}
.androids .mod-threee li{ float:left; width:50%;}
.mod-threee .item,.mod-threee li>a {
	padding:5px 0px 0px 5px;
	border-top:1px dotted #e5e5e5;
	display:block;
	overflow:hidden;
	zoom:1;
	position:relative
}
.mod-threee img {
	width:60px;
	height:60px;
	margin-right:10px;
	border-radius:6px;
	float:left
}
.mod-threee .title,.mod-threee p {
	line-height:20px;
	word-break:break-all;
	overflow:hidden;
	zoom:1
}
.mod-threee p {
	font-size:12px
}
.mod-threee .ft1 {
	color:#00b64f;
	margin-right:0
}
.mod-threee .score {
	color:#ff9727
}
.mod-threee .down1 {
	position:absolute;
	top:65%;
	right:20px
}
.mod-threee .text {
	color:#888
}
.down1 {
    color: #fff;
    text-align: center;
    min-width: 40px;
    height:22px;
    line-height:22px;
    background: #ff0000;
    border-radius: 4px;
    padding: 0 10px;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    zoom: 1;
}

.mod-list-anzhuo {
	width: 100%;
	overflow-x: auto;
	display: flex;
	flex-direction: row;
	text-align: center;
	margin-top: 5px;
}

.mod-list-anzhuo li {
	margin: 0 5px;
}

.mod-list-anzhuo li div {
	width: 160px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mod-list-anzhuo img {
	width: 160px;
	height: 80px;
}

.big-img-alert {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0,0,0,0.8);
	overflow-x: auto;
}

.heji_content_alert {
	display: flex;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}

.heji_content_alert li{
	margin: auto 10px;
}

.heji_content_alert li:first-child{
	margin-left: 20px;
}

.heji_content_alert li:last-child{
	margin-right: 20px;
}

.heji_content_alert li img {
	width: 80vw;
}
/*举报*/
input[type="button"],input[type="text"],input[type="submit"],input[type="reset"] {-webkit-appearance: none;}
textarea { -webkit-appearance: none;}
/* .report{display: block;width: 24px;height: 30px;line-height: 14px;padding: 8px 0;position: fixed;left: 0;font-size: 14px;text-align: center;top: 387px;color: #999;border: 1px solid #999;z-index: 999999;background: #fff;border-radius: 3px;}
 */
.report{display: block;width: 58px;height: 24px;background: url(../images/report.png); float: right;text-indent: -999em;}

#overbg {z-index: 9999;border: none;margin: 0px;padding: 0px;width: 100%;height: 100%;top: 0px;left: 0px;opacity: 0.8;position: fixed;background-color:#000;}
#popreport {z-index: 99999;position: fixed;padding: 8% 5%;color: #666;font-size: 14px;font-family:arial,"Microsoft Yahei";top: 5%;width: 75%;left: 7.5%;background: #fff;border-radius: 5px;}
#popreport p {line-height: 24px}
#popreport li {clear: both;margin: 5px 0;}
#popreport li label { display: inline-block; line-height: 24px; margin-right: 12px; font-size: 16px;}
#popreport li .othersp { margin-right: 0; }
#popreport li label input.radios { margin-right:7px; width:16px; height:16px; float: left;outline:none}
#popreport li span { display: block; font-size: 16px; color: #444; line-height: 36px; }
#popreport li input.other {width: 167px;float: right;height: 20px;margin-left:10px;margin-top: -1px;margin-right: 0;}
#popreport li textarea.spec {border:1px solid #cdcdcd;width: 95%;min-height: 40px;font-size: 14px;color: #666;resize: none;padding:6px;font-family:arial,"Microsoft Yahei";}
#popreport li input.textcode {width: 141px;border:1px solid #cdcdcd;line-height: 26px;padding: 3px;font-size: 14px;color: #666;font-family:arial,"Microsoft Yahei";}
#popreport li input.code {width: 141px;margin-right:10px;float: left;}
#popreport li #canvas {width: 100px;height: 34px;float: right;background: #ccc;border: 1px solid #ccc;
	border-radius: 5px;}
#popreport li.submitw {text-align: center;padding: 20px 0 0 0;margin:0;}
#popreport li.submitw input{border: none;width: 120px;background: #69a921;color: #fff; height:30px;}
#popreport .pop_close{width: 30px;height: 30px;position:absolute;z-index:10;top:5px;right:5px;color: #999;font-size: 30px;text-align: center;line-height: 30px;transform: rotate(45deg);}
.hide{display:none;}
.block{display:block}


.clearFix::after {
	content: '';
	clear: both;
	display: block;
}
.down-top-new {
	padding: 0 4%;
	margin: 10px 0 15px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: relative;
}

.down-top-new .game-info .dimg {
	display: block;
	width: 51px;
	height: 51px;
	margin-top: 3px;
	float: left;
}

.down-top-new .game-info .dmess {
	color: #909090;
	font-size: 12px;
	line-height: 21px;
	margin-left: 60px;
}

.down-top-new .game-info .dname {
	color: #010101;
	font-size: 17px;
	margin-right: 10px;
}

.down-top-new .game-info .dmess h1 {
	display: inline-block;
}

.down-top-new .down-btns {
	width: 92%;
	margin: 10px auto;
}

.down-top-new .ddown-btn {
	width: 46%;
	height: 40px;
	/* height: 28px; */
	text-align: center;
	font-size: 16px;
	background: #3c82e1;
	border-radius: 5px;
	color: #fff;
	float: left;
	margin: 0 2%;
}

.down-top-new .ddown-btn:last-child {
	float: right;
}

.down-top-new .down-btns .down-now {
	display: block;
	line-height: 40px;
	color: #3c82e1;
	background: #fff;
	border: 1px solid #3c82e1;
	box-sizing: border-box;
}

.ddown-btn .down-aq {
}
.box-downp {
	font-size: 12px;
	margin: 0 3%;
	background: #fff3e2;
	color: #787878;
	padding: 4px 8px;
	box-sizing: border-box;
	border: 1px solid #ffe0b5;
	line-height: 20px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.player_ginfoset{ font-size: 13px; color: #808080; overflow: hidden; zoom:1; padding: 0 10px; }
.player_ginfoset li{width: 50%;float: left;line-height: 24px;color: #929292;height: 24px;overflow: hidden;margin:2px 0;}
.player_ginfoset li a{color: #358FF0;}
.player_ginfoset li span {color:#333333;}

.detail-tuijian-section {
	width: 100%;
	overflow-x: auto;
}
.detail-tuijian-ul {
	display: flex;
	flex-wrap: nowrap;
}
.detail-tuijian-ul li {
	margin: 5px 8px;
}
.detail-tuijian-ul li img {
	width: 56px;
	height: 56px;
	border-radius: 15px;
}

.detail-tuijian-ul li h3 {
	font-size: 11px;
	width: 56px;
	overflow : hidden;
	display: inline-block;
	font-weight: normal;
	-webkit-line-clamp: 2;    /*用来限制在一个块元素显示的文本的行数*/
	display: -webkit-box;    /*必须结合的属性，将对象作为弹性伸缩盒子模型显示*/
	-webkit-box-orient: vertical;    /*必须结合的属性 ，设置或检索伸缩盒对象的子元素的排列方式*/
}
.tags_box {
	display: flex;
	flex-wrap: wrap;
	width: 95vw;
	
}
.tags_box a {
	width: 40vw;
	margin: 8px 5px;
	overflow : hidden;
	display: inline-block;
	white-space :nowrap;
	text-overflow :ellipsis;
	padding: 0 3px;
	border-radius: 17px;
	height: 33px;
	line-height: 33px;
}
.tags_box1 a {
	width: 36vw;
}
.tags_box a:nth-child(n+1){background: #6cd47d; border-color: #6cd47d; color: #fff;}
.tags_box a:nth-child(n+2){background: #ff8b62; border-color: #ff8b62; color: #fff;}
.tags_box a:nth-child(n+3){background: #37afff; border-color: #37afff; color: #fff;}
.tags_box a:nth-child(n+4){background: #ff6f6f; border-color: #ff6f6f; color: #fff;}
.tags_box a:nth-child(n+5){background: #6b6b6b; border-color: #6b6b6b; color: #fff;}
.tags_box a:nth-child(n+6){background: #ffbc53; border-color: #ffbc53; color: #fff;}
.tags_box a:nth-child(n+7){background: #37afff; border-color: #37afff; color: #fff;}


.swiper-container {
	height:360px !important;
}

.topdown {
	margin-top: 8px;;
}

.topRankingUl3  h3 {
	font-weight: normal;
}

.content500 {
	 max-height: 270px;
	/*min-height: 50px; */
    -webkit-mask-box-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #ffffff 0.6rem);
}


