| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .addEnterprise {
- .form {
- padding-right: 32px;
- padding-bottom: 50px;
- .aitem {
- position: relative;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 24px 32px 24px 0;
- margin-left: 32px;
- border-bottom: 1px;
- .atit {
- width: 172px;
- margin-right: 16px;
- .atip {
- display: inline-block;
- margin-right: 8rpx;
- color: #FF4949;
- font-size: 28rpx;
- font-family: SimSun, sans-serif;
- line-height: 1;
- content: "*";
- }
- }
- .aval {
- color: #CCC;
- display: flex;
- flex: 1;
- }
- .avals {
- color: #000;
- display: flex;
- flex: 1;
- }
- }
- .aitem::after {
- content: '';
- position: absolute;
- -webkit-transform-origin: center;
- -ms-transform-origin: center;
- transform-origin: center;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- pointer-events: none;
- top: -50%;
- left: -50%;
- right: -50%;
- bottom: -50%;
- border: 0 solid #d6e4ef;
- -webkit-transform: scale(0.5);
- -ms-transform: scale(0.5);
- transform: scale(0.5);
- border-bottom-width: 1PX;
- }
- .bottom{
- margin-left: 32px;
- margin-top: 80px;
- }
- }
- }
|