
.indexNav {
    padding: 20px 0;
}

ul.indexNav li {
    padding: 0px 0px 0px 80px;
    height: 75px;
    border-bottom: none;
    margin-right: 15px;
}

ul.indexNav li h4 {
    margin: 0px;
    font-weight: normal;
    color: #999999;
    font-size: 18px;
    margin-top: 10px;
    width: 200px;
}

ul.indexNav li {
    display: inline-block;
    border-right: 1px solid #ebebeb;
    background: url(/static/topic/jicai/images/4_06.png) left center no-repeat;
}

ul.indexNav li strong {
    color: #666666;
    font-size: 24px;
}

.inlBlock {
    display: inline-block;
}

.newFoot {
    background-color: #1b3641;
    text-align: center;
    color: #677980;
    height: 76px;
    line-height: 76px;
}

/*询价列表*/
.index-enquiry-new *, .index-enquiry-new :after, .index-enquiry-new :before {
    box-sizing: border-box;
}

.index-enquiry-new-title {

}

.index-enquiry-new-title-text {
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
}

.index-enquiry-new-title-text > a {
    color: #333;
    /*color: white;*/
}

.index-enquiry-new-title-text a:hover {
    text-decoration: none;
}

.index-enquiry-new-title-bottom {
    margin: 0;
    padding: 12px 10px 12px 0;
    border-bottom: 1px rgba(38, 44, 49, .1) solid;
}

.index-enquiry-new-title-bottom span {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    /*max-width: 50%;*/
    font-size: 12px;
    margin-right: 0;
}

/*

.index-enquiry-new-title-bottom span:last-child {
    float: right;
}
*/

.index-enquiry-new-title-bottom span em {
    color: #E7502D;
    font-weight: bold;
    padding: 0 4px;
    font-size: 13px;
    font-style: normal;
}

.index-enquiry-new-materials {
    padding: 12px 0 12px 0;
}

.index-enquiry-new-materials-container {
    color: #666;
    height: 27px;
    overflow: hidden;
}

.index-enquiry-new-materials-container span {
    margin: 0 2px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 27px;
    height: 27px;
}

.index-enquiry-new-props {
    margin: 0 0 10px;
}

.index-enquiry-new-props-container {
    height: 88px;
}

.index-enquiry-new-props-container > p {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    color: #666;
    font-size: 13px;
    line-height: 22px;
    margin: 0;
}

.index-enquiry-new-props-container > p > span.key {
    color: #999;
    font-size: 12px;
}

.index-enquiry-new-props-company-wrap {

}

.index-enquiry-new-props-company-wrap .company-warp {
    height: 16px;
    line-height: 16px;
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
}

.index-enquiry-new-action {
    display: none;
    position: absolute;
    bottom: 9px;
    z-index: 3;
    right: 10px;
}

.index-enquiry-new-action-left {
    display: none;
    position: absolute;
    bottom: 16px;
    z-index: 3;
    left: 10px;
}

.index-enquiry-new-action > a {
    color: #01AAED;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
    border-bottom: 1px solid #ebecec;
}

.index-enquiry-new-action > a:hover {
    color: #FF5722;
}

.index-enquiry-new {
    box-sizing: border-box;
    width: 286px;
    height: 280px;
    border: 1px solid #EBECEC;
    padding: 12px 16px 0;
    position: relative;
    background: #FFF;

}

.index-enquiry-new:hover {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .45);
}

.index-enquiry-new:hover .index-enquiry-new-action {
    display: block;
}

.index-enquiry-new-list-item {
    display: inline-block;
    margin: 0 10px 10px 0;
    vertical-align: top;
}

.index-enquiry-new-wrap {
    box-sizing: border-box;
    padding: 15px 0;
}

.key-categoryname {
    font-size: 12px;
    color: #7a7a7a !important;
    font-weight: normal;
}

/* 小喇叭图标css代码 */
.breath_light {
    opacity: 0.1;
    /* 不透明度 */
    overflow: hidden;
    /* 溢出隐藏 */
    animation-name: breath;
    /* 动画名称 */
    animation-duration: 700ms;
    /* 动画时长3秒 */
    animation-timing-function: ease-in-out;
    /* 动画速度曲线：以低速开始和结束 */
    animation-iteration-count: infinite;
    /* 播放次数：无限 */
    -webkit-animation-name: breath;
    /* 动画名称 */
    -webkit-animation-duration: 700ms;
    /* 动画时长3秒 */
    -webkit-animation-timing-function: ease-in-out;
    /* 动画速度曲线：以低速开始和结束 */
    -webkit-animation-iteration-count: infinite;
    /* 播放次数：无限 */
}

@keyframes breath {
    from {
        opacity: 0.1;
    }

    /* 动画开始时的不透明度 */
    50% {
        opacity: 1;
    }

    /* 动画50% 时的不透明度 */
    to {
        opacity: 0.1;
    }

    /* 动画结束时的不透明度 */
}

@-webkit-keyframes breath {
    from {
        opacity: 0.1;
    }

    /* 动画开始时的不透明度 */
    50% {
        opacity: 1;
    }

    /* 动画50% 时的不透明度 */
    to {
        opacity: 0.1;
    }

    /* 动画结束时的不透明度 */
}


