/* 门户基础样式 */
/*清除元素默认的内外边距  */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* 页面基础设置 */
html {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 0.729vw;
    line-height: 1.5;
    background-color: #fff;
}

/*让所有斜体 不倾斜*/
em,
i {
    font-style: normal;
}

/*图片没有边框   去掉图片底侧的空白缝隙*/
img {
    border: 0;      /*ie6*/
    vertical-align: middle;
}

/*让button 按钮 变成小手*/
button {
    cursor: pointer;
}


/* 取消列表前面默认小点 */
ul {
    list-style: none;
}

/* 取消输入框外框 */
input {
    outline: none;
}

/*取消链接的下划线*/
a {
    text-decoration: none;
}

/* 页面滚动条 */
/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
  



/* 滚动槽 */
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
    background-color: rgba(230, 230, 230, .2);
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: rgba(128, 128, 128, .5);

}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(128, 128, 128, .8);
}