/*article, aside, dialog, footer, header, section, footer, nav, figure, menu {*/
/*display: block*/
/*}*/
* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
}

body{
    overflow: hidden; /*自定义滚动条*/

}

body {
    font: 12px/1.5 "Microsoft YaHei", tahoma, arial, Hiragino Sans GB, \5b8b\4f53
}

ul, ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
    /*color: white;*/
}

/*顶部导航*/
.header {
    height: 80px;
    top: 0;
    background-color: #2b2b2b;
    width: 100%;
    position: fixed;
    min-width: 1200px;
    z-index: 99999;

}

.header .brand {
    width: 1200px;
    margin: 0 auto;
    position: relative;

}

.header .brand .logo {
    background-image: url(/static/index/img/logo/logo_no_color.png);
    height: 40px;
    width: 131px;
    position: absolute;
    top: 20px;
}

.menu {
    font: 16px "Microsoft YaHei";
    color: white;
    font-weight: bold;
    position: absolute;
    right: 0;
    height: 80px;
}

.menu > ul {
    height: 100%;
}

.menu > ul > li {
    float: left;
    margin: 0 40px;
    height: 100%;
}

.menu > ul > li > a {
    height: 100%;
    display: block;
    width: 4.5em;
    text-align: center;
    line-height: 70px;
    position: relative;
}

.menu > ul > li > a.on:after {
    content: "";
    background-color: white;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
}

.menu > ul > li > a:hover:after {
    content: "";
    background-color: white;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
}

/*无flash提示*/
.no-flash {
    display: none;
    width: 100%;
    top: 0;
    color: black;
    background-color: #ff4c4c;
    position: fixed;
    z-index: 999999;
    line-height: 1;

}
.no-flash img{
    height: 2em;
    vertical-align: middle;
}
.no-flash a{
    color: white;
}

/*底部*/
.footer {
    /*min-height: 400px;*/
    background-color: #2b2b2b;
    width: 100%;
    color: white;
    min-width: 1200px;
}

.footer .content {
    margin: 0 auto;
    width: 1200px;
    /*height: 100%;*/
    padding-top: 80px;
    overflow: hidden;
}

.footer .one-row {
    margin: 0 auto;
    width: 960px;
    /*height: 250px;*/
    position: relative;
    overflow: hidden;

}

.footer .two-row {
    text-align: center;
    color: #7d7d7d;
    font-size: 12px;
    width: 960px;
    margin: 20px auto;

}

.footer .link-area {
    float: left;
    height: 100%;
    /*width: 265px;*/

}

.footer .link-area .hz {
    float: left;
    height: 100%;
    /*width: 190px;*/
    margin-right: 2em;

}

.footer .link-area .jm {
    float: right;
    height: 100%;
    /*width: 75px;*/

}

.footer .link-area .link-title {
    font-size: 18px;
    margin-bottom: 20px;

}

.footer .link-area ul {

}

.footer .link-area ul > li {

}

.footer .link-area ul > li > a {
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
}

.footer .link-area ul > li > a:hover {
    color: white;
}

.footer .phone-area {
    float: right;
    height: 100%;
    width: 265px;
    font-size: 28px;
    text-align: center;

}

.footer .phone-area .title {
    line-height: 1;

}

.footer .phone-area .number {
    margin-top: 1em;
    border: solid 4px white;

}

/*中部内容区域*/
.main {
    margin-top: 80px;
    min-width: 1200px;
    overflow: hidden; /*消除子元素margin-top无效问题*/
}


/*顶部横幅*/
.title-brand{
    height: 500px;
    /*width: 100%;*/
    background: white no-repeat scroll center;
    background-size: cover;
    min-width: 1200px;
}