index.wxss 675 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* 品牌cell */
  2. .cell_box {
  3. background-color: #ffffff;
  4. }
  5. .cell_con {
  6. display: flex;
  7. justify-content: space-between;
  8. width: 92vw;
  9. height: 48rpx;
  10. font-size: 16px;
  11. color: #646566;
  12. margin: 0 auto;
  13. border-bottom: 1px solid #F7F8F9;
  14. padding: 24rpx 0;
  15. }
  16. .cell_con_title {
  17. height: 48rpx;
  18. margin-left: -15rpx;
  19. }
  20. .cell_con_title text {
  21. margin-right: 3rpx;
  22. color: #EE1929;
  23. }
  24. /* 必填型号 */
  25. .required::before{
  26. content: '*';
  27. margin-right: -6rpx;
  28. color: #EE1929;
  29. }
  30. .norequired::before{
  31. content: '';
  32. margin-left: 18rpx;
  33. color: #EE1929;
  34. }
  35. /* 上传 */
  36. .uploading{
  37. flex: 1;
  38. margin-left: 25rpx;
  39. }