.call-center-banner {
    width: 100%;
    color: #ffffff;
    position: relative;
}

.call-center-banner::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url(/img/call-center/banner.png) no-repeat center;
    background-size: cover;
    z-index: 1;
}

.call-center-banner>div {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.call-center p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(57, 55, 43, 1);
    word-break: break-all;
}

.call-center-banner p,
.call-center-banner h2 {
    text-align: center;
}

.questions {
    display: flex;
    flex-flow: row wrap;
}


.questions li {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}

.questions li i {
    width: 6px;
    height: 6px;
    background-color: rgba(27, 165, 234, 1);
    border-radius: 50%;
    margin-right: 12px;
}

.questions a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(27, 165, 234, 1);
}

.questions a:hover {
    text-decoration: underline;
}

.want {
    background-color: #F9F9F9;
}

.icon-list {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    /* justify-content: center; */
    margin-top: 30px;
}

.icon-list li {
    background-color: #fff;
    box-sizing: border-box;
    transition: all .2s linear;
}

.icon-list li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.icon-list li:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    transform: translate3d(0, -2px, 0);
}

.icon-list li .img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
}

.icon-list li p {
    font-weight: 400;
    color: rgba(19, 33, 58, 1);
    line-height: 30px;
    text-align: center;
}

.icon-list li span {
    font-weight: 400;
    color: rgba(57, 55, 43, 1);
    text-align: center;
}

/* pc */
@media screen and (min-width: 1260px) {
    .call-center-banner {
        height: 500px;
    }

    .call-center-banner p {
        font-size: 22px;
        font-weight: 500;
        padding: 30px 0 30px;
    }

    .call-center-banner h2 {
        font-size: 64px;
        font-weight: 500;
    }

    .questions li:nth-child(3n-2) {
        width: 25%;
    }

    .questions li:nth-child(3n-1) {
        width: 35%;
    }

    .questions li:nth-child(3n) {
        width: 40%;
    }

    .icon-list li {
        height: auto;
        flex: 0 0 22%;
        margin: 0 30px 30px 0;
        padding: 30px 20px;
    }

    .icon-list li:nth-child(4n) {
        margin-right: 0;
    }

    .icon-list li p {
        font-size: 22px;
    }
}

/* ipad  */
@media screen and (min-width: 768px) and (max-width: 1259px) {
    .call-center-banner {
        height: 280px;
    }

    .call-center-banner p {
        font-size: 16px;
        font-weight: 500;
        padding: 20px 0 20px;
    }

    .call-center-banner h2 {
        font-size: 32px;
        font-weight: 500;
    }

    .questions li {
        width: 50%;
    }

    .icon-list li {
        height: auto;
        flex: 0 0 30%;
        margin: 0 20px 20px 0;
        padding: 30px 20px;

    }

    .icon-list li:nth-child(3n) {
        margin-right: 0;
    }

    .icon-list li p {
        font-size: 18px;
    }
}

/* 手机 */
@media screen and (min-width: 320px) and (max-width: 767px) {
    .call-center-banner {
        height: 160px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .call-center-banner p {
        font-size: 14px;
        font-weight: 500;
        padding: 10px 0 10px;
    }

    .call-center-banner h2 {
        font-size: 18px;
        font-weight: 500;
        line-height: 20px;
    }

    .questions li {
        margin-bottom: 0;
        margin-top: 18px;
    }

    .questions li:last-child {
        margin-bottom: 18px;
    }

    .icon-list li {
        height: auto;
        flex: 0 0 44%;
        margin: 0 20px 20px 0;
        padding: 15px 10px;
    }

    .icon-list li:nth-child(2n) {
        margin-right: 0;
    }

    .icon-list li p {
        font-size: 16px;
        line-height: 16px;
    }
}