﻿html {
	-webkit-text-size-adjust: none;
	scroll-behavior: smooth;
	/* 关键：避免锚点跳转到顶部后被导航栏遮挡（根据你的页面调整数值） */
	scroll-padding-top: 6rem;
}

img {
	border: none;
	vertical-align: middle;
}

input,
select,
button {
	padding: 0;
	margin: 0;
	outline: none;
	font-family: inherit;
	vertical-align: middle;
	font-size: inherit;
}

textarea {
	font-family: inherit;
	padding: 0;
	margin: 0;
	resize: none;
	outline: none;
	font-size: inherit;
}

button {
	cursor: pointer;
}

html {
	overflow-x: hidden;
}

body {
	background-color: #000;
	font-family: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
}

ul,
ol {
	padding: 0;
	padding-left: 0;
	list-style-type: none;
}

h5,
h6 {
	font-size: inherit;
}

i,
em,
address,
ins {
	font-style: normal;
}

a {
	text-decoration: none;
	color: #4f4f4f;
}

a:hover {
	text-decoration: none ;
}


body,html {
	background: #12151a;
}

.bg {
	width: 100%;
	background-image: url(http://img.77dms.com/static/images/bg.jpg);
	padding-top: 253px;
	background-repeat: no-repeat;
    background-size: 100% auto;
}

.game-title {
	width: 950px;
	height: 550px;
	background: url(http://img.77dms.com/static/images/game_title.png) no-repeat;
	margin: -5.6rem auto -3rem;
}

.bg-02 {
	background-image: url(http://img.77dms.com/static/images/bg_02.jpg);
}
.game-download {
	margin: 60px auto;
	text-align: center;
}
.game-download .btn {
	display: inline-block;
	width: 530px;
	height: 161px;
	margin: 0 30px;
	background: #000;
}
.game-download .btn-01 {
	background: url(http://img.77dms.com/static/images/btn_01.png);
}
.game-download .btn-02 {
	background: url(http://img.77dms.com/static/images/btn_02.png);
}


.part-01 {
	background-image: url(http://img.77dms.com/static/images/part_01.png);
	width: 1007px;
	height: 133px;
	margin: 0 auto;
}
.part-02 {
	background-image: url(http://img.77dms.com/static/images/part_02.png);
	width: 1007px;
	height: 137px;
	margin: 0 auto;
}
.part-03 {
	background-image: url(http://img.77dms.com/static/images/part_03.png);
	width: 1007px;
	height: 136px;
	margin: 10rem auto 0;
}
.part-04 {
	background-image: url(http://img.77dms.com/static/images/part_04.png);
	width: 1007px;
	height: 137px;
	margin: 0 auto;
}

.game-news {
	width: 1372px;
	height: 495px;
	margin: 40px auto 80px auto;
	background-image: url(http://img.77dms.com/static/images/game_news_bg.png);
}

.game-news .warp {
	display: flex;
	padding: 50px;
	overflow: hidden;
}
.game-news .img {
	margin-right: 20px;
}
.game-news .news-list {
	flex: 1;
	overflow: hidden;
	position: relative;
}
.game-news .news-nav {
	margin-top: 10px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #6f5f42;
}
.game-news .news-nav li {
	margin-left: 35px;
}
.game-news .news-nav li span {
	color: #d9b574;
	font-size: 22px;
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding-bottom: 25px;
}
.game-news .news-nav .uk-active span:after {
	content: '';
	display: inline-block;
	border-top: 8px solid transparent;
	border-bottom: 8px solid #dcbb80;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
}

.game-news .news-main {}
.game-news .news-main li {
	margin-top: 22px;
	display: flex;
	align-items: center;
}
.game-news .news-main li span {
	border: 1px solid #dcbb80;
	color: #dcbb80;;
	display: inline-block;
	padding: 6px 12px;
	border-radius: 6px;
	margin-right: 10px;
	overflow: hidden;
	font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 核心调整 game-content 样式 */
.game-news .news-main .game-content {
    display: flex;
    /* 改为纵向排列，更符合文本阅读习惯 */
    flex-direction: column;
    /* 清除默认的 align-items: center 继承，避免文字居中 */
    align-items: flex-start;
    /* 增加内边距，让内容不贴边 */
    padding: 5px 0;
}

/* 针对 game-content 下的 a 标签做适配 */
.game-news .news-main .game-content a {
    /* 取消 flex:1 继承，避免宽度异常 */
    flex: none;
    /* 让链接文本可以换行，避免溢出 */
    white-space: normal;
    /* 增加行高，提升可读性 */
    line-height: 1.6;
    /* 第二个链接单独样式（详情链接） */
}
.game-news .news-main .game-content a:last-child {
    /* 详情链接右移，区分正文 */
    margin-left: 10px;
    /* 调整颜色，突出详情链接 */
    color: #d9b574;
    /* 缩小字体，区分层级 */
    font-size: 14px;
    /* 增加上边距，和正文分开 */
    margin-top: 5px;
}

/* 补充：优化所有 news-main li 的基础样式，避免影响 game-content */
.game-news .news-main li {
    margin-top: 22px;
    display: flex;
    /* 改为 flex-start 对齐，避免文字垂直居中导致的排版问题 */
    align-items: flex-start;
    /* 增加行高，提升整体可读性 */
    line-height: 1.5;
}

/* 调整标签样式，让标签和文本对齐更协调 */
.game-news .news-main li span {
    border: 1px solid #dcbb80;
    color: #dcbb80;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 10px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* 固定标签高度对齐，避免行高影响 */
    flex-shrink: 0;
}
.game-news .news-main li a {
	flex: 1;
	color: #e7decd;
	font-size: 16px;
	display: block;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-news .news-main .game-content-ul-1 li .two-line-ellipsis{

    display: flex; /* 设为Flex容器 */
    align-items: flex-start; /* 让span和a顶部对齐，排版更自然 */
}
.game-news .news-main .game-content-ul-1 li .two-line-ellipsis span{
	margin: 10px auto 0;
	flex-shrink: 0; /* 关键：禁止span被压缩，保证其宽度仅为自身内容宽度 */
}
/* 内容容器：确保宽度占满 */
.game-news .news-main .game-content-1,.game-content-ul-1 li {
	margin-top: 1.3rem !important;
	line-height: 1.3 !important;
}


/* 核心：两行文字超出省略号通用类 */
.game-news .news-main .game-content-ul-1 li .two-line-ellipsis a{
	color: #e7decd;
	flex: 1; /* 核心：自动占据容器剩余宽度 */
    word-break: break-all; /* 超长文本换行，避免超出 */
}
.game-news .news-main .game-content-ul-1  .game-content-div >a{
	display: block;
	text-align: right;
}

.part-zhiye {
	width: 1365px;
	margin: 0 auto;
}
.part-zhiye .warp {
	position: relative;
}
.zhiye-nav {
	position: absolute;
	left: 50px;
	top: 200px;
	background-repeat: no-repeat;
}
.zhiye-nav li {
	display: inline-block;
	margin-right: 10px;
}
.zhiye-nav li a {
	cursor: pointer;
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(http://img.77dms.com/static/images/zhiye_silide_nav_bg.png);
}
.zhiye-nav .uk-active a {
	background-image: url(http://img.77dms.com/static/images/zhiye_silide_nav.png);
}
.zhiye-main {
    height: 900px;
}
.zhiye-item {
	display: flex;
	margin-top: 100px;
}
.zhiye-item .zhiye-name {
	width: 235px;
	height: 100px;
	background-image: url(http://img.77dms.com/static/images/nav_bg.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	text-indent: 50px;
}
.zhiye-item .zhiye-name img {
	position: relative;
	z-index: 10;
}
.zhiye-item .desc {}
.zhiye-item .desc ul {
	padding-left: 10px;
	position: relative;
	z-index: 100;
	margin-top: 100px;
}
.zhiye-item .desc ul li {
	font-size: 24px;
	margin-bottom: 50px;
	white-space: nowrap;
}
.zhiye-item .desc ul li .t {
	color: #d9b675;
}
.zhiye-item .desc ul li .v {
	color: #827763;
}

.zhiye-item .img {
	width: 800px;
	height: 850px;
	text-align: center;
	background-repeat: no-repeat;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-image: url(http://img.77dms.com/static/images/zhiye_bg.png);
}



.part-zb {
	width: 1325px;
	margin: 0 auto;
	margin-top: 90px;
}

.part-jineng {
	width: 1500px;
	margin: 0 auto;
	margin-top: 100px;
	position: relative;
}
.part-jineng .slideshow {
	position: relative;
	padding-top: 70px;
}
.part-jineng .slideshow:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 1360px;
	height: 900px;
	margin: 0 auto;
	background-image: url(http://img.77dms.com/static/images/part_jineng_bg.png);
}
.part-jineng .uk-slideshow-items {
	width: 1200px !important;
	margin: 0 auto;
	overflow: hidden;
	height: 780px;
}
.part-jineng .uk-slideshow-items .item {
	height: 100%;
}
.part-jineng .uk-slideshow-items .item img {
	height: 100%;
	width: 100%;
}
.part-jineng .slidenav {
	display: inline-block;
	width: 96px;
	height: 67px;
	background-image: url(http://img.77dms.com/static/images/slidenav.png);
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 100;
}
.part-jineng .slidenav:last-child {
	right: 0;
	left: auto;
	transform: translate(0,-50%) rotate(180deg);
}

.side-ewm {
	position: fixed;
	width: 200px;
	top: 3%;
	/*transform: translate(0,-50%);*/
	right: 25px;
}
.side-ewm .ewm-top {
	/* width: 80%; */
	background-size: 200px auto;
	background-image: url(http://img.77dms.com/static/images/side-bg_01.png);
	background-repeat: no-repeat;
	height: 144px;
}
.side-ewm .ewm-main {
    width: 200px;
    /* width: 80%; */
    padding: 20px 0;
    background-image: url(http://img.77dms.com/static/images/side-bg_02.png);
    background-size: 200px auto;
    text-align: center;
}

.side-ewm .ewm-sub {
    width: 200px;
    padding: 14px 0;
    background-image: url(http://img.77dms.com/static/images/side-bg_02.png);
    background-size: 200px auto;
    /* text-align: center; */
    background-repeat: repeat-y;
}

.side-ewm .ewm-main img {
	width: 100px;
}
.side-ewm .ewm-main p {
	font-size: 26px;
	color: #fff;
	font-family: 宋体;
	background: linear-gradient(to bottom, #faefad, #b98a47);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-bottom: 30px;
}
.side-ewm .ewm-main p:last-child {
	margin-bottom: 0;
}
.side-ewm .ewm-bottom {
    width: 200px;
    background-image: url(http://img.77dms.com/static/images/side-bg_03.png);
    background-repeat: no-repeat;
    height: 334px;
    background-size: 200px auto;
}



.footer {
	margin-top: 300px;
	width: 100%;
	height: 238px;
	background-image: url(http://img.77dms.com/static/images/footer_bg.png);
}

.footer .warp {
	width: 1360px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
}

.footer .warp:after {
	content: '';
	display: inline-block;
	width: 511px;
	height: 400px;
	background-image: url(http://img.77dms.com/static/images/foot_bg.png);
	position: absolute;
	right: 0;
	bottom: 0;
}
.footer .text {
	margin-left: 100px;
	position: relative;
	z-index: 10;
}
.footer .text p {
	margin: 30px 0;
	color: #999999;
	font-size: 14px;
}
