html, body {
    font: 12px Arial, "微软雅黑";
    color: #929292;
    width: 100%;
    height: 100%;
    background: #fff;
}
body{
    overflow-x: hidden;
    min-width: 1200px;
}
* {
    padding: 0;
    margin: 0;
}

/*导航条样式开始*/
body::-webkit-scrollbar {/*滚动条整体样式*/

    width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/

    height: 1px;

}

body::-webkit-scrollbar-thumb {/*滚动条里面小方块*/

    border-radius: 10px;

    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);

    background: rgba(0,0,0,0.2);

}

body::-webkit-scrollbar-track {/*滚动条里面轨道*/

    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);

    border-radius: 10px;

    background: #EDEDED;

}
/*隐藏滚动条*/
body::-webkit-scrollbar {display: none;}

/*导航条样式结束*/


/*logo*/

.logo{
    position: fixed;
    font-size: 0;
    top: 2%;
    left: 3%;
    z-index:2;
    width: 70px;
    overflow: hidden;
}
.logo>a>img{
    display: inline-block;
    width:100%;
}
/*logo*/

/*头部布局*/
.header{
    padding-top: 30px;
}

.header p.title {
    /*font-family: "HELVETICANEUELTPRO-THEX", "微软雅黑";*/
    font-size: 22px;
    margin-left: 0;
    text-align: center;
    color: #444;
}

 .header p.subtitle {
    color: #c1c1c1;
     font-size: 14px;
     margin-top: 5px;
     margin-left: 0;
     text-align: center;
}

.content {
    width: 100%;
    min-width: 1050px;
    padding-bottom: 40px;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

/*头部布局*/
.other-box-bg{
    width: 100%;
    height: 360px;
    position: relative;
}
.other-box-bg>div{
    background-image: url("../../../imags/other/other-bg.jpg");
    background-color: #39383E;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 360px;
}

.other-box .text{
    width: 70%;
    margin: 5% auto;
    text-align: left;
    line-height: 26px;
}

.other-box .text>img{
    display: inline-block;
    width: 100%;
}
.team{
    margin-top: 4%;
}
.team>img{
    display: inline-block;
    width: 25%;
    margin-right: 3%;
}
.team>div{
    display: inline-block;
    width: 50%;
    text-align: left;
    vertical-align: top;
    line-height: 20px;
}
.team>div>span{
    display: block;
    line-height: 25px;
    letter-spacing:1px;
}



/*动态*/
.newstitem{
    padding: 2%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.newstitem img{
    width: 100%;
}
.newstitem span.year {
    font-weight: inherit;
    display: block;
    margin-bottom: 0;
    font-size: 20px;
    color: #929292;
    padding: 10px 0;
}
.newstitem p.title {
    font-weight: inherit;
    display: block;
    margin-bottom: 0;
    padding: 0;
    font-size: 16px;
    color: #c0c0c0;
}
.newstitem p.description {
    font-weight: inherit;
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    color: #c0c0c0;
    padding: 4px 0;
}
