1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .drug-info-wrapper {
- position: fixed;
- width: 850px;
- height: 680px;
- left: 50%;
- top: 50%;
- margin-left: -425px;
- margin-top: -340px;
- background: #fff;
- z-index: 103;
-
- }
- .drug-desc-wrapper {
- height: 640px;
- overflow-y: auto;
- padding: 0 40px;
- }
- .drug-title {
- width: 100%;
- height: 40px;
- line-height: 40px;
- padding: 0 40px;
- border-bottom: 1px solid #979797;
- }
- .close-drug-desc {
- position: absolute;
- right: 0;
- width: 30px;
- }
- .drug-desc-item {
- padding: 5px 0;
- }
- .drug-desc-title {
- display: inline-block;
- font-weight: bold;
- font-size: 14px;
- height: 100%;
- float: left;
- }
- .drug-desc-title::before {
- content: '【'
- }
- .drug-desc-title::after {
- content: '】'
- }
- .drug-title1 {
- height: 60px;
- line-height: 60px;
- font-size: 32px;
- color: #000000;
- text-align: center;
- }
- .drug-desc-content {}
|