12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- * {
- font-family: PingFangSC-Regular, serif;
- }
- .pageContainer-body {
- width: calc(100% - 175px);
- height: 100%;
- display: inline-block;
- }
- .pageContainer-content {
- width: 100%;
- height: calc(100% - 60px);
- padding: 5px 10px;
- overflow: hidden;
- overflow-y: auto;
- }
- .ant-btn {
- margin: 0 3px !important;
- }
- @font-face {
- font-family: numberMH;
- src: url(../assets/fonts/Digiface-Regular.ttf);
- }
- @font-face {
- font-family: PingFangSC-Regular;
- src: url(../assets/fonts/PingFangSC-Regular.ttf);
- }
- @font-face {
- font-family: PingFangSC-Bold;
- src: url(../assets/fonts/PingFangSC-Bold.ttf);
- }
- /*滚动条样式*/
- ::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 10px;
- background: #dddddd;
- }
- ::-webkit-scrollbar-track {
- border-radius: 10px;
- background: #eeeeee;
- }
- /*边框阴影*/
- .border-shadow {
- -webkit-box-shadow: 0 0 4px #0000004d;
- -moz-box-shadow: 0 0 4px #0000004d;
- box-shadow: 0 0 4px #0000004d;
- padding: 10px 20px;
- }
- /* fade-transform */
- .fade-transform--move,
- .fade-transform-leave-active,
- .fade-transform-enter-active {
- transition: all .5s;
- }
- .fade-transform-leave-active {
- position: absolute;
- }
- .fade-transform-enter {
- opacity: 0;
- transform: translateX(-30px);
- }
- .fade-transform-leave-to {
- opacity: 0;
- transform: translateX(30px);
- }
|