#carousel{
    width: 600px!important;
    height: 365px!important;
    margin: 40px auto 10px;
}
#carousel-item{
    border-radius: 6px;
}
#carousel .img-item{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    cursor: pointer;
}
.layui-carousel[lay-arrow=always] .layui-carousel-arrow{
    background-color: #d4ded9;
    color: #06472e;
}
.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type="sub"] {
    left: -80px;
}
.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type="add"] {
    right: -80px;
}

/* 移动端适配 */
@media screen and (max-width: 480px){	    
    #carousel{
        width: 100%!important;
        height: 220px!important;
        margin: 40px auto 10px;
    }
    .layui-carousel[lay-arrow=always] .layui-carousel-arrow{
        background-color: rgba(0,0,0,.2);
        color: #fff;
    }
    .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type="sub"] {
        left: 20px;
    }
    .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type="add"] {
        right: 20px;
    }
}