/*# 询价，留言，对话 */

@font-face {
    font-family: "iconfont"; /* Project id 3480497 */
    src: url('iconfont.woff2?t=1723013398729') format('woff2'),
    url('iconfont.woff?t=1723013398729') format('woff'),
    url('iconfont.ttf?t=1723013398729') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-zixun:before {
    content: "\e6b3";
}
.icon-caigoujiage:before {
    content: "\e625";
}
.icon-dianhua:before {
    content: "\e633";
}
.icon-shouhou:before {
    content: "\e638";
}
.icon-dianhua1:before {
    content: "\e63a";
}
.icon-tubiao209:before {
    content: "\e61b";
}
.icon-qq1:before {
    content: "\e60a";
}
.icon-RectangleCopy:before {
    content: "\e6a6";
}

.suspend {
    position: fixed;
    right: 0.5rem;
    top: 50%;
    margin-top: 0.3rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2000;
}

@media (max-width: 992px) {
    .suspend {
        right: 15px;
    }
}

.suspend .item {
    border-radius: 4px;
    padding: 5px;
    margin: 5px 0;
    background-color: #80a4ff;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    position: relative;
    color: #ffffff;
    transition: all 0.2s ease 0s;
}

@media (max-width: 992px) {
    .suspend .item {
        font-size: 12px;
        width: 60px;
        height: 60px;
        margin: 3px 0;
    }
}

.suspend .item .iconfont {
    font-size: 30px;
    line-height: 1;
}

@media (max-width: 992px) {
    .suspend .item .iconfont {
        font-size: 26px;
    }
}

.suspend .item.notice::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 15px;
    background-color: #e60012;
    top: -5px;
    left: -5px;
}

.suspend .item:hover {
    background-color: #014da1;
}

.suspend .item .contact-way {
    position: absolute;
    top: 0;
    right: calc(100% + 25px);
    background-color: #80a4ff;
    border-radius: 5px;
    padding: 2px;
    display: none;
}

@media (max-width: 576px) {
    .suspend .item .contact-way {
        flex-direction: column;
    }
}

.suspend .item .contact-way::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 100%;
    border: 10px solid transparent;
    border-left-color: #80a4ff;
}

.suspend .item .contact-way::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 25px;
    height: 100%;
}

.suspend .item .contact-way .bg {
    background-color: #ffffff;
    display: flex;
    color: #014da1;
    border-radius: 5px;
}

@media (max-width: 576px) {
    .suspend .item .contact-way .bg {
        flex-direction: column;
    }
}

.suspend .item .contact-way .bg .way-item {
    color: #014da1;
    position: relative;
}

.suspend .item .contact-way .bg .way-item:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 60%;
    background-color: #eeeeee;
    transform: translateY(-50%);
}

.suspend .item .contact-way .way-item {
    padding: 20px;
    color: #ffffff;
}

@media (max-width: 992px) {
    .suspend .item .contact-way .way-item {
        padding: 15px;
    }
}

.suspend .item .contact-way .way-item p {
    white-space: nowrap;
}

.suspend .item .contact-way .way-item .label {
    font-size: 14px;
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .suspend .item .contact-way .way-item .label {
        font-size: 12px;
    }
}

.suspend .item .contact-way .way-item .label .iconfont {
    font-size: 24px;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .suspend .item .contact-way .way-item .label .iconfont {
        font-size: 20px;
        margin-right: 5px;
    }
}

.suspend .item .contact-way .way-item .content {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .suspend .item .contact-way .way-item .content {
        font-size: 14px;
    }
}

.suspend .item.way:hover .contact-way {
    display: flex;
}

/*# 弹出层 */

.overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
}

.overlay {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.overlay .dialog {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 2px;
    box-sizing: border-box;
    width: 60%;
    padding: 15px;
    transform: translateY(-20%);
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.overlay .dialog.active {
    transform: translateY(0);
}

.overlay .dialog .iconfont {
    position: absolute;
    right: 0;
    top: -50px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.overlay .dialog .dialog-video {
    display: block;
    width: 100%;
}

.overlay .confirm {
    width: 300px;
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
}

.overlay .confirm p {
    color: #333333;
    font-size: 16px;
}

.overlay .confirm button {
    display: block;
    margin-left: auto;
    border: none;
    background-color: #409eff;
    color: #fff;
    margin-top: 15px;
    font-size: 16px;
    line-height: 26px;
    padding: 0 8px;
}

.overlay .hint {
    padding: 50px 80px 30px;
    background-color: #ffffff;
    border-radius: 15px;
    position: relative;
}

@media (max-width: 1200px) {
    .overlay .hint {
        padding: 30px 50px 20px;
    }
}

.overlay .hint .content {
    color: #333333;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
}

@media (max-width: 1200px) {
    .overlay .hint .content {
        font-size: 16px;
        line-height: 30px;
    }
}

.overlay .hint button {
    display: block;
    margin: 0 auto;
    margin-top: 26px;
    border: none;
    line-height: 34px;
    width: 120px;
    border-radius: 34px;
    color: #ffffff;
    font-size: 18px;
    background-color: #014da1;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .overlay .hint button {
        margin-top: 20px;
        line-height: 30px;
        width: 100px;
        font-size: 16px;
    }
}

.overlay .hint .iconfont {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #eeeeee;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease 0s;
}

@media (max-width: 1200px) {
    .overlay .hint .iconfont {
        top: 15px;
        right: 15px;
    }
}

.overlay .hint .iconfont:hover {
    background-color: #014da1;
}

.overlay .after-sale {
    width: 900px;
    background-color: #ffffff;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1200px) {
    .overlay .after-sale {
        width: 700px;
    }
}

@media (max-width: 992px) {
    .overlay .after-sale {
        width: 500px;
    }
}

@media (max-width: 576px) {
    .overlay .after-sale {
        width: 90%;
    }
}

.overlay .after-sale.en {
    width: 600px;
}

@media (max-width: 992px) {
    .overlay .after-sale.en {
        width: 500px;
    }
}

@media (max-width: 576px) {
    .overlay .after-sale.en {
        width: 90%;
    }
}

.overlay .after-sale.en .form {
    width: auto;
}

.overlay .after-sale .contact {
    width: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .overlay .after-sale .contact {
        display: none;
    }
}

.overlay .after-sale .contact h1 {
    margin-left: 30px;
    margin-right: 40px;
    padding: 40px 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 36px;
    border-bottom: 1px solid #3873b5;
}

.overlay .after-sale .contact h1.large {
    font-size: 28px;
    font-weight: bold;
    border-color: #5c99db;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact h1.large {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact h1 {
        margin-left: 20px;
        margin-right: 30px;
        padding: 30px 0;
        font-size: 18px;
        line-height: 28px;
    }
}

.overlay .after-sale .contact .list {
    padding: 0 25px 60px;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact .list {
        padding: 0 20px 40px;
    }
}

.overlay .after-sale .contact .list .item {
    margin-top: 60px;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact .list .item {
        margin-top: 40px;
        font-size: 14px;
    }
}

.overlay .after-sale .contact .list .item .content {
    margin-top: 25px;
    font-size: 22px;
    font-family: Arial;
    font-weight: bold;
    font-style: italic;
    word-break: break-all;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact .list .item .content {
        margin-top: 15px;
        font-size: 22px;
    }
}

.overlay .after-sale .contact .list-large {
    padding: 0 0px 60px 20px;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact .list-large {
        padding: 0 20px 40px;
    }
}

.overlay .after-sale .contact .list-large .item {
    margin-top: 40px;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact .list-large .item {
        margin-top: 30px;
        font-size: 16px;
    }
}

.overlay .after-sale .contact .list-large .item .label {
    display: flex;
    align-items: center;
    margin-bottom: 0.08rem;
}

.overlay .after-sale .contact .list-large .item .label .iconfont {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #ffda0f;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact .list-large .item .label .iconfont {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-right: 10px;
    }
}

.overlay .after-sale .contact .list-large .item .content {
    font-size: 24px;
    font-family: Arial;
    font-weight: bold;
    word-break: break-all;
}

@media (max-width: 1200px) {
    .overlay .after-sale .contact .list-large .item .content {
        font-size: 22px;
    }
}

.overlay .after-sale .form {
    width: 600px;
    padding: 40px;
    position: relative;
}

@media (max-width: 1200px) {
    .overlay .after-sale .form {
        width: 450px;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .overlay .after-sale .form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .overlay .after-sale .form {
        padding: 20px;
    }
}

.overlay .after-sale .form .en-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .overlay .after-sale .form .en-title-bg {
        height: 60px;
    }
}

.overlay .after-sale .form .title {
    color: #333333;
    font-size: 24px;
    font-weight: bold;
}

.overlay .after-sale .form .title.en {
    padding-bottom: 20px;
    position: relative;
    z-index: 100;
    color: #ffffff;
    text-align: center;
    margin-top: -10px;
}

@media (max-width: 1200px) {
    .overlay .after-sale .form .title.en {
        font-size: 20px;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .overlay .after-sale .form .title.en {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .overlay .after-sale .form .title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .overlay .after-sale .form .title {
        font-size: 18px;
    }
}

.overlay .after-sale .form form {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 576px) {
    .overlay .after-sale .form form {
        padding-top: 10px;
    }
}

.overlay .after-sale .form form .input-box {
    width: 100%;
    border-radius: 5px;
    background-color: #f8f8fa;
    padding: 0 12px;
    margin-top: 10px;
    display: flex;
}

.overlay .after-sale .form form .input-box span {
    color: #ff0000;
    font-size: 14px;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 10px;
}

.overlay .after-sale .form form .input-box select, .overlay .after-sale .form form .input-box input, .overlay .after-sale .form form .input-box textarea {
    flex: 1;
    line-height: 50px;
    height: 50px;
    border: none;
    background-color: #f8f8fa;
    font-size: 14px;
    color: #333333;
    outline: none;
}

.overlay .after-sale .form form .input-box select:focus, .overlay .after-sale .form form .input-box input:focus, .overlay .after-sale .form form .input-box textarea:focus {
    border-color: #409eff;
}

@media (max-width: 1200px) {
    .overlay .after-sale .form form .input-box select, .overlay .after-sale .form form .input-box input, .overlay .after-sale .form form .input-box textarea {
        line-height: 40px;
        height: 40px;
    }
}

.overlay .after-sale .form form .input-box textarea {
    height: 130px;
    line-height: 30px;
    resize: none;
}

@media (max-width: 1200px) {
    .overlay .after-sale .form form .input-box textarea {
        height: 80px;
    }
}

.overlay .after-sale .form form .input-box.half {
    width: 49%;
}

@media (max-width: 576px) {
    .overlay .after-sale .form form .input-box.half {
        width: 100%;
    }
}

.overlay .after-sale .form form button {
    margin-top: 30px;
    width: 100%;
    border: none;
    line-height: 50px;
    background-color: #014da1;
    border-radius: 5px;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.overlay .after-sale .form form button:hover {
    background-color: rgba(1,77,161,0.8);
}

.overlay .after-sale .form form button:active {
    background-color: rgba(1,77,161,0.8);
    transform: scale(0.98);
}

@media (max-width: 1200px) {
    .overlay .after-sale .form form button {
        margin-top: 20px;
        line-height: 40px;
        font-size: 18px;
    }
}

.overlay .after-sale .icon-RectangleCopy {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #eeeeee;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease 0s;
}

@media (max-width: 1200px) {
    .overlay .after-sale .icon-RectangleCopy {
        top: 15px;
        right: 15px;
    }
}

.overlay .after-sale .icon-RectangleCopy:hover {
    background-color: #014da1;
}

.overlay .after-sale .icon-RectangleCopy.en {
    color: #014fa4;
}

.overlay .after-sale .icon-RectangleCopy.en:hover {
    background-color: #ffffff;
}
/****************************************************************************
 * 询价
 */
.enq-container {
    background-color: #f9f9f9;
}

.icon-minus:before {
    content: "\e67a";
}

.icon-add:before {
    content: "\e664";
}

.enq-container .container .bg-container {
    background-color: #fff;
    padding-bottom: 30px;
}

.enq-container .container .bg-container .step {
    display: flex;
}

.enq-container .container .bg-container .step .step-item {
    width: 33.3333333%;
    padding: 30px;
    background-color: #39a3ee;
    display: flex;
}

.enq-container .container .bg-container .step .step-item .number {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #39a3ee;
    font-size: 36px;
    font-weight: bold;
    font-family: Arial;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.enq-container .container .bg-container .step .step-item .text {
    flex: 1;
}

.enq-container .container .bg-container .step .step-item .text h1 {
    color: #ffffff;
    font-size: 20px;
}

.enq-container .container .bg-container .step .step-item .text p {
    color: #ffffff;
    font-size: 14px;
    margin-top: 5px;
}

.enq-container .container .bg-container .step .step-item:nth-child(2n) {
    background-color: #217ecd;
}

.enq-container .container .bg-container .step .step-item:nth-child(2n) .number {
    color: #217ecd;
}

.enq-container .container .bg-container .step .step-item:nth-child(3n) {
    background-color: #014fa2;
}

.enq-container .container .bg-container .step .step-item:nth-child(3n) .number {
    color: #014fa2;
}

.enq-container .container .bg-container .title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
}

.enq-container .container .bg-container .goods-container-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: bold;
    color: #333333;
    padding-bottom: 20px;
    display: flex;
}

.enq-container .container .bg-container .goods-container-title::before {
    content: '';
    width: 4px;
    margin-right: 10px;
    background-color: #004ea2;
}

.enq-container .container .bg-container .goods-container {
    --enq-line-height: 40px;
    padding: 30px 30px 0;
    padding-top: 30px;
}

.enq-container .container .bg-container .goods-container .goods-list {
    padding: 20px 0;
    border: 1px solid #dddddd;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row {
    display: flex;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col {
    line-height: 40px;
    line-height: var(--enq-line-height);
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col:nth-child(1), .enq-container .container .bg-container .goods-container .goods-list .list-row .list-col:nth-child(2) {
    width: 32%;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col:nth-child(3), .enq-container .container .bg-container .goods-container .goods-list .list-row .list-col:nth-child(4) {
    width: 18%;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col label {
    margin: 0;
    width: 75%;
    border: 1px solid #dddddd;
    padding: 0 10px;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col label input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0;
    line-height: 40px;
    line-height: var(--enq-line-height);
    height: 40px;
    height: var(--enq-line-height);
    font-size: 16px;
    color: #333333;
    background-color: transparent;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.input-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.input-number .number {
    text-align: center;
    width: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    line-height: 40px;
    line-height: var(--enq-line-height);
    height: 40px;
    height: var(--enq-line-height);
    color: #333333;
    margin: 0 10px;
    user-select: none;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.input-number .iconfont {
    width: 40px;
    height: 40px;
    width: var(--enq-line-height);
    height: var(--enq-line-height);
    border: 1px solid #dddddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.input-number .iconfont:hover {
    background-color: rgba(0, 78, 162, 0.1);
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.input-number .iconfont::before {
    font-size: 16px;
    font-weight: bold;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.handle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.handle .iconfont {
    width: 40px;
    height: 40px;
    width: var(--enq-line-height);
    height: var(--enq-line-height);
    border-radius: 50%;
    background-color: #004ea2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.handle .iconfont:hover {
    background-color: rgba(0, 78, 162, 0.8);
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.handle .iconfont::before {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row .list-col.handle .iconfont:last-child {
    margin-left: 30px;
}

.enq-container .container .bg-container .goods-container .goods-list .list-row.body {
    padding-top: 20px;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.enq-container .container .bg-container .user-container {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    padding: 0 15px;
    padding-top: 50px;
    margin: 0;
}

.enq-container .container .bg-container .user-container .user-col {
    padding: 0 15px;
    padding-bottom: 20px;
    display: flex;
}

.enq-container .container .bg-container .user-container .user-col .label {
    font-size: 14px;
    line-height: 45px;
    color: #333333;
    padding-right: 10px;
    min-width: 90px;
    text-align: right;
}

.enq-container .container .bg-container .user-container .user-col .label span {
    color: #e60000;
}

.enq-container .container .bg-container .user-container .user-col .label.checkbox-label {
    line-height: 26px;
}

.enq-container .container .bg-container .user-container .user-col .input-box {
    flex: 1;
    border: 1px solid #dddddd;
    background-color: transparent;
    padding: 0 10px;
    border-radius: 2px;
}

.enq-container .container .bg-container .user-container .user-col .input-box input {
    color: #333333;
    border: none;
    padding: 0;
    outline: none;
    width: 100%;
    background-color: transparent;
    line-height: 45px;
    height: 45px;
    font-size: 16px;
}

.enq-container .container .bg-container .user-container .user-col .input-box textarea {
    color: #333333;
    width: 100%;
    resize: none;
    border: none;
    padding: 0;
    outline: none;
    background-color: transparent;
    line-height: 30px;
    font-size: 16px;
    height: 150px;
    display: block;
}

.enq-container .container .bg-container .user-container .user-col .input-box select {
    color: #333333;
    border: none;
    padding: 0;
    outline: none;
    width: 100%;
    background-color: transparent;
    line-height: 45px;
    height: 45px;
    font-size: 16px;
}

.enq-container .container .bg-container .user-container .user-col .input-box select option {
    height: 50px;
}

.enq-container .container .bg-container .user-container .user-col .checkbox-box {
    font-size: 14px;
    line-height: 26px;
    color: #333333;
}

.enq-container .container .bg-container .user-container .user-col .checkbox-box .checkbox-list {
    display: flex;
    flex-wrap: wrap;
}

.enq-container .container .bg-container .user-container .user-col .checkbox-box .checkbox-list label {
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.enq-container .container .bg-container .user-container .user-col .checkbox-box .checkbox-list label input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.enq-container .container .bg-container .user-container .button-box {
    padding-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enq-container .container .bg-container .user-container .button-box .button {
    padding: 0 60px;
    line-height: 50px;
    font-size: 20px;
    color: #999999;
    background-color: #f1f1f1;
    margin: 0 30px;
    cursor: pointer;
}

.enq-container .container .bg-container .user-container .button-box .button.primary {
    color: #fff;
    background-color: #004ea2;
}

/****************************************************************************
 * 产品详情
 */
.prod-d-container {
    width: 100%;
    margin-bottom: 0.4rem;
    /*background-image: linear-gradient(to bottom left, #e6ecff, #f9fafd);*/
}

.prod-d-container .row {
    --bs-gutter-x: 40px;
}

.prod-d-container .row .swiper .swiper-slide img {
    width: 100%;
}

.prod-d-container .row .thumbs-swiper-container {
    padding: 0 60px;
    margin-top: 20px;
    position: relative;
}

.prod-d-container .row .thumbs-swiper-container .main-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "iconfont" !important;
    font-size: 24px;
    color: #999999;
}

.prod-d-container .row .thumbs-swiper-container .main-swiper-button:hover {
    color: #004ea2;
}

.prod-d-container .row .thumbs-swiper-container .main-swiper-button-prev {
    left: 0;
}

.prod-d-container .row .thumbs-swiper-container .main-swiper-button-prev::before {
    content: '\e685';
}

.prod-d-container .row .thumbs-swiper-container .main-swiper-button-next {
    right: 0;
}

.prod-d-container .row .thumbs-swiper-container .main-swiper-button-next::before {
    content: '\e687';
}

.prod-d-container .row .pro-title {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
}

.prod-d-container .row .pro-content {
    padding: 30px 20px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 35px 0;
}

.prod-d-container .row .pro-content .tag-container {
    padding-top: 30px;
}

.prod-d-container .row .pro-content .tag-container:first-child {
    padding-top: 0;
}

.prod-d-container .row .pro-content .tag-container .tag-title {
    color: #333333;
    font-weight: bold;
    font-size: 18px;
}

.prod-d-container .row .pro-content .tag-container .tag-list {
    display: flex;
    flex-wrap: wrap;
}

.prod-d-container .row .pro-content .tag-container .tag-list .tag {
    padding-top: 15px;
    padding-right: 30px;
    font-size: 16px;
}

.prod-d-container .row .pro-btn-container {
    display: flex;
    justify-content: space-between;
}

.prod-d-container .row .pro-btn-container .pro-btn {
    width: 260px;
    line-height: 50px;
    background-color: #004ea2;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

.prod-d-container .row .pro-btn-container .pro-btn .iconfont {
    padding-right: 20px;
    font-size: 28px;
}

.prod-d-container .row .pro-btn-container .pro-btn.consult {
    background-color: #e60012;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.h39gnJsHf0NWeCTuygxV {
    border: 1px solid transparent;
    padding: 0;
}

.HrHisPElmD_XxB9LKi6j {
    padding-right: 4px;
    text-align: left;
}

.EQvEDwRqICOvs_x_kUWW {
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 10px;
    -webkit-transition: background .2s, border .2s;
    transition: background .2s, border .2s;
}

.A1LO1m96faGxseE9tNf3 {
    background: none;
    border: none;
    color: #8491a5;
    color: var(--GBL05A);
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    text-align: left;
    width: 100%;
}

.Select-option {
    background: none;
    border: none;
    color: #8491a5;
    color: var(--GBL05A);
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    text-align: left;
    width: 100%;
}

.wzIYYDapUzV6NOo6FjeV {
    border-radius: 4px;
    max-height: 500px;
    overflow: auto;
    padding: 8px 0;
    position: relative;
}

.Select-list {
    border-radius: 4px;
    max-height: 500px;
    overflow: auto;
    padding: 8px 0;
    position: relative;
}

.Hd4HpgivEXthJjQIraJI {
    --v2801441220: var(--flag-light, 0 5px 20px rgba(0, 0, 0, .1)) var(--flag-dark, 0 5px 20px rgba(0, 0, 0, .1));
    background: #fff;
    background: var(--GBK99A);
    border: 1px solid #ebeced;
    border: 1px solid var(--GBK09B);
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    -webkit-box-shadow: var(--v2801441220);
    box-shadow: var(--v2801441220);
    position: absolute;
}

.upload___2TMms {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #969799
}
.upload___2TMms .uploadTrigger___E9VLc {
    min-width: 116px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0064c8;
    border: 1px solid #d5d5d5;
    border-radius: 2px;
    white-space: nowrap;
    background: #fff
}

.upload___2TMms .uploadTrigger___E9VLc img {
    width: 11px;
    height: 11px;
    margin: 0 4px 0 2px
}

.upload___2TMms .uploadDesc___SfBg8 {
    max-width: 700px;
    padding-left: 16px;
    line-height: 16px
}

.mega-layout-item-content {
    display: block!important
}

.chat-biz-intel-p-dialog .next-select-auto-complete {
    width: 100%
}

.chat-biz-intel-re-pro-dialog__tag {
    max-width: 220px
}

.chat-biz-intel-re-pro-dialog__tag .next-tag-body {
    min-width: auto;
    padding: 0;
    cursor: pointer
}

.create-ticket-new-robot-answer {
    width: auto;
    margin-left: 110px;
    margin-bottom: 20px
}

.next-form-item-label:not(.robot-solution-tool-container .next-form-item-label) {
    color: #171717
}

.next-form-item-label:not(.robot-solution-tool-container .next-form-item-label) label {
    margin-top: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.next-radio-group .next-radio-label {
    color: #171717
}

.next-upload.next-disabled img {
    opacity: .3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.next-upload.next-disabled .next-upload-inner * {
    color: #aaa!important;
    border-color: #e5e5e5!important
}

label:not(.robot-solution-tool-container___1MXsN label) {
    margin-bottom: 0;
    font-weight: 400
}

.fixedBottom___3xKOi {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    background-color: #f9fbfe;
    padding-bottom: 20px;
    margin-top: 30px;
    z-index: 100
}

.next-loading-tip {
    margin-left: 60px
}

.upload___2TMms .uploadTrigger___E9VLc {
    min-width: 116px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0064c8;
    border: 1px solid #d5d5d5;
    border-radius: 2px;
    white-space: nowrap;
    background: #fff;
}
.upload___2TMms .uploadTrigger___E9VLc img {
    width: 11px;
    height: 11px;
    margin: 0 4px 0 2px;
}

.upload___2TMms .uploadDesc___SfBg8 {
    max-width: 700px;
    padding-left: 16px;
    line-height: 16px;
}

.mfb-attachment-viewlist {
    position: relative;
    margin: 2px 0;
    display: flex;
    flex-wrap: wrap;
}

.mfb-attachment-viewlist__item {
    display: flex;
    align-items: center;
    margin: 4px 8px 4px 0;
}

.mfb-file-item {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.magic-icon-small {
    font-size: 16px;
    cursor: pointer;
}

.magic-icon {
    display: inline-block;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mfb-file-item-text {
    display: flex;
    flex-wrap: wrap;
}

.mfb-file-item-name {
    /*max-width: 80px;*/
    overflow: hidden;
    /*white-space: nowrap;*/
    /*text-overflow: ellipsis;*/
}

.mfb-file-item-size {
    margin-left: 4px;
    color: #888;
    min-width: 40px;
    line-height: 0.16rem;
}

.icon-kuaisubaojia:before {
    content: "\e61a";
}

.icon-jiarugouwuche:before {
    content: "\e615";
}

.ball {
    width: 50px;
    height: 50px;
    background: #e60012;
    border-radius: 50%;
    position: fixed;
    z-index: 999;
    opacity: .5;
    transition: left .5s ease,
    top .3s ease,
    height .5s ease,
    width .5s ease,
    opacity .5s ease;
}

/*对话聊天*/
#header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    padding: 0;
}

#headerBox p {
    float:left; font-size:14px; color:#FFF; line-height: 36px;margin-top:0;
}


#chatOutput {
    overflow: hidden;
    width: 100%;
}
#chatContent {
    background-color: #f9f8f8;
    /* background-color: green; */
}
#userOptiv {
    height: 129px;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
}

.border1Content {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #fff;
    border-color: #d5d5d5;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    height: 129px;

}

#toolsbar {
    height: 28px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    width: 100%;
}
#toolsbar1
{
    border-radius: 5px;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #d5d5d5;
    border-image: none;
    border-style: none solid;
    border-width: 0 1px;
    overflow: auto;


    position: absolute;
    background-color: #f1f1f1;
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;


}
.editor_border {
    margin: 4px 5px 0 3px;
}
#promptbar {

    margin-left: 1px;
    margin-right: 87px;
    background-color: #fff;
    border: 1px solid #fff;
    height: 30px;
    overflow: hidden;
    padding: 0 30px 0 10px;
}
#lreditor {
    height: 60px;
    max-height: 60px;
    margin: 0;
    max-width: 100%;
    outline: medium none;
    /*  overflow: auto; */
    padding: 0;
    width: 100%;
    border: 0px none;
}

#promptbottom, #promptbottom li {
    display: block;
    list-style: outside none none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

#SendBar {
    height: 26px;
    line-height: 26px;
    margin-bottom: 6px;
    margin-right: 6px;
    width: 81px;

    bottom: 0;
    font-size: 14px;
    overflow-x: visible;
    position: absolute;
    right: 0;
    white-space: nowrap;
}
#SendBar div.bd1
{
    border: 0 none;
    height: 26px;
    width: 81px;
}

#SendBar div.bt {
    color: #ffffff;
    cursor: pointer;
    float: right;
    text-align: center;
}


#selSendBtn
{



    border-radius: 0 6px 6px 0;
    height: 26px;
    width: 25px;
}
#SendBtn
{

    border-right: 1px solid #fff;
    border-style: none solid none none;

    border-radius: 6px 0 0 6px;
    letter-spacing: 2px;
    width: 55px;
}

.nicEdit-ocSendMsgDiv {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #dadada -moz-use-text-color #dadada #dadada;
    border-image: none;
    border-style: solid none solid solid;
    border-width: 1px 0 1px 1px;
    color: #000;
    display: none;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 138px;
}
.nicEdit-ocSendMsgDiv {
    color: #000;
}
.nicEdit-ocSendMsgDiv td {
    font-size: 12px;
    line-height: 24px;
}
.nicEdit-ocSendMsgDiv td {
    background-color: #ffffff;
    font-size: 12px;
    line-height: 24px;
    padding: 0 5px;
}

.cur {
    background-image: url(bimg/dir_icons.png);
    background-repeat: no-repeat;
    background-position: -200px 0;
    height: 16px;
    width: 16px;
}
.over td {
    background-color: #efefef;
    cursor: pointer;
}
.left td {
    background-color: #eeeeee;
    padding: 0 3px;
}

#welcom1
{
    text-align: left;
    word-break: break-all;
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 5px;
    clear: both;
    color: #2e3531;
    line-height: 20px;
    margin: 10px 10px 4px;
    padding: 9px;
}
#msgArea {
    position: relative;
}
.img1 {
    position:absolute;
    left:12px;
    top:18px;


}

.other_msg
{
    clear: both;
    text-align: left;
    background-image: url(bimg/dir_icons.png);
    background-repeat: no-repeat;
    background-position: -200px -137px;
    color: #8a8a8a;
    line-height: 19px;
    margin: 0 10px 16px 36px;
    padding: 12px 9px 0 17px;
    position: relative;
    word-break: break-all;
    float: left;
    width:70%;
}
.other_msg p {
    margin: 0;
    padding: 0;
}
.kongge_msg {
    height:10px;
    clear: both;
    margin: 0 10px 0 60px;
    padding: 2px 9px 0 17px;
    position: relative;
    float: left;
}

.zi {
    color: #bdbebf;
    font-size: 11px;
    height: auto;
    line-height: 14px;
    text-align:left;
    width: auto;
}
.zi a:link, .zi a:visited {
    color: #bdbebf;
    text-decoration:none;
}
.zi img {
    border: 0 none;
    vertical-align: top;
}


.toolbutton{
    background-color: transparent;
    background-image: url(bimg/dir_icons.png);
    background-attachment: scroll;
    background-repeat: no-repeat;
    width: 32px; height: 24px; float: left;
}
.toolbutton0{
    position: relative;float: left; white-space: nowrap; margin: 2px 0px; cursor: pointer;
}
.toolbutton1{
    background-color: transparent;
    background-image: url(bimg/dir_icons.png);
    background-attachment: scroll;
    background-repeat: no-repeat;
    width: 32px; height: 21px; float: left;
}
.toolbutton10{
    position: relative;float: left; white-space: nowrap; margin: 0; cursor: pointer;
}





.msg-box
{
    clear: both;
    position:relative;
    margin-bottom:0px;
    margin-left:0px;
    margin-right:0px;
    margin-top:18px;
    text-align: left;
}
.msg-agent {
    position:relative;
    margin-left:10px;
}

.msg-client {
    position:relative;
    margin-right:0px;
}
.msg-agent:after,.msg-client:after {
    display:block;
    clear:both;
    content:''
}

.text
{
    font-size:10pt;
}
.text1
{
    font-size:12px;color: #58595b;line-height:20px;margin-top:-2px
}


.msg-agent .arrow,.msg-agent .arrow-bg,.msg-client .arrow,.msg-client .arrow-bg {
    position:absolute;
    display:block;
    width:0;
    height:0;
    font-size:0
}
.msg-client .arrow {
    top:14px;
    right:-6px;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent
}
.msg-client .client-avatar {
    position:relative;
    right:10px;
    top:0;
    float:right;
}
.msg-client .client-avatar>img {
    width:24px;
    height:24px;
    margin-top:1px;
    border-radius:18px
}

.msg-agent .agent-avatar
{
    float:left;
    left: -20px;
}
.msg-agent .agent-avatar>img {
    width:24px;
    height:24px;
    margin-top:1px;
    border-radius:18px
}

.msg-agent .arrow-bg {
    top:13px;
    left:-7px;
    border-top:6px solid transparent;
    border-bottom:6px solid transparent;
    border-right:7px solid #f0f0f0
}
.msg-agent .arrow {
    top:14px;
    left:-6px;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-right:6px solid #fff
}


.msg-client {
    color:#000;
}
.msg-client a {
    color:blue;
}
.arrow_box,.arrow_box_left {
    position: relative;
    border-radius: 6px;
    padding: 8px 12px;
    width: auto;
    word-break: break-all;
    word-wrap: break-word;
}
.arrow_box {
    max-width: 72%;
}
.arrow_box_left {
    max-width: 82%;
}
.arrow_box {

    background: #b2e866;
    float: right;
    border: 1px solid #94d03f;
}
.arrow_box_left {
    position: relative;
    left: 0;
    margin-right: 15px;
    background: #fff;
    float: left;
    border: 1px solid #d8d8d8;
}

.arrow_box:after, .arrow_box:before,.arrow_box_left:after, .arrow_box_left:before
{
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    top: 16px;
}
.arrow_box:after, .arrow_box:before
{
    left: 100%;
}
.arrow_box_left:after, .arrow_box_left:before,.arrow_box_vote:after
{
    right: 100%;
}
.arrow_box:after,.arrow_box_left:after,.arrow_box_vote:after {
    border-width: 6px;
    margin-top: -6px;
}
.arrow_box:after {
    margin-left: -1px;
    border-left-color: #b2e866;
}
.arrow_box_left:after {
    margin-right: -1px;
    border-right-color: #fff;
}

.arrow_box:before,.arrow_box_left:before {
    border-width: 6px;
    margin-top: -6px;
}
.arrow_box:before{
    border-left-color: #94d03f;
}
.arrow_box_left:before {
    border-right-color: #d8d8d8;
}
#pmtdiv
{
    width: 100%; height: 25px; border-color: rgb(208, 210, 209); line-height: 25px; text-indent: 5px; border-width: 0px 0px 1px; border-style: solid; color: rgb(102, 102, 102); background-color: rgb(240, 242, 241);
}
#mbCloseLink {
    width: 24px;
    height: 24px;
    background-image: url(bimg/CBClose.gif);
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center center;
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #e6e6e6;
}

ul,li{list-style:none;}

#tab{position:relative;}
#tab .tabList ul li{
    float:left;
    background:#ededed;
    background:-moz-linear-gradient(top, #fefefe, #ededed);
    background:-o-linear-gradient(left top,left bottom, from(#fefefe), to(#ededed));
    background:-webkit-gradient(linear,left top,left bottom, from(#fefefe), to(#ededed));
    border:1px solid #ccc;
    padding:5px 0 5px 0;
    line-height: 22px;
    width:100px;
    height:22px;
    text-align:center;
    margin-left:-1px;
    position:relative;
    cursor:pointer;
    font-size:14px;
}
#tab .tabCon{
    position:absolute;
    left:-1px;
    top:33px;
    border:1px solid #ccc;
    border-top:none;
    width:403px;
}
#tab .tabCon div{
    padding:0px 10px 8px 10px;
    width:95%;
    position:relative;
    display:none;
}
#tab .tabList li.cur1{
    border-bottom:none;
    background:#fff;
}
#tab .tabList li.kongge{
    border-top:1px solid #fff;
    border-right:none;
    background:#fff;
    cursor:default;
}
#tab .tabCon div.cur1{
    display:block;
}
.input1 {

    height: 30px;
    line-height: 30px;
    width: 250px;
    font-size: 14px;
    padding-left: 8px;
}

label
{
    font-size:14px;
}
.red
{
    color:Red;
}

@font-face {
    font-family: "iconfont";
    src: url('iconfont.eot?t=1588836918817'); /* IE9 */
    src: url('iconfont.eot?t=1588836918817#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAABV8AAsAAAAAJbQAABUsAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCGVAq3NKtdATYCJAOBDAtIAAQgBYRtB4MTG84eRaSVrJYwsv/rA9uY+Vi9SAd1IEoZ36sx0zXKa2Fy1oWDycPj+h/kMqUNHiqjuAiBqIibkJdbw1Wou+t2t80XDu77oZTEA/fu/mqsqQnHGQcW5QHA43gA7l3vrwnU9AQTjNYEzeIoHncHttC2wIGCbukUEb/5eX5O/9z3XkxeFDyCaUIRTxAPlgS3dqNdTQI1OoUqVEmV1IyOUP/7NVZFq9R85imAgG2qpdXp/3YNS1pdv819x1iAfFg4WKT84Ly8Egqkc753KydwOrP6XgTYPXNHTtTzk7SeaT2C7MIJkoQ1w0+9kcpX/b8dmjNtMkDO8MZCATp0ItekcE36/1dOO8pzHnMPgHZqCthOTSbjZ07nOvVzRMZMT6kJYSeUHtSmeoYsmVTfQqBL64ds+n01hVpgLIMsHB56iG3/e+8U6On5afyeqQe6mGUvkGNPDVVAl1xizeJCHpEqWo0FF4k8/IRDwFf8+uKPak4piVh9ei2TaiH+E+QDN/2bTKIuL+lJWLdFhQfUFDdl8Cdy0UMIpYqMHYEWAoEwLdlmA1Ou3MmRGvrf8IY+q83ucLrcHo3FrNXpDUaTWq5QqtQSjVYmEkukQoqUlX0AxStS7gi4AQoCAVcEAW4IBmwRAtghFLBHGOCAcMAREYATIgFnRAEuiAZMEAPYIBawRhxginjADAmAORIBCyQBlkgGrJACGJMK6JAG6JIO6JEB6JOJDU7iAtZA3MCGEA+wEcQLWBviDayC+ACrIb7g0hA/YC2IP7zKRmodT+ANOs/0Fw1r3l9yIRR1dRSvWYKBxLbIwUwlWPipQIg1KFoLiQ+S8kK7AqltZOyRXZhSuAa42bMTQjdks9gcBkPBrhzpPeH4lI2YQtlpBKeWssMvojh5XRnIy/bklIgtFKjgbb+IUrbMSdleCbCubU+b6AmHyRf4ZricEQ2e4Gx+JupMYa1RozWsZyiEEk4K8SAAThuBcLMnvBdC2zaYI3rjM6NGjXKSXC0GKfP3AvteFaJe4+z0uAjix9IIKwyDngZsoxyOpnWaJqITaYK3Ag7GynuzXbPwQsEYjh4GQO53BuTaPpV0Gb7QmJC7tI5CpAqmDVKisxPhTQFLR0MoiARQp3cwhbWETNPyrHmCZ1KeSGEUxMsELUs8Kkjxk6TYzUM5ShB8gGmPQwpNxMYx0CL4WKymOc5GuDM6kdEopJkjACJFac6AkygjCsFmbY9dbAkKcjoyFCE5l4Jeoh4Dfq1+7jaJRLd4dvmzUCZXw4/eHmXKKqcxj00Dp+E0YVWGSdYxzeq0HWBsssLNkL3GhIEdHGjmRO3PGl45ljHfBAsFnU8zSNI4dW94pD/Z4bosAghpI7A0kGKuRa5XBzvJqjB8yItCCGe67PVf810mT4W1a1pSQAqS3kYdkmmQUkxASVE+LIF1HOnN/2G07sYVKAnqUFKkk09jjXKEeaY9VuCM5DIAM4yq/KVR1QlTusReR7vKd6Cbe8r27WGx6X9kOGgt7zr4+ekjru3GsL4sAbuyHFL9rSmcp7ayJPLAY70IJrNN0ZrmMZeNA1DocVH0xSDARFXQaSffPi4fMvZ2QRFCwB5BAUTw1+9I4SeRgMK7eTgB90bIOiuqZIgcT39CBAww0w6qxpZdoQIu8UUhf8CxbYfUhj0T5U1MuXRCFqow8sVY4D7Xl+6a1EMG97vuGXrrhdF+WWA+NxjP5heHL3EUb4VzAc1rdJlH9ujQ0jAQwahypTjD+tFyTwHsnUccZFRBQL1PemiHNKIc7BBJJfCGF1QEW8KHuLdltTorHRUX6t6FcLs+uFBiP4WxHJyGKlPpGifqfO9ciQBkq4TjagOgMtY1ElvTzURfvknvuhFUh1cl93r6RphvC1vcDr+c7epxeUWBXupKoQRuyDyYWiJlOnOjGE4n5btYtIaHR0bGxlzbDnqTxbslXODyBwT/8G96rKDdjtsgxeKEpY40DDAZKJlfFGwEuyUR0fQohSVVU8yIfMSYDmKKBZ1oERhgNW/ycR0LkodrvSiTm+gHa7OWCA4eAlNOuHd+C3aZcnMDUhReHt4KJ/mg+BCQT95nPNMzDfkmrRelQRWWlYtyzkLlLVFeXyDgXT40sKFm47gN+6NJCOEIR7Akpw6fmbzqUIqmC9IvPVkJDQCnQtjDzUHcvGKdIPMKljjV70yXN/uEJJ9aGPRPlx2+kD7Rj+lyuXyT5lqjxggHfAeBUj4CBOO0X+arXmES9oAIzGcMGzQ8jk13vcTR11WOLWnMDa0t5hh7UxeOlSUTVqPxrCaVoQrQawSdE4xtQ+8gflJzEc5QmrnlVcjnA3qUjzERK+sLZUb4Epn6utFe9ZbbF2ro6RgpmhSGe+Nd2aaaQOTOWL8ejdU5TuWkzuRwZtciorTgSGE+kV94tHhuAXGpw08giouOlXYugkr7Eb/zWkkXuJz3TTeBmmvphJp85DUzCAxcIXDKd9x7jtP4l9K83gOQ2v9RnzylOo61nuhbgTxiINGGsO82WqNGR0AMuEpSg28IXGE/zjVH9a6OBtBTOCCToqjOq2GYKVjfF4qHCA+Ho1EGd713YSQphecmRJprFIlcQEBgDnRXb37wqx4ZMkDnKkjcWTg+XMbanjFgtq2UZVgVNyvTiOrUvhg7ZFNpeTeEw08o3zfb5C/zlz825QYH15J/xiybK5H20kvWpusJdAPuLNsOWbRnZ3QgrKvdfuzJqGLHWApV6R1O9MdLQeJSrDjySpUK0VaoelWEesuYH1cBNdOu1vSVdSiU7RayY5fKAukV43qYCaTrI27MEgm7ik8KqsnOAnXJak8gqA4qfuS7ZLMej6OmDh///PwRJ9D8Ijd3elG37Vq0aaTAhE8s9bb1bJX8XaqLrRCe3TwMBNf6/gqrEr+8c8y1d7Ttw1W9o8x5ZcyBS6owC5csS1RRqQpx20yqZLGblDtW7aFee/GYw0dhetTu3ge2C/Qxn9nxR0R46ZumMeGb5wh00sARoX+ZC6auHrkb490jL036X1AsWjtx5vKF5T9/6/T1OPcDc3/ze+kT2u1XOnnjif/SF45lJ345TP0EfZws8rW83V+nF17eMTP+cG3dmsOZG9x9Q37P15fA2+zRQ14WZ97y/Fsrq4k5LQ48niQxHj2VrnE0Rndf+o26iSQ49ggLEBcYG/kP/yBcM1I+EwUUiLP9UG3rChx5cViqu+ns8oOOeromjjFc1LojR3jIURZz9NV/KTPFjZEXOPmQkoipmTMAnWnN3uEJqDp/fUJHkSNVeJ+Xgtr0SoLvDWAMP+euxxbx8XbtsqGxIOycSUqVs3Qo6yHq4bLxaJKPcIIuLbu7o5jUGReK8lMDhK8eoC2eGnGaJ40agqJxNtVfC/wPMeKExXhu+Rgfo7x8aOFy5DgEk1NqrUaGEOEodCVJdRGefuA1f8138JsVVypxP1nW91mufpOJLkmT53NyVsfw1K5qHt599Wo3Ppnomjg5Hzebn2AP8ezeT768rWdEKoJRZaUmw5x46tuB/vje9Liqyh+N/9V/+SkjG3/3fVmYLjNTF1YGUabC37hKJ8XN324KnAS5GVLu2d3+R3+Qtt4QX6R+bCWCzjqqHkk+fayacbXppoKCmoh5lBA5WfoLR/3W5f7CVTjLc5Oo3NM7o2ziN90QnVdXEvGDDuqHp5nH2Zn77OAQtWz/uuE7FXFXcyu4ir+3RJOEun0Bo0+XNzc0PW7m4OlZcTtrOnLzesx9X8xAJGZx2lhVZRJu3Lm119wtZtTW7rn1Fdic1+GXLuHrJvhGhZE3gWZu2jRTNrRZPv0JSl2dZAJfd+mSg7maNMoNUA0GuRGc8k32blDb7PFrq3udvdq2Y+3Fp8abKnC8szg4PZilhrlh5d4/XHItXMTIUsdxMlsrs9DxRFRcjBI44AicYk7n8Upd4jp1bHbus/icy5Uzd5XMYkH1n91DTmJajbOxclVKxNUHJIcY2tZ192fx6oKFDrrRfyFWGSePWauxTNZzLdptwfEQvE1j4TbwLJptoVZC6CKkGY0WXadnh03yeIYfLJqtldbQbZr4W1wt7xRP6ziF+/ka+O8/pjrMdi92dI0PTTQNJMC86Jl3dkX4bzj51C9dy9laURbYUuF/L8Zc1rT26MmMlJVP3eZEJz4apcjlFNnGFoTJY7GNosVZesJK/PknMUhYB1lXcG6ctVjbu2hRrxaitbzcWVjRnDlFWPSOb/irAvMVGo0yPzAIq2pvr8aIYn2QWHUrlvGXhBsPBiOKnxnaxn6WV4PSKitTEZGGLIDSAqVBpqHZfWVL+LOZbpPFc+cWpacVwxShaXsSKilFSSd9U2lpEjJHlCIEW/bO4C7kWnc4dPSazXMZJ5kdZtYy8QOxZ46VsozVNZfR+L3ZiQKIUC5RSpZ8oEmV3AeTSknrbV6ilNI+LEF3uoiheGX8EKEUIxZ/T/xqWmnrutn1w6XbH3z/+9HWda5tMlYzj8a164jVPvQZc7gr4NLwx94P+447XeIXM7JDHIxuhdk+ZWREMs8hdtqyThIj1Wm4Av5ZUlnobnBf1u5m8Kqm3ggsb0vVX+ifxIMU0xL/zgjNNZfrIr9smZrknOqyOc3leYeaW5wTXVKzoczYp5vyZuYngiDKzf7HGcYpdaOCDFaPS7KbYdkyg1uRW9Xvgh7BAdFGjwHRAcEAuD5duBn9vSemM7Ir0mtaa+s0Lyd8nTF7/kabKeMuLtFXUV7z+vdP6vGgT5mDjMHWBOy4xYptVaXefAO+mwOma8JrDCtjUDDUvL/GZH3HPfLElkwQMhkxkSzwbvWeErkP2ygMkfVguWIYvOm6zQ+QXi9NqTMWl9PaBxqeF5Y3kItXMVLkHgoMVprGoy6mTFDqjicziA9jgm74YTLrL590oo3oUGfSfM6p+R2CCEHretmdsfcmO9Bejs3evskOmDvXdm447GwYY/PseXZn/cBqWXqYZxfQj7EJ8AY11kXwsM3OvgsA3PRyo+AuZUzDVm/AZkC9sp5EutrGdJSBahqRzus0+ELU+LyM13av56XXmvh0Z5iGVndj052dZwLZFKySh6sXCNR6kShUoZrvlF8QdmxpsMqgUqCIXA3/Lba5cSbyu8oo45QJV9eJ56SSuf65KKfy46pMumzqJOat1Jh/exwSsfxj7Ki48lHDmc1akFR++M3n+cMfusDt50jDwf6tO846tsfaTqMvVip+jJCdDXdc+HPJvqIFIQuWRsnPCx3DZWcjf1D8hBOdtsW2n3XcsbXfcHBXh2ou7HxIAoCzMwCQyMmJv0iLAMDJGfiAODshkG4eQkNDYWFDc2pQ+1pn5yBcG0pNtV6DV2ZEyhAcc6cEDTrUPObWE3LV4I54oYDb8NgOzjoo/X7/L7/3i86/TSrVkXPInwRVGMX/6eZxGCwj65UN5ISmQVkPoatfVVfhSSvky91On3FbrliehFdVa7WWzHKKTLYF/ulrzdqro7zHLP34L78Qp4h+/P0EVv5ffsWV/9SvP1NenquPrLPfo/oKkFCpcx7M+bRKzDYONx7/32h5b8yeEv/QkOKArK/YGvRvPzp5L3vp46y4qVHfyZ2TYU6M25OOlNKScrhQddZwDNrnnNWfmUxK4eo5Z/THWtPSaMcMpjNnDcdpgjlJewxnuEmQzEm8+U0f1ZYe0x82vRf2Bm302hg0g9pLg6ifxC1Y6YL5pVjA4jRf1spabPlyrNYdq9mXarG/pKE2EdOrma6zfmKYdVmOvidKZfOGNsj+1KKiQpTgzm1aGvqJOTvdlwUxh00bmqWn6qTr7ZW21XUztvVtTyQSj27pA93uroxMBj0zs7Ozo+iMo+5C/zOBCqUmD2sNfU3yNRpSQOoAPsnXapAAqULUB8BARkgMQIIBBDwjGVyQvtf+KDlplQ1EawYez+Lti4pHR4OPwQ++11y8Th5VHSWPWPdzZ01an7dmlV29eJN/HvQTeIdnt4imuLZWMyV7tjTxTbLKPygnJCAJLUiVfEE/L99ndg5Sh7JzZtflIkvqVP5+pop6PFfh8v/A8kNC1GJVqNfxmRTiQnuUQfwKdowsDZXw2rIcc8o+z4iNZ0LIMdNa5QTUK/uUW2BCuVbxGr7G+rCv4PXM0ryPed2/UQQ5azWIYiEEHtPtFfZODiRjejyiGHgFfQUQlu/7ypyV5RDroEiz+1r2TMmIZ2Kbk8qSvDkJqQ7vLntK7t/6hv/Ss1QXu166viTZo3aMD/cH+T+YFOCj4nnzSjDeTyvULVdXdIAZWgYXPW8etn37E/yBrer89MsLG9LlWmz9t6c02+bM/uKM90Obu7Pz5oStOj04M37zyry8jV0UNqeHNUW0eHu36Cn957fAko++tkmw/lC2EqfAOwBsbfg43ma7Zyt1CF8OYDPhE3g7gG0FfhNfpBJWiMXXcdPmdtyKL0neSgA+xdS3LFN/R0vAIdo+w9swl8BZBJDpdS03AwDgS0xhewmA6OD0uMo43m77SFkswrsefUMQuCTtqffpNuG0qH88T3pMGJlMA//PmeeBV/FBSgUv+lc663848Xcn7oUKSDNVQ2oXAND/FHwJgX+8YALXUA+tJ4uFlOc6cLsO2z2vynDZ3sERyg1HOsdL0chHdQX5coZtVcI7QAoGgGnHA9jAuiqAh+aL4pfjHogu8WsGQ+PM4OjcaGK6H0PBEsJQ0cUxTL6Q0jaLEGYADsUMAPCB5TMG4cMhBsN1lsHx4XuamP6AoZDAe4aKj3CGyZX/UyeRkZtGLxGVYA7ZA0gHNuWVkZPzC23yKr63iE1/GGuKh9V8+THtAxljGk3UV7sWMWBiKOF91jf0PkAVQ4Fa5k6kOi8WRtXkXIeyMbJMhBR57JoDmcfhRAuYubEY+X7+F2QlnhI1FR4P/4OiGj0+WJlbEugPgUkVmpK/dmWtyVwy4FY8CkrgfS4hbycHoFI/q4A0MediKJWzxbwhQxXm+TvK/iNofZVaX8c9Jisnr6CoRKky5SpUqlKtJllQWFRcUtqufYeOnTp36VpWXlHZTX/m0CXatHI/BzkpdkmtBq3EtiC1diI2wf71aC5wCR85uPNPQlpyNfhMhQfdowYZOFwUcv+GrFzEvYzUiXuSKklnUhDWLuWJkpj1bJANI/87uuz4gOjpv6K0dT2lh+KpRWLK107Zo7HarYmi0bNJcUbdf2ce6puAerEUr1bDuYsM/y6w7XZK16z3EFeraetpm2nbabtp+6TDYF5IBfDY/ks7Gw0AAA==') format('woff2'), url('iconfont.woff?t=1588836918817') format('woff'), url('iconfont.ttf?t=1588836918817') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
    url('iconfont.svg?t=1588836918817#iconfont') format('svg'); /* iOS 4.1- */
}


.chehui i {
    font-size: 12px;
    color: #bebebe;
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.chehui {
    float: right;
    text-decoration: none;
    width: 20px;
    height: 20px;
    border-radius: 22px;
    background: #f3f3f3;
    text-align: center;
    line-height: 20px;
    margin: 5px;
}

.iconchehui3:before {
    content: "\e609";
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c4c4c4;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

.chehuifont {
    color: #333333;
    opacity: 0.8;
    font-size: 12px;
}


.LR-ICON {
    background-size: 32px auto !important;
    background-repeat: no-repeat !important;
    background-image: url("https://iyoubucket.oss-cn-hangzhou.aliyuncs.com/zhechengweb/mclose.png") !important;
}

.LR-ICON-CHAT1 {
    background-position: 0 0 !important;
}
#LRMINIBar {
    position: fixed;
    z-index: 2147483647;
    width: auto; height: auto;padding: 0;
    margin: 0;border: 0;
    background-color: transparent;
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}
.LR_Mini_ICON { }
.LR-BTN {
    display: block;width: 60px;height: 60px;border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 31px;box-shadow: 0 0 14px 0 rgba(0, 0, 0, .16);
    cursor: pointer;text-decoration: none;background-color: #00a6f1;
}
.LR_Mini_ICON span, .LR_Mini_ICON div, .LR_Mini_ICON img {
    float: none;width: auto;height: auto; padding: 0;margin: 0;
    border: 0;background: none;
}
#LR-BTN-ICON {display: block;width: 32px;height: 32px;margin: 14px; position:absolute; }
#LR-CIRCLE {position: absolute;top: 0;left: 0;width: 60px;height: 60px;border-radius: 30px;text-align: center;font-size: 18px;line-height: 60px;background-color: #00a6f1;color: #fff;}
#LR-BUBBLE {position: fixed;display: none;width: 90%;margin: 0 5% 74px 5%;border: 1px solid #f7f7f7;color: #000;text-align: left;box-shadow: 0 5px 16px 0 rgba(0, 0, 0, .16);line-height: 1.428571429;background-color: #fff;}
#LR-BUBBLE-CLOSE {position: absolute;top: 1px;right: 3px;width: 26px;height: 26px;background-position: -3px -58px;}
#LR-BUBBLE-INSIDE {margin: 10px;}
#LR-BUBBLE-AVATAR {width: 26px;height: 26px;border-radius: 13px;margin-right: 6px;vertical-align: top;box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);}
#LR-BUBBLE-NAME {display: inline-block;margin-top: 3px;font-size: 16px; color: #000;}
#LR-BUBBLE-MSG {height: 40px;margin-top: 5px;font-size: 14px;overflow: hidden;color: #000;}
#LR-BUBBLE-MSG img {width: 16px;height: 16px;}