南骏 池
2025-03-18 b25ccfc37c72528aca09ccd87cabded453b58620
Images/Style.css
@@ -4,7 +4,7 @@
    font-family: Microsoft YaHei,Helvitica,Verdana,Arial,san-serif;
    padding: 0px;
    margin: 0px;
    /*font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;*/
}
a, a:hover {
@@ -325,7 +325,11 @@
.van-tab-left .van-tab {
    -webkit-justify-content: left !important;
    justify-content: left !important;
    justify-content: left !important
}
.van-tab {
    font-size: .2733rem;
}
.mySolid .van-cell::after {
@@ -348,10 +352,51 @@
    padding: .030rem .1000rem;
    overflow: hidden;
    color: #323233;
    font-size: .3733rem;
    line-height: .64rem;
    font-size: .28rem;
    line-height: .45rem;
    background-color: #fff;
    align-items: center; /* 垂直居中对齐 */
}
/* 当屏幕宽度小于或等于600px时应用的样式 */
@media (max-width: 600px) {
    .van-cell {
        font-size: .33rem; /* 更小的字体大小 */
        line-height: .50rem;
        padding: .020rem .0800rem; /* 更小的内边距 */
    }
}
/* 当屏幕宽度大于600px且小于或等于1024px时应用的样式 */
@media (min-width: 601px) and (max-width: 1600px) {
    .van-cell {
        font-size: .25rem; /* 中等字体大小 */
        line-height: .45rem;
        padding: .025rem .0900rem; /* 中等内边距 */
    }
    /* 减少左侧标题的字体大小并使颜色更淡 */
    .van-field__label {
        color: #9c9898; /* 更淡的颜色 */
        margin-right: 0rem;
        font-size: .20rem; /* 字体大小减小 */
    }
    /* 增加右侧输入区域的字体大小并加深颜色 */
    .van-cell__value {
        color: #333; /* 深色 */
        font-size: .30rem; /* 字体大小增大 */
    }
    .van-cell--clickable {
        cursor: pointer;
        font-size: .30rem; /* 字体大小增大 */
        font-weight: bold; /* 字体加粗 */
    }
    .van-checkbox__icon {
        font-size: 0.28rem;
    }
}
.van-button--small {
@@ -387,13 +432,12 @@
    transition: opacity 0.2s;
    -webkit-appearance: none;
    white-space: nowrap; /* 防止文字换行 */
    font-size: .32rem;
    font-size: .28rem;
}
/* 按钮长度根据内容自适应 */
.van-button {
    min-width: fit-content; /* 按钮宽度根据内容自动调整 */
    padding: 0.2rem 0.4rem; /* 保留适当的内边距 */
}
@@ -402,7 +446,7 @@
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: space-between; /* 左右平均分布 */
    align-items: center; /* 垂直居中对齐 */
    padding: 0 16px; /* 内边距与 van-field 保持一致 */
    padding: 0 0px; /* 内边距与 van-field 保持一致 */
}
    /* 调整 checkbox 的样式 */
@@ -432,4 +476,56 @@
/* 2025-02-19 池南骏修改
    end
*/
*/
/*表格样式 2025-03-13 池南骏新增*/
.van-col {
    font-size: 12px; /* 调整字体大小 */
    word-wrap: break-word;
    word-break: break-all;
}
.blue-text {
    color: #1989fa; /* 设置字体颜色为蓝色 */
    font-weight: bold; /* 字体加粗 */
}
.van-nav-bar__title {
    max-width: 60%;
    margin: 0 auto;
    color: #323233;
    font-weight: 500;
    font-size: .33rem;
    font-weight: bold; /* 字体加粗 */
}
/*表头高度 2025-03-13 池南骏新增*/
.van-nav-bar__content {
    height: 0.9rem;
}
/* 表单字段分隔线 颜色淡一些 */
.van-cell-group .van-cell:not(:last-child)::after {
    border-bottom: 1px solid #eee !important;
    left: 0;
    right: 0;
}
/* 表体tab字段分隔线 颜色淡一些 */
.mySolid .van-row {
    border-bottom: .00267rem solid #b1b1b1;
}
/* 设置表头的输入框比例 */
.van-field__label {
    flex-basis: 25%;
}
/* 全局样式优化 */
.content-wrapper {
    margin: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}