| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- :root {
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
- line-height: 1.5;
- font-weight: 400;
- color-scheme: light dark;
- color: rgba(255, 255, 255, 0.87);
- background-color: #242424;
- font-synthesis: none;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- a {
- font-weight: 500;
- color: #646cff;
- text-decoration: inherit;
- }
- a:hover {
- color: #535bf2;
- }
- body {
- margin: 0;
- display: flex;
- place-items: center;
- min-width: 320px;
- min-height: 100vh;
- }
- h1 {
- font-size: 3.2em;
- line-height: 1.1;
- }
- button {
- border-radius: 8px;
- border: 1px solid transparent;
- padding: 0.6em 1.2em;
- font-size: 1em;
- font-weight: 500;
- font-family: inherit;
- background-color: #1a1a1a;
- cursor: pointer;
- transition: border-color 0.25s;
- }
- button:hover {
- /* border-color: #646cff; */
- }
- button:focus,
- button:focus-visible {
- /* outline: 4px auto -webkit-focus-ring-color; */
- }
- .card {
- padding: 2em;
- }
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- /* text-align: center; */
- color: #2c3e50;
- width: 100vw;
- height: 100vh;
- }
- @media (prefers-color-scheme: light) {
- :root {
- color: #213547;
- background-color: #ffffff;
- }
- a:hover {
- color: #747bff;
- }
- button {
- background-color: #f9f9f9;
- }
- }
- .c_pointer{
- cursor: pointer;
- }
- .c_blue{
- color: #747bff;
- }
- .c_red{
- color: red;
- }
- .font_14{
- font-size: 14px;
- }
- .p_rel{
- position: relative;
- }
- .p_abs{
- position: absolute;
- }
- /* 图片上传 */
- .avatar-uploader{
- border: 1px dashed #eee;
- border-radius: 3px;
- height: 178px;
- width: 178px;
- }
- .scope_avatar{
- width: 80px;
- height: 80px;
- }
- .statusCode {
- display: flex;
- align-items: center;
- /* justify-content: center; */
- .dots {
- width: 8px;
- height: 8px;
- border-radius: 50%;
- background: rgb(0, 183, 255);
- margin-right: 10px;
- }
- }
- .statusCode1 {
- display: flex;
- align-items: center;
- /* justify-content: center; */
- .dots {
- width: 8px;
- height: 8px;
- border-radius: 50%;
- background: red;
- margin-right: 10px;
- }
- }
- .avatar-uploader .avatar {
- width: 178px;
- height: 178px;
- display: block;
- }
- .avatar-uploader .close_icon{
- position: absolute;
- top: 0;
- right: 0;
- z-index: 8;
- color: #fff;
- cursor: pointer;
- background-color: rgba(0,0,0,0.25);
- width: 20px;
- height: 20px;
- }
- .el-icon.avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- height: 178px;
- width: 178px;
- text-align: center;
- }
- .real_image{
- width: 178px;
- height: 178px;
- }
- .flex{
- display: flex;
- }
- .jc_between{
- display: flex;
- justify-content: space-between;
- }
- .w_100{
- width: 100%;
- }
- .w_50{
- width: 50%;
- }
- .h_100{
- height: 100%;
- }
- .pd_t10{
- padding-top: 10px;
- }
- .pd_x10{
- padding: 0 10px;
- }
- .pd_x20{
- padding: 0 20px;
- }
- .pd_y10{
- padding: 10px 0;
- }
- .pd_b10{
- padding-bottom: 10px;
- }
- .color_ccc{
- color: #cccccc;
- }
- .color_aaa{
- color: #aaa;
- }
|