| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- @import '@/common/scss/base.scss';
- .volume-container {
- display: flex;
- flex-direction: column;
- height: 100%;
- background: url(/static/img/leads-img0.png) no-repeat;
- background-color: $color-7;
- background-size: 100%;
-
- .body {
- flex: 1;
- }
- }
- .volume-content {
- .cur {
- box-shadow: 0 0px 4px 1px #ffd023;
- z-index: 2;
- position: relative;
- }
- textarea, input {
- border: 0;
- width: 100%;
- width: 100%;
- outline: none;
- padding: $sp-md 0;
- }
- input[readonly] {
- cursor: pointer;
- }
- textarea {
- min-height: 120px;
- }
- .vertical {
- margin-top: $sp-sm;
- margin-bottom: $sp-sm;
- }
- .horizontal {
- margin-top: $sp-sm;
- margin-bottom: $sp-sm;
- }
- }
- .slider-layout {
- flex: 1;
- padding: 0 $sp-md;
- padding-bottom: $sp-md;
- display: flex;
- flex-direction: column;
- align-items: center;
- .val,
- .warn {
- padding-bottom: $sp-lg;
- font-size: $size-lg;
- color: $color-success;
- }
- .warn {
- color: $color-3;
- }
- .ruler-layout {
- font-size: $size-xs;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid $color-4;
- margin-top: $sp-lg;
- margin-bottom: $sp-md;
- .ruler-item {
- position: relative;
- height: $size-xs;
- background: $color-4;
- width: 1px;
- span {
- position: absolute;
- left: 0;
- top: ($size-xs + $sp-xs);
- white-space: nowrap;
- color: $color-3;
- transform: translateX(-50%);
- text-align: center;
- }
- }
- }
- }
- .buyer-img {
- width: 124.5px;
- height: 36.5px;
- }
- .hw {
- height: 80px;
- }
- .h-memo {
- font-size: 24px;
- }
- .il-img2 {
- width: 153.5px;
- height: 131px;
- }
- .card {
- margin-top: -18px;
- box-shadow: 0 3px 6px 1px $color-5;
- border-radius: $size-md;
- }
- .f-label {
- width: $size-md * 5 + $sp-md;
- }
- .l-pie, .r-pie {
- width: $size-md;
- height: $size-md;
- }
- .l-pie {
- margin-left: -($size-md / 2)
- }
- .r-pie {
- margin-right: -($size-md / 2)
- }
- .h-memo-h1 {
- font-size: 36px;
- }
- .h-memo-h2 {
- font-size: 28px;
- }
|