gx
queenwuli
2020-12-18 bfc807ed1acd06060fe1c3b941f08ac643b9d81b
hive-app/common/styles/index.css
@@ -29,6 +29,9 @@
   margin-left: 20px;
}
.mr-0{
   margin-right: 0;
}
.mr-5{
   margin-right: 5px;
}
@@ -42,6 +45,9 @@
   margin-right: 20px;
}
.mb-0{
   margin-bottom: 0!important;
}
.mb-5{
   margin-bottom: 5px;
}
@@ -56,14 +62,23 @@
}
/* 字体 */
.font-10{
   font-size: 10px;
}
.font-12{
   font-size: 12px;
}
.font-14{
   font-size: 14px;
}
.font-15{
   font-size: 15px;
}
.font-16{
   font-size: 16px;
}
.font-17{
   font-size: 17px;
}
.font-18{
   font-size: 18px;
@@ -79,8 +94,32 @@
.white{
   color: #FFFFFF;
}
.font-gray{
   color: #666666;
.gray{
   color: #a5abaf;
}
.light-gray{
   color: #a7a7a7;
}
.dark-gray{
   color: #3a3f3f;
}
.red{
   color:#DE5A5A;
}
.green{
   color:#1FB713;
}
.purple{
   color: #5A73DE;
}
.blueness{
   color: #58C4C0;
}
.orange{
   color: #E89D44;
}
.yellow{
   color: #E6E15F;
}
.font-dark{
   color: #111111;
@@ -99,15 +138,135 @@
.flex-v{
   flex-direction: column;
}
.flex-wrap{
   flex-wrap: wrap;
}
.align-left{
   align-items: flex-start;
}
.align-center{
   align-items: center;
}
.justify-between{
   justify-content: space-between;
}
.justify-center{
   justify-content: center;
}
.justify-start{
   justify-content: flex-start;
}
.justify-end{
   justify-content: flex-end;
}
.justify-around{
   justify-content: space-around;
}
.block{
   display: block;
}
}
.placeholder{
   color: #999999;
}
.center{
   text-align: center;
}
.right{
   text-align: right;
}
/* 默认蓝色按钮 */
.blue-btn{
   background: #518EFF;
   border: 0;
   color: #FFFFFF;
   font-size: 16px;
   line-height: 42px;
}
/* 蓝色边框白底按钮 */
.white-btn{
   background: #FFFFFF;
   border: 1px solid #518EFF;
   color: #518EFF;
   font-size: 16px;
   line-height: 42px;
}
/* 蓝色圆形加减按钮 */
.blue-btn-circle{
   height: 26px;
   width: 26px;
   line-height: 26px;
   box-sizing: border-box;
   font-size: 14px!important;
   border-radius: 50%;
   background: #518EFF;
   color: #FFFFFF;
}
.blue-outline-btn-circle{
   height: 26px;
   width: 26px;
   line-height: 24px;
   box-sizing: border-box;
   font-size: 12px!important;
   border-radius: 50%;
   border: 2px solid #518EFF;
   color: #518EFF;
}
.small-btn{
   width: 100px;
   line-height: 32px;
   font-size: 14px;
   border-radius: 20px;
   text-align: center;
}
/* 固定底部 */
.sticky-footer{
   position: fixed;
   bottom: 15px;
   left: 10px;
   right: 10px;
}
/* 输入框 */
.input-group-row{
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 48px;
   border-bottom: 1px solid #EDEAF4;
   font-size: 14px;
}
.input-group-row .label{
   padding-right: 10px;
}
.input-group-row .label .require{
   color: #d20808;
   padding-left: 4px;
}
.input-group-row input{
   flex: 1;
   font-size: 14px;
   text-align: right;
}
.input-group-row .right-text{
   flex: 1;
   text-align: right;
}
.input-group-row .right-text .radio{
   transform: scale(0.65);
   margin-left: 10px;
}
.input-group-row  .right-text .iconfont{
   vertical-align: middle;
   margin-left: 4px;
}
.input-group-row  .right-text .tag{
   background: #F2f2f2;
   color: #333;
   padding: 4px 8px;
   margin-left: 8px;
   border-radius: 2px;
   font-size: 14px;
}