@charset "UTF-8";

/**
 * @desc 公司新官网首页样式
 * @author hongyu
 * @date 2022-5-30
 */
html,
body {
    height: 100%;
    width: 100%;
    min-width: 1920px;
    overflow-x: auto;
}

body::-webkit-scrollbar {
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #999;
}

body::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: #ededed;
}

#newIndex {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}


/* Comment 通用逻辑 S */


.index-item .index-item-title {
    display: flex;
    justify-content: flex-start;
}

.index-item .index-item-title .index-item-title-content {
    height: 36px;
    font-family: Source Han Sans CN;
    font-weight: 700;
    color: #303030;
    font-size: 36px;
}

.index-item .index-item-title .index-item-title-icon {
    height: 36px;
    font-family: Source Han Sans CN;
    font-weight: 700;
    color: #eaeaea;
    font-size: 36px;
    margin: 2px 0 0 20px;
}


/* Comment 通用逻辑 E */