
/*底部悬浮表单*/
    .bottom-float {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 135px;
        background-color: rgba(0,0,0,.7);
    }


.bottom-float input {
	width: 200px;
	padding:12px;
	border-radius: 4px;
	margin-right:10px;
}

.bottom-float .submit{
	position: absolute;
	top:60px;
	right:77px;
	width: 188px;
	height: 38px;
	line-height: 38px;
	background-color: #D43434;
	border-radius:2px;
	color: #fff;
    cursor: pointer;
}

.bottom-float .close {
	position: absolute;
	top:10px;
	right: 10px;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	cursor: pointer;
}



/*底部调用文章*/
    .apply-record{
        width: 700px;
        margin-top:30px;
    }
    .apply-record .tab{
        height: 40px;
        line-height: 38px;
        border-bottom: 1px solid #ddd;
        font-size: 16px;
        color: #aaa;
        cursor: pointer;
    }
    .apply-record .tab .tab-item{
        list-style:none;
        display:inline-block;
        margin-right:20px;
        text-align:center;
		color: #666666;
    }
    .apply-record .tab .tab-item.active{
        color: #333333;
        font-weight: 700;
        border-bottom: 3px solid #d43c34;
    }
	
	.products .mainCont {
        display: none;
        width:100%;
        overflow: auto;
        padding-top:10px;
    }
    .products .mainCont.selected {
        display: block;
    }

    .products .mainCont p {
	color: #666666;
    font-size: 13px;
    margin-left: 8px;
    line-height: 24px;
    margin-top: 4px;
    overflow: hidden;
    height: 50px;
}

.mainCont li{
	margin-top: 5px;
	list-style: none;
	width: 333px;
    margin-right: 10px;
    display: inline-block;
    border-bottom: 1px dashed #ddd;
}

.mainCont a {
	color: #333333;
	width: 333px;
	position: relative;
	text-decoration:none;
	padding-left:10px;
	font-weight: bold;
	font-size: 16px;
	display: inline-block;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .mainCont a:before{
        position: absolute;
        content: '';
        display: inline-block;
        top: 8px;
        left: 3px;
        width: 4px;
        height: 4px;
        background-color: #d43c34;
    }

