123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- @import "common.less";
- html{
- background: #fff;
- font-family: '微软雅黑', '宋体';
- }
- .staticContainer {
- width: 80%;
- background: #fff;
- margin: 0 auto;
- /* padding: 0 30px; */
- position: absolute;
- /* width: 80%; */
- left: 30px;
- right: 30px;
- height: 100%;
- overflow: hidden;
- /* box-sizing: border-box; */
- }
- .staticSearchT {
- position: relative;
- padding-right: 80px;
- padding-bottom: 10px;
- padding-top: 10px;
- }
- .container .ipt {
- width: 100%;
- height: 36px;
- padding: 6px 25px 6px 5px;
- border-radius: 4px 0px 0px 4px;
- vertical-align: top;
- display: inline-block;
- box-sizing: border-box;
- border: 1px #CECECE solid;
- }
- .container .ipt input {
- width: 100%;
- position: relative;
- top: 1px;
- font-size: 14px;
- font-family: '微软雅黑', '宋体';
- }
- .container .staticSearchT button {
- position: absolute;
- right: 0;
- top: 10px;
- width: 80px;
- height: 36px;
- line-height: 36px;
- color: #fff;
- font-size: 14px;
- background: @bgcBlue;
- border-radius: 0px 4px 4px 0px;
- text-align: center;
- border: none;
- }
- .container .staticSearchT i {
- position: absolute;
- width: 15px;
- height: 15px;
- right: 85px;
- top: 20px;
- display: inline-block;
- cursor: pointer;
- background: url(/images/del_nor.png) center center no-repeat;
- background-size:15px 15px;
- z-index: 100;
- }
- .staticSearchB .tip,.container .staticSearchT i,.staticSearchB .empty, .staticSearchB .searching,.staticSearchB .inputWarning{
- display: none;
- }
- .staticSearchB .empty, .staticSearchB .searching,.staticSearchB .inputWarning{
- color: #979797;
- text-align: center;
- /*line-height: 40px;*/ /**bug8689*/
- top: 70px;
- position: relative;
- }
- .staticSearchB .inputWarning{
- color: @fontClr;
- }
- .staticSearchB ul {
- position: absolute;
- height: 480px;
- /* width: 100%; */
- right: 18px;
- left: 22px;
- overflow: auto;
- padding: 0 30px;
- }
- .staticSearchB ul li {
- border-bottom: 1px #EFEFEF solid;
- line-height: 32px;
- padding-top: 5px;
- .diag-name{
- color: #333;
- font-size: 14px;
- display: inline-block;
- width: 92%;
- cursor: pointer;
- }
- .code-slide{
- display: inline-block;
- cursor: pointer;
- width: 10px;
- height: 7px;
- background: url("../images/icon_arrow_up.png") no-repeat;
- background-size: cover;
- margin-bottom: 0;
- }
- &.hide-codes{
- .codeDiv{
- display: none;
- }
- .code-slide{
- background: url("../images/icon_arrow_down.png") no-repeat;
- background-size: cover;
- }
- }
- }
- .staticSearchB ul li:hover {
- border-bottom: 2px solid #3589FF;
- }
- .staticSearchB ul p{
- position: relative;
- color: @fontClr;
- font-weight: bold;
- img{
- position: absolute;
- right: 2px;
- bottom: 10px;
- }
- }
- .staticSearchB .codeDiv{
- background: #EAEDF1;
- padding: 10px;
- margin-bottom: 10px;
- p,span{
- color: #444;
- font-size: 14px;
- font-weight: normal;
- line-height: 22px;
- }
- td{
- vertical-align: top;
- line-height: 20px;
- }
- .type-icon{
- border:1px #4F9FF3 solid;
- color: #4F9FF3;
- border-radius: 11px;
- display: inline-block;
- width: 58px;
- height: 22px;
- text-align: center;
- margin-right: 6px;
- &.type-l{
- border-color:#1ECEBD;
- color: #1ECEBD;
- }
- }
- .type-code{
- color:#999;
- word-break: break-all;
- }
- }
- .staticSearchB ul i {
- font-size: 14px;
- color: @linkColor;
- font-weight: normal;
- }
- .staticSearchB .tip {
- font-size: 16px;
- color: #979797;
- margin-bottom: 5px;
- img{
- width: 16px;
- height: 16px;
- vertical-align: middle;
- margin-right: 5px;
- }
- }
- .staticSearchB ul span {
- color: #979797;
- font-size: 12px;
- margin-bottom: 10px;
- line-height: 20px;
- }
- .searchTypeBox {
- margin: 10px 0 5px 0;
- }
- .medicalTypeItem{
- display: inline-block;
- margin: 0 20px 10px 0;
- cursor: pointer;
- color: @fontClr;
- }
- .medicalTypeItem img {
- vertical-align: text-bottom;
- margin: 0 3px 2px 0;
- }
|