123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- .phoneDetail {
- // padding: 13px;
- --van-uploader-size: 92px !important;
- :global {
- .van-button {
- font-size: 18px;
- }
- }
- .addPhone {
- margin: 13px;
- width: calc(100% - 26px);
- color: var(--van-primary-text);
- border-color: #fff;
- border-radius: 10px;
- font-size: 16px;
- }
- .phoneContainer {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- margin: 0 13px;
- .item {
- margin-top: 12px;
- position: relative;
- .img {
- width: 170px;
- height: 170px;
- border-radius: 10px;
- overflow: hidden;
- position: relative;
- }
- }
- .itemBorder .img::before {
- content: ' ';
- position: absolute;
- border-radius: 10px;
- border: 2px solid #64a9ff;
- z-index: 10;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- --van-checkbox-border-color: transparent;
- position: relative;
- :global {
- .van-checkbox {
- position: absolute;
- top: 16px;
- right: 10px;
- z-index: 9;
- height: 25px;
- }
- .van-checkbox__icon--checked {
- .van-icon {
- border-color: #64a9ff;
- }
- }
- }
- .checkboxHide {
- opacity: 0;
- }
- .iconChecked {
- font-size: 18px;
- border: 1px solid transparent;
- :global {
- .van-icon__image {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .dialogTitle {
- i {
- display: inline-block;
- width: 4px;
- height: 14px;
- background: #ff8057;
- border-radius: 2px;
- margin-right: 6px;
- }
- text-align: left;
- font-size: 18px;
- font-weight: 500;
- color: #333333;
- line-height: 25px;
- padding: 20px 0 20px 25px;
- }
- }
- .photos {
- padding: 0 16px 16px;
- }
|