@import "../base/base.acss";
/**
 * 村文本的高度是 81 文字 45 空白 16
 * 单标题内容的 120 文字 60 空白 30
 * 加 label 的 175 文字 60 label 36 距离文字 9
 * 固设置两种 size normal 为 120, small 为 81 的
 */
.waft-cell {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    width: 100%;
}
.waft-cell text {
    max-lines: 1;
    text-overflow: ellipsis;
}
.waft-cell-instruct {
    width: auto;
    display: flex;
    flex-direction: column;
}
.waft-cell-icon {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.waft-cell-title {
    /*font-family: PingFangSC-Regular;*/
    color: var(--font-color);
}
.waft-cell-label {
    /*font-family: Helvetica;*/
    font-size: var(--font-size-label);
    color: var(--font-color-label);
    letter-spacing: 0;
}
.waft-cell-content {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    font-size: var(--font-size-form);
    color: var(--font-color-deep);
    letter-spacing: 0;
    position: relative;
    /*font-family: PingFangSC-Semibold;*/
}
.waft-cell-border {
    border-top-width: 1rpx;
    border-top-color: #F0F2F7;
    border-top-style: solid;
}
.waft-cell-link {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-left: var(--space-base);
}
.waft-cell-link-left {
    background-image: url("https://gw.alicdn.com/imgextra/i1/O1CN01vRWrGk1mPm24s5t0j_!!6000000004947-2-tps-64-64.png");
}
.waft-cell-link-right {
    background-image: url("https://gw.alicdn.com/imgextra/i1/O1CN01aukE7q1zVoG7PGmpE_!!6000000006720-2-tps-64-64.png");
}
.waft-cell-link-top {
    background-image: url("https://gw.alicdn.com/imgextra/i2/O1CN01A7zuOk1vir4h5Uc2s_!!6000000006207-2-tps-64-64.png");
}
.waft-cell-link-bottom {
    background-image: url("https://gw.alicdn.com/imgextra/i1/O1CN01EXanVd1gTzzUlLS1u_!!6000000004144-2-tps-64-64.png");
}
/* 尺寸相关样式 - normal */
.waft-cell-normal {
    padding: 30rpx 40rpx;
}
.waft-cell-normal .waft-cell-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    margin-right: var(--space-base);
}
.waft-cell-normal .waft-cell-instruct-padding {
    padding-right: 48rpx;
}
.waft-cell-normal .waft-cell-title {
    height: var(--cell-height);
    line-height: var(--cell-height);
    font-size: var(--font-size-form);
    letter-spacing: 0;
}
.waft-cell-normal .waft-cell-content {
    line-height: var(--cell-height);
    font-size: var(--font-size-form);
}
.waft-cell-normal .waft-cell-link {
    width: var(--icon-size);
    height: var(--icon-size);
}
/* 尺寸相关样式 - small */
.waft-cell-small {
    padding: 12rpx 20rpx;
}
.waft-cell-small .waft-cell-icon {
    width: var(--icon-size-small);
    height: var(--icon-size-small);
}
.waft-cell-small .waft-cell-instruct-padding {
    padding-right: 20rpx;
}
.waft-cell-small .waft-cell-title {
    height: var(--cell-height-small);
    line-height: var(--cell-height-small);
    font-size: var(--font-size-form-small);
    letter-spacing: 0;
}
.waft-cell-small .waft-cell-label {
    font-size: var(--font-size-label-small);
}
.waft-cell-small .waft-cell-content {
    line-height: var(--cell-height-small);
    font-size: var(--font-size-form-small);
}
.waft-cell-small .waft-cell-link {
    width: var(--icon-size-small);
    height: var(--icon-size-small);
}
