.all-auto-form { width: 100vw; height: 100vh; background: rgba(0, 0, 0, .3); position: fixed; display: none; left: 0; top: 0; z-index: 99; .box { width: 450px; height: 600px; display: flex; flex-direction: column; background: #fff; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 999; box-shadow: 0px 20px 30px 1px rgba(14,20,33,0.03); border-radius: 7px 7px 7px 7px; overflow: hidden; .header { width: 100%; height: 56px; position: relative; display: flex; align-items: center; padding: 0px 20px; background: linear-gradient(90deg, #175CFF 0%, #5889FF 100%); .logo { // width: 68px; height: 35px; img { // width: 100%; height: 35px; } } .title { margin-left: 15px; font-size: 14px; color: #fff; margin-bottom: 0; } .right { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); img { width: 25px; cursor: pointer; } } } .bodyer { padding: 20px; height: 464px; width: 100%; position: relative; overflow-y: auto; .message { font-size: 14px; color: #52565D; line-height: 22px; margin-bottom: 20px; } .form-item { margin-top: 10px; label { position: relative; font-size: 14px; line-height: 20px; font-weight: 500; color: #0A083A; width: 100%; .read-only { position: absolute; right: 0; top: 0; display: none; line-height: 20px; color: #FF5D82; } } .background-input { width: 100%; height: 40px; background: #f4f5f7; border-radius: 5px; padding: 5px 10px; &.activc { height: auto; min-height: 120px; } input { box-shadow: none; border: none; background-color: transparent; height: 30px; font-size: 14px; font-weight: 400; color: #0a083a; width: 100%; outline: none; } textarea { box-shadow: none; border: none; background-color: transparent; min-height: 100px; height: auto; font-size: 14px; font-weight: 400; color: #0a083a; width: 100%; outline: none; resize: none; } } } } .footer { padding: 0 20px; display: flex; flex-grow: 1; height: 0; align-items: center; background: #fff; button { width: 100%; color: #fff; background: linear-gradient(90deg, #175CFF 0%, #5889FF 100%); border: none; box-shadow: none; border-radius: 24px; height: 48px; font-size: 16px; } } } }