/* 置顶、客服 */
.topping {
    width: 50px;
    position: fixed;
    left: 50px;
    bottom: 150px;
}

.topping img {
    width: 50px;

}

.service {
    width: 130px;
    position: fixed;
    right: 50px;
    bottom: 150px;
}

.service .ewm {
    width: 90px;
    height: 90px;
    background-color: #3A3A3A;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    top: 12px;
    z-index: -1;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    animation-name: service;
    animation-duration: .5s;
}

.service .serviceImg {
    width: 130px;

}

.service .ewmImg {
    width: 80px;
    animation-name: ewm;
    animation-duration: .5s;
}

@keyframes service {
    0% {
        height: 0px;
    }

    100% {
        height: 90px;
    }
}

@keyframes ewm {
    0% {
        height: 0px;
    }

    100% {
        height: 80px;
    }
}

.search {
    width: 430px;
    height: 50px;
    background-color: #ffffff;
    position: relative;
    padding: 0px 0px 0px 15px;
    border-radius: 12px;
    margin-right: 30px;
}

.search input {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 280px;
    height: 48px;
    border: none;
    outline: none;
    background-color: #ffffff;
    font-size: 16px;
    /* border-radius: 15px; */
}

.search .searchBtn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 100px;
    height: 38px;
    background-color: #000000;
    color: white;
    border-radius: 24px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-right: 5px;
    line-height: 38px;
    vertical-align: middle;

}

.search .searchBtn img {
    width: 15px;
    height: 15px;
}

.search .searchBtn span {
    margin-left: 5px;
}

.leftArrow,
.rightArrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.swiper-container {
    width: 88%;
    height: 50px;
    padding: 90px 0;
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 50px; */
    /* padding-right: 50px; */
    margin-top: -50px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    height: 120px;
    width: 100px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition-property: all;
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition-property: all;
}

.item img {
    height: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    position: static!important;
    top: 125px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    /* box-shadow: 0px 6px 15px 0px hsla(218, 26%, 12%, 0.08) */
}

:root {
    --swiper-navigation-size: 10px !important;
    --swiper-theme-color: rgba(51, 51, 51, 1) !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
}

.itemActive{
    background-image: url('../../public/images/chooseBg.png');
    background-repeat: no-repeat;
    background-position: 0px 50%;
    background-size: 100% 44%;
}

