25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- .card-content-title {
- width:fit-content;
- height:fit-content;
- padding: 5px 20px 0; /* 文本的内边距 */
- font-size: 16px; /* 根据需要调整字体大小
- font-weight: bold; /* 字体加粗 */
- color: #29b6f6; /* 字体颜色 */
- text-align: center; /* 文本居中对齐 */
- background-color: #19426E; /* 设置背景颜色为深蓝色 */
- border: 1px solid #1f6f97; /* 设置边框颜色 */
- border-radius: 10px 10px 0 0; /* 上面是圆角,下面是直角 */
- box-shadow: inset 0 0 10px #1f6f97; /* 内阴影效果 */
- }
-
- .card-content {
- overflow: hidden;
- margin-bottom: 0.5rem;
- //height: 18rem;
- padding: 1rem 1.5rem;
- //position: relative;
- background-image: url('../../../../assets/dashboard/dashboard_card_bg.jpg');
- background-repeat: no-repeat; /* 防止背景图片重复 */
- background-position: center;
- // background-position: top;
- background-size: 100% 100%;
- // background-size: cover;
- // background-size: cover;
- // background-size: contain; /* 保证背景图片完整显示 */
-
- .card-content-title {
- display: flex;
- margin-bottom: 0.5rem;
- font-size: 18px;
- font-weight: 600;
- color: #74FAFB;
-
- .card-content-l {
- flex: 1;
- align-self: flex-start;
-
- /* 占据剩余空间 */
- }
-
- .card-content-r {
- align-self: flex-end;
- }
- }
- }
|