12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .main {
- position: relative;
- width: 100%;
- background-color: #ffffff;
- padding: 20px 0 0 0;
- }
- .zero {
- border-bottom: 1px solid #dddddd;
- margin: 0 20px;
- height: 50px;
- }
- .one {
- border-bottom: 1px solid #dddddd;
- margin: 0 20px;
- height: 40px;
- }
- .van-uploader__upload {
- border-radius: 50%;
- align-items: center;
- background-color: var(--uploader-upload-background-color,#f7f8fa);
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- height: var(--uploader-size,50px);
- justify-content: center;
- margin: 0 8px 8px 0;
- position: relative;
- width: var(--uploader-size,50px);
- width: 50px !important;
- height: 50px !important;
- }
- .van-uploader__preview-image {
- border-radius: 50%;
- display: block;
- height: var(--uploader-size,50px);
- overflow: hidden;
- width: var(--uploader-size,50px);
- width: 50px !important;
- height: 50px !important;
- }
- .text {
- position: relative;
- top: 10px;
- width: 40%;
- }
- .tou {
- width: 50px;
- height: 50px;
- position: relative;
- left: 280px;
- top: -30px;
- }
- .input {
- position: relative;
- text-align: right;
- left: 130px;
- top: -10px;
- width: 60%;
- font-size: 14px;
- }
- .button {
- position: relative;
- top: 50px;
- width: 300px !important;
- background-image: linear-gradient(to right, #fd3c1e, #c74df0);
- border-radius: 30px;
- color: #ffffff;
- text-align: center;
- font-size: small;
- }
|