/* 轮播图容器 */
.banner-img {
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
}

/* 轮播图图片 */
.banner-img > img {
    width: 2400px;
    position: absolute;
    left: 50%;
    margin-left: -1200px;
}

/* 背景文本图片 */
.bg-text > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 50%;
    margin: auto;
}

/* 产品列表项 */
.product-list li {
    padding-top: 0.5em;
    padding-bottom: 1em;
}

/* 检查列表卡片样式 */
.check-list {
    padding: 1em 0;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #ffffff;
    box-shadow: 0 0 5px #e9ecef;
}

/* 鼠标悬停时的效果 */
.check-list:hover {
    border: 1px solid #fff;
    box-shadow: 0 0 10px #dcdcdc;
}

/* 检查列表的 logo 样式 */
.check-list > p.logo {
    padding-bottom: 14px;
}

/* 检查列表中的图片 */
.check-list > p img {
    height: 90px;
}

/* 价格样式 */
.check-list .price {
    text-align: center;
    font-size: 17px;
}

/* 底部内容区域 */
.btm-content {
    margin: 0 1em;
    padding: 1em 0;
    border-top: 1px solid #e9ecef;
}

/* 底部内容标题 */
.btm-content > h6 {
    font-weight: bold;
    font-size: 17px;
    text-align: center;
}

/* 底部内容的描述 */
.btm-content > p {
    font-size: 14px;
    color: #939393;
    margin: .8em 0;
    height: 80px;
    overflow: hidden;
}

/* 价格加粗部分 */
.btm-content > div > b {
    color: #FF583C;
}

/* 价格的额外信息 */
.btm-content > div > span {
    font-size: 1em;
}

/* 底部按钮区域 */
.go-check {
    border-top: 1px solid #e9ecef;
    text-align: center;
    padding-top: 1em;
}

/* 底部的按钮样式 */
.go-check > a {
    text-decoration: none;
    color: #FF5722;
    border: 2px solid #FF5722;
    padding: 5px;
    border-radius: 6px;
    display: block;
    margin: 10px;
    font-size: 18px;
}

/* 鼠标悬停时的按钮样式 */
.go-check > a:hover {
    background-color: #FF5722;
    color: #fff;
}

/* 流程图图片 */
.flow-img img {
    max-width: 100%;
    padding: 0 1.6em;
}

