| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* 品牌cell */
- .cell_box {
- background-color: #ffffff;
- }
- .cell_con {
- display: flex;
- justify-content: space-between;
- width: 92vw;
- height: 48rpx;
- font-size: 16px;
- color: #646566;
- margin: 0 auto;
- border-bottom: 1px solid #F7F8F9;
- padding: 24rpx 0;
- }
- .cell_con_title {
- height: 48rpx;
- margin-left: -15rpx;
- }
- .cell_con_title text {
- margin-right: 3rpx;
- color: #EE1929;
- }
- /* 必填型号 */
- .required::before{
- content: '*';
- margin-right: -6rpx;
- color: #EE1929;
- }
- .norequired::before{
- content: '';
- margin-left: 18rpx;
- color: #EE1929;
- }
- /* 上传 */
- .uploading{
- flex: 1;
- margin-left: 25rpx;
- }
|