@import "//at.alicdn.com/t/font_1306044_novcmxqmyn.css";
@font-face {
    font-family: 'icon';  /* project id 1306044 */
    src: url('//at.alicdn.com/t/font_1306044_novcmxqmyn.eot');
    src: url('//at.alicdn.com/t/font_1306044_novcmxqmyn.eot?#iefix') format('embedded-opentype'),
    url('//at.alicdn.com/t/font_1306044_novcmxqmyn.woff2') format('woff2'),
    url('//at.alicdn.com/t/font_1306044_novcmxqmyn.woff') format('woff'),
    url('//at.alicdn.com/t/font_1306044_novcmxqmyn.ttf') format('truetype'),
    url('//at.alicdn.com/t/font_1306044_novcmxqmyn.svg#icon') format('svg');
}

*{
    margin: 0;
    padding: 0;
	font-size: 14px;
}
html, body {
    width: 100%;
    height: 100%;
    background: url("../image/bg.jpg");
    background-size: 100%;
}
input[type='button']{
    -webkit-appearance:none;
    border-radius: 5px;
    opacity: 1;
}
input[type='button'].my_button{
    border-radius: 0 5px 5px 0;
}
select{
    /*-webkit-appearance:none;*/
}


.title{
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    padding: 30px 0;
}
.my_form{
    padding: 0 30px 50px;
}
.input_box{
    height: 40px;
    line-height: 40px;
    margin: 20px 0;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}
.my_icon{
    display: block;
    width: 45px;
    height: 40px;
    background: #eee;
    border-right: 1px solid #ccc;
    text-align: center;
    font-size: 18px;
    color: #333;
}
.my_input{
    flex: 1;
    height: 40px;
    background: #fff;
}
.my_input input,.my_input select{
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    border: none;
}
.my_input select{
    padding: 0 10px 0 5px;
}
.my_button{
    color: #fff;
    font-size: 12px;
    background: orange;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    box-sizing: border-box;
    border: none;
    outline: none;
}
.my_button:active{
    background: #ff910a;
}
.my_button1{
    background: #32811c;
}
.my_button1:active{
    background: green;
}
.agree{
    color: #fff;
}
.agree a{
    color: red;
    text-decoration: none;
}
.submit_btns{
    display: flex;
    padding: 0 10px;
    margin: 50px auto;
}
.submit_btns div,.submit_btns input{
    flex: 1;
    margin: 0 10px;
    height: 35px;
    background: orange;
    font-size: 14px;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 5px;
}
.submit_btns div:active,.submit_btns input:active{
    background: #ff910a;
}
.submit_btns input:disabled,.dialog_footer button:disabled,input[type='button']:disabled{
    background: #ddd;
    color: graytext;
}

.container{
    padding: 10px;
}
.cbjx{
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 40px;
    right: 20px;
    background: url("../image/model.png") no-repeat center;
    background-size: 100%;
    z-index: 99;
}
hr{
    width: 80%;
    color: #fff;
    margin: 0 auto;
}
.modelList{
    margin: 15px 0;
    display: flex;
}
.modelList .left,.modelList .right{
    flex: 1;
    margin: 15px 10px 15px 15px;
    font-size: 0;
}
.modelList .left img{
    width: 100%;
}
.modelList .right{
    position: relative;
    margin: 15px 15px 15px 10px;
}
.modelList .right .input_box:first-child{
    margin-top: 0;
}
.modelList .right .input_box:last-child{
    margin-bottom: 0;
}
.input_vertical{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -45px;
}
.backto{
    margin: 50px auto 20px;
    text-align: center;
}
.backto a{
    color: #fff;
}


.dialog_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, .4);
    display: none;
    z-index: 99999;
}

.dialog {
    margin: 20px auto;
    width: calc(100% - 20px);
    background: #fff;
    border-radius: 5px;
    display: none;
}

.dialog_header {
    width: 100%;
    height: 50px;
    font-size: 16px;
    line-height: 40px;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    position: relative;
}
.close{
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px;
    background: url("../image/close.png") no-repeat center;
    background-size: 100%;
}

.dialog_body {
    padding: 15px 10px;
    box-sizing: border-box;
    width: 100%;
    max-height: calc(100% - 100px);
    overflow: auto;
}

.dialog_body_section {
    border: 1px solid #eee;
    border-radius: 5px;
}

.dialog_body_section p {
    font-size: 13px;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}

.dialog_body_section p:first-child {
    color:red;
	font-weight:bold;
}

.dialog_body_section p:last-child {
    border: none;
}

.dialog_footer {
    width: 100%;
    height: 50px;
    border-top: 1px solid #eee;
    box-sizing: border-box;
    padding: 10px;
    text-align: right;
}

.dialog_footer button {
    line-height: 30px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 5px;
    background: dodgerblue;
    border: none;
    color: #fff;
    outline: none;
}

.dialog_footer button:active {
    background: #117bff;
}
.my_fileButton{
    width: 50px;
    height: 30px;
    line-height: 30px;
    position: relative;
    float: right;
    border-radius: 5px;
}
.my_fileButton div,.my_fileButton input{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 30px;
    text-align: center;
}
.my_fileButton input{
    opacity: 0;
}
.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4) url("../image/loading.gif") no-repeat center;
    background-size: 60px 60px;
    z-index: 999999;
    display: none;
}


[v-cloak]{
    display: none;
}