/*表单样式*/
body{
    margin: 0;
    padding: 0;
    background-color: #fff;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    /*overflow: hidden;*/
}
html::-webkit-scrollbar {
    display: none;
}
#app {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.form{
    height: 350px;
    padding: 28px 28px;
}
.form-item{
    margin:0;
    border: 0;
    font-size: 18px;
    .form-item-title{
        color:rgb(129 127 128);
        font-weight: 500;
    }
}
.form-item-input-text{
    -webkit-appearance: none;
    padding: 6px 0 6px 0;
    width: 100%;
    background-color: transparent;
    border: 1px solid #dcdcdc;
    border-width: 0 0 1px 0;
    border-radius: 0;
    font-size: 16px;
    line-height: 1.5;
    outline: none;
    color: rgb(0,0,0);
    border-color: rgb(220,220,220);
}
.form-item-input-button{
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 1px;
    border-style: solid;
    border-width: 0;
    border-color: transparent;
    background-color: rgb(78, 144, 255);
    color: rgb(255, 255, 255);
    width: 100%;
    height: 55px;
    position: relative;
}

.form-text-input-button{
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 1px;
    border-style: solid;
    border-width: 0;
    border-color: transparent;
    background-color: rgb(78, 144, 255);
    color: rgb(255, 255, 255);
    width: 100%;
    height: 55px;
    position: relative;
    text-decoration: none;
}
.input1-error-msg{
    color: #ff0000;
}
.input2-error-msg{
    color: #ff0000;
}


/*版权*/
.agreements {
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 2;
    font-weight: 400;
    background: #f8f8f8;
    position: fixed;
    bottom: 0;
    width: 100%;
    pointer-events: auto;
    z-index: 6;
}
.agreements .agreements-tip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px;
    background: #f8f8f8
}
.agreements .tip_privacy {
    color: #4e90ff;
    cursor: pointer
}

@keyframes ssss {
    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
    }
}
.buttonsss {
    width: 100%;
    max-width: 640px;
    height: auto;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999998;
    background-color: #ffa800;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.buttonsss span {
    width: 100%;
    height: 100%;
    margin-left: 15px;
    margin-right:15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: red;
    animation: ssss 1.5s ease-in-out infinite;
}