123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .van-field {
- font-size: 14px;
- }
- /* 导航栏样式 */
- :root:root {
- /* 导航栏组件样式 */
- --van-nav-bar-height: 40px;
- --van-nav-bar-background: #36a7f3;
- --van-nav-bar-title-text-color: #fff;
- --van-nav-bar-z-index: 10000;
- --van-nav-bar-icon-color: #fff;
- }
- /* 表单页样式 */
- /* 表单标题样式 */
- .miniTitle,
- .title {
- color: #36a7f3;
- }
- .title {
- height: 50px;
- line-height: 50px;
- font-size: 20px;
- font-weight: 700;
- padding-left: 20px;
- border-bottom: 1px solid #eee;
- margin-top: 3px;
- }
- .miniTitle {
- font-size: 16px;
- height: 40px;
- line-height: 40px;
- }
- /* 表单域 */
- .formArea {
- padding: 0px 20px;
- }
- .formArea .van-cell-group .van-field__label {
- height: 35px;
- line-height: 35px;
- font-size: 16px;
- }
- /* 下拉箭头 */
- .formArea .van-icon-arrow-down {
- color: #999999!important;
- }
- /* 提交按钮 */
- .subbtn {
- margin: 20px;
- text-align: center;
- }
- .subbtn .van-button {
- width: 40%;
- margin: 5px;
- }
- /* 详情页 */
- /* banner 图片 */
- .banner {
- width: 100vw;
- }
- .banner img {
- width: 100%;
- height: 100%;
- }
- /* 内容区域 */
- .info {
- position: relative;
- width: 86vw;
- margin: 10px auto;
- padding: 10px;
- background: #fff;
- border-radius: 10px;
- top: -50px;
- font-size: 14px;
- border: 1px solid #f5f5f5;
- }
- /* 列表页 */
- .van-list {
- height: 80%;
- margin-top: 5px;
- }
- /* */
- .list_item {
- display: table;
- background: #fff;
- width: 100%;
- }
- .item-left {
- text-align: center;
- display: table-cell;
- vertical-align: middle;
- width: 120px;
- font-size: 12px;
- border-right: 1px solid #eee;
- }
- .van-cell__title {
- font-size: 14px !important;
- font-weight: 700;
- }
- .van-cell__label {
- font-size: 12px !important;
- font-weight: 400;
- }
- .list_item .van-cell__right-icon {
- color: #999999!important;
- }
- .van-swipe-cell__right .button,
- .van-swipe-cell__left .button {
- height: 100%;
- }
|