

.grid {
    display: grid
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr))
}


.gap-5 {
    grid-gap: 20px;
    gap: 20px
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.flex-grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.bg-white {
    background-color: #f8f8f8
}

.align-baseline {
    vertical-align: baseline
}
.container{

}

.customer-evaluation {
    background-color: #fff;
    padding-bottom: 100px;
    padding-top:100px;
    width: 98%;
    padding-left: 10px;
}

.customer-evaluation .customer-swiper-box {
    position: relative
}

.customer-evaluation .index-customer-next {
    right: 530px
}

.customer-evaluation .index-customer-next,
.customer-evaluation .index-customer-prev {
    position: absolute;
    top: -20%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 38px;
    z-index: 2
}

.customer-evaluation .index-customer-prev {
    left: 540px
}

.customer-evaluation .icon-left {
    height: 161px;
    width: 180px
}

.customer-evaluation .content-right {
    background-color: #ebebeb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 13px;
    height: 161px;
    line-height: 1.5;
    padding: 20px;
    width: 410px
}