/* static/css/base.css */
/* 全局重置 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Microsoft Yahei",sans-serif;
    color: #333;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.6;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #333;
}
a:hover{
    color: #e64320;
}
img{
    border: none;
    max-width: 100%;
}
input,button{
    outline: none;
    border: none;
}

/* 通用容器 */
.wrap{
    width: 1200px;
    margin: 0 auto;
}
.container{
    padding: 20px 0;
}

/* 通用模块标题 */
.module-title{
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.module-title .more{
    font-size:13px;
    color:#999;
    font-weight:normal;
}

/* 分割线 */
.split-line{
    height:1px;
    background:#eee;
    margin:12px 0;
}

/* 新增左侧侧边栏icon图片适配样式 */
.home-left-cate .cate-item .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    object-fit: contain;
}