|
@@ -0,0 +1,42 @@
|
|
|
|
+.form_container {
|
|
|
|
+ width: 100vw;
|
|
|
|
+ height: 100vh;
|
|
|
|
+ background: url('../../static/web/org/arch/12.jpg') no-repeat;
|
|
|
|
+ background-size: 100% 100%;
|
|
|
|
+ padding-top: 80px;
|
|
|
|
+
|
|
|
|
+ .form_row {
|
|
|
|
+ z-index: 100;
|
|
|
|
+ height: calc(100vh - 80px);
|
|
|
|
+
|
|
|
|
+ .image {
|
|
|
|
+ height: 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .value {
|
|
|
|
+ height: 85%;
|
|
|
|
+ background-color: #fff;
|
|
|
|
+ text-align: center;
|
|
|
|
+ padding: 32px 40px;
|
|
|
|
+ border-radius: 8px;
|
|
|
|
+ border: 1px solid rgba(187, 187, 187, 1);
|
|
|
|
+
|
|
|
|
+ .ant-form-item {
|
|
|
|
+ height: 12%;
|
|
|
|
+
|
|
|
|
+ .ant-input,
|
|
|
|
+ .ant-input-number {
|
|
|
|
+ border: none;
|
|
|
|
+ border-bottom: 1px solid #ccc;
|
|
|
|
+ border-radius: 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .ant-input:focus{
|
|
|
|
+ box-shadow: none;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|