#goods{
    width: 100%;
    background-color: #F5F9FF;
    padding-bottom: 3vh;
}
.title{
    width: 100%;
    text-align: center;
    color: #3CA43C;
    margin-top: 10vh;
    font-weight: 600;
}
.titleLine{
    width: 160px;
    height: 3px;
    background-color: #3CA43C;
    margin: 0 auto;
}
.titleLine2{
    width: 160px;
    height: 1px;
    background-color: #69b96b;
    margin: 2px auto;
}
.goods_div{
    width: 75vw;
    margin: 0 auto;
}

.goods_card{
    width: 36.5vw;
    height: 20vw;
    position: relative;
    overflow: hidden;
    margin-bottom: 4vh;
}
.goods_card:hover .card_bottom{
    background-color: #399d3e;
}
.goods_card img{
    width: 100%;
    height: 100%;
}
.card_bottom{
    width: 100%;
    height: 5vw;
    line-height: 5vw;
    position: absolute;
    bottom: 0;
    background-color: rgba(51,51,51,0.42);
    font-size: 1.5vw;
    padding-left: 15px;
    box-sizing: border-box;
    color: white;
    transition: all 1s;
}
.card_bottom:hover+img{
    transition: all 1s;
}
.card_bottom:hover+img:hover{
    transform: scale(1.1);
}
.module_title{
    margin: 0!important;
    padding: 8vh 0;
}
.dialog_main{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
    position: fixed;
    z-index: 10000;
}
.dialog_main_cont{
    width: 65vw;
    background-color: white;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.dialog_header{
    width: 100%;
    height: 6vh;
    line-height: 6vh;
    padding: 0 15px;
    box-sizing: border-box;
}
.dialog_header div{
    font-size: 6rem;
    float: right;
}
.dialog_content{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 6vh 6vh 6vh;
    box-sizing: border-box;
}
.dialog_left{
    width: 60%;
    height: 100%;
}
.dialog_left img{
    width: 100%;
    height: 100%;
}
.dialog_right{
    width: 36%;
}
.dialog_right_title{
    font-size: 3.5rem;
    font-weight: 600;
    color: #333333;
}
.dialog_right_cont{
    font-size: 2rem;
    color: #999999;
    margin: 5vh 0;
}
.dialog_right_bottom{
    margin-top: 8vh;
}
.dialog_right_bottom span:first-child{
    font-size: 2rem;
    color: #333333;
}
.dialog_right_bottom span:last-child{
    font-size: 2rem;
    color: #999999;
}
.slick-prev{
}
.slick-next{
    right: 0!important;
}
.slick-list-item{
    width: 80%!important;
    margin: 0 auto;
    display: flex!important;
    justify-content: space-between;
}
.goods_img{
    width: 28vw!important;
    height: 28vw;
    overflow: hidden;
}
.goods_img img{
    width: 100%;
    height: 100%;
}
.goods_img img{
    transition: all 1.2s;
}
.goods_img img:hover{
    transform: scale(1.2);
}
.slick-list-item .goods_cont{
    width: 45%
}
.goods_cont div img{
    width: 2vw;
    height: 2vw;
}
.goods_title{
    width:auto;
    display:inline-block !important;
    font-size: 1.2vw;
    font-weight: 550;
    padding-bottom: 1.8vw;
    box-sizing: border-box;
    border-bottom: 1px dashed #999999;
}
.goods_introduce{
    font-size: 0.9vw;
    color: #666666;
    min-height: 20vh;
    padding: 1.8vw 0;
    box-sizing: border-box;
    border-bottom: 1px dashed #999999;
}
.goods_title,.goods_introduce{
    width: 26vw;
}