/* 移动端申请页面 */
/* 卡产品整体 */
.mobile-card-overall {
    height: 190px;
    width: 100%;
    background: #FFF;
    border: 5px solid #f5f5f5;
}
/* 图片div */
.mobile-card-image-div {
    float: left;
    width:50%;
    height: 100%;
    position: relative;
}
/* 图片:居中显示--横版H */
.mobile-card-across-image {
    height: 55%;
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* 图片:居中显示--竖版版S */
.mobile-card-vertical-image {
    height: 85%;
    width: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* 文字与按钮 */
.mobile-card-text-button {
    width: 50%;
    float: right;
    height: 100%;
}
/* 卡产品名字 */
.mobile-card-name {
    height: 30%;
    font-size: 14px;
    display: -webkit-flex;
    /*color: rgba(244, 157, 0, 1);*/
    align-items: center;
    font-weight: 500;
    text-align: center;
    justify-content: center;
}
/* 卡产品简介1,2 */
.mobile-card-abstract {
    height: 20%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #a0a0a0;
    text-align: center;
    font-size: 14px;
}
/* 按钮div */
.mobile-card-button-div {
    height: 30%;
}
/* 按钮 */
.mobile-card-button {
    width: 100%;
    text-align: center;
    background-color: #970103;
    color: #ffffff;margin: 0px auto;
    font-weight: bold;
    font-size: 60%;
    font-family: '黑体', Helvetica, Arial, Verdana, Tahoma, sans-serif;
    font-stretch: extra-expanded;
    padding: 3px;
}