123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- body {
- font-size: 3.7vw !important;
- background-color: rgb(251, 251, 251);
- }
- .top{
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 98vw;
- padding-right: 2vw;
- }
- .layui-input-block{
- margin-left: 0 !important;
- width: 70vw;
- }
- .layui-form-label{
- width: 10vw;
- }
- .layui-icon{
- font-size: 4.5vw !important;
- }
- .associated-add{
- margin-top: 14vw;
- margin-left: 3vw;
- }
- .associated-item {
- margin: 3vw 3vw 2vw 3vw;
- padding: 2vw 3vw 1vw 3vw;
- box-shadow: 0 1px 3px 0 rgb(5 32 96 / 10%);
- background-color: #fff;
- display: flex;
- }
- .associated{
- margin-bottom: 1vw;
- }
- .associated-left{
- margin-right: 3vw;
- }
- .associated-left img{
- width: 15vw;
- height: 15vw;
- border-radius: 7.5vw;
- margin-top: 25%;
- }
- .associated-right{
- width: 66%;
- }
- .associated-button{
- margin-top: 8%;
- }
- /*.associated-button button{*/
- /* padding: 2vw;*/
- /* border: red 0.25vw solid;*/
- /* color: red;*/
- /* background-color: rgb(255, 255, 255);*/
- /*}*/
- .layui-btn{
- font-size: 3.7vw !important;
- }
- .password {
- position: fixed;
- z-index: 1000;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background: rgba(0, 0, 0, .6);
- opacity: 0;
- visibility: hidden;
- transition: opacity .3s;
- }
- .password.show {
- opacity: 1;
- visibility: visible;
- }
- .dialog {
- position: fixed;
- background-color: #fff;
- left: 0;
- right: 0;
- bottom: 0;
- min-height: 50vw;
- max-height: 75%;
- z-index: 5000;
- border-top-left-radius: 12px;
- border-top-right-radius: 12px;
- overflow: hidden;
- padding: 1vw !important;
- padding: 0 24px constant(safe-area-inset-bottom) 4vw;
- padding: 0 24px env(safe-area-inset-bottom) 4vw;
- transform: translateY(100%);
- transition: transform .3s;
- }
- .dialog.show {
- transform: translateY(0);
- }
- .password-top{
- display: flex;
- text-align: center;
- align-items: center;
- justify-content: space-between;
- border-bottom: 0.35vw solid rgb(219, 219, 221);
- margin-bottom: 6vw;
- padding: 1vw;
- }
- .password-top img{
- width: 5vw;
- }
- .password-top button{
- border: none;
- background-color: #fff;
- font-size: 3.7vw;
- }
- .layui-form-item .layui-input-inline{
- margin: 0 !important;
- }
- .layui-form-item{
- margin-top: 3vw !important;
- display: flex;
- align-items: center;
- margin: 3vw 3vw 3vw 6vw !important;
- font-size: 4vw !important;
- }
- .layui-input, .layui-select, .layui-textarea{
- line-height: 3.5vh !important;
- }
- .layui-input-wrap .layui-input{
- padding-bottom: 0 !important;
- padding-right: 0 !important;
- }
- .layui-input, .layui-textarea{
- width: unset !important;
- }
|