123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- @import "~@less/variables.less";
- .slideLi {
- // cursor: pointer;
- // color: #767676;
- position: relative;
- padding: 10px 0px 10px 0;
- border-bottom:1px dashed #989DA3;
- margin-top: 5px;
- i {
- font-style: normal;
- display: inline-block;
- vertical-align: top;
- padding-top: 3px;
- &:before {
- content: '\300C';
- }
- &:after {
- content: '\300D';
- }
- }
- &>p {
- cursor: pointer;
- color: #767676;
- display: inline-block;
- position: relative;
- vertical-align: top;
- }
- .partDel {
- width: 15px;
- height: 15px;
- margin-bottom: 11px;
- cursor: pointer;
- display: inline-block;
- position: absolute;
- right: -4px;
- top: 0px;
- background: @closeIcon;
- background-color: #fff;
- background-size: 100% 100%;
- }
- }
- .slideLi:hover{
- background:#F2F2F2;
- border-radius: 4px;
- .partDel{
- background: @closeHor;
- background-color: #fff;
- background-size: 100% 100%;
- }
- }
- .staticTagActive {
- cursor: pointer;
- color: #333;
- // display: inline-block;
- position: relative;
- vertical-align: top;
- padding: 2px 10px 10px 10px;
- box-sizing: border-box;
- width: 100%;
- float: left;
- span {
- border-bottom: 1px solid #666666 ;
- }
- }
- .staticTag {
- cursor: pointer;
- // color: #767676;
- color: @blue;
- padding-top: 10px;
- display: inline-block;
- position: relative;
- /* &:before {
- content: '\300C';
- }
- &:after {
- content: '\300D';
- } */
- }
- .table {
- color: #000;
- width: 100%;
- tr {
- line-height: 18px;
- height: 18px;
- width: 100%;
- font-size: unset;
- td {
- cursor: default;
- padding-top: 3px;
- font-size: unset;
- span {
- font-size: unset;
- }
- }
- }
- tr > td {
- padding: 0 10px;
- box-sizing: border-box;
- }
- }
- .searchResult {
- .searchResultT {
- img {
- float: right;
- }
- }
- }
- .excelDataLists {
- position: relative;
- background-color: #f1f1f1;
- border: 1px solid #ccc;
- .close {
- width: 13px;
- height: 13px;
- position: absolute;
- top: -5px;
- right: -5px;
- z-index: 30;
- background-color: #fff;
- border-radius: 50%;
- }
- .excelDataLis {
- padding: 2px 0px;
- border-bottom: 1px dashed #989DA3;
- .excelDataTitle {
- display: inline-block;
- width: 20%;
- vertical-align: top;
- padding-left: 10px;
- float: left;
- }
- table {
- width: 80%;
- tr {
- height: 16px;
- line-height: 16px;
- width: 100%;
- }
- td {
- text-align: left;
- padding-top: 6px;
- cursor: default;
- }
- .excelUnit {
- width: auto;
- margin-left: 5px;
- }
- }
- }
- }
- .center {
- text-align: center;
- font-size: 16px;
- padding-top: 10px;
- padding-bottom: 50px;
- }
- .slides {
- background-color: #EDEDED;
- text-align: center;
- height: 28px;
- line-height: 28px;
- margin: 10px 0 8px 0;
- cursor: pointer;
- span {
- color:#7d7d7d;
- }
- img{
- vertical-align: middle;
- }
- .num {
- color: @blue;
- }
- }
- .imgInfo {
- position: relative;
- }
- .imgInfo, .imgInfo1 {
- width: 15px;
- height: 17px;
- border-bottom: 0 none !important;
- background: url('../img/info2.png') no-repeat center center;
- background-size: 100% auto;
- position: absolute;
- top: -10px;
- left: 50%;
- margin-left: -8px;
- display: none;
- cursor: pointer;
- }
- .imgInfo1 {
- top: -13px;
- }
- .imgInfo:hover, .imgInfo1:hover {
- background: url('../img/info3.png') no-repeat center center;
- background-size: 100% auto;
- }
- .tagSpan {
- display: inline-block;
- position: relative;
- }
- .tagSpanS {
- font-weight: bold;
- color: #000;
- }
- .selectTagSpan {
- color: #000;
- font-weight: bold;
- }
- .tagSpan:hover {
- .imgInfo, .imgInfo1 {
- display: block;
- }
- }
- .iptValue {
- width: 60px;
- color: #3B9ED0;
- font-size: 12px;
- }
- .iptValueBtn {
- color: #3B9ED0;
- width: 60px;
- height: 22px;
- line-height: 22px;
- background-color: #EDF8FF;
- text-align: center;
- display: inline-block;
- font-size: 12px;
- border-radius: 4px;
- border-bottom: 0 !important;
- margin-left: 10px;
- }
|