| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- :root {
- font-size: 14px;
- font-weight: 400;
- color-scheme: light dark;
- font-synthesis: none;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- -webkit-text-size-adjust: 100%;
- }
- @font-face {
- font-family: "PersagyBold";
- src: url("@/assets/font/PersagyBold2.ttf");
- }
- @font-face {
- font-family: "Persagy";
- src: url("@/assets/font/PersagyRegular2.ttf");
- }
- html {
- height: 100%;
- margin: 0;
- padding: 0;
- user-select: none;
- }
- body {
- margin: 0;
- padding: 0;
- height: 100%;
- }
- *{
- box-sizing: border-box;
- }
- #app {
- height: 100%;
- }
- .horizontalClass {
- padding: 0px 32px 32px;
- box-sizing: border-box;
- border-radius: 20px;
- // background: #ffffff;
- font-size: 20px;
- }
- .head-title {
- height: 60px;
- font-weight: 700;
- font-size: 40px;
- line-height: 1;
- color: #f7e6cd;
- }
- .subhead-title {
- font-weight: 400;
- font-size: 25px;
- padding-top: 36px;
- line-height: 1;
- height: 60px;
- box-sizing: border-box;
- color: #f7e6cd;
- }
- .verticalClass {
- box-sizing: border-box;
- }
|