elGlobal.css 1.55 KB
html, body ,#app{
    height: 100%;
    margin: 0px;
    padding: 0px;
}
body {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
Element {
    -webkit-appearance: none;
    -webkit-tap-highlight-color:rgba(255,255,255,0)
}
input, button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
/*去掉高德地图的logo*/
.amap-logo{
    display: none!important;
}
.amap-copyright{
    opacity:0;
}
.mint-button-icon .mintui{
    font-size: 24px;
}
.mint-button-text{
    font-size: 16px;
}

.mint-header{
    background-color: #FFFFFF;
    color: #666666;
    font-size: 18px;
}
.mint-header .mint-button-icon .mintui{
    color: #999999;
}
.mint-radiolist-title{
    font-weight: bold;
}
.mint-radiolist-label{
    padding: 0px 0px;
}
.mint-cell-wrapper{
    padding: 0px 0px;
}
.mint-radio-core{
    width: 16px;
    height: 16px
}
.mint-radio-input:checked + .mint-radio-core{
    background-color: #FFFFFF;
    border-color: #00CA9D;
}
.mint-radio-input:checked + .mint-radio-core::after{
    background-color: #00CA9D;
}
.mint-radio-core::after{
    top: 3px;
    left: 3px;
}
input::-webkit-input-placeholder {
    color: #ccc;
}

.flex_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_baseline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.flex_center_s {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.flex_start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}