12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @font-face {
- font-family: 'oppoSans-M';
- src: url('@/assets/styles/OPPOSans-M.ttf') format('truetype');
- }
- @font-face {
- font-family: 'oppoSans-R';
- src: url('@/assets/styles/OPPOSans-R.ttf') format('truetype');
- }
- @font-face {
- font-family: 'myFont';
- src: url('@/assets/styles/custom.ttf') format('truetype');
- }
- .oppoSans-M{
- font-family: 'oppoSans-M';
- font-weight: 500;
- }
- .oppoSans-R{
- font-family: 'oppoSans-R';
- }
- .price-font{
- font-family: 'myFont';
- }
- body{
- font-family: 'oppoSans-M';
- background-color: #f5f5f5;
- color: #303133;
- }
- div{
- box-sizing: border-box;
- }
- .tag-item{
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- font-size: 12px;
- border-radius: 6px;
- }
- .flex-center {
- align-items: center;
- display: flex;
- justify-content: center;
- }
- .main-container {
- width: 1200px;
- margin: 0 auto;
- }
- .multi-hidden {
- word-break: break-all;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .el-button:focus-visible{
- outline: none !important;
- }
|