## 卡片设计模型

- 宽高比 3:2
### 卡片宽高区间

- max-width:270px;
- max-height:180px;
- min-width:150px;
- min-height:100px;

### 卡片内图标宽高区间
- top 144 / 225 * width
- max-width:45px;
- max-height:45px;
- min-width:25px;
- min-height:25px;

### 卡片内字体

#### title
- top 10 / 27 * width
- font-size:14px;
- color:#444;

#### creater
- top 13 / 27 * width
- font-size:13px;
- color:#626262;

- json
    cardModel: {
        minmaxCard: {
            'max-width': 270,
            'max-height': 180,
            'min-width': 150,
            'min-height': 100
        },
        icon: {
            top: 144 / 225,
            'max-width': 45,
            'max-height': 45,
            'min-width': 25,
            'min-height': 25,
        },
        title:{
            top: 10 / 27,
            'font-size': 14,
            'color': "#444",

        },
        creater:{
            top: 13 / 27,
            'font-size': 13,
            'color': "#626262",
        }
    }

#### 计算父容器 padding 0  (w - (c + 20 ) * n) / 2