﻿
/*弹性盒布局样式兼容*/

.flex1 {  
    -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */  
    -moz-box-flex: 1;         /* OLD - Firefox 19- */  
      
    -webkit-flex: 1;          /* Chrome */  
    -ms-flex: 1;              /* IE 10 */  
    flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */  
}  
/* 父元素-横向排列（主轴） */  
.flex-h {  
    display: box;              /* OLD - Android 4.4- */  
  
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */  
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */  
    display: -ms-flexbox;      /* TWEENER - IE 10 */  
    display: -webkit-flex;     /* NEW - Chrome */  
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */  
  
  
    /* 09版 */  
    -webkit-box-orient: horizontal;  
    /* 12版 */  
    -webkit-flex-direction: row;  
    -moz-flex-direction: row;  
    -ms-flex-direction: row;  
    -o-flex-direction: row;  
    flex-direction: row;  
}  
/* 父元素-横向换行 */  
.flex-hw {  
    /* 09版 */  
    /*-webkit-box-lines: multiple;*/  
    /* 12版 */  
    -webkit-flex-wrap: wrap;  
    -moz-flex-wrap: wrap;  
    -ms-flex-wrap: wrap;  
    -o-flex-wrap: wrap;  
    flex-wrap: wrap;  
}  
/* 父元素-水平居中（主轴是横向才生效） */  
.flex-hc {  
    /* 09版 */  
    -webkit-box-pack: center;  
    /* 12版 */  
    -webkit-justify-content: center;  
    -moz-justify-content: center;  
    -ms-justify-content: center;  
    -o-justify-content: center;  
    justify-content: center;  
    /* 其它取值如下： 
        align-items     主轴原点方向对齐 
        flex-end        主轴延伸方向对齐 
        space-between   等间距排列，首尾不留白 
        space-around    等间距排列，首尾留白 
     */  
}  
/* 父元素-纵向排列（主轴） */  
.flex-v {  
    display: box !important;              /* OLD - Android 4.4- */  
  
    display: -webkit-box !important;      /* OLD - iOS 6-, Safari 3.1-6 */  
    display: -moz-box !important;         /* OLD - Firefox 19- (buggy but mostly works) */  
    display: -ms-flexbox !important;      /* TWEENER - IE 10 */  
    display: -webkit-flex !important;     /* NEW - Chrome */  
    display: flex !important;             /* NEW, Spec - Opera 12.1, Firefox 20+ */  
  
  
    /* 09版 */  
    -webkit-box-orient: vertical;  
    /* 12版 */  
    -webkit-flex-direction: column;  
    -moz-flex-direction: column;  
    -ms-flex-direction: column;  
    -o-flex-direction: column;  
    flex-direction: column;  
}  
/* 父元素-纵向换行 */  
.flex-vw {  
    /* 09版 */  
    /*-webkit-box-lines: multiple;*/  
    /* 12版 */  
    -webkit-flex-wrap: wrap;  
    -moz-flex-wrap: wrap;  
    -ms-flex-wrap: wrap;  
    -o-flex-wrap: wrap;  
    flex-wrap: wrap;  
}  
/* 父元素-竖直居中（主轴是横向才生效） */  
.flex-vc {  
    /* 09版 */  
    -webkit-box-align: center;  
    /* 12版 */  
    -webkit-align-items: center;  
    -moz-align-items: center;  
    -ms-align-items: center;  
    -o-align-items: center;  
    align-items: center;  
}  
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */  
.flex-1 {  
    -webkit-box-ordinal-group: 1;   /* OLD - iOS 6-, Safari 3.1-6 */  
    -moz-box-ordinal-group: 1;      /* OLD - Firefox 19- */  
    -ms-flex-order: 1;              /* TWEENER - IE 10 */  
    -webkit-order: 1;               /* NEW - Chrome */  
    order: 1;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */  
}  
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */  
.flex-2 {  
    -webkit-box-ordinal-group: 2;   /* OLD - iOS 6-, Safari 3.1-6 */  
    -moz-box-ordinal-group: 2;      /* OLD - Firefox 19- */  
    -ms-flex-order: 2;              /* TWEENER - IE 10 */  
    -webkit-order: 2;               /* NEW - Chrome */  
    order: 2;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */  
}
.tips_alert {
    position:fixed;
    left:0;
    top:0;
    font-size:14px;
    padding-top:30%;
    z-index:999;
    width:100%;
    height:100%;
    justify-content:space-around;
    -webkit-justify-content:space-around;
    background:rgba(0,0,0,0.4)
}
.tips-box {
    width:80%;
    max-width:375px;
    position:relative;

}
.cancel_btn {
    position: absolute;
    right: -10px;
    top: -11px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgb(255, 252, 252);
    text-align: center;
    line-height: 22px;
    font-size:20px;

}
.tips-info {
    min-height:80px;
    margin-bottom:8px;
    border-radius:8px;
    background:#fff;
    padding: 20px 2px;
    text-align:center;
     align-items:center;
    -webkit-align-items:center;
    justify-content:space-around;
    -webkit-justify-content:space-around;
}
.tips-info2 {
    min-height:80px;
    margin-bottom:8px;
    border-radius:8px;
    background:#fff;
    padding: 7px 10px;
    text-align:center;
    align-items:center;
    -webkit-align-items:center;
    justify-content:space-around;
    -webkit-justify-content:space-around;
}
.tips-info22 {
    min-height:80px;
    margin-bottom:8px;
    border-radius:8px;
    background:#fff;
    padding: 7px 10px;
    text-align:center;
    align-items:center;
    -webkit-align-items:center;
    justify-content:space-around;
    -webkit-justify-content:space-around;
}
.tips-info3 {
    min-height:80px;
    margin-bottom:8px;
    border-radius:8px;
    background:#fff;
    padding: 7px 10px;
    text-align:center;
    align-items:center;
    -webkit-align-items:center;
    justify-content:space-around;
    -webkit-justify-content:space-around;
}
    .tips-info3 > div {
        width:100%;
        line-height:200%;
    }
.tips-confirm {
    height:42px;
    background:#fff;
    border-radius:8px;
    color:#ff6162;
    font-size:16px;
    line-height:42px;
    text-align:center;
   

}
.confirm_btn {
    border-left:1px solid #ccc;
}
.tips-info2 input {
    width:100%;
    border:1px solid #ccc;
    background:#fff;
    -webkit-appearance:none;
}
.tips-info22 input {
    width: 100%;
    margin: 6px 0;
    height: 28px;
    padding-left: 10px;
    border: 1px solid #ccc;
    background: #fff;
    -webkit-appearance: none;
}
.tips-info22 .input_errors {
    font-size:12px;
    color:#ff6162;
}
