|
@@ -0,0 +1,449 @@
|
|
|
|
+@import './var';
|
|
|
|
+page{font-size:14px;color: #333;}
|
|
|
|
+.main-color, a.main-color { color: $mainColor; } /*主色*/
|
|
|
|
+.main-bgcolor { background-color: $mainColor; }
|
|
|
|
+.assist-color, a.assist-color{color:$assistColor;} /*辅助色*/
|
|
|
|
+.assist-bgcolor { background-color: $assistColor; }
|
|
|
|
+.black, a.black { color: #333; }
|
|
|
|
+.black-bg { background-color: #333; }
|
|
|
|
+.grey, a.grey { color: #505050; }
|
|
|
|
+.grey-bg { background-color: #505050; }
|
|
|
|
+.grey-6, a.grey-6 { color: #6b6b6b; }
|
|
|
|
+.grey-6-bg { background-color: #6b6b6b; }
|
|
|
|
+.grey-9, a.grey-9 { color: $gray; }
|
|
|
|
+.grey-9-bg { background-color: $gray; }
|
|
|
|
+.grey-d, a.grey-d { color: #dfdfdf; }
|
|
|
|
+.grey-d-bg { background-color: #dfdfdf; }
|
|
|
|
+.grey-e, a.grey-e { color: #efefef; }
|
|
|
|
+.grey-e-bg { background-color: #efefef; }
|
|
|
|
+.grey-f, a.grey-f { color: #f5f5f5; }
|
|
|
|
+.grey-f-bg { background-color: #f5f5f5; }
|
|
|
|
+.white, a.white { color: #fff; }
|
|
|
|
+.white-bg { background-color: #fff; }
|
|
|
|
+.red, a.red { color: #f21c1c; }
|
|
|
|
+.red-bg { background-color: #f21c1c; }
|
|
|
|
+.light-red, a.light-red { color: #ff5050; }
|
|
|
|
+.light-red-bg { background-color: #ff5050; }
|
|
|
|
+.orange-red, a.orange-red { color: #ff4e00; }
|
|
|
|
+.orange-red-bg { background-color: #ff4e00; }
|
|
|
|
+.orange, a.orange { color: #ff6700; }
|
|
|
|
+.orange-bg { background-color: #ff6700; }
|
|
|
|
+.orange-yellow, a.orange-yellow { color: #fd9712; }
|
|
|
|
+.orange-yellow-bg { background-color: #fd9712; }
|
|
|
|
+.yellow, a.yellow { color: #fbcb30; }
|
|
|
|
+.yellow-bg { background-color: #fbcb30; }
|
|
|
|
+.green, a.green { color: $green; }
|
|
|
|
+.green-bg { background-color: $green; }
|
|
|
|
+.light-green, a.light-green { color: #8fd14c; }
|
|
|
|
+.light-green-bg { background-color: #8fd14c; }
|
|
|
|
+.blue, a.blue { color: $blue; }
|
|
|
|
+.blue-bg { background-color: $blue; }
|
|
|
|
+.light-blue, a.light-blue { color: #78b; }
|
|
|
|
+.light-blue-bg { background-color: #78b; }
|
|
|
|
+.purple, a.purple { color: #a776d9; }
|
|
|
|
+.purple-bg { background-color: #a776d9; }
|
|
|
|
+.light-purple, a.light-purple { color: #b394f3; }
|
|
|
|
+.light-purple-bg { background-color: #b394f3; }
|
|
|
|
+.pink, a.pink { color: #fb5c9b; }
|
|
|
|
+.pink-bg { background-color: #fb5c9b; }
|
|
|
|
+
|
|
|
|
+/****************flexbox**************/
|
|
|
|
+.flex {display:flex;}
|
|
|
|
+.inline-flex {display:inline-flex;}
|
|
|
|
+.flex-center{justify-content: center;align-items: center;}
|
|
|
|
+.flex-center-between{justify-content: space-between;align-items: center;}
|
|
|
|
+/*横向或纵向*/
|
|
|
|
+.flex-row {flex-direction:row;}
|
|
|
|
+.flex-col {flex-direction:column;}
|
|
|
|
+.flex-row-reverse {flex-direction:row-reverse;}
|
|
|
|
+.flex-col-reverse {flex-direction:column-reverse;}
|
|
|
|
+.flex-wrap {flex-wrap:wrap;}
|
|
|
|
+/*主轴对齐方式*/
|
|
|
|
+.flex-justify-start {justify-content:flex-start;}
|
|
|
|
+.flex-justify-end {justify-content:flex-end;}
|
|
|
|
+.flex-justify-center {justify-content:center;}
|
|
|
|
+.flex-justify-between {justify-content:space-between;}
|
|
|
|
+.flex-justify-around {justify-content:space-around;}
|
|
|
|
+/*侧轴对齐方式*/
|
|
|
|
+.flex-align-start {align-items:flex-start;}
|
|
|
|
+.flex-align-end {align-items:flex-end;}
|
|
|
|
+.flex-align-center {align-items:center;}
|
|
|
|
+.flex-align-baseline {align-items:baseline;}
|
|
|
|
+.flex-align-stretch {align-items:stretch;}
|
|
|
|
+/*主轴换行时行在侧轴的对齐方式,必须定义flex-wrap为换行*/
|
|
|
|
+.flex-content-start {align-content:flex-start;}
|
|
|
|
+.flex-content-end {align-content:flex-end;}
|
|
|
|
+.flex-content-center {align-content:center;}
|
|
|
|
+.flex-content-between {align-content:space-between;}
|
|
|
|
+.flex-content-around {align-content:space-around;}
|
|
|
|
+.flex-content-stretch {align-content:stretch;}
|
|
|
|
+/*允许子元素收缩*/
|
|
|
|
+.flex-child-grow {flex-grow: 1;}/*允许拉伸*/
|
|
|
|
+.flex-child-shrink {flex-shrink: 1;}/*允许收缩*/
|
|
|
|
+.flex-child-noshrink {flex-shrink: 0;}/*不允许收缩*/
|
|
|
|
+.flex-child-average {flex:1;}/*平均分布,兼容旧版必须给宽度*/
|
|
|
|
+.flex-child-first {order: 1;}/*排第一个*/
|
|
|
|
+/*子元素在侧轴的对齐方式*/
|
|
|
|
+.flex-child-align-start {align-self:flex-start;}
|
|
|
|
+.flex-child-align-end {align-self:flex-end;}
|
|
|
|
+.flex-child-align-center {align-self:center;}
|
|
|
|
+.flex-child-align-baseline {align-self:baseline;}
|
|
|
|
+.flex-child-align-stretch {align-self:stretch;}
|
|
|
|
+
|
|
|
|
+.border{border:solid 1rpx $borderColor;}
|
|
|
|
+.border-top{border-top:solid 1rpx $borderColor;}
|
|
|
|
+.border-right{border-right:solid 1rpx $borderColor;}
|
|
|
|
+.border-bottom{border-bottom:solid 1rpx $borderColor;}
|
|
|
|
+.border-left{border-left:solid 1rpx $borderColor;}
|
|
|
|
+
|
|
|
|
+.full-screen{width:100%;height:100%;}
|
|
|
|
+.full-width{width:100%;}
|
|
|
|
+.full-height{height:100%;}
|
|
|
|
+
|
|
|
|
+.block { display: block; }
|
|
|
|
+.inline-block { display: inline-block; }
|
|
|
|
+.inline { display: inline; }
|
|
|
|
+.hide { display: none; }
|
|
|
|
+.left { float: left; }
|
|
|
|
+.right { float: right; }
|
|
|
|
+.relative { position: relative; }
|
|
|
|
+.absolute { position: absolute; }
|
|
|
|
+.fixed { position: fixed; }
|
|
|
|
+.clear { clear: both; }
|
|
|
|
+.circle{border-radius: 100%;}
|
|
|
|
+
|
|
|
|
+.overflow-hide { overflow: hidden; }
|
|
|
|
+.italic { font-style: italic; }
|
|
|
|
+.normal { font-weight: normal; }
|
|
|
|
+.bold { font-weight: bold; }
|
|
|
|
+.font-36 { font-size: 72rpx; }
|
|
|
|
+.font-30 { font-size: 60rpx; }
|
|
|
|
+.font-26 { font-size: 52rpx; }
|
|
|
|
+.font-24 { font-size: 48rpx; }
|
|
|
|
+.font-20 { font-size: 40rpx; }
|
|
|
|
+.font-18 { font-size: 36rpx; }
|
|
|
|
+.font-17 { font-size: 34rpx; }
|
|
|
|
+.font-16 { font-size: 32rpx; }
|
|
|
|
+.font-15 { font-size: 30rpx; }
|
|
|
|
+.font-14 { font-size: 28rpx; }
|
|
|
|
+.font-13 { font-size: 26rpx; }
|
|
|
|
+.font-12 { font-size: 24rpx; }
|
|
|
|
+.font-10 { font-size: 20rpx; }
|
|
|
|
+
|
|
|
|
+.text-shadow{text-shadow: 4rpx 4rpx 10rpx rgba(0,0,0,.7);}
|
|
|
|
+.box-shadow{box-shadow: 0 0 20rpx rgba($mainColor,.1);}
|
|
|
|
+.text-center { text-align: center; }
|
|
|
|
+.text-right { text-align: right; }
|
|
|
|
+.ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
|
|
+.nowrap { word-wrap: normal; white-space: nowrap; }
|
|
|
|
+.vertical-middle{vertical-align: middle;}
|
|
|
|
+.lines-height-2{line-height: 2;}
|
|
|
|
+.lines-height-15{line-height: 1.5;}
|
|
|
|
+.lines-1{text-overflow:ellipsis;-webkit-line-clamp:1;display: -webkit-box;overflow:hidden;-webkit-box-orient: vertical;line-height: 1.5;word-break: break-all;height:1.5em}
|
|
|
|
+.lines-2{text-overflow:ellipsis;-webkit-line-clamp:2;display: -webkit-box;overflow:hidden;-webkit-box-orient: vertical;line-height: 1.5;word-break: break-all;height:3em}
|
|
|
|
+.lines-3{text-overflow:ellipsis;-webkit-line-clamp:3;display: -webkit-box;overflow:hidden;-webkit-box-orient: vertical;line-height: 1.5;word-break: break-all;height:4.5em}
|
|
|
|
+
|
|
|
|
+.border-box{box-sizing:border-box;}
|
|
|
|
+.radius { border-radius: 10rpx;}
|
|
|
|
+.margin { margin: 20rpx; }
|
|
|
|
+.margin-top { margin-top: 20rpx; }
|
|
|
|
+.margin-right { margin-right: 20rpx; }
|
|
|
|
+.margin-bottom { margin-bottom: 20rpx; }
|
|
|
|
+.margin-left { margin-left: 20rpx; }
|
|
|
|
+.padding { padding: 20rpx; }
|
|
|
|
+.padding-14 { padding: 28rpx; }
|
|
|
|
+.padding-12 { padding: 24rpx; }
|
|
|
|
+.padding-top { padding-top: 20rpx; }
|
|
|
|
+.padding-right { padding-right: 20rpx; }
|
|
|
|
+.padding-bottom { padding-bottom: 20rpx; }
|
|
|
|
+.padding-left { padding-left: 20rpx; }
|
|
|
|
+.mt-5{margin-top: 10rpx;}
|
|
|
|
+.mr-5{margin-right: 10rpx;}
|
|
|
|
+.mb-5{margin-bottom: 10rpx;}
|
|
|
|
+.ml-5{margin-left: 10rpx;}
|
|
|
|
+.pt-5{padding-top: 10rpx;}
|
|
|
|
+.pr-5{padding-right: 10rpx;}
|
|
|
|
+.pb-5{padding-bottom: 10rpx;}
|
|
|
|
+.pl-5{padding-left: 10rpx;}
|
|
|
|
+.mt-15{margin-top: 30rpx;}
|
|
|
|
+.mr-15{margin-right: 30rpx;}
|
|
|
|
+.mb-15{margin-bottom: 30rpx;}
|
|
|
|
+.ml-15{margin-left: 30rpx;}
|
|
|
|
+.mt-20{margin-top: 40rpx;}
|
|
|
|
+.mr-20{margin-right: 40rpx;}
|
|
|
|
+.mb-20{margin-bottom: 40rpx;}
|
|
|
|
+.ml-20{margin-left: 40rpx;}
|
|
|
|
+.arrow-right { display: block; width: 30rpx; height: 40rpx;}
|
|
|
|
+.arrow-down{transform:rotate(90deg)}
|
|
|
|
+.cell{height:44px;}
|
|
|
|
+.grey-space{height: 20rpx; background: #f5f5f5;}
|
|
|
|
+.card-item{border-radius: 16rpx; box-shadow: 0 4rpx 20rpx 0 rgba(0, 0, 0, 0.08); background-color: #fff; margin: 0 28rpx 28rpx; overflow:hidden; }
|
|
|
|
+.interval {height: 20rpx;background: #f1f1f1;}
|
|
|
|
+
|
|
|
|
+/* button样式修改 */
|
|
|
|
+button {
|
|
|
|
+ line-height: 3;
|
|
|
|
+ border-radius: 10rpx;
|
|
|
|
+ font-size: 28rpx;
|
|
|
|
+ &::after {
|
|
|
|
+ border: none;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+.main-button {
|
|
|
|
+ color: #fff;
|
|
|
|
+ background-color: $mainColor;
|
|
|
|
+}
|
|
|
|
+.assist-button {
|
|
|
|
+ color: #fff;
|
|
|
|
+ background-color: $assistColor;
|
|
|
|
+}
|
|
|
|
+.main-assist-button {
|
|
|
|
+ color: #fff;
|
|
|
|
+ background-color: $assistColor;
|
|
|
|
+}
|
|
|
|
+.main-button-plain {
|
|
|
|
+ color: $mainColor;
|
|
|
|
+ background: none;
|
|
|
|
+ border: 1rpx solid $mainColor;
|
|
|
|
+}
|
|
|
|
+.mini-button {
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
+ line-height: 2.2;
|
|
|
|
+}
|
|
|
|
+.grey-button {
|
|
|
|
+ color: #666;
|
|
|
|
+}
|
|
|
|
+.grey-button-plain {
|
|
|
|
+ background: none;
|
|
|
|
+ border: 1rpx solid $gray;
|
|
|
|
+ color: #666;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 会员标签 */
|
|
|
|
+.vip-tag {
|
|
|
|
+ position: absolute;
|
|
|
|
+ right: -40rpx;
|
|
|
|
+ top: -4rpx;
|
|
|
|
+ z-index: 5;
|
|
|
|
+ padding: 10rpx 40rpx 6rpx;
|
|
|
|
+ transform: rotate(45deg);
|
|
|
|
+ color: #fff;
|
|
|
|
+ font-size: 20rpx;
|
|
|
|
+ background: rgba(238,195,127,.8);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 新消息角标 */
|
|
|
|
+.tag-tips {
|
|
|
|
+ position: absolute;
|
|
|
|
+ font-size: 18rpx;
|
|
|
|
+ padding: 1px 3px;
|
|
|
|
+ background: #f21c1c;
|
|
|
|
+ color: #fff;
|
|
|
|
+ border-radius: 3px;
|
|
|
|
+ right: 30rpx;
|
|
|
|
+ top: -16rpx;
|
|
|
|
+ opacity: .9;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 列表页角标 */
|
|
|
|
+.tag {
|
|
|
|
+ top: 0;
|
|
|
|
+ left: 0;
|
|
|
|
+ padding: 4rpx 20rpx;
|
|
|
|
+ border-bottom-right-radius: 10rpx;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 图标大小 */
|
|
|
|
+.icon {
|
|
|
|
+ width: 50rpx;
|
|
|
|
+ height: 50rpx;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 重写checkbox样式 */
|
|
|
|
+checkbox .wx-checkbox-input {
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ transform: scale(0.5) translate(50%, 0) !important;
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
+}
|
|
|
|
+checkbox .wx-checkbox-input.wx-checkbox-input-checked {
|
|
|
|
+ border: 1px solid $mainColor;
|
|
|
|
+ transform: scale(0.5) translate(50%, 0) !important;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ background: none !important;
|
|
|
|
+}
|
|
|
|
+checkbox.hide-checkbox .wx-checkbox-input {
|
|
|
|
+ display: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 导航搜索 样式 */
|
|
|
|
+.nav-search {
|
|
|
|
+ height: 72rpx;
|
|
|
|
+ background: rgba(#f1f1f1, 0.8);
|
|
|
|
+ border-radius: 72rpx;
|
|
|
|
+ padding-left: 30rpx;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/* 表单 */
|
|
|
|
+.form-item {
|
|
|
|
+ padding: 26rpx;
|
|
|
|
+ background: #fff;
|
|
|
|
+ .title {
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
+ min-width: 140rpx;
|
|
|
|
+ i{
|
|
|
|
+ display: inline-block;
|
|
|
|
+ margin-left: 6rpx;
|
|
|
|
+ color: $red;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ input, textarea {
|
|
|
|
+ flex-grow: 1;
|
|
|
|
+ margin-left: 20rpx;
|
|
|
|
+ text-align: right;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.list-card {
|
|
|
|
+ margin: 20rpx;
|
|
|
|
+ background: #fff;
|
|
|
|
+ border-radius: 10rpx;
|
|
|
|
+ box-shadow: 0 0 10rpx #e1e1e1;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*标题样式*/
|
|
|
|
+.before-line {
|
|
|
|
+ position: relative;
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+}
|
|
|
|
+.before-line:before {
|
|
|
|
+ content: '';
|
|
|
|
+ position: absolute;
|
|
|
|
+ left: -20rpx;
|
|
|
|
+ top: 50%;
|
|
|
|
+ transform: translateY(-50%);
|
|
|
|
+ border: 4rpx solid $mainColor;
|
|
|
|
+ border-radius: 6rpx;
|
|
|
|
+ height: 60%;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*图片展示*/
|
|
|
|
+.img-list {
|
|
|
|
+ image {
|
|
|
|
+ $img: 218rpx;
|
|
|
|
+ width: $img;
|
|
|
|
+ height: $img;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ border-radius: 10rpx;
|
|
|
|
+ margin: 0 20rpx 20rpx 0;
|
|
|
|
+ background: #f5f5f5;
|
|
|
|
+ &:nth-child(3n) {
|
|
|
|
+ margin-right: 0;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.searchBtn {
|
|
|
|
+ .addBtn {
|
|
|
|
+ padding: 14rpx 0 14rpx 20rpx;
|
|
|
|
+ line-height: 40rpx;
|
|
|
|
+ display: block;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.pb-bottomBtn{padding-bottom: 120rpx;}
|
|
|
|
+
|
|
|
|
+.bottomBtn{
|
|
|
|
+ position:fixed;
|
|
|
|
+ bottom:0;
|
|
|
|
+ left:0;
|
|
|
|
+ right:0;
|
|
|
|
+ z-index: 2;
|
|
|
|
+
|
|
|
|
+ .save{
|
|
|
|
+ color: #fff;
|
|
|
|
+ border-radius:0;
|
|
|
|
+ background-color: $mainColor;
|
|
|
|
+ line-height: 100rpx;
|
|
|
|
+ height: 100rpx;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+/* 顶部的暂无备案 */
|
|
|
|
+.top-noRecord-box{
|
|
|
|
+ color: #67C23A;
|
|
|
|
+ background-color: #F0F9EB;
|
|
|
|
+
|
|
|
|
+ .no-record-button{
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
+ line-height: 2.2;
|
|
|
|
+ color: #67C23A;
|
|
|
|
+ background: none;
|
|
|
|
+ border: 1rpx solid #67C23A;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.status_bar {
|
|
|
|
+ height: var(--status-bar-height);
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
+/*表格*/
|
|
|
|
+.table-item {
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ width: 100%;
|
|
|
|
+ border-bottom: 1rpx solid #eee;
|
|
|
|
+ ._tr {
|
|
|
|
+ display: flex;
|
|
|
|
+ }
|
|
|
|
+ ._th {
|
|
|
|
+ font-size: 28rpx;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ background: #f9f9f9;
|
|
|
|
+ }
|
|
|
|
+ ._td, ._th {
|
|
|
|
+ width: 100%;
|
|
|
|
+ // display: flex;
|
|
|
|
+ // align-items: center;
|
|
|
|
+ // justify-content: center;
|
|
|
|
+ // min-height: 90rpx;
|
|
|
|
+ line-height: 1.5;
|
|
|
|
+ text-align: center;
|
|
|
|
+ border-top: 1rpx solid #eee;
|
|
|
|
+ border-right: 1rpx solid #eee;
|
|
|
|
+ padding: 10rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.body {
|
|
|
|
+ min-height: 100vh;
|
|
|
|
+ //background: #f5f5f5 url('/static/image/bg.png') no-repeat top center;
|
|
|
|
+ background: #f5f5f5;
|
|
|
|
+ background-size: contain;
|
|
|
|
+ padding-bottom: 1rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.topBar {
|
|
|
|
+ @extend .body;
|
|
|
|
+ background-position: 0 -260rpx;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.ad {
|
|
|
|
+ width: 100%;
|
|
|
|
+ max-height: 320rpx;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+.btn-list {
|
|
|
|
+ .btn {
|
|
|
|
+ padding: 10upx 20upx;
|
|
|
|
+ border: 1upx solid $mainColor;
|
|
|
|
+ color: $mainColor;
|
|
|
|
+ margin-right: 16upx;
|
|
|
|
+ border-radius: 6upx;
|
|
|
|
+ font-size: 24upx;
|
|
|
|
+ }
|
|
|
|
+}
|