/* 清除浮动的类 */
.cf {
    *zoom: 1;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

/* 全局 HTML 设置 */
html {
    color: #222;
    background: #fff;
}

/* 去除 body 和 h2 的默认边距和内边距 */
body,
h2 {
    margin: 0;
    padding: 0;
}

/* 输入框占位符颜色 */
::-webkit-input-placeholder {
    color: #888;
}

:-moz-placeholder {
    color: #888;
}

::-moz-placeholder {
    color: #888;
}

:-ms-input-placeholder {
    color: #888;
}

/* 去除聚焦时的轮廓 */
:focus {
    outline: none;
}

/* h2 标题样式 */
h2 {
    font-size: 100%;
    font-weight: bold;
    margin: 0;
    font-weight: normal;
    line-height: 1.2;
}

/* 左浮动类 */
.fl {
    float: left;
}

/* 搜索文本标题样式 */
.sr-txt-title {
    margin-bottom: 20px;
}

/* 搜索文本 h2 样式 */
.sr-txt-h2 {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    word-break: break-word;
}

/* 设置 body 和 html 的字体大小 */
body,
html {
    font-size: 14px;
}

/* 盒模型设置 */
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* 基本信息列表样式 */
.basic-info-list {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
}

/* 基本信息列表项样式 */
.basic-info-list .bsc-item {
    float: left;
    width: calc(50% - 10px);
    color: #555;
    margin-bottom: -1px;
    display: flex;
    font-size: 14px;
}

/* 基本信息列表项奇数项样式 */
.basic-info-list .bsc-item:nth-child(odd) {
    margin-right: 20px;
}

/* 基本信息列表项标签样式 */
.basic-info-list .bsc-item .bac-item-label {
    border: 1px solid #e9eef4;
    color: #222;
    width: 50%;
    word-break: break-word;
    border-right: none;
    background: #f8fafc;
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

/* 基本信息列表项值样式 */
.basic-info-list .bsc-item .bac-item-value {
    border: 1px solid #e9eef4;
    color: #666;
    width: 50%;
    word-break: break-word;
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

/* 图标文本样式 */
.item.icon-text {
    flex-shrink: 0;
    position: relative;
    height: 20px;
    width: auto;
    text-wrap: nowrap;
    font-size: 14px;
}