/*页头*/
#topheader {
    height: 82px;
    min-width: 1300px;
    top: 0%;
    margin: 0 auto;
    background: #f5f5f0;
    z-index: 3500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

#topheader::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6600;
}

#topheader .center {
    width: 1300px;
}

/* Announcement Bar */
#announcement-bar {
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 3000;
    margin-top: -260px; /* 调整上下位置，负数向上移动 -- 滚动公告 */
}

#announcement-bar .content {
    width: 1300px;
    margin: 0 auto;
    position: relative;
}

.announcement-content {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.scroll-container {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-content {
    display: flex;
    align-items: center;
    height: 40px;
    white-space: nowrap;
    width: 100%;
}

.notice-label {
    display: flex;
    align-items: center;
    height: 40px;
    line-height: 40px;
    color: #ffd700;
    font-size: 14px;
    font-weight: bold;
    margin-right: 0;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-right: none;
    position: relative;
    z-index: 10;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.notice-bg {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-left: none;
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
}

.notice-text {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    color: #ffd700;
    font-size: 14px;
    padding: 0 15px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.scroll-container:hover .notice-text {
    animation-play-state: paused;
}

/*顶部*/
#top {
    width: 100%;
    line-height: 32px;
    margin: 0 auto;
    background: #c7c5c6 url("../images/line_x.jpg") repeat-x left top;
}

/*欢迎*/
#welcome {
    float: left;
    width: 660px;
    height: 32px;
    overflow: hidden;
}

#welcome strong {
    font-weight: normal;
    color: #ae311d;
}

#welcome time {
    color: #ae311d;
}



#quicklink ul li {
    float: left;
    color: #333333;
}

#quicklink ul li [class^='icon'] {
    margin-right: 3px;
}

#quicklink ul li a {
    color: #6f7f8e;
    padding-right: 12px;
    padding-left: 6px;
    text-decoration: none;
    display: inline-block;
}

#quicklink ul li:hover a {
    color: #ae311d;
}

.icon_function {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    background: url("../images/icon_function.png") no-repeat left top;
    display: inline-block;
}

.icon_function.icon_function1x1 {
    background-position: 0 0;
}

.icon_function.icon_function2x1 {
    background-position: -25px 0;
}

.icon_function.icon_function3x1 {
    background-position: -50px 0;
}

.icon_function.icon_function4x1 {
    background-position: -75px 0;
}

#quicklink li:hover .icon_function.icon_function1x1 {
    background-position: 0 -25px;
}

#quicklink li:hover .icon_function.icon_function2x1 {
    background-position: -25px -25px;
}

#quicklink li:hover .icon_function.icon_function3x1 {
    background-position: -50px -25px;
}

#quicklink li:hover .icon_function.icon_function4x1 {
    background-position: -75px -25px;
}

/*网站标志*/
#logo {
    float: left;
    width: 300px;
    height: 70px;
    margin-top: 2px;
    background-color: #F5F5F0;
    background-repeat: repeat-x;
    background-position: left top;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

#logo img {
    width: 280px;
    height: 60px;
}

/*菜单*/
#menu {
    float: right;
    width: 800px;
    margin-top: 0;
    right: 0px
}

#menu ul {
    float: right;
    margin-right: 0;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    height: 80px;
}

#menu ul li {
    float: left;
    margin-left: 0;
    position: relative;
}

#menu ul a {
    float: left;
    width: 140px;
    height: 80px;
    text-align: center;
    line-height: 1.2;
    font-size: 14px;
    font-weight: bold;
    color: #ff6600;
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 0;
    margin: 0;
    position: relative;
    overflow: visible;
    transition: all 0.2s ease;
    box-shadow: none;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

#menu ul a:hover {
    color: #ff4500;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* 热标记样式 */
#menu ul li.hot::after {
    content: "独家";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 3px;
    z-index: 10;
    box-shadow: none;
    text-transform: none;
    border: none;
    animation: none;
}

/* 导航文字下方的英文 */
#menu ul a::after {
    content: attr(data-en);
    position: relative;
    top: 4px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 10px;
    font-weight: normal;
    color: #666;
    text-shadow: none;
    text-transform: uppercase;
    display: block;
}

#Version {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

#Header {
    margin: 0px auto -290px -961px;
    width: 1920px;
    height: 850px;
    position: absolute;
    left: 50%;
}

bg-v {
    position: relative;
    left: 0;
    width: 100%;
    height: 850px;
    overflow: hidden;
    min-width: 1200px;
}

.bg-v .video {
    width: 1920px;
    height: 850px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.bg-v video {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    height: 850px;
}

.clearfix {
    zoom: 1
}

.content {
    width: 1300px;
    margin: 0 auto;
    position: relative
}

.Download {
    width: 300px;
    height: 300px;
    position: absolute;
    z-index: 9999;
    top: 260px;
    left: 950px;
    background: url("../images/dlqxz.png") no-repeat center;
    background-size: contain;
    text-indent: -9999rem;
}

.topquicklink {
    width: 1285px;
    height: 265px;
    position: absolute;
    ;
    z-index: 9999;
    top: 550px;
    left: 14px;
    overflow: hidden;
}

.Midquicklink .Down_link {
    float: left;
    position: relative;
    width: 300px;
    height: 165px;
    ;
    z-index: 9999;
    ;
    margin-right: 20px;
    text-indent: -9999rem;
}

.topquicklink .QR_ewm {
    float: right;
    position: relative;
    width: 218px;
    height: 265px;
    ;
    z-index: 9999;
    background: #fff
}

.topquicklink .QR_ewm img {
    float: left;
    width: 165px;
    height: 165px;
    margin: 24px 0 0 28px
}

.microHei {
    font-family: "Microsoft YaHei"
}

.Tp-content {
    width: 1920px;
    height: 350px;
    position: relative;
    ;
    background: url("../images/bg_02.jpg") no-repeat center top;
    margin: 0 auto;
    left: 50%;
    margin: 0px auto 0px -961px
}

.md-content {
    width: 1920px;
    height: auto;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    background: url("../images/bg_03.jpg") center bottom no-repeat;
    margin: 0 auto;
    left: 50%;
    margin: 0px auto 0px -961px;
}

.md-content .GameVer {
    width: 1300px;
    position: relative;
    padding-bottom: 130px;
    overflow: hidden;
    margin: 0 auto;
    z-index: 15000;
    margin-top: 5px
}

.md-content .RecommendGame {
    width: 1300px;
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 60px;
}

.bd-content {
    width: 100%;
    ;
    margin: 0 auto;
    ;
    overflow: hidden;
    ;
    position: relative;
    height: 400px;
    padding-top: 00px;
    padding-bottom: 100px;
    ;
}

.bd-content .NewGame {
    width: 1300px;
    height: 300px;
    margin-bottom: 40px
}

.bd-content .NewGame img {
    width: 1300px;
    height: 300px
}

#PhotoShow {
    width: 1300px;
    height: 100px;
    position: relative;
    z-index: 99000;
    background: #000
}

#PhotoShow .gundong {
    width: 1300px;
}

#PhotoShow .gundong .jCarouselLite {
    float: left;
    width: 1300px;
    height: 100px;
    overflow: hidden;
}

#PhotoShow .move_right,
#PhotoShow .move_left {
    float: left;
    width: 43px;
    height: 100px;
    position: absolute;
    top: 0px;
    z-index: 500;
}

#PhotoShow .move_left span,
#PhotoShow .move_right span {
    width: 95px;
    height: 112px;
    position: absolute;
    top: 50%;
    margin-top: -60px;
    ;
    background-repeat: no-repeat;
}

#PhotoShow .move_left {
    left: 50px;
}

#PhotoShow .move_left span {
    background: url("../images/arrow-left.png") no-repeat left top
}

#PhotoShow .move_left:hover span {
    background: url("../images/arrow-left.png") no-repeat left top
}

#PhotoShow .move_right {
    right: 50px;
}

#PhotoShow .move_right span {
    background: url("../images/arrow-right.png") no-repeat left top;
}

#PhotoShow .move_right:hover span {
    background: url("../images/arrow-right.png") no-repeat left top;
}

/*图片列表*/
.PictureList {
    float: left;
}

.PictureList li {
    margin: 0 10px;
    float: left;
    width: 250px;
    display: inline;
}

.PictureList .photo {
    width: 250px;
    height: 100px;
    display: block;
}

.PictureList .photo img {
    float: left;
    width: 250px;
    height: 100px;
}

/*栏目标题*/
.columnTitle {
    text-align: left;
    margin-bottom: 0rem;
    padding-top: 12px;
    padding-bottom: 12px;
}

.columnTitle img {
    width: 700px;
    margin: 0 auto;
}

/*选项*/
.md-content .Game-title {
    width: 1280px;
    height: 60px;
    line-height: 60px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 15000;
    padding-left: 0px;
    margin-bottom: 10px
}

.md-content .Game-title .Game-tab {
    float: left;
    width: 870px;
    height: 45px;
    ;
    border-bottom: 1px solid #827a70;
    padding-top: 10px;
    margin-right: 10px
}

.md-content .Game-title .Game-search {
    float: left;
    width: 400px;
    margin-top: 10px;
    overflow: hidden;
}

/*nav*/
#tabs {
    margin-right: 0px;
}

#tabs li {
    float: left;
    width: 80px;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    ;
    position: relative;
    margin-right: 0px;
    padding-bottom: 14px;
}

#tabs li a {
    display: block;
    height: 30px;
    line-height: 30px;
    ;
    z-index: 2;
    ;
    color: #dcceab;
    width: 65px;
    ;
    text-align: center;
    overflow: hidden;
    font-size: 18px;
}

#tabs li:hover {
    color: #d84a2e;
    border-bottom: 3px solid #d84a2e;
}

#tabs li a:hover {
    color: #d84a2e;
    ;
}

#tabs li.cur>a {
    color: #00ad35;
}

#tabs li em {
    display: none;
}

#tabs li:last-child:after {
    display: none;
}

#tabs li.change {
    position: relative;
    color: #d84a2e;
    border-bottom: 3px solid #d84a2e;
}

#tabs li. a:change {
    color: #d84a2e;
}

.zySearch {
    float: left;
    top: 0px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.zySearch .search-input {
    color: #999;
    height: 45px;
    line-height: 45px;
    outline: 0;
    padding: 0 10px;
    width: 335px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px 0 0 5px;
    border: 1px solid #999;
}

.zySearch .search-btn {
    border: 0;
    border-radius: 0 5px 5px 0;
    position: relative;
    left: -1px;
    top: 1px;
    text-indent: -9999rem;
    ;
    cursor: pointer;
    height: 45px;
    ;
    width: 60px;
    ;
    display: inline-block;
    position: relative;
    background: url("../images/search.png") no-repeat center;
}

.zySearch .search-btn:hover {
    background: url("../images/search_hover.png") no-repeat center;
}

/*推荐游戏*/
.Tj_games {
    float: left;
    width: 325px;
    height: 343px;
    padding-top: 18px;
    padding-bottom: 30px;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    overflow: hidden;
    margin-left: 0px;
    margin-right: 60px;
    margin-top: 10px;
    transition: all 0.2s linear;
}

.Tj_games:nth-of-type(3n+3) {
    margin-right: 0px
}

.Tj_games .photo {
    width: 325px;
    height: 210px;
    position: relative;
    margin-bottom: 20px;
    background: #000;
}

.Tj_games .photo img {
    width: 325px;
    height: 210px;
}

.Tj_games .list {
    clear: both;
    overflow: hidden;
    padding-top: 5px;
    margin-top: 20px;
    margin-left: -20px
}

/*列表*/
.Tj_games .list li {
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    font-size: 14px;
    color: #912702;
    padding-left: 37px;
    background: url("../images/icon_notice.png") no-repeat 9px center;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px dashed #F7F4EF;
}

.Tj_games .list li a {
    text-decoration: none;
    color: #3f1304;
}

.Tj_games .list li a:hover {
    color: #bb5901;
}

.Tj_games ._btn_down {
    float: left;
    width: 160px;
    height: 60px;
    overflow: hidden;
    margin-right: 5px;
    margin-left: 0px;
    background: url("../images/_btn_down.png") no-repeat center;
    text-indent: -9999rem;
    ;
}

.Tj_games ._btn_down:hover {
    background: url("../images/_btn_down_hover.png") no-repeat center;
}

.Tj_games ._btn_web {
    float: left;
    width: 160px;
    height: 60px;
    overflow: hidden;
    margin-right: 0px;
    margin-left: 0px;
    background: url("../images/_btn_web.png") no-repeat center;
    text-indent: -9999rem;
    ;
}

.Tj_games ._btn_web:hover {
    background: url("../images/_btn_web_hover.png") no-repeat center;
}

/*游戏版本*/
.games {
    float: left;
    width: 420px;
    height: 384px;
    padding-top: 0px;
    padding: 2px;
    padding-left: 0px;
    padding-right: 0px;
    position: relative;
    overflow: hidden;
    background: #F7F4EF;
    margin-left: 10px;
    margin-right: 0px;
    margin-top: 20px;
    transition: all 0.2s linear;
}

.games:nth-of-type(3n+3) {
    margin-right: 0px
}

.games .border_top,
.games .border_right,
.games .border_bottom,
.games .border_left {
    background-color: #fff;
}

.games .border_top,
.games .border_bottom {
    height: 3px;
}

.games .border_right,
.games .border_left {
    width: 3px;
}

.games.hover_games {
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2);
}

.games .photo {
    width: 416px;
    height: 230px;
    position: relative;
    margin-bottom: 0px;
    background: #000;
    margin-left: 2px
}

.games .photo img {
    width: 416px;
    height: 230px;
}

.games .list {
    width: 416px;
    clear: both;
    overflow: hidden;
    padding-top: 2px;
    margin-top: 4px;
    margin-left: 2px;
    margin-bottom: 10px
}

.phototitle {
    width: 140px;
    height: 40px;
    ;
    line-height: 40px;
    color: #fefefe;
    font-size: 14px;
    text-align: center;
    text-indent: -20px;
    background: url("../images/phototitle.png") no-repeat top center;
    ;
    position: absolute;
    overflow: hidden;
    top: 0px;
    left: 0px;
    z-index: 99
}

/*列表*/
.games .list li {
    width: 416px;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    font-size: 12px;
    color: #912702;
    padding-left: 37px;
    background: url("../images/icon_notice.png") no-repeat 9px center;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px dashed #5d5d5d;
}

.games .list li a {
    text-decoration: none;
    color: #3f1304;
}

.games .list li a:hover {
    color: #bb5901;
}

.games ._btn_gametips {
    float: left;
    margin-left: 2px;
    width: 46px;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #decfa5;
    background: #F7F4EF url("../images/tips.png") no-repeat top center;
    text-indent: -9999rem;
}

.games ._btn_gamedown {
    float: left;
    width: 168px;
    height: 50px;
    overflow: hidden;
    margin-right: 0px;
    margin-left: 0px;
    font-size: 16px;
    color: #9a2d18;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    border-right: 1px solid #9a2d18;
    letter-spacing: 2px;
    background: #F7F4EF
}

.games ._btn_gamedown:hover {
    background: #F7F4EF;
    color: #c53316;
}

.games ._btn_gameweb {
    float: left;
    width: 180px;
    height: 50px;
    overflow: hidden;
    margin-right: 0px;
    margin-left: 0px;
    background: url("../images/_btn_gameweb.png") no-repeat top center;
    text-indent: -9999rem;
    ;
}

.games ._btn_gameweb:hover {
    background: url("../images/_btn_gameweb_hover.png") no-repeat center;
}

/*游戏版本*/
.games2 {
    float: left;
    width: 416px;
    height: 354px;
    padding-top: 0px;
    padding: 2px;
    position: relative;
    overflow: hidden;
    background: #EAE3Db;
    margin-left: 15px;
    margin-right: 0px;
    margin-top: 20px;
    transition: all 0.2s linear;
}

.games2:nth-of-type(3n+3) {
    margin-right: 0px
}

.games2 .border_top,
.games2 .border_right,
.games .border_bottom,
.games .border_left {
    background-color: #fff;
}

.games2 .border_top,
.games2 .border_bottom {
    height: 3px;
}

.games2 .border_right,
.games2 .border_left {
    width: 3px;
}

.games2.hover_games {
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2);
}
.games2 .photo {
    width: 416px;
    height: 230px;
    position: relative;
    margin-bottom: 0px;
    background: #000;
    margin-left: 2px;
}
.games2 .photo img {
    width: 416px;
    height: 230px;
}
.games2 .list {
    clear: both;
    overflow: hidden;
    padding-top: 2px;
    margin-top: 5px;
    margin-left: 2px;
    margin-bottom: 10px;
}
/*列表*/
.games2 .list li {
    width: 416px;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    font-size: 12px;
    color: #912702;
    padding-left: 37px;
    background: url("../images/icon_notice.png") no-repeat 9px center;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px dashed #5d5d5d;
}
.games2 .list li a {
    text-decoration: none;
    color: #3f1304;
}
.games2 .list li a:hover {
    color: #bb5901;
}
.games2 ._btn_gametips {
    float: left;
    margin-left: 0px;
    width: 46px;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #decfa5;
    background: #45180f url("../images/tips.png") no-repeat top center;
    text-indent: -9999rem;
}
.games2 ._btn_gamedown {
    float: left;
    width: 167px;
    height: 50px;
    overflow: hidden;
    margin-right: 0px;
    margin-left: 0px;
    font-size: 16px;
    color: #efba03;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    border-right: 1px solid #decfa5;
    letter-spacing: 2px;
    background: #45180f;
}
.games2 ._btn_gamedown:hover {
    background: #631707;
    color: #decfa5;
}
.games2 ._btn_gameweb {
    float: left;
    width: 180px;
    height: 50px;
    overflow: hidden;
    margin-right: 0px;
    margin-left: 0px;
    background: url("../images/_btn_gameweb.png") no-repeat top center;
    text-indent: -9999rem;
}
.games2 ._btn_gameweb:hover {
    background: url("../images/_btn_gameweb_hover.png") no-repeat center;
}
/*页尾*/
#footer {
    width: 100%;
    min-width: 1300px;
    background: #1a1a1a;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    padding: 20px;
    margin: 0 10px;
}

.footer-section:first-child {
    margin-left: 0;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.qrcode {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.qrcode img {
    width: 100%;
    height: 100%;
}

.customer-service {
    text-align: center;
    color: #ccc;
}

.qq {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.service-time {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    padding: 8px 15px;
    background: #2a2a2a;
    border-radius: 20px;
    display: inline-block;
}

.contact-btn {
    width: 120px;
    height: 40px;
    background: #993300;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
}

.contact-btn:hover {
    background: #cc3300;
}

.copyright {
    font-size: 12px;
    color: #999;
    line-height: 22px;
    text-align: left;
}

.copyright a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.anti-addiction {
    color: #666;
    margin-top: 15px;
    line-height: 18px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*新闻内容区域*/
#Headerbg {
    margin: 0px auto -290px -961px;
    width: 1920px;
    height: 600px;
    position: relative;
    left: 50%;
}
#container {
    width: 1320px;
    position: relative;
    overflow: hidden;
    margin: 200px auto 100px auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    background: url("../images/bluebg.png") repeat left top;
    border: 2px solid #a5833c;
    z-index: 1500;
}
#container .icon_jiao {
    position: absolute;
}
#neirong2 {
    margin: 0px 0px 0 0;
    float: left;
    width: 1320px;
    position: relative;
    min-height: auto;
    background-color: #1b1b1b;
    border: 1px solid #705d52;
    display: inline;
    z-index: 10;
    padding-bottom: 40px;
}
.icon_jiao {
    width: 48px;
    height: 70px;
    background: url("../images/icon_jiao.png") no-repeat left top;
    display: inline-block;
}
.icon_jiao.icon_jiao1x1 {
    right: 0px;
    bottom: 0px;
    background-position: 0 0;
}
.icon_jiao.icon_jiao1x2 {
    top: 0px;
    right: 0px;
    background-position: 0 -70px;
}
.icon_jiao.icon_jiao2x1 {
    bottom: 0px;
    left: 0px;
    background-position: -48px 0;
}
.icon_jiao.icon_jiao2x2 {
    top: 0px;
    left: 0px;
    background-position: -48px -70px;
}
/*位置*/
#Location {
    height: 49px;
    line-height: 49px;
    position: absolute;
    font-size: 14px;
    color: #ead2b6;
    top: 0px;
    right: 0px;
    padding-right: 30px;
    z-index: 9999;
}
#Location a {
    color: #ead2b6;
}
#Location a:hover {
    color: #fcbb70;
}
/*主标题*/
.MainTitle {
    padding: 0 22px;
    height: 77px;
    line-height: 49px;
    font-weight: normal;
    background: url("../images/main_titlebg.png") no-repeat left top;
}
.MainTitle em {
    font-size: 28px;
    color: #ffffff;
}
.MainTitle span {
    font-size: 12px;
    color: #fff;
}
#NewsContent {
    position: relative;
    margin: -19px auto 0;
    padding: 40px 0 30px;
}
#NewsContent .news_title {
    height: 55px;
    line-height: 55px;
    text-align: center;
    overflow: hidden;
    font-size: 30px;
    font-weight: bold;
    color: #ead2b6;
    letter-spacing: 1em;
    border-bottom: 1px solid #705d52;
    margin-bottom: 30px;
}
#NewsContent .newsValue {
    height: 21px;
    line-height: 21px;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
    color: #53231b;
    margin: 0px auto 29px auto;
    padding-bottom: 0px;
    border-bottom: 1px solid #635332;
}
#NewsContent .newsValue dt {
    display: inline;
}
#NewsContent .newsValue dd {
    margin-right: 25px;
    display: inline;
}
#NewsContent .News {
    width: 1180px;
    line-height: 2.58;
    font-size: 16px;
    color: #c8b49e;
    margin: 0 auto;
    padding: 20px 0px 0px 0px;
}
#NewsContent .News strong {
    font-weight: normal;
    color: #53231b;
    text-decoration: underline;
}
#NewsContent .News a {
    color: #53231b;
    text-decoration: underline;
}
#NewsContent .News p {
    text-indent: 0px;
    margin-bottom: 10px;
    font-size: 16px;
}
.News .Newstext {
    float: left;
    width: 1200px;
    top: 10px;
    left: 0px;
    font-family: 'microsoft yahei';
    text-decoration: none;
}
.News .Newstext img {
    float: left;
    margin-left: 5px;
    box-shadow: 0 -5px 24px rgba(0, 0, 0, 0.8);
    margin-top: 20px;
    margin-bottom: 20px;
}
.News .Newstext p {
    color: #dcd0b7;
    margin: 5px 0;
    font-size: 15px;
    line-height: 30px;
}
.News .Newstext strong {
    font-color: #dcd0b7;
    font-size: 18px;
    font-weight: 600;
}
.News .Newstext strong2 {
    color: #d90601;
    font-size: 18px;
    font-weight: 600;
}
.News .Newstext h3 {
    color: #cc0000;
    font-size: 16px;
    font-weight: 600;
}
.News .Newstext span {
    color: #ad200b;
    font-size: 18px;
}
.News .Newstext em {
    font-size: 15px;
    color: #df811b;
}
.News .Newstext .pic {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.News .Newstext .pic img {
    max-width: 90%;
}
.pagination {
    float: left;
    position: relative;
    height: 60px;
    width: 1280px;
    padding: 20px 0;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #755f49;
    margin-top: 50px;
}
.pagination .pageList-wrap {
    display: inline-block;
}
.pagination .item {
    width: 60px;
    height: 30px;
    line-height: 30px;
    background: #dedede;
    cursor: pointer;
    border-radius: 4px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 0 3px;
    user-select: none;
}
.pagination .eliplise,
.pagination .item[value] {
    width: 35px;
}
.pagination .item[value].active {
    background: #be4c4d;
    color: #fff;
}
.pagination .item:hover {
    color: #be4c4d;
    background: #d2d2d2;
}
.pagination .page-list-wrap {
    display: inline-block;
}
.pagination .page-count {
    height: 30px;
    margin-left: 20px;
    vertical-align: top;
    line-height: 30px;
    display: inline-block;
}
.pagination .page-count_num {
    margin: 0 5px;
    color: #c0aa94;
    font-size: 18px;
}
.pagination .item.disabled {
    cursor: not-allowed;
}
.pagination .item.disabled:hover {
    color: #98897a;
    background: #dedede;
}

.nr-content {
    width: 1920px;
    height: auto;
    position: relative;
    padding-top: 0px;
    padding-bottom: 100px;
    margin: 0 auto;
    left: 50%;
    margin: 0px auto 0px -961px;
}




#ZhiYe {
    float: left;
    height: 260px;
    position: relative;
    min-width: 900px;
    margin: 0 auto;
    margin-top: 250px;
    z-index: 1000;
    margin-left: 250px;
}
#ZhiYe .center {
    float: left;
    position: relative;
    width: 700px;
}
#ZhiYe .photoshow_select {
    text-align: center;
    margin-top: 15px;
}
#ZhiYe .photoshow_select a {
    margin: 0 2px;
    width: 20px;
    height: 20px;
    text-indent: 0px;
    background: url("../images/icon_point.png") no-repeat left top;
    cursor: pointer;
    display: inline-block;
}
#ZhiYe .photoshow_select a.change {
    background-position: right top;
}
#ZhiYe .photoshow {
    width: 800px;
    height: 260px;
    margin: 0 auto;
}
#ZhiYe .photoshow li {
    width: 700px;
    height: 260px;
    text-align: center;
    cursor: pointer;
}
#ZhiYe .photoshow li img {
    max-width: 100%;
}
#ZhiYe .photoshow li.roundabout-in-focus {
    cursor: default;
}
#ZhiYe .photoshow li span {
    padding-top: 6em;
    display: block;
}
#ZhiYe .move_rights,
#ZhiYe .move_lefts {
    float: left;
    width: 95px;
    height: 260px;
    position: absolute;
    top: 0px;
    z-index: 1500;
}
#ZhiYe .move_lefts span,
#ZhiYe .move_rights span {
    width: 95px;
    height: 112px;
    position: absolute;
    top: 50%;
    margin-top: -50px;
}
#ZhiYe .move_lefts {
    left: -100px;
}
#ZhiYe .move_lefts span {
    background: url("../images/arrow-left.png") no-repeat left top;
}
#ZhiYe .move_lefts:hover span {
    background: url("../images/arrow-left.png") no-repeat left top;
}
#ZhiYe .move_rights {
    right: -180px;
}
#ZhiYe .move_rights span {
    background: url("../images/arrow-right.png") no-repeat left top;
}
#ZhiYe .move_rights:hover span {
    background: url("../images/arrow-right.png") no-repeat left top;
}

.games2 ._btn_gameweb:hover {
    background: url("../images/_btn_gameweb_hover.png") no-repeat center;
}







/*新闻内容区域*/
#Headerbg {
    margin: 0px auto -290px -961px;
    width: 1920px;
    height: 600px;
    position: relative;
    left: 50%;
}

#container {
    width: 1320px;
    position: relative;
    overflow: hidden;
    margin: 200px auto 100px auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    background: url("../images/bluebg.png") repeat left top;
    border: 2px solid #a5833c;
    z-index: 1500;
}

#container .icon_jiao {
    position: absolute;
}

#neirong2 {
    margin: 0px 0px 0 0;
    float: left;
    width: 1320px;
    position: relative;
    min-height: auto;
    background-color: #1b1b1b;
    border: 1px solid #705d52;
    display: inline;
    z-index: 10;
    padding-bottom: 40px
}

.icon_jiao {
    width: 48px;
    height: 70px;
    background: url("../images/icon_jiao.png") no-repeat left top;
    display: inline-block;
}

.icon_jiao.icon_jiao1x1 {
    right: 0px;
    bottom: 0px;
    background-position: 0 0;
}

.icon_jiao.icon_jiao1x2 {
    top: 0px;
    right: 0px;
    background-position: 0 -70px;
}

.icon_jiao.icon_jiao2x1 {
    bottom: 0px;
    left: 0px;
    background-position: -48px 0;
}

.icon_jiao.icon_jiao2x2 {
    top: 0px;
    left: 0px;
    background-position: -48px -70px;
}

/*位置*/
#Location {
    height: 49px;
    line-height: 49px;
    position: absolute;
    font-size: 14px;
    color: #ead2b6;
    top: 0px;
    right: 0px;
    padding-right: 30px;
    z-index: 9999;
}

#Location a {
    color: #ead2b6;
}

#Location a:hover {
    color: #fcbb70;
}

/*主标�?*/
.MainTitle {
    padding: 0 22px;
    height: 77px;
    line-height: 49px;
    font-weight: normal;
    background: url("../images/main_titlebg.png") no-repeat left top;
}

.MainTitle em {
    font-size: 28px;
    color: #ffffff;
}

.MainTitle span {
    font-size: 12px;
    color: #fff;
}

#NewsContent {
    position: relative;
    margin: -19px auto 0;
    padding: 40px 0 30px;
}

#NewsContent .news_title {
    height: 55px;
    line-height: 55px;
    text-align: center;
    overflow: hidden;
    font-size: 30px;
    font-weight: bold;
    color: #ead2b6;
    letter-spacing: 1em;
    border-bottom: 1px solid #705d52;
    margin-bottom: 30px
}

#NewsContent .newsValue {
    height: 21px;
    line-height: 21px;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
    color: #53231b;
    margin: 0px auto 29px auto;
    padding-bottom: 0px;
    border-bottom: 1px solid #635332;
}

#NewsContent .newsValue dt {
    display: inline;
}

#NewsContent .newsValue dd {
    margin-right: 25px;
    display: inline;
}

#NewsContent .News {
    width: 1180px;
    line-height: 2.58;
    font-size: 16px;
    color: #c8b49e;
    margin: 0 auto;
    padding: 20px 0px 0px 0px;
}

#NewsContent .News strong {
    font-weight: normal;
    color: #53231b;
    text-decoration: underline;
}

#NewsContent .News a {
    color: #53231b;
    text-decoration: underline;
}

#NewsContent .News p {
    text-indent: 0px;
    margin-bottom: 10px;
    font-size: 16px
}

.News .Newstext {
    float: left;
    width: 1200px;
    ;
    top: 10px;
    left: 0px;
    font-family: 'microsoft yahei';
    text-decoration: none
}

.News .Newstext img {
    float: left;
    margin-left: 5px;
    box-shadow: 0 -5px 24px rgba(0, 0, 0, 0.8);
    margin-top: 20px;
    margin-bottom: 20px
}

.News .Newstext p {
    color: #dcd0b7;
    margin: 5px 0;
    font-size: 15px;
    line-height: 30px;
}

.News .Newstext strong {
    font-color: #dcd0b7;
    font-size: 18px;
    font-weight: 600;
}

.News .Newstext strong2 {
    color: #d90601;
    font-size: 18px;
    font-weight: 600;
}

.News .Newstext h3 {
    color: #cc0000;
    font-size: 16px;
    font-weight: 600;
}

.News .Newstext span {
    color: #ad200b;
    font-size: 18px;
}

.News .Newstext em {
    font-size: 15px;
    color: #df811b;
}

.News .Newstext .pic {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px
}

.News .Newstext .pic img {
    max-width: 90%;
    ;
}

.pagination {
    float: left;
    position: relative;
    height: 60px;
    width: 1280px;
    padding: 20px 0;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #755f49;
    margin-top: 50px
}

.pagination .pageList-wrap {
    display: inline-block;
}

.pagination .item {
    width: 60px;
    height: 30px;
    line-height: 30px;
    background: #dedede;
    cursor: pointer;
    border-radius: 4px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 0 3px;
    user-select: none;
}

.pagination .eliplise,
.pagination .item[value] {
    width: 35px;
}

.pagination .item[value].active {
    background: #be4c4d;
    color: #fff;
}

.pagination .item:hover {
    color: #be4c4d;
    background: #d2d2d2;
}

.pagination .page-list-wrap {
    display: inline-block;
}

.pagination .page-count {
    height: 30px;
    margin-left: 20px;
    vertical-align: top;
    line-height: 30px;
    display: inline-block;
}

.pagination .page-count_num {
    margin: 0 5px;
    color: #c0aa94;
    font-size: 18px;
}

.pagination .item.disabled {
    cursor: not-allowed;
}

.pagination .item.disabled:hover {
    color: #98897a;
    background: #dedede;
}

.nr-content {
    width: 1920px;
    height: auto;
    position: relative;
    padding-top: 0px;
    padding-bottom: 100px;
    margin: 0 auto;
    left: 50%;
    margin: 0px auto 0px -961px;
}

.bg-bg {
    width: 1920px;
    display: block;
    height: 700px;
    position: absolute;
    max-width: 1920px;
    background: url("../images/bg.png") no-repeat center top;
    pointer-events: none;
    z-index: 5;
    bottom: 0px;
    left: -300px;
}



#ZhiYe {
    float: left;
    height: 260px;
    position: relative;
    min-width: 900px;
    margin: 0 auto;
    margin-top: 250px;
    z-index: 1000;
    margin-left: 250px
}

#ZhiYe .center {
    float: left;
    position: relative;
    width: 700px;
}

#ZhiYe .photoshow_select {
    text-align: center;
    margin-top: 15px;
}

#ZhiYe .photoshow_select a {
    margin: 0 2px;
    width: 20px;
    height: 20px;
    text-indent: 0px;
    background: url("../images/icon_point.png") no-repeat left top;
    cursor: pointer;
    display: inline-block;
}

#ZhiYe .photoshow_select a.change {
    background-position: right top;
}

#ZhiYe .photoshow {
    width: 800px;
    height: 260px;
    margin: 0 auto;
}

#ZhiYe .photoshow li {
    width: 700px;
    height: 260px;
    text-align: center;
    cursor: pointer;
}

#ZhiYe .photoshow li img {
    max-width: 100%;
}

#ZhiYe .photoshow li.roundabout-in-focus {
    cursor: default;
}

#ZhiYe .photoshow li span {
    padding-top: 6em;
    display: block;
}

#ZhiYe .move_rights,
#ZhiYe .move_lefts {
    float: left;
    width: 95px;
    height: 260px;
    position: absolute;
    top: 0px;
    z-index: 1500;
}

#ZhiYe .move_lefts span,
#ZhiYe .move_rights span {
    width: 95px;
    height: 112px;
    position: absolute;
    top: 50%;
    margin-top: -50px;
}

#ZhiYe .move_lefts {
    left: -100px;
}

#ZhiYe .move_lefts span {
    background: url("../images/arrow-left.png") no-repeat left top
}

#ZhiYe .move_lefts:hover span {
    background: url("../images/arrow-left.png") no-repeat left top
}

#ZhiYe .move_rights {
    right: -180px;
}

#ZhiYe .move_rights span {
    background: url("../images/arrow-right.png") no-repeat left top;
}

#ZhiYe .move_rights:hover span {
    background: url("../images/arrow-right.png") no-repeat left top;
}