#form {
    /*margin-top: 60px;*/
}
.form-control {
    width: 100%;
    margin-bottom: 0!important;
}
.input-tips {
    display: none;
    color: red;
    font-size: 14px;
    margin-top: 8px;
}
.relative {
    margin-bottom: 18px;
    position: relative;
}
.must_input {
    position: absolute;
    top: 13px;
    left: 0;
    width: 6px;
    height: 6px;
}
.must_input .full-img {
    width: 100%;
    height: auto;
}
.input-tips-error {
    border: 1px solid red!important;
    /* -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(233, 102, 102, 0.6); */
    /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(233, 102, 102, 0.6); */
}
.input-tips-error:focus {
    outline: 0;
    border: 1px solid red!important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(233, 102, 102, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(233, 102, 102, 0.6);
}
@media (max-width: 767px) {
    .normal-banner .banner-title h2 {
        line-height: 36px;
    }

    .must_input {
        position: absolute;
        top: 10px;
        left: 11px;
        width: 6px;
        height: 6px;
    }

    .contact .form-control {
        margin-bottom: 0!important;
    }

    .input-tips {
        padding-left: 10px;
    }

    #form {
        /*margin-top: 35px;*/
    }
}


#xy-modal-bg {
    background-color: rgba(0, 0, 0, .61176);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.xy-modal-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9999;
}

.xy-modal-wrap .xy-content {
    max-width: 480px;
    width: 80%;
    background-color: #fff;
    min-height: 100px;
    border-radius: 2px;
    padding: 40px;
    position: relative;
}

.xy-animate-img {
    width: 68px;
    height: 68px;
    text-align: center;
}

.xy-animate-img img {
    width: 100%;
    height: 100%;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animate {
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}

.xy-close-x {
    height: 24px;
    width: 20px;
    position: absolute;
    right: 8px;
    top: 7px;
    cursor: pointer;
    font-size: 30px;
    font-weight: 400;
    line-height: 23px;
    color: #636363;
    opacity: 0.2;
    text-shadow: 0 1px 0 #fff;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.xy-close-x:hover {
    opacity: 0.6;
}

.xy-content h1 {
    font-size: 20px;
    color: #000;
    margin-bottom: 18px;
}

.xy-main {
    text-align: center;
    margin-bottom: 56px;
    color: #787e85;
}

.xy-main h4 {
    font-size: 16px;
    line-height: 24px;
}

.xy-footer {
    text-align: center;
}

.xy-btn,
.xy-btn-primary {
    display: inline-block;
    height: 44px;
    background-color: rgb(250, 250, 250);
    line-height: 44px;
    font-size: 16px;
    color: #666;
    padding: 0 46px;
    border-radius: 4px;
    border: 1px solid #eee;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 10px;
    cursor: pointer;
}

.xy-btn:hover {
    background-color: rgb(240, 240, 240);
}

.xy-btn-primary {
    background-color: rgba(55, 164, 252, 1);
    color: #fff;
}

.xy-btn-primary:hover {
    background-color: rgb(54, 150, 228);
}

.xy-none {
    display: none;
}

.xy-footer {
    font-size: 12px;
}

/*
modal
*/
.cls-1 {
    fill: #38a4fe;
    stroke: none;
    stroke-miterlimit: 15;
    stroke-width: 8px;
}

svg {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
    display: block;
}

svg .cls-1 {
    stroke: white;
}

.checkmark {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
}

.run-animation .checkmark {
    -webkit-animation: 1s checkmarkDraw forwards;
    animation: 1s checkmarkDraw forwards;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

@-webkit-keyframes checkmarkDraw {
    0% {
        stroke-dashoffset: 150;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmarkDraw {
    0% {
        stroke-dashoffset: 150;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/*modal end*/

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.2, .2, .2);
        transform: scale3d(.2, .2, .2);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.2, .2, .2);
        transform: scale3d(.2, .2, .2);
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .xy-main {
        margin-bottom: 46px;
    }

    svg {
        width: 70px;
        height: 70px;
    }

    .long-btn {
        width: 200px;
    }
}