南骏 池
2025-03-20 14b1756e21ba4401ce5916f035576804f4be5878
Images/Style.css
@@ -359,7 +359,7 @@
}
/* 当屏幕宽度小于或等于600px时应用的样式 */
@media (max-width: 600px) {
@media (max-width: 500px) {
    .van-cell {
        font-size: .33rem; /* 更小的字体大小 */
        line-height: .50rem;
@@ -368,11 +368,34 @@
}
/* 当屏幕宽度大于600px且小于或等于1024px时应用的样式 */
@media (min-width: 601px) and (max-width: 1600px) {
@media (min-width: 500px) and (max-width: 1600px) {
    .van-cell {
        font-size: .28rem; /* 中等字体大小 */
        line-height: .45rem;
        font-size: .20rem; /* 中等字体大小 */
        line-height: .23rem;
        padding: .025rem .0900rem; /* 中等内边距 */
    }
    /* 减少左侧标题的字体大小并使颜色更淡 */
    .van-field__label {
        color: #9c9898; /* 更淡的颜色 */
        margin-right: 0rem;
        font-size: .20rem; /* 字体大小减小 */
    }
    /* 增加右侧输入区域的字体大小并加深颜色 */
    .van-cell__value {
        color: #333; /* 深色 */
        font-size: .25rem; /* 字体大小增大 */
    }
    .van-cell--clickable {
        cursor: pointer;
        font-size: .30rem; /* 字体大小增大 */
        font-weight: bold; /* 字体加粗 */
    }
    .van-checkbox__icon {
        font-size: 0.28rem;
    }
}
@@ -423,7 +446,7 @@
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: space-between; /* 左右平均分布 */
    align-items: center; /* 垂直居中对齐 */
    padding: 0 16px; /* 内边距与 van-field 保持一致 */
    padding: 0 0px; /* 内边距与 van-field 保持一致 */
}
    /* 调整 checkbox 的样式 */
@@ -433,7 +456,7 @@
    }
.van-checkbox__icon--checked .van-icon {
    color: blue !important; /* 勾选框的颜色设置为蓝色 */
    color: #1989fa !important; /* 勾选框的颜色设置为蓝色 */
}
/* 保持字体颜色不变 */
@@ -444,9 +467,13 @@
/* 确保禁用状态下勾选框仍然显示为蓝色 */
.van-checkbox--disabled .van-checkbox__icon .van-icon {
    background-color: transparent !important; /* 移除禁用状态下的灰色背景 */
    border-color: blue !important; /* 设置禁用状态下的边框颜色为蓝色 */
    /*border-color: #1989fa !important;*/ /* 设置禁用状态下的边框颜色为蓝色 */
}
.van-icon {
    font-size: 0.8em;
}
.van-tabs--line .van-tabs__wrap {
    height: 0.8rem;
}
@@ -473,7 +500,8 @@
    margin: 0 auto;
    color: #323233;
    font-weight: 500;
    font-size: .33rem;
    font-size: .25rem;
    font-weight: bold; /* 字体加粗 */
}
/*表头高度 2025-03-13 池南骏新增*/
@@ -504,4 +532,26 @@
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
}
/* 检验明细页输入框界面样式 */
.van-tag {
    font-size: .25rem;
    line-height: .40rem
}
    /* 检验明细页输入框界面样式 */
/*全局按钮缩小*/
.van-nav-bar__left, .van-nav-bar__right {
    font-size: .25rem;
}
/*调整搜索框字体的高度和大小*/
.van-search__action {
    padding: 0 .2133rem;
    color: #323233;
    font-size: .25rem;
    line-height: .25rem;
}