/*global*/

body {
    color: #fff;
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    line-height: 1.28em;
    background: #191919;
    margin: 0 auto;
    /*overflow-x: hidden;*/
    /*    min-width: 900px;*/

height: 100%;
    /*background: #191919 url("../images/bg.jpg");*/
}
html {
    height: 100%;
}
* {
    margin: 0;
    padding: 0;
}
input {
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    outline: none;
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p, button {
    padding: 0;
    margin: 0;
    border: 0;
}
ol, ul {
    list-style: none;
}
li {
    list-style-type: none;
}
a:hover {
    color: #F3733A;
    border: 0;
}
a {
    cursor: pointer;
    -moz-outline-style: none;
    text-decoration: none;
    outline: none;
    color: #9C9C9C;
    outline: none;
    border: 0;
    -webkit-transition: color 0.1s linear;
    -moz-transition: color 0.1s linear;
    -o-transition: color 0.1s linear;
    transition: color 0.1s linear;
}
.clearfix {
    display: block;
}
img {
    border: 0 none;
}
/*header*/

.header {
    width: 100%;
    background: #222;
    border-bottom: 1px solid #111;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06), 0 0 1px rgba(255, 255, 255, 0.15) inset;
    top: 0;
    position: relative;
    z-index: 1000;
    min-width: 1000px;
}
.headerContainer {
    margin: 0 auto;
    max-width: 1440px;
    position: relative;
}
.logo {
    background: url("/images/logo.png") top center no-repeat;
    display: inline-block;
    color: #E7E7E7;
    font: bold 55px"Trebuchet MS";
    height: 98px;
    width: 170px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
    line-height: 98px;
    text-shadow: 2px 2px 2px #000;
}
.logo:hover {
    color: #DADADA;
    text-shadow: 2px 2px 10px #000;
}
.nav {
    display: inline-block;
    vertical-align: top;
    min-width: 765px;
}
.nav > li {
    position: relative;
    display: inline-block;
    float: left;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.nav > li > a {
    display: block;
    font-size: 16px;
    border-left: 1px solid #141414;
    box-shadow: inset 1px 0 0 #292929;
    line-height: 105px;
    padding: 0 45px;
    vertical-align: top;
    text-shadow: 1px 1px 0 #000;
    font-family: Oswald, Arial Bold, sans-serif;
    color: #D5D5D5;
}
.nav > li:last-child > a{
    border-right: 1px solid #111010;
    box-shadow: inset 1px 0 0 #2E2E2E, inset -1px 0 0 #2E2E2E;
}
.caret {
    border-top: 8px solid #AAA;
    border-right: 5px solid rgba(0, 0, 0, 0);
    border-left: 5px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    margin-left: 5px;
    vertical-align: middle;
    -webkit-transition: color 0.1s linear;
    -moz-transition: color 0.1s linear;
    -o-transition: color 0.1s linear;
    transition: color 0.1s linear;
}
.nav > li:hover {
    background-color: rgba(37, 40, 43, 1);
}
.active {
    background-color: rgba(37, 40, 43, 1);
    color: #F3733A !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) inset, inset 1px 0 0 #363636, inset -1px 0 0 #363636 !important;
    position: relative;
    top: -1px;
}
.nav > li:hover > a {
    color: #F3733A;
    -webkit-transition: color .2s linear;
    transition: color .2s linear;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0) inset, inset 1px 0 0 rgba(0, 0, 0, 0), inset -1px 0 0 rgba(0, 0, 0, 0) !important;
}
.nav > li:hover > a > .caret {
    border-top-color: #F3733A;
}
.nav > li > div {
    background-color: rgba(37, 40, 43, 1);
    border-top: 1px #161616 solid;
    box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.14);
    border-left: 1px solid #141414;
    display: none;
    margin: 0;
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 104px;
    z-index: -10000;
    visibility: hidden;
    -webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
}
.nav > li:hover > div {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
}
.nav > li > div ul {
    max-width: 850px;
    margin: 0 auto;
    border-right: 1px solid #141414;
    padding: 0 10px;
}
.nav > li > div ul > li {
    /*display: inline-block;*/
}
.nav > li > div ul > li:first-child > a{
    box-shadow: inset 0 0 0 #2F2F2F;
}
.nav > li > div ul > li > a {
    color: #9c9c9c;
    display: block;
    padding: 15px 0;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px #222222 solid;
    box-shadow: inset 0 1px 0 #2F2F2F;
}
.nav > li > div ul > li > a img {
    position: relative;
    bottom: 0px;
    -webkit-transition: bottom 0.2s linear;
    -moz-transition: bottom 0.2s linear;
    -o-transition: bottom 0.2s linear;
    transition: bottom 0.12s linear;
}
.nav > li > div ul > li:hover > a img {
    position: relative;
    bottom: 5px;
    -webkit-transition: bottom 0.2s linear;
    -moz-transition: bottom 021s linear;
    -o-transition: bottom 0.2s linear;
    transition: bottom 0.2s linear;
}
.nav > li > div ul > li > a:hover{
    color:#F3733A;
}
/*main*/

.main {
    margin: 0 auto;
    max-width: 1440px;
    min-width: 1000px;
    margin-top: 10px;
}
.indexpage .main {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/*footer*/

.footerContainer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 0;
    color: #636363;
}
.copyrightCenter {
    display: inline-block;
}
.footerMenu {
    display: inline-block;
    float: right;
}
.footerMenu li {
    display: inline-block;
}
.footerMenu li a {
    display: inline-block;
    font-family: Oswald, open sans, Arial bold, sans-serif;
    font-size: 14px;
    padding: 0 20px;
    border-right: 1px #3d3d3d solid;
}
.footerMenu li:last-child a {
    border-right: 0;
}
/*imglist banner*/

ul.imglist {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: none;
    border-bottom: 1px #2B2B2B solid;
}
.androidBtn, .iosBtn {
    width: 226px;
    display: block;
    position: absolute;
    right: 3%;
}
.androidBtn {
    bottom: 130px;
    background: url(/images/download_sprites.png) no-repeat 0 0px;
    height: 80px;
}
.iosBtn {
    bottom: 16px;
    background: url(/images/download_sprites.png) no-repeat 0 -84px;
    height: 110px;
}
li.imglist-slide {
    position: absolute;
    display: none;
}
ul.imglist-controls {
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 9999;
}
ul.imglist-controls.v-centered li.imglist-next a {
    right: 0;
}
ul.imglist-controls.v-centered li.imglist-prev a {
    left: 0;
}
ol.imglist-markers {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: absolute;
    bottom: 20px;
}
ol.imglist-markers.h-centered {
    text-align: center;
}
ol.imglist-markers li {
    display: inline;
}
p.imglist-caption {
    display: block;
    color: #fff;
    width: 200px;
    margin: 0;
    padding: 20px 15px;
    position: absolute;
    bottom: 0;
    text-align: center;
    right: 5%;
    bottom: 10%;
    border-radius: 3px;
    font-size: 25px;
    border-bottom: 5px solid #852218;
    text-shadow: -1px -1px 0 #852218;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E65644), to(#BD3929));
    background: -moz-linear-gradient(top, #E65644, #BD3929);
    FILTER: progid: DXImageTransform.Microsoft.Gradient(gradientType=0, startColorStr=#E65644, endColorStr=#BD3929);
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}
a:hover p.imglist-caption {
    color: #fff;
}
a:hover p.imglist-caption:hover {
    color: #fff;
    border-bottom: 5px solid #A8291A;
    text-shadow: -1px -1px 0 #A8291A;
    background: #D65641;
}
.imglist-slide: nth-last-child(2) p.imglist-caption {
    left: 5%;
}
ul.imglist-controls.v-centered li a {
    position: absolute;
    display: block;
    padding: 10px;
    background: #fff;
    color: #000;
    text-decoration: none;
}
ul.imglist-controls.v-centered li a:hover {
    background: #000;
    color: #fff;
}
ol.imglist-markers li a {
    padding: 7px;
    background: rgb(255, 255, 255);
    color: #fff;
    margin: 5px;
    text-decoration: none;
    display: inline-block;
    border-radius: 25px;
    box-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
}
ol.imglist-markers li.active-marker a, ol.imglist-markers li a:hover {
    background: #F3733A;
}
/*subpage*/

.subTitle {
    font-size: 70px;
    padding: 20px 20px 30px 20px;
    display: block;
    line-height: 70px;
    color: #BDBDBD;
    text-shadow: 2px 2px 2px #000;
    font-family: Oswald, Arial, sans-serif;
    font-weight: 400;
}
.subContent {
    line-height: 20px;
    color: #9C9C9C;
    padding: 0 20px 20px 20px;
    text-align: justify;
    text-justify: inter-ideograph;
}
.subContent p {
    font-size: 14px;
    text-shadow: 1px 1px 0px #0A0A0A;
}
.otherpage .main {
    padding-bottom: 130px;
}
#wrap {
    position: relative;
    min-height: 100%;
}
.otherpage #footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #0F0F0F;
    height: 100px;
    border-top: 1px #1D1D1D solid;
}
.otherpage .footerContainer .mainContent {
    padding: 10px 20px 0 20px;
}
.subContent .listInfo {
    margin-top: 20px;
}
.subContent .listInfo li {
    display: inline-block;
}
.subContent .listInfo > li > a {
    display: inline-block;
    padding: 20px;
    border: 1px #222 solid;
    background: #1B1C1D;
    border-radius: 0;
    margin-right: 28px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.21);
    margin-bottom: 28px;
    width: 100%;
    min-width: 1400px;
    box-sizing: border-box;
}
.DataCotent .listInfo > li > a{
    border: 1px #353535 solid;
    background: #2C2C2C;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.21);
}
.subContent .listInfo > li > a:hover {
    box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.4);
/*    border: 1px #383838 solid;
    background: #2D2D2D;*/
    border: 1px #272727 solid;
    background: #1C1E1F;
}
.imageContainer {
    display: inline-block;
    min-height: 74px;
    vertical-align: top;
    margin-right: 20PX;
    float: left;
}
.InfoContent {
    display: inline-block;
    vertical-align: top;
    width: 85%;
    float: right;
}
.subContent h3 {
    font-family: Oswald, Arial, sans-serif;
    font-weight: 400;
    color: #F3733A;
    font-size: 17px;
}
.InfoContent a {
    display: block;
}
.subContent .listInfo > li > a:hover .InfoContent h3 {
    padding-left: 10px;
}
.subContent .listInfo > li > a, .subContent .listInfo > li > a:hover h3, .subContent .listInfo > li > a > h3, .InfoContent h3, .active {
    -webkit-transition: all .26s ease-out 0s;
    -moz-transition: all .26s ease-out 0s;
    -o-transition: all .26s ease-out 0s;
    transition: all .26s ease-out 0s;
    z-index: 5;
    -webkit-backface-visibility: hidden;
}
.InfoContent i {
    color: #9C9C9C;
    display: block;
    line-height: 20px;
    padding-top: 5px;
    text-align: left;
    font-style: normal;
}
/*.otherpage .headerContainer{
    position: static;
}*/

.line {
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    height: 1px;
    background: #141414;
    box-shadow: 1px 1px #202020;
}
.pagelists {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #161413;
}
.pagelists span, .pagelists a {
    padding: 1px 5px;
    border: 1px solid #3A3A3A;
    margin: 0 3px;
}
.manageContainer {
    font-size: 12px;
    line-height: normal;
    margin-top: 10px;
    padding-top: 7px;
    border-top: 1px #252525 solid;
}
.postInfo {
    display: inline-block;
    color: #868686;
    font-style: italic;
}
.postContainer .postInfo {
    margin-top: 7px;
    margin-bottom: 20px;
}
.more {
    display: inline-block;
    margin-left: 15px;
    float: right;
    vertical-align: top;
}
.supportContent h3 {
    margin-bottom: 20px;
}
.supportContent .listInfo > li > a {
    padding: 15px 34px 15px 15px;
}
/*home bottom*/

.hcIntro {
    padding: 43px 0;
    background: #363535;
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.14);
    border-top: 3px #3F3F3F solid;
    border-bottom: 2px #383838 solid;
}
.introImg {
    display: inline-block;
    vertical-align: top;
    max-width: 60%;
}
.introContent {
    display: inline-block;
    margin: 4% 0 0 4%;
    max-width: 35%;
}
.introContent h3 {
    font-size: 39px;
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 44PX;
    font-family: Open sans, Arial bold, Verdana, sans-serif;
    font-weight: 800;
}
.introContent ul {
    margin-left: 5px;
}
.introContent ul li {
    font-size: 17px;
    padding: 15px 28px;
    font-family: Arial, Verdana, sans-serif;
    color: #B4B4B4;
    background: url(/images/listArrow.png) no-repeat left center;
    line-height: 120%;
}
.hcGallery {
    background: #262626;
    padding: 80px 0 40px 0;
    border-top: 1px #242424 solid;
}
.hcGallery ul {
    padding-left: 60px;
}
.hcGallery ul li {
    display: inline-block;
    margin-bottom: 40px;
    margin-left: -40px;
    max-width: 50%;
}
.hcGallery ul li img {
    max-width: 100%;
}
.gameList {
    background: #202020;
    padding: 30px 0 25px 0;
    border-top: 1px #2C2C2C solid;
}
.gameList ul {
    margin: 0 auto;
    text-align: center;
}
.gameList h3 {
    font-family: Open sans, Arial bold, Verdana, sans-serif;
    font-size: 17px;
    color: #B4B4B4;
    text-indent: -2EM;
    text-align: center;
}
.gameList h3 span {
    font-family: Arial, Verdana, sans-serif;
    font-weight: 100;
    font-style: italic;
    color: #9E9E9E;
}
.gameList ul li {
    display: inline-block;
}
.gameList ul li a {
    color: #FFF;
    display: inline-block;
    padding: 20px 24px;
    text-decoration: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -webkit-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
}
.gameList ul li a:hover {
    opacity: 1;
    -webkit-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
}
/*HEROlist*/

.heroTopTab {
    /*  margin-bottom: 20px;*/
    border-bottom: 2px #541A16 solid;
    overflow: hidden;
}
.heroTopTab li, .heroTopOption li {
    display: inline-block;
    float: left;
    margin-left: 3px;

}
.heroTopOption {
    background: #141414;
    margin-bottom: 20px;
    border-bottom: 1px #202020 solid;
    box-shadow: 0 -1PX 0PX #000 inset, 0 1PX 0PX #000 inset;
    overflow: hidden;
}
.heroTopOption li a {
    display: inline-block;
    padding: 10px;
}
.heroTopTab li a {
    display: inline-block;
    padding: 10px 20px;
    background: #252525;
    margin-right: -2px;
}
.heroTopTab li a:hover {
    background: #2E2E2E;
    color: #fff;
}
.heroTopTab li a.tabOn {
    background: #541A16!important;
    color: #E0E0E0;
    font-weight: bold;
}
/*heroDisplay*/

.heroGallery {
    display: inline-block;
    min-width: 298px;
    margin-right: 20px;
    margin-top: 30px;
    position: relative;
    background: #242424;
    /*padding: 11px;*/

box-shadow: 0 1px 5px #131313;
    border: 1px #181818 solid;
}
.galleryContainer {
    position: relative;
}
.heroGalleryMask {
    /* background: url(/images/heroGalleryMask.png) no-repeat; */

width: 100%;
    height: 528px;
    background-size: cover;
    position: absolute;
    top: 0;
    border: 22PX #2B2B2B solid;
    left: 0;
    box-shadow: 0PX 2PX 3PX rgba(34, 34, 34, 0.81), 0 0PX 5PX rgba(255, 255, 255, 0.29) inset;
    box-sizing: border-box;
}
.heroGallery img {
    max-width: 298px;
}
.heroAttr li {
    padding: 17px 20px;
    background: #191919;
    margin: 0 20px 3px 20px;
    color: #9C9C9C;
    font-size: 14px;
    text-shadow: 1px 1px 0px #0A0A0A;
}
.heroAttr li:last-child {
    margin-bottom: 20px;
}
.heroAttr li span {
    color: #F3733A;
    text-align: right;
    display: inline-block;
    float: right;
    font-style: italic;
    font-weight: bold;
    font-size: 23px;
}
.heroGallery h3.DataTitle {
    box-shadow: 0 0 0 #000;
    background: none;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
    text-indent: 0;
    line-height: 200%;
    margin-top: 11px;
}
.InfoContainer,.ItemInfoContainer {
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
    width: 67%;
}
.ItemInfoContainer{
    width: 100%
}
h3.DataTitle {
    color: #CACACA;
    background-color: #242424;
    text-indent: 25px;
    font-size: 23px;
    font-family: Oswald, Arial, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 200%;
    box-shadow: 0 1px 5px #131313;
}
.ProfileContent {
    position: relative;
    color: #CACACA;
    background-color: #242424;
    font-size: 23px;
    font-weight: 400;
    font-size: 28px;
    box-shadow: 0 1px 5px #131313;
    padding: 20px 25px;
    z-index: -1;
}
.ItemInfoContainer .ProfileContent{
    margin-bottom: 26px;
}
.heroAvatar {
    display: inline-block;
    margin-right: 12px;
    width: 71px;
    background: #363636;
    padding: 5px;
    box-shadow: 0 0 3px #000
}
.ItemInfoContainer .ProfileContent .heroAvatar {
    width: 80px;
    padding: 0;
    }
.heroTitle {
    display: inline-block;
    vertical-align: top;
    font-size: 22px;
    color: #9C9C9C;
    line-height: 150%;
}
.ItemInfoContainer .heroTitle{
    font-size: 14px;
}
.heroTitle span {
    font-size: 40px;
    color: #fff;
    line-height: 40px;
    font-weight: 600;
    font-family: Open sans, Arial bold, Verdana, sans-serif;
}
.skillList, .DataCotent {
    padding: 25px;
    background: #242424;
    border-top: 5px solid #383838;
    height: 100%;
    box-shadow: 0 1px 5px #131313;
    color: #9C9C9C;
    font-size: 16px;
    margin-bottom: 26px;
    text-shadow: 1px 1px 0px #0A0A0A;
    line-height: 150%;
}
.heroDataContent {
    padding: 30px 20px;
}
.skillList li ,.itemList li{
    padding: 15px;
    background: #1A1A1A;
    margin-bottom: 20px;
    box-shadow: 0px 0px 2px #2E2E2E;
    border: 1px #161616 solid;
    overflow: hidden;
    zoom: 1;
}
.skillList li: last-child {
    margin-bottom: 0;
}
.skillIcon {
    display: inline-block;
    margin-right: 10px;
    width: 70px;
}
.skillContent {
    display: inline-block;
    vertical-align: top;
    max-width: 80%;
    text-shadow: 1px 1px 0px #0A0A0A;
    color: #9C9C9C;
    padding-top: 3px;
    line-height: 150%;
}
.skillName {
    font-weight: bold;
    color: #CACACA;
    font-size: 107%;
}
.skillText p {
    color: #F3733A;
    font-size: 14px;
}
.heroListContent .listInfo li {} .heroListContent .listInfo li a {
    margin-right: 15px;
    text-align: center;
    min-width: 0;
    width: auto;
    margin-bottom: 15px;
    padding: 10px 10px 5px 10px;
}
.heroListContent .listInfo li a img {
    width: 90px;
}
.itemContent .listInfo li a img {
width: 84px;
}
.itemContent .listInfo li a p{
    width: 84px;
}
.heroListContent .listInfo li a p {
    font-size: 12px;
    width: 90px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-top: 5px;
}
table {
    /*border-collapse: collapse;*/

border-spacing: 2px;
    /*margin-bottom: 10px;*/
    border-style: solid;
    /*border-width: 1px 0 0 1px;*/

border-width: 0;
    border-color: #3C3C3C;
    width: 100%;
}
table td, table th {
    padding: 15px;
    border-style: solid;
    border-width: 0;
    border-color: #3C3C3C;
    vertical-align: middle;
    text-align: center;
    background: #1A1A1A;
}
table th {
    background: #131313;
}
table tr td:first-child {
    background: #131313;
}
table tr td span {
    padding: 5px 0;
    font-size: 14px;
    display: block;
}
.columns{
    display: inline-block;
    font-size: 14px;
    margin: 10px 0;
    float: left;
    position: relative;
    margin-top: 0;
}
ul.columns{
    margin-bottom: 0;
    float: right;
}
.itemList li {
    padding: 20px;
    padding-bottom: 0;
}
ul.columns li{
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
    padding: 0px;
/*background: #222222;
    box-shadow: 0px 0px 2px #181818;*/
}
/*ul.columns li img{
    width:90%;
}*/
/*ul.columns li:first-child{
	margin-left: 0;
}*/
.Rfloat{
    float: right;
}
.Lfloat{
    float: left;
}
.itemName{
    font-size: 16px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: top;

}
.columns .heroAvatar {
width: 78px;
margin-right: 0;
padding: 0;
}
.faceMask {
position: absolute;
top: -2px;
left: -4px;
/*background: url(../images/hero_icon_frame_1.png);*/
width: 85px;
height: 85px;
background-size:cover;
bottom: 0;
}
.skillMask,.itemFrame {
position: absolute;
top: -4px;
left: -5px;
background: url(../images/equip_frame_white.png);
width: 89px;
height: 89px;
background-size: cover;
bottom: 0;
z-index: 111;
}
.ItemInfoContainer .ProfileContent .itemFrame {
    top: 16px;
    left: 17px;
    width: 95px;
    height: 95px;
}
.itemContent ul.columns li{
    margin-left: 0;
    margin-right: 15px;
}
.popUp{
    display: none;
    position: absolute;
    z-index: 9999;
    width: 260px;
    padding: 20px;
    background: #202020;
    color: #CACACA;
    border: 1px solid rgba(8, 8, 8, 1);
    line-height: 30px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 0.9;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 3px 3px 1px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 3px 3px 1px;
    box-shadow: rgba(0, 0, 0, 0.4) 3px 3px 1px;
}
.popUpItem{
    font-size: 14px;
}
/*.row{width: auto;
margin-left: -0.9375rem;
margin-right: -0.9375rem;
margin-top: 0;
margin-bottom: 0;
max-width: none;}*/
.popUpTitle{
   font-size: 26px;
    text-align: center;
    padding: 10px 0;
}
.popUp .columns .heroAvatar {
width: 62px;
}

.popUp .skillMask{
    top: -3px;
    left: -4px;
    width: 71px;
    height: 71px;
}
.itemContent{
    overflow: hidden;
}
.itemContent ul.columns{
        float: none;
}

.itemContent ul.columns li:first-child{
    margin-left: 0;
}
a.closeBtn{
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 15px;
    font-size: 18px;
    padding: 6px 10px;
    background: #131313;
    color: #B2B2B2;
    border-radius: 19px;
    height: 17px;
    border: 2px #6C6C6C solid;
}
a.closeBtn:hover{
    background: #1A1A1A;
    border: 2px #898989 solid;
}
/*mobile*/


@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 414px),only screen and (min--moz-device-pixel-ratio: 1.5) and (max-device-width: 414px) {
    .main{
        min-width: 0;
    }
    .logo {
        margin: 0px auto;
        display: block;
        padding: 5px 0;
        display: none;
   }
   .subTitle {
       font-size: 50px;
  }
  .header{
    min-width: 0;
  }
  .nav{
    min-width: 0;
  }
  .nav > li{
    position: inherit;
  }
  .nav > li > a {
      font-size: 12px;
/*      border-left: none;*/
      padding: 20px 10px 20px 10px;
/*      box-shadow: none;*/
      line-height: normal;
 }
 .nav > li > div{
    top:56px;
 }
 .nav > li:nth-child(4) > a {
     border-right: none;
     box-shadow: none;
}
.InfoContainer {
    width: 100%;
}
.heroTitle span {
    font-size: 20px;
}
.skillIcon {
    width: 20%;
}
.skillContent {
    max-width: 70%;
}
.heroListContent .listInfo li a img {
    width: 56px;
}
.heroListContent .listInfo li a p {
    width: 56px;
}
.heroGallery {
    margin-top: 0;
    margin-right: 0;
    padding: 0;
}
.introContent {
    display: block;
    max-width: 100%;
}
.introContent h3 {
    font-size: 21px;
    margin-bottom: 2px;
    line-height: 140%;
}
.introImg {
    max-width: 90%;
    margin-left: 4px;
}
.hcGallery ul li {
    margin-bottom: 14px;
    margin-left: -10px;
    max-width: 49%;
}
.hcGallery {
    padding: 40px 0 20px 0;
}
.hcGallery ul {
    padding-left: 0;
}
.active {
    top: 0;
}
.heroTopTab li a {
    padding: 10px 9px;
}
.heroTopOption li a {
    padding: 7px;
}
.footerContainer {
    padding: 10px 0;
}
.copyrightCenter {
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
}
.androidBtn, .iosBtn {
    display: inline-block;
    background: url(/images/download_sprites.png) no-repeat;
    position: relative;
}
.androidBtn {
    width: 155px;
    height: 48px;
    bottom: 0;
    background-position: 0 -5px;
    background-size: cover;
    left: 0;
    margin-bottom: 23px;
}
.iosBtn {
    width: 144px;
    height: 70px;
    bottom: 0;
    background-position: 0px -56px;
    background-size: cover;
}
.BtnContainer {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -151px;
}
.footerMenu li a {
    font-size: 12px;
    padding: 3px 10px;
    border-right: 1px #1F1F1F solid;
}
.heroGallery img {
    max-width: 100%;
}
.heroGalleryMask {
    border: 30px #2B2B2B solid;
    height: 101%;
}
.skillList, .DataCotent,.skillText p {
    font-size: 100%
}
table td, table th {
    padding: 10px;
}
.skillList, .DataCotent {
    padding: 10px;
}
ul.columns li{
  /*  padding: 5px;*/
    margin-bottom: 15px;
}
ul.columns li img {
    width: 57px;
    padding: 0;
}
ul.columns {
    padding-top: 15px;
    border-top: 1px #202020 solid;
    box-shadow: 0 -1px 0px #131313;
}
.subContent .listInfo > li > a{
    min-width: 0;
}
.ProfileContent{
    padding: 20px 10px;
}
.InfoContent{
    width: 100%;
    display: block;
}
/*.subContent .listInfo > li > a{
    text-align: center;
}*/
.imageContainer{
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
.subContent .listInfo{
    margin-top: 0px;
}
.otherpage .footerContainer .mainContent{
    padding: 10px 0 0 0;
}
.footerMenu{
    float: none;
    width: 100%;
}
.heroProfile{
    padding: 15px 10px;
}
.heroTitle{
    /*line-height: 100%;*/
    max-width: 60%;
}
h3.DataTitle{
    text-indent: 10px;
}
ul.columns .heroAvatar{
    width: 57px;
}
.skillMask{
    top: -3px;
    left: -4px;
    width: 66px;
    height: 66px;
}
.ItemInfoContainer .ProfileContent .itemFrame{
    left: 2px;
}
.itemContent .listInfo li a img{
    width: 61px;
}

}
/*@media only screen and (-webkit-min-device-pixel-ratio:2) {
.heroGallery img {
    max-width: 100%;
}
.heroGalleryMask{
    border: 30px #2B2B2B solid;
    height: 101%;
}
}*/
.noUse{
    display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 414px){
.test1234{
    display: none;
}
}


/**/
.play{
    position: absolute;
    width: 100%;
    height: 100%;
}
.play a.playBtn{
position: absolute;
display: block;
top: 0;
left: 0;
z-index: 3;
width: 200px;
height: 200px;
background-image: url(../images/btn_play_vg.png);
background-repeat: no-repeat;
background-position: center center;
-webkit-background-size: 54px 52px;
-moz-background-size: 54px 52px;
-o-background-size: 54px 52px;
background-size: 54px 52px;
top: 50%;
margin-top: -100px;
left: 50%;
margin-left: -100px;
opacity: .85;
-moz-transition: opacity 0.25s ease-in-out;
transition: opacity 0.25s ease-in-out;
}
.play a:hover,.play a:hover span {
opacity: 1;
-moz-transition: opacity 0.25s ease-in-out;
transition: opacity 0.25s ease-in-out;
}
.play a span {
display: block;
width: 100%;
height: 100%;
background-image: url(../images/bg_play_vg.png);
background-repeat: no-repeat;
opacity: 0.65;
-moz-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
text-indent: -9999px;
}
.videoActive{
    display: none;
}