| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- @import "../../scssCommon.scss";
- .main {
- margin-top: 0;
- }
- .uploadInvoice {
- .ruleIntro {
- background-color: #fff;
- box-sizing: border-box;
- padding: pxtovw(22) pxtovw(15);
- width: 100%;
- .stitle {
- font-size: pxtovw(13);
- font-weight: 500;
- text-align: left;
- color: #222222;
- line-height: pxtovw(20);
- }
- .sdesc {
- font-size: pxtovw(13);
- font-weight: 500;
- text-align: left;
- color: #222222;
- line-height: pxtovw(20);
- }
- }
- .imageUpload {
- margin-top: pxtovw(10);
- background-color: #fff;
- box-sizing: border-box;
- padding: pxtovw(17) pxtovw(15) pxtovw(25) pxtovw(15);
- width: 100%;
- .stitle {
- height: pxtovw(20);
- font-size: pxtovw(14);
- font-weight: 500;
- text-align: left;
- color: #2c343e;
- line-height: pxtovw(20);
- }
- .uploadInfo {
- display: flex;
- margin: pxtovw(22) auto 0 auto;
- width: pxtovw(255);
- height: pxtovw(157);
- flex-shrink: 0;
- overflow: hidden;
- position: relative;
- background: #fff;
- .el-icon-delete {
- display: none;
- }
- .avatar-uploader .el-upload {
- width: pxtovw(255);
- height: pxtovw(157);
- border: 1px dashed #6f6c6f;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- img {
- width: 100%;
- height: auto;
- object-fit: contain;
- object-position: top left;
- }
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409eff;
- .el-icon-delete {
- display: block;
- }
- }
- .avatar-uploader-icon {
- position: absolute;
- top: 0;
- left: 0;
- font-size: 44px;
- color: #6f6c6f;;
- width: pxtovw(255);
- height: pxtovw(157);
- line-height: pxtovw(157);
- text-align: center;
- }
- .avatar {
- width: pxtovw(255);
- height: pxtovw(157);
- display: block;
- }
- .noneImage {
- width: pxtovw(255);
- height: pxtovw(157);
- background: url('~@/assets/img/other/money/invoice_bg@2x.png') no-repeat;
- background-size: cover;
- }
- .title {
- position: absolute;
- left: 50%;
- bottom: 40px;
- transform: translateX(-50%);
- font-size: 13px;
- font-weight: 500;
- color: #409eff;
- line-height: 18px;
- text-decoration: underline;
- }
- //invoice_bg@2x.png
- }
- }
- .button {
- margin: pxtovw(38) auto 0 auto;
- width: pxtovw(345);
- height: pxtovw(46);
- background: #308eff;
- border-radius: pxtovw(4);
- box-shadow: 0 pxtovw(2) pxtovw(6) 0 rgba(48, 142, 255, 0.3);
- display: flex;
- justify-content: center;
- align-items: center;
- p {
- height: pxtovw(21);
- font-size: pxtovw(15);
- font-weight: 500;
- text-align: center;
- color: #ffffff;
- line-height: pxtovw(21);
- }
- }
- }
|