/* banner */
.top-banner .banner-first {
    background: url('/static/images/production/cloud-callcenter/nb1.png') no-repeat center center / cover;
}

/* 电话营销 */
.telemarketing {}

.telemarketing-wrapper {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    flex-wrap: wrap;
}

.telemarketing-card {
    min-height: 212px;
    width: calc((100% - 40px)/3);
    box-shadow: 0px 1px 20px 0px rgba(9, 67, 135, 0.2);
    border-radius: 5px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.telemarketing-card .item-left {
    padding-left: 20px;
    /* 如果是flex布局，盒子宽度不够，则必须设置width，否则item-right宽度不生效。 */
    width: calc(100% - 182px - 25px);
}

.telemarketing-card .item-left h3 {
    font-weight: 600;
    font-size: 16px;
}

.telemarketing-card:hover .item-left h3 {
    color: var(--primary-color);
}

.telemarketing-card .item-left p {
    font-weight: 400;
    font-size: 14px;
    color: var(--content-color);
}

.telemarketing-card .item-right {
    width: 182px;
    height: auto;
    align-self: end;
    overflow: hidden;
}

/* 解决方案 */
.solution {
    margin-bottom: 180px
}

.solution-wrapper {

    max-width: 1200px;
    margin: 0 auto;
}

.solution-wrapper .center-bg {
    position: relative;
    width: 760px;
    height: 467px;
    background: url('/static/images/production/cloud-callcenter/cj0.png') no-repeat center center/cover;
    margin: 0 auto;
}

.solution-wrapper .item {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 172px;
    height: 181px;
    background: #FFFFFF;
    box-shadow: 0px 1px 10px 0px var(--primary-color);
    border-radius: 8px;
    border: 1px solid #FFFFFF;
}

.solution-wrapper .item img {
    height: 70px;
    width: auto;
}

.solution-wrapper .item h3 {
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
}

.solution-wrapper .item p {
    font-weight: 400;
    font-size: 14px;
    color: var(--content-color);
}

.solution-wrapper .item-left-top {
    top: 0;
    right: 100%;
}

.solution-wrapper .item-right-top {
    top: 0;
    left: 100%;
}

.solution-wrapper .item-right-bottom {
    bottom: 0;
    left: 100%;
}

.solution-wrapper .item-center-bottom {
    top: 88%;

    /* 水平居中，两种方式：方式一： */
    left: 0;
    right: 0;
    margin: 0 auto;

    /* 水平居中，两种方式：方式二： */
    /* left: 50%;
    transform: translateX(-50%); */
}

.solution-wrapper .item-left-bottom {
    bottom: 0;
    right: 100%;
}

/* 云呼叫中心平台 */
.platform {
    background: #F5F5F5;
}

.platform-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    justify-content: space-between;

    padding: 30px 0;
}

.platform-card .image {
    width: 580px;
    height: 410px;
    background: #FFFFFF;
    box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.13);
    border-radius: 8px;
    border: 2px solid #F8F9FF;
    overflow: hidden;
}

.platform-card .image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.platform-card .content {
    padding-left: 43px;
    width: calc(100% - 580px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 8px;
}

.platform-card .content h3 {
    font-size: 24px;
    font-weight: 600;
}

.platform-card .content .advantages span {
    font-size: 20px;
    font-weight: 600;
}

.platform-card .content p {
    color: var(--content-color);
    font-size: 16px;
    font-weight: 400;
}


.platform-card .content .advantages ul li {
    margin-top: 10px;
}

.platform-card .content .advantages ul li img {
    width: 29px;
    height: auto;
}

.platform-card .content .advantages ul li span {
    color: var(--content-color);
    font-size: 14px;
    font-weight: 400;
}

/* 沟通体验 */
.communication {
    background: #F5F5F5;
}

.communication-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    gap: 30px;
}

.communication-card {
    padding: 30px 0;
    width: calc((100% - 3*30px) / 4);

    background-image: url('/static/images/production/cloud-callcenter/ty0.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;

    background-color: #FFFFFF;
    box-shadow: 0px 1px 20px 0px rgba(9, 67, 135, 0.2);
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.communication-card img {
    height: 124px;
    width: auto;
}

.communication-card h3 {
    font-weight: 500;
    font-size: 18px;
    color: var(--primary-color);
}

.communication-card .line {
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.communication-card ul {
    list-style: unset;
}

.communication-card ul li {
    font-weight: 400;
    font-size: 14px;
    color: var(--content-color);
}

/* AI语音机器人 */
.ai-voice-robot {
    background: #EDF3FE;
}

/* AI语音机器人pk人工通话 */
.voice-pk-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
}

.voice-pk-wrapper ul li img {
    width: 22px;
    height: auto;
}

.voice-pk-wrapper .header {
    text-align: center;
    font-size: 20px;
    height: 45px;
    line-height: 45px;
}

.voice-pk-wrapper .robot .header {
    color: #FFFFFF;
    background-color: var(--primary-color);
}

.voice-pk-wrapper .property .header {
    color: #FFFFFF;
    width: 144px;
    height: 56px;
    font-weight: 800;
    font-size: 30px;
    background: url('/static/images/production/cloud-callcenter/pk.png') no-repeat center center / cover;

    z-index: 1;
    position: relative;
}

.voice-pk-wrapper .agent .header {
    color: var(--content-color);
    background-color: #E4E4F0;
}

.voice-pk-wrapper .robot ul {
    background-color: #F7FAFF;
}

.voice-pk-wrapper .property {
    background-color: #FFFFFF;
}

.voice-pk-wrapper .property ul {
    background-color: #FFFFFF;
    margin-top: -8px;
}

.voice-pk-wrapper .agent ul {
    background-color: #F5F5F5;
}

.voice-pk-wrapper ul li {
    margin: 0 30px;
    padding: 20px 0;
    border-bottom: 1px solid #DCDCDC;
}

.voice-pk-wrapper ul li span {
    line-height: 18px;
}

.voice-pk-wrapper .robot ul li span {
    font-weight: 400;
    font-size: 14px;
    color: var(--content-color);
}

.voice-pk-wrapper .property ul li {
    text-align: center;
    border-bottom: none;
}

.voice-pk-wrapper .property ul li span {
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
}

.voice-pk-wrapper ul li:last-child {
    border-bottom: none;
}

.voice-pk-wrapper ul li span {
    margin-left: 10px;
}



/* 隐私呼叫、双向通话、线路资源 */
.other-function {
    background: #EEEDFC;
}

/* 功能配置中心 */
.function-config {}

.function-config-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: #E6E6E6;
    border-radius: 4px;
}

.function-config-wrapper .card {
    background-color: #F5F5F5;
    padding: 25px 20px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all ease-out 0.3s;
}

.function-config-wrapper .card:hover {
    background: #FFFFFF;
    box-shadow: 0px 1px 20px 0px rgba(9, 67, 135, 0.2);
    z-index: 1;
}

.function-config-wrapper .card:hover .title {
    color: var(--primary-color);
}

.function-config-wrapper .card img {
    height: 96px;
    width: auto;
}

.function-config-wrapper .card .title {
    font-weight: 500;
    font-size: 16px;
    color: var(--content-color);
}

.function-config-wrapper .card .description {
    font-weight: 400;
    font-size: 14px;
    color: var(--content-color);
}

/* 选择极联通讯的优势 */
.advantages-section {}

.advantages-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    gap: 20px;
}

.advantages-wrapper .card {
    width: calc((100% - 2*20px)/3);
    box-shadow: 0px 1px 20px 0px rgba(9, 67, 135, 0.2);
    border-radius: 5px;

    padding: 25px 20px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantages-wrapper .card img {
    height: 200px;
    width: auto;
}

.advantages-wrapper .card .title {
    font-weight: 400;
    font-size: 16px;
}

.advantages-wrapper .card .description {
    font-weight: 400;
    font-size: 14px;
    color: var(--content-color);
}