123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- page {
- background-color: #f5f5f5;
- }
- .upload-content {
- width: 100%;
- min-height: 2rem;
- background: #fff;
- border-radius: 8px;
- padding: 0.1rem;
- box-sizing: border-box;
- font-size: 0.18rem;
- }
- .upload-content-btn {
- position: relative;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- flex-direction: column;
- justify-self: center;
- align-items: center;
- height: auto;
- line-height: normal;
- padding: 12px;
- border-radius: 4px;
- border: 0 none;
- box-sizing: border-box;
- font-size: 18px;
- z-index: 2;
- color: #fff;
- background-color: #1677ff;
- box-shadow: inset 0 0 0 1px #1677ff;
- margin-bottom: 0.1rem;
- }
- .background {
- background-color: #f5f5f5;
- color: rgb(94, 94, 94, 0.8) !important;
- font-weight: bold !important;
- position: relative;
- width: calc(100% - 0.1rem) !important;
- margin-left: 0.1rem;
- border-bottom-left-radius: 0.14rem;
- border-top-left-radius: 0.14rem;
- padding: 0.1rem 0.2rem 0.1rem 0.1rem !important;
- }
- .background::before {
- content: "";
- position: absolute;
- right: 0;
- top: -0.2rem;
- width: 0.2rem;
- height: 0.2rem;
- background: #fff;
- transition: all 0.3s ease;
- box-sizing: border-box;
- border-bottom-right-radius: 0.14rem;
- z-index: 999;
- }
- .background::after {
- content: "";
- position: absolute;
- right: 0;
- bottom: -0.2rem;
- width: 0.2rem;
- height: 0.2rem;
- background: #fff;
- transition: all 0.3s ease;
- box-sizing: border-box;
- border-top-right-radius: 0.14rem;
- z-index: 999;
- }
- .bor-t {
- background-color: #f5f5f5;
- width: 0.2rem;
- height: 0.2rem;
- position: absolute;
- right: 0;
- top: -0.2rem;
- }
- .bor-b {
- background-color: #f5f5f5;
- width: 0.2rem;
- height: 0.2rem;
- position: absolute;
- right: 0;
- bottom: -0.2rem;
- }
- .box {
- display: flex;
- justify-content: flex-end;
- position: relative;
- background-color: #f5f5f5;
- }
- .menu {
- position: fixed;
- left: 0;
- top: 0;
- width: 2rem;
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #fff;
- font-size: 0.18rem;
- padding: 0.2rem 0;
- overflow-y: auto;
- color: rgb(94, 94, 94, 0.5);
- }
- .menu-item {
- width: 100%;
- min-height: 0.6rem;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- padding: 0.1rem 0.2rem;
- /* line-height: 6vh; */
- font-weight: initial;
- }
- .center {
- /* position: absolute;
- right: 0; */
- width: calc(100% - 2rem);
- padding: 0.2rem;
- min-height: 100vh;
- }
- .result {
- margin-top: 25rpx;
- word-wrap: break-word;
- max-height: 3rem;
- overflow: auto;
- }
- .scroll-item{
- padding-top: 0.1rem;
- }
- .scroll-item:not(:first-child){
- border-top: 0.01rem dashed rgb(203, 203, 203);
- }
|