index.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .addEnterprise {
  2. .form {
  3. padding-right: 32px;
  4. padding-bottom: 50px;
  5. .aitem {
  6. position: relative;
  7. display: flex;
  8. flex-direction: row;
  9. align-items: center;
  10. padding: 24px 32px 24px 0;
  11. margin-left: 32px;
  12. border-bottom: 1px;
  13. .atit {
  14. width: 172px;
  15. margin-right: 16px;
  16. .atip {
  17. display: inline-block;
  18. margin-right: 8rpx;
  19. color: #FF4949;
  20. font-size: 28rpx;
  21. font-family: SimSun, sans-serif;
  22. line-height: 1;
  23. content: "*";
  24. }
  25. }
  26. .aval {
  27. color: #CCC;
  28. display: flex;
  29. flex: 1;
  30. }
  31. .avals {
  32. color: #000;
  33. display: flex;
  34. flex: 1;
  35. }
  36. }
  37. .aitem::after {
  38. content: '';
  39. position: absolute;
  40. -webkit-transform-origin: center;
  41. -ms-transform-origin: center;
  42. transform-origin: center;
  43. -webkit-box-sizing: border-box;
  44. box-sizing: border-box;
  45. pointer-events: none;
  46. top: -50%;
  47. left: -50%;
  48. right: -50%;
  49. bottom: -50%;
  50. border: 0 solid #d6e4ef;
  51. -webkit-transform: scale(0.5);
  52. -ms-transform: scale(0.5);
  53. transform: scale(0.5);
  54. border-bottom-width: 1PX;
  55. }
  56. .bottom{
  57. margin-left: 32px;
  58. margin-top: 80px;
  59. }
  60. }
  61. }