.flexa-container {
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.flexa-justify-around {
    -moz-justify-content: space-around;
    -o-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flexa-justify-center {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flexa-justify-between {
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flexa-justify-start {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flexa-justify-end {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}


.flexa-align-center {
    -moz-align-items: center;
    -o-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flexa-align-start {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flexa-align-end {
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/*将占满整个容器的高度*/
.flexa-align-stretch {
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

/*换行*/
.flexa-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*不换行*/
.flexa-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

/*不均匀缩放*/
.flexa-shrink {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.xiala {
    border: 1px solid #F0F0F0;
    border-right: none;
    height: 46px;
}

.xiala dl dt {
    height: 44px;
    line-height: 44px;
    color: #777777;
    background: #fff;
    white-space: nowrap;
    cursor: pointer;
    font-weight: initial;
    /*text-transform: capitalize;*/
}

.contact_inq .in_tel {
    border-left: 0;
    padding-left: 8px;
    background-image: none;
}

.xiala dl dt .ico {
    display: inline-block;
    width: 44px;
    height: 44px;
    vertical-align: middle;
}

.xiala dl dt .ico.phone {
    background: url(../images/input_tel.png) no-repeat 8px center;
    background-size: 24px;
}

.xiala dl dt .ico.wechat {
    background: url(../images/weichat.png) no-repeat center center;
    background-size: 22px;
}

.xiala dl dt .ico.skype {
    background: url(../images/skype.png) no-repeat center center;
    background-size: 20px;
}

.xiala dl dt .ico.whatsapp {
    background: url(../images/whatsapp.png) no-repeat center center;
    background-size: 20px;
}

.xiala dl dt .icoxiala {
    display: inline-block;
    width: 44px;
    height: 44px;
    vertical-align: middle;
    background: url(../images/xialajian.png) no-repeat center center;
    background-size: 24px;
}

/*.xiala dl:hover dt .icoxiala {*/
/*    transform: rotateX(180deg);*/
/*}*/
.xiala dl {
    position: relative;
}

.xiala dl .showa {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
}

/*.xiala dl:hover .showa{*/
/*    display: block;*/
/*}*/
.xiala dl .showa dd {
    height: 28px;
    line-height: 28px;
    padding: 0 20px 0 44px;
    border: 1px solid #ddd;
    cursor: pointer;
    white-space: nowrap;
}

.xiala dl .showa dd:hover {
    color: #154899;
}

.xiala dl .showa dd+dd {
    border-top: none;
}

.xiala dl .showa dd.phone {
    background: url(../images/input_tel.png) no-repeat 8px 3px;
    background-size: 24px;
}

.xiala dl .showa dd.wechat {
    background: url(../images/weichat.png) no-repeat 13px center;
    background-size: 20px;
}

.xiala dl .showa dd.skype {
    background: url(../images/skype.png) no-repeat 14px center;
    background-size: 18px;
}

.xiala dl .showa dd.whatsapp {
    background: url(../images/whatsapp.png) no-repeat 14px center;
    background-size: 18px;
}

.product .xiala dl dt {
    height: 38px;
    line-height: 38px;
    color: #777777;
    background: #fff;
    white-space: nowrap;
    cursor: pointer;
    font-weight: initial;
    text-transform: capitalize;
}

.product .xiala dl dt .ico,
.xiala dl dt .icoxiala {
    width: 40px;
    height: 40px;
}

.inquiry .contact_box .in_tel {
    background-image: none;
    padding-left: 0px;
}

.inquiry .contact_box .input_1.in_tel {
    border-left: none;
}

.product .xiala {
    border: 1px solid #E5E5E5;
    border-right: none;
    height: 40px;
}

html[lang=ar] .col-sm-12.product .flexa-container.flexa-justify-between {
    flex-direction: row-reverse;
}



/* 容器背景与布局 */
.container-contact-card {
    padding: 20px 0;
    width: 100%;
}

.container-contact-card .contact-wrapper {
    display: flex;
    gap: 20px; /* 两个卡片之间的间距 */
    justify-content: space-between;
}

/* 单个卡片样式 */
.container-contact-card .contact-card-item {
    background-color: #B1271B; /* 图片中的蓝色 */
    border-radius: 6px;
    padding: 30px;
    flex: 1; /* 平分宽度 */
    color: #fff;
    min-height: 180px;
    display: flex;
    align-items: center;
}

/* 左侧头像与细节布局 */
.container-contact-card .profile-flex,
.container-contact-card .social-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.container-contact-card .profile-avatar img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #fff;
}

/* 文字样式重置 */
.container-contact-card p {
    margin-bottom: 8px !important;
    font-size: 14px;
    line-height: 1.4;
    color: #fff !important;
}

.container-contact-card p strong {
    font-weight: 700;
    color: #fff;
}
/* 图标基础样式 */
.container-contact-card .contact-icon {
    display: inline-block;
    vertical-align: middle;
    width: 22px; 
    height: 22px;
    background: url(../images/salesman.png) no-repeat;
    margin-right: 8px;
}

/* Whatsapp 图标定位 */
.container-contact-card .icon-email {
    background-position: -44px 0;
}

/* Email 图标定位 */
.container-contact-card .icon-whatsapp {
    background-position: -110px 0;
}

/* 调整文字对齐，确保图标和文字垂直居中 */
.container-contact-card .social-list p {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 10px;
}
/* 右侧图标样式 */
.container-contact-card .social-icon-big {
    font-size: 60px;
    opacity: 0.8;
}

.container-contact-card .small-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

/* 响应式：手机端变单列 */
@media (max-width: 768px) {
    .container-contact-card .contact-wrapper {
        flex-direction: column;
    }
    .container-contact-card .contact-card-item {
        padding: 20px;
    }
}