/* 在线客服 */
.soft .soft1 {
    /* margin-left: 170px; */
    margin-left: 50px;
}

.soft .soft3 {
    margin-left: 20px;
}

.kefu .kefu-box {
    width: 70px;
    height: 70px;
    color: #ffffff;
    position: fixed;
    bottom: 150px;
    left: 15px;
    background-color: #3970cf;
    text-align: center;
    font-size: 30px;
    border-radius: 5px;
}

.kefu .text {
    width: 70px;
    height: 20px;
    color: #ffffff;
    background-color: #3970cf;
    text-align: center;
    font-size: 16px !important;
}

@media screen and (min-width:992px) {
    .kefu {
        display: none;
    }
}

@media screen and (max-width:99px) {
    .kefu {
        display: block;
    }
}



/* sale.css */

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.modal-content {
    padding: 40px;
}

.modal-header {

    border-bottom: none;
}

.modal-title {
    font-size: 32px;
    text-align: center;
}

input::-webkit-input-placeholder {
    color: #333333;
}

.login-btn {
    float: left;
    width: 45px;
    height: 45px;
    background-image: url(../images/denglu.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 20px;
    margin-right: 0px;

    background-color: #ffffff;
    border-radius: 50%;

}

.formimg {
    width: 20px;
}

.login-button {
    cursor: pointer;
    width: 40%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background-color: dodgerblue;
    border-radius: 5px;
    /* margin: 0 auto; */
    color: white;
    border: none;
}

.btn-secondary {
    cursor: pointer;
    width: 40%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background-color: dodgerblue;
    border-radius: 5px;
    /* margin: 0 auto; */
    color: white;
    border: none;
}

.loginout-btnlist .btn-secondary {

    width: 30%;

}

.loginout-btnlist .login-button {

    width: 30%;

}

.btnlist {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.input-text {
    border: 0px;
    border-bottom: 1px solid #dee2e6;
    /* 宽度100%-30px */
    width: calc(100% - 30px);
    height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.input-text:focus {
    /* 鼠标放输入框没有边框*/
    outline: none;
}

input:-internal-autofill-selected {

    background-color: transparent !important;
}

.sale-text {
    font-size: 16px;
}

.login-pic {
    width: 100px;
    height: 100px;
}

.picture {
    display: flex;
    align-items: center;
}

.picture div:nth-child(2) {
    padding-left: 0px;
}

#login-thumb img {
    width: 100px;
}

#myModal2 .modal-content {
    padding: 0 20px 3px 10px;
    background: linear-gradient(to left, rgb(93, 159, 240), rgb(255, 254, 254));
    border: none;

}

@media (min-width: 576px) {
    #myModal2 .modal-dialog {
        max-width: 300px;
        margin: 1.75rem auto;
    }
}

#myModal2 .modal-header {

    padding: 0rem 0rem;

}

#myModal2 .picture div:nth-child(2) {
    padding-left: 20px;
}

#myModal2 {
    color: white;
}

#myModal2 .picture img {
    border-radius: 50% !important;
}

#myModal2 .modal-body {
    padding: 0.5rem;
}

#nickname {
    /* padding-bottom: 20px; */
}

#myModal2 .modal-header .close {
    padding: 1rem 0 0 0;
}

#phone-number {
    color: white;
}

/* button点击的时候没有框线 */
button:focus {
    outline: none;
}

@keyframes scaleToggleOne {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    50% {
        transform: scale(2);
        -webkit-transform: scale(2);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes scaleToggleTwo {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    20% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    60% {
        transform: scale(2);
        -webkit-transform: scale(2);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes scaleToggleThree {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    33% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    66% {
        transform: scale(2);
        -webkit-transform: scale(2);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.chat {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 30%;
    left: 40px;
    opacity: 0;
    -webkit-box-shadow: 0 5px 10px 0 rgba(35, 50, 56, .3);
    box-shadow: 0 5px 10px 0 rgba(35, 50, 56, .3);
    z-index: 700;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    cursor: pointer;
    -webkit-transition: all 1s cubic-bezier(.86, 0, .07, 1);
    transition: all 1s cubic-bezier(.86, 0, .07, 1)
}

.chat:focus {
    outline: 0
}

.chat.animated {
    opacity: 1;
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px)
}

.chat:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, #3970cf, #3970cf);
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 50
}

.chat #login-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 50;
    border-radius: 50%;
}

.chat .animated-circles .circle {
    background: #3970cf9d;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    z-index: 49;
    transform: scale(1);
    -webkit-transform: scale(1)
}

.chat .animated-circles.animated .c-1 {
    animation: 2s scaleToggleOne cubic-bezier(.25, .46, .45, .94) forwards
}

.chat .animated-circles.animated .c-2 {
    animation: 2.5s scaleToggleTwo cubic-bezier(.25, .46, .45, .94) forwards
}

.chat .animated-circles.animated .c-3 {
    animation: 3s scaleToggleThree cubic-bezier(.25, .46, .45, .94) forwards
}

.chat.animation-stopped .circle {
    opacity: 0 !important
}

.chat.animation-stopped .circle {
    opacity: 0 !important
}

.chat .chat-hint {
    position: absolute;
    left: 40px;
    top: 50%;
    margin-top: -40px;
    opacity: 0;
    z-index: 0;
    -webkit-transition: all .3s cubic-bezier(.86, 0, .07, 1);
    transition: all .3s cubic-bezier(.86, 0, .07, 1)
}

.chat .chat-hint.show_hint {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
    opacity: 1
}

.chat .chat-hint.hide_hint {
    opacity: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px)
}

.chat .chat-hint.rd-notice-tooltip {
    max-width: 1296px !important
}

.chat .chat-hint.rd-notice-tooltip .rd-notice-content {
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis
}

@media only screen and (max-width:1599px) {
    .chat .chat-hint.rd-notice-tooltip {
        max-width: 1060px !important
    }
}

@media only screen and (max-width:1309px) {
    .chat .chat-hint.rd-notice-tooltip {
        max-width: 984px !important
    }
}

@media only screen and (max-width:1124px) {
    .chat .chat-hint.rd-notice-tooltip {
        max-width: 600px !important
    }
}

.rd-notice-tooltip {
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
    font-size: 14px;
    border-radius: 3px;
    line-height: 1.25;
    position: absolute;
    z-index: 65;
    max-width: 350px;
    opacity: 1
}

.rd-notice-tooltip:after {
    position: absolute;
    display: block;
    content: '';
    height: 20px;
    width: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 50
}

.rd-notice-tooltip .rd-notice-content {
    background: 0;
    border-radius: 3px;
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 60;
    padding: 20px;
    font-weight: 400;
    line-height: 1.45
}

.rd-notice-type-success {
    background-color: #3970cf;
    -webkit-box-shadow: 0 5px 10px 0 rgba(38, 199, 252, .2);
    box-shadow: 0 5px 10px 0 rgba(38, 199, 252, .2)
}

.rd-notice-type-success .rd-notice-content {
    background-color: #3970cf
}

.rd-notice-type-success:after {
    background-color: #3970cf;
    -webkit-box-shadow: 0 5px 10px 0 rgba(38, 199, 252, .2);
    box-shadow: 0 5px 10px 0 rgba(38, 199, 252, .2)
}

.rd-notice-position-left {
    margin-left: -20px
}

.rd-notice-position-left:after {
    left: -6px;
    top: 50%;
    margin-top: -10px
}

.rd-notice-tooltip.single-line .rd-notice-content {
    height: 70px;
    padding: 10px 20px;
    line-height: 24px;
    white-space: nowrap
}