1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /**
- * 创建者:王成
- * 创建日期:2022年9月15日
- * 描述:短消息结果样式集 所有样式均以jt开头
- */
- /* 分析结果行样式 */
- .jt-sms-content-row {
- position: relative;
- height: 34px;
- line-height: 34px;
- color: rgb(255, 255, 255);
- font-size: 13px;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 0px 5px;
- }
- /* 分析结果行底边框线样式 */
- .jt-sms-content-row::after {
- content: '';
- width: 100%;
- position: absolute;
- left: 20px;
- bottom: 0px;
- border-bottom: solid 1px rgba(203, 203, 203, 0.75);
- z-index: 20,
- }
- /* 干掉最有一条底部边框线 */
- .jt-sms-content-row-last::after {
- border-bottom: solid 0px red;
- }
- /* 分析结果编号样式 */
- .jt-sms-content-row .jt-icon {
- display: inline-block;
- height: 20px;
- width: 20px;
- line-height: 20px;
- font-size: 11px;
- border: solid 1px rgb(230, 230, 230);
- border-radius: 20px;
- color: rgb(146, 224, 212);
- font-weight: bold;
- background-color: rgba(255, 255, 255, 0);
- text-align: center;
- box-shadow: rgb(95, 150, 222) 0px 0px 10px inset;
- margin-left: 10px;
- }
- /* 分析结果面积值样式 */
- .jt-sms-content-row .jt-name {
- display: inline-block;
- width: 100px;
- text-align: center;
- padding-right: 10px;
- color: rgb(147, 224, 212);
- font-weight: bold;
- }
- /* 分析结果面积值样式 */
- .jt-sms-content-row .jt-mobile {
- display: inline-block;
- width: 100px;
- text-align: center;
- padding-right: 10px;
- color: rgb(255, 255, 0);
- font-weight: bold;
- }
- /* 分析结果标题样式 */
- .jt-sms-content-row .jt-message {
- display: inline-block;
- width: 100px;
- text-align: left;
- padding-right: 10px;
- flex: 1;
- font-family: 'TTTGB-Medium', sans-serif !important;
- }
|