@charset 'UTF-8'; 

/*滚动条整体样式*/
/*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #ef7421;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0);
    background: rgba(0,0,0,0);
}*/


/* 选择历史记录的文字颜色和背景颜色 */
input:-webkit-autofill {
    -webkit-animation: autofill-fix 1s infinite!important;
    /* 选择历史记录的文字颜色*/
    -webkit-text-fill-color: #666;
    -webkit-transition: background-color 50000s ease-in-out 0s!important;
    transition: background-color 50000s ease-in-out 0s!important;
    background-color: transparent!important;
    background-image: none !important;
    /* 选择历史记录的背景颜色 */
    -webkit-box-shadow: 0 0 0 1000px transparent inset!important;
}
[role=button], a, area, button, input:not([type=range]), label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
input[type=number], input[type=password], input[type=text], textarea {
    -webkit-appearance: none;
}
/**common style**/
.closeBtn{
    cursor: pointer;
}
.formContainer {
    display: none;
    position: fixed;
    top: 261px;
    right: 88px;
    background: #dbbb5f;
    border-radius: 10px;
    padding: 20px;
    width: 360px;
    box-shadow: 0 0 10px rgba(0,0,0,.24);
    z-index: 9998;
}
.formContainer h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    color: #ffffff;
}
.form label{
		padding: 5px 15px;
        line-height: 30px;
        margin-bottom: 0;
        font-size: 16px;
        color: #757575;
}
.input-row{
    border-radius: 10px;
    background: #ffffff;
    margin-bottom: 10px;
    display: flex;
}
.select-row {
    display: flex;
    background: #dbbb5f;
}

.comm-input {
    display: block;
    padding: 5px 15px;
    width: 70%;
    line-height: 30px;
    color: #787878;
    font-size: 15px;
    border-radius: 10px;
    background-color: #fff;
    border: 0;
}

.commBtn {
    display: block;
    padding: 5px 25px;
    width: 100%;
    border: 0;
    background: #d79a33;
    margin-top: 18px;
    line-height: 30px;
    font-size: 17px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.comm-select {
    display: block;
    padding: 5px 25px 5px 15px;
    width: 100%;
    height: 42px;
    color: #787878;
    line-height: 30px;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    border: none;
    background-size: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    background: url(../images/formSelect.png) #fff no-repeat 94% 60%;
}
.formContainer .comm-select:first-child{
    margin-right: 10px;
}
.alert-success{
    display: none;
    margin-top: 10px;
}
.formFranchise{
    border-radius: 20px;
    width:50%;
    margin: 30px auto;
    background: #e2bf5e;
    display: block;
    padding: 0 3% 1% 3%;
    position: relative;
}
.formFranchise .phone{
    position: absolute;
    right: 4%;
    bottom: 4%;
}
.formFranchise h3{
    color: #ffffff;
    text-align: center;
    padding: 26px 0;
}
.formFranchise .input-row{
    background: #e2bf5e
}
.formFranchise .input-item{
    width: 50%;
}
.formFranchise .input-title{
    color: #ffffff;
    line-height: 1.8;
    font-weight: 500;
}
.formFranchise .comm-input{
    width: 98%;
}
.formFranchise .commBtn{
    width: 45%;
    margin: 38px auto 0;
}
@media screen and (max-width: 900px) {
    .formContainer {
        right: 5px;
        z-index: 99999;
    }
    .formFranchise{
        width: 100%;
        padding: 2%; 
    }
    .formFranchise .commBtn{
        width: 100%;
    }
    .formFranchise .phone{
        display: none;
    }
    
}







