Parcourir la source

上传文件至 'src/component/style'

deng il y a 1 an
Parent
commit
bcdabd7343

+ 28 - 0
src/component/style/about.less

@@ -0,0 +1,28 @@
+.about_container {
+    width: 80%;
+    margin: 30px auto;
+    text-align: center;
+    font-family: SourceHanSansSC-regular;
+
+    >p {
+        font-size: 18px;
+        margin: 20px 0;
+    }
+
+    .ant-col {
+        width: 200px;
+        height: 200px;
+
+        .contact_way,
+        >p {
+            text-align: left;
+            margin: 44px 0;
+        }
+
+        span:first-child {
+            font-size: 50px;
+            color: #58BE70;
+            margin: 20px 0;
+        }
+    }
+}

+ 26 - 0
src/component/style/about_us.less

@@ -0,0 +1,26 @@
+.us_title {
+    padding: 20px 40px;
+}
+
+.team_title {
+    margin: 30px 0;
+}
+
+.people {
+    background-color: #fff;
+    padding: 20px 10px;
+
+    .people_name {
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        flex-direction: column;
+    }
+
+    .prople_desc {
+        margin-top: 20px;
+    }
+}
+.certificate{
+    margin-bottom: 50px;
+}

+ 30 - 0
src/component/style/case.less

@@ -0,0 +1,30 @@
+.client_case {
+    .title {
+        margin: 20px;
+        font-size: 32px;
+        font-family: SourceHanSansSC-regular;
+        text-align: center;
+    }
+
+    .ant-tabs-nav {
+        margin: 0 auto;
+        width: 80%;
+
+        .ant-tabs-nav-wrap {
+            width: 100%;
+
+            .ant-tabs-nav-list {
+                width: 100%;
+                justify-content: space-around;
+            }
+        }
+
+        .ant-tabs-nav-operations {
+            width: 20%;
+        }
+
+    }
+}
+.pagination{
+    margin: 30px auto;
+}

+ 4 - 0
src/component/style/casedetail.less

@@ -0,0 +1,4 @@
+.case_detail_container {
+    width: 90%;
+    margin: 20px auto;
+}

+ 42 - 0
src/component/style/form.less

@@ -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;
+                }
+            }
+        }
+    }
+}