html,body{
    position: relative;
    width:100%;
    min-height:100%;
    margin:0;
    padding:0;
    font-size: 14px;
    background: #F5F5F5;
    margin-bottom: 50px;
    color:#333;
}
*{
    margin: 0;
    padding: 0;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
}
.flex{
    display: flex;
    align-items: center;
}
section{
    margin-bottom: 12px;
    background: #fff;
    padding:16px 12px;
    border: 1px solid #efefef;
}
.btn{
    width:160px;
    line-height: 28px;
    padding:0;
    text-align: center;
    outline: none;
    border:1px solid #DDDDDD;
    background: #fff;
}
.btnBlock{
    display: block;
    width: 80%;
    margin: 20px auto;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    border-radius: 3px;
}

    .btn.red, .btnBlock.red {
        background: #1AC6FE;
        color: #fff;
        border: 1px solid #1AC6FE;
    }
.btnBlock.outLine{
    background-color: #fff;
    border: 1px solid #1AC6FE;
    color: #1AC6FE;
}
.btn.red{
    margin-left: 20px;
}
.darkColor{
    color: #000;
}
.line2{
    display:-webkit-box;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.greyColor{
    color: #999999;
}
.font12{
    font-size: 12px;
}
.redColor {
    color: #1AC6FE;
}
.bottom{
    position: fixed;
    width:100%;
    padding:12px 20px;
    bottom:0;
    right:0;
    text-align: right;
    background: #fff;
    border-top:1px solid #DDDDDD;
}

.switch {
    -webkit-appearance: none;
    appearance: none;
}
.switch:checked {
    border-color: #1AC6FE;
    background-color: #1AC6FE;
}
.switch:checked:before {
    -webkit-transform: scale(0);    
    transform: scale(0);
}
.switch:checked:after {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
.switch{
    position: relative;
    width: 52px;
    height: 28px;
    border: 1px solid #dfdfdf;
    outline: 0;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: #dfdfdf;
    -webkit-transition: background-color .1s,border .1s;
    transition: background-color .1s,border .1s;
}
.switch:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 26px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.4);
    -webkit-transition: -webkit-transform .35s cubic-bezier(.4,.4,.25,1.35);
    transition: -webkit-transform .35s cubic-bezier(.4,.4,.25,1.35);
    transition: transform .35s cubic-bezier(.4,.4,.25,1.35);
    transition: transform .35s cubic-bezier(.4,.4,.25,1.35),-webkit-transform .35s cubic-bezier(.4,.4,.25,1.35);
}
.switch:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 26px;
    border-radius: 15px;
    background-color: #fdfdfd;
    -webkit-transition: -webkit-transform .35s cubic-bezier(.45,1,.4,1);
    transition: -webkit-transform .35s cubic-bezier(.45,1,.4,1);
    transition: transform .35s cubic-bezier(.45,1,.4,1);
    transition: transform .35s cubic-bezier(.45,1,.4,1),-webkit-transform .35s cubic-bezier(.45,1,.4,1);
}
.line{
    width:100%;
    height:1px;
    background: #eee;
    transform: scaleY(0.5);
}
.iconCheck{
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-image: url('./../img/icon-uncheck.png');
    vertical-align: middle;
    background-size: cover;
}
.iconCheck.checked{
    background-image: url('./../img/icon-checked.png');
}
input[type=radio]{
    display: none;
}
.show{
    display: block;
}
.hide{
    display: none;
}
