/* Reset 默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* @font-face {
    font-family: myFont;
    src: url("/font/AlimamaFangYuanTiVF/AlimamaFangYuanTiVF-Thin.ttf") format("truetype");
  } */
/* 移除列表样式 */
ul, ol, li {
    list-style: none;
}

/* 移除链接下划线 */
a {
    text-decoration: none;
    color: inherit;
}
html{
    width: 100%;

}
/* 设置基础字体 */
body {
    width: 100%;
    font-family: myFont;
    line-height: 1.5;
    font-size: 14px;
}

/* 图片默认样式 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

/* 美化滚动条 - Webkit浏览器 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 表单元素样式重置 */
button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* 去除按钮默认样式 */
button {
    border: none;
    background: none;
    cursor: pointer;
}