/* 左侧tab切换表单开始 */
.fixed-left-form{
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 15px;
    margin:auto;
    width: 326px;
    height: 458px;
    border-radius: 13px;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 11px 0px #CBCBCB;
}
.fixed-left-tab{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 78px;
    padding: 24px 30px 0 30px;
    border-radius: 12px 12px 0 0;
    background: #013DFF;
    position: relative;
    background: linear-gradient(90deg, #0586FC 0%, #013DFF 100%);
}
.fixed-left-tab li{
    width: 76px;
    cursor: pointer;
}
.fixed-left-tab li img{
    display: block;
    width: 40px;
    height: 40px;
    margin: auto;
}
.fixed-left-tab li p{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin: 3px auto 10px auto;
}
.fixed-left-tab li span{
    display: none;
}
.fixed-left-tab li.fixed-left-active span{
    display: block;
    width: 50px;
    height: 3px;
    margin: auto;
    border-radius: 2px;
    background-color: #FFFFFF;
}

.fixed-left-content{
    padding: 20px 30px 8px 30px;
}
.fixed-left-content li{
    display: none;
    border-bottom: 1px solid rgba(208,208,208,0.91);;
}
.fixed-left-content li.fixed-left-active{
    display: block;
}
.fixed-left-content li p{
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    line-height: 33px;
    text-align: center;
}
.fixed-left-content li span{
    position: relative;
    top: -8px;
    display: block;
    width: 80px;
    height: 4px;
    margin: auto;
    border-radius: 2px;
    background: rgba(213,0,0,0.3);
}
.fixed-left-rows{
    padding: 0 30px;
}
.fixed-left-rows li {
    padding-top: 20px;
}
.fixed-left-rows li p{
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 8px;
}
.fixed-left-rows li input{
    width: 248px;
    height: 40px;
    padding: 0 10px;
    border-radius: 3px;
    background-color: #EDEDED;
}
.fixed-left-submit{
    width: 268px;
    height: 54px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    line-height: 54px;
    text-align: center;
    margin: 22px auto 0 auto;
    border-radius: 27px;
    background: linear-gradient(90deg, #F10000 0%, #FF4E00 100%);
    cursor: pointer;
}
.sobot_left_close{
    position: absolute;
    z-index: 1;
    width: 20px;
    right: 12px;
    top: 12px;
    cursor: pointer;
}
.fixed-left-button .fixed-left-submit{
    display: none;
}
.fixed-left-button .fixed-left-active .fixed-left-submit{
    display: block;
}

/* 奉城系列宽度减小 */
.small-fixed-form {
    width: 276px;
}

.small-fixed-form li input {
    width: 196px;
}

.small-fixed-form .fixed-left-submit {
    width: 220px;
}

/* 页面风格 */
.before-color-system.fixed-left-form .fixed-left-tab{
    background: linear-gradient(90deg, #1FB5DD 0%, #1F6CDD 100%);
}
.before-color-system.fixed-left-form .fixed-left-submit{
    background: #FF9C49;
}