* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
    font-size: 13px;
}

.input:hover {
    border-color: #cacaca;
}

.input .label {
    width: 90px;
    text-align: center;
}

.input .value {
    flex: 1;
    display: flex;
    align-items: center;
}

.input .value input {
    flex: 1;
    height: 40px;
    font-size: 14px;
    border: none;
    outline: none;
    padding-left: 5px;
}

.input .value button {
    width: 80px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
}

.input .value select {
    height: 40px;
    flex: 1;
    border: none;
    outline: none;
    padding-left: 5px;
}

.input .star {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    font-size: 20px;
}

.message {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: red;
}


.agre {
    /* margin-bottom: 30px; */
    display: flex;
    align-items: center;
}

.agre input {
    margin-right: 10px;
}

.submit input {
    width: 100%;
    height: 40px;
    border: none;
    cursor: pointer;
    background-color: rgba(29, 112, 255, 1);
    border-radius: 5px;
    color: white;
}
#sub{
    width: 60%;
    float: right;
}

#back{
    width: 30%;
    float: left;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(29, 112, 255, 1);
    color: rgba(29, 112, 255, 1);
}

.submit #back:hover {
    background-color: rgba(248, 248, 248, 0.8);
}

.submit input:hover {
    background-color: rgba(29, 112, 255, 0.8);
}

.flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.flow .flow-line {
    flex: 1;
    height: 2px;
    background-color: #ddd;
    margin: 0 10px;
}

.flow .flow-item {
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ddd;
    color: #ddd;
    position: relative;
}

.flow .flow-item .info {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.active-item {
    background-color: #1D70FF !important;
    color: white !important;
    border-color: #1D70FF !important;
}

.active-item .info {
    color: #1D70FF !important;
}

.active-line {
    background-color: #1D70FF !important;
}

.iconfont {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
}

.success span {
    font-size: 20px;
    font-weight: 600;
}

[v-cloak] {
    display: none;
}

.tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
}