.w1440_sub_item {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.w1440_sub_item .w_title{
    font-size: 30px;
    font-weight: bold;
    color: #002fa7;
    padding-left: 350px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.production-center{
    /*background-color: #efefef;*/
}
.production-div{
    width: 100%;
    /*height: 530px;*/
    display: flex;
    flex-direction: row;
}
.production-div .production-list{
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.production-item{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.production-item .production-name{
    font-weight: bold;
    font-size: 25px;
    color: #002fa7;
    background-color: #ffffff;
    cursor: pointer;
    width: 220px;
    height: 60px;
    line-height: 60px;
    padding-left: 5px;
}
.production-item .active{
    color: #ffffff;
    background-color: #396bc5;
    padding-left: 20px;
}
.production-div .production-block-list{
    flex: 1;
    background-color: #ebf4fb;
}
.production-block-list .productionBlockItem{
    width: 350px;
    height: 200px;
    margin-top: 10px;
    margin-left: 10px;
    float: left;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.productionBlockItem .productionImage{
    height: 200px;
    /* 过渡动画：所有属性变化在0.5秒内完成，带缓动效果 */
    transition: all 0.5s ease;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.productionBlockItem .productionTitle{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}
.productionBlockItem .productionSubtitle{
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    left: 30px;
    bottom: 30px;
    /* 水平偏移 垂直偏移 模糊半径 颜色 */
    text-shadow:
            1px 1px 0 #000,   /* 右下 */
            -1px -1px 0 #000, /* 左上 */
            1px -1px 0 #000,  /* 右上 */
            -1px 1px 0 #000;  /* 左下 */
}
.productionImage1{
    background-image: url("/static/temporary/产品/单站版.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.productionImage2{
    background-image: url("/static/temporary/产品/安全上料.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.productionImage3{
    background-image: url("/static/temporary/产品/料位仪.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.productionImage4{
    background-image: url("/static/temporary/产品/无人值守.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.productionImage5{
    background-image: url("/static/temporary/产品/沥青.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.productionImage6{
    background-image: url("/static/temporary/产品/集团版.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.productionImage:hover{
    transform: scale(1.1); /* 放大1.1倍（10%） */
}
.circular-div{
    border-radius: 10px;
}
.customer-div{
    width: 100%;
    /*height: 400px;*/
}
.customer-item{
    float: left;
    width: 220px;
    height: 400px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    /* 过渡动画：所有属性变化在0.5秒内完成，带缓动效果 */
    transition: all 0.5s ease;

    .title{
        font-size: 20px;
        color: #ffffff;
        width: 100%;
        text-align: center;
        margin-top: 80px;

        /* 水平偏移 垂直偏移 模糊半径 颜色 */
        text-shadow:
                1px 1px 0 #000,   /* 右下 */
                -1px -1px 0 #000, /* 左上 */
                1px -1px 0 #000,  /* 右上 */
                -1px 1px 0 #000;  /* 左下 */
    }

    .name{
        color: #ffffff;
        position: absolute;
        padding: 4px;
        left: 10px;
        bottom: 15px;
        font-size: 12px;
        /* 水平偏移 垂直偏移 模糊半径 颜色 */
        text-shadow:
                1px 1px 0 #000,   /* 右下 */
                -1px -1px 0 #000, /* 左上 */
                1px -1px 0 #000,  /* 右上 */
                -1px 1px 0 #000;  /* 左下 */
    }
}
.customer-item:hover{
    /*background-size: 110%; !* 背景图放大到110%（比容器大10%） *!*/
    transform: scale(0.95);
}
.latest-updates-div{
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: row;

    .latest-updates-left{
        flex: 1;
        padding: 10px;
    }

    .latest-updates-right{
        flex: 1;
        padding: 10px;

        .news-item{
            width: 100%;
            display: flex;
            flex-direction: row;
            margin-bottom: 10px;

            .news-left{
                width: 80px;
                text-align: center;

                .day{
                    font-size: 25px;
                    font-weight: bold;
                }
                .year-month{
                    font-size: 12px;
                    color: #aaa;
                }
            }

            .news-right{
                flex: 1;
                padding-right: 40px;

                .title{
                    font-size: 16px;
                    font-weight: bold;
                }
                .subtitle{
                    margin-top: 4px;
                    font-size: 14px;
                    color: #acacac;
                }
            }
        }

    }

}
