html, body {
    font: 12px Arial, "微软雅黑";
    color: #929292;
    width: 100%;
    height: 100%;
    background: #fff;
}
body{
    overflow-x: hidden;
    min-width: 1200px;
}
* {
    padding: 0;
    margin: 0;
}
/*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*/


/*导航条样式开始*/
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;}*/

/*导航条样式结束*/
.box{
    width: 80%;
    margin: 4% 0 4% 9%;
}
.box>.myImg{
    width: 70%;
    text-align: left;
}
.box>.myImg>img{
    width: 100%;
}
.box>.text{
    width: 260px;
    overflow: hidden;
    position: fixed;
    border: none;
    background: rgb(78,81,96);
    padding: 80px 10px 80px 30px;
    top: 50%;
    margin-top: -106px;
    left: 76%;
}
.box>.text>.title-warp{
    width: 100%;
    overflow: hidden;
}
.box>.text>.title-warp>.title{
    font-family: "HELVETICANEUELTPRO-THEX", "微软雅黑";
    font-size: 22px;
    color: #fff;
    line-height: 34px;
    text-align: left;
}
.box>.text>.title-warp>.subtitle{
    font-family: "HELVETICANEUELTPRO-THEX", "微软雅黑";
    font-size: 14px;
    color: #fff;
    text-align: left;
}