body {
    margin: 0;
}

/** 去掉 ios 输入组件的默认样式 */
*{
    -webkit-appearance: none;
    /** 动画效果 */
    transition: all 0.2s ease;
}

/*********************/
/*      公用样式      */
/*********************/
.container {
    padding: 12px;
    margin-bottom: 60px;
}

/** vue 未渲染完成不显示 */
[v-cloak] {display:none!important;}

/** 不换行 */
._nowrap, ._nowrap * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/** 用于图片+文字的左右布局,flex */
._flex_img {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    line-height: 0;
}

@media screen and (min-width:768px) {
    
}

/* 触碰指针变手指 */
._hov:hover {
    cursor: pointer;
}

/** 底部选项卡 */
.bottom_tabbar {
    position: fixed;
    width: 100%;
    bottom: -1px;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 6px 0;
    justify-content: space-around;
    z-index: 99;
}
.bottom_tabbar > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bottom_tabbar > div:hover {
    cursor: pointer;
}
.bottom_tabbar > div > img {
    width: 24px;
}
.bottom_tabbar > div > span {
    font-size: 12px;
    margin-top: 4px;
    color: #bbb7c4;
}

/** 弹出的登录窗口的iframe样式 */
._login_iframe {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    border: none;
}

/************************/
/*   公用颜色,配色方案   */
/***********************/
/** 主颜色 */
.color_main {
    color: #3170FF;
}
.color_main_background {
    background: #3170FF;
}
.color_main_border {
    border-color: #3170FF;
}

/** 金额颜色 */
.color_money {
    color: #ff4747;
}
/** 标题/主要概述颜色 */
.color_title {
    color: #333333;
}
/** 内容颜色 */
.color_item {
    color: #28211f;
}
/** 次要内容颜色 */
.color_item2 {
    color: #999999;
}
/** 退款颜色 */
.color_refund {
    color: #ff8d1a;
}
