123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- .details-wrapper {
- position: fixed;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- z-index: 205;
- }
- .details-content-wrapper {
- position: fixed;
- padding: 50px 0;
- width: 80%;
- height: 80%;
- left: 10%;
- top: 10%;
- background: #fff;
- overflow: hidden;
- z-index: 10;
- }
- .details-content-name {
- position: absolute;
- top: 0;
- width: 100%;
- padding: 0 40px;
- height: 50px;
- line-height: 50px;
- font-size: 24px;
- }
- .details-content-title-box {
- position: relative;
- height: 40px;
- line-height: 40px;
- font-size: 20px;
- }
- .details-content-title-name {
- position: absolute;
- background: #fff;
- padding-right: 5px;
- font-size: 20px;
- z-index: 10;
- }
- .details-content-title-line {
- position: absolute;
- width: 100%;
- height: 20px;
- top: 0;
- border-bottom: 1px dashed #ccc;
- }
- .details-close {
- position: absolute;
- right: 0;
- }
- .details-content {
- position: relative;
- height: 100%;
- padding: 0 180px 0 40px;
- overflow-y: auto;
- }
- .content-menu {
- position: absolute;
- top: 50px;
- right: 20px;
- background: #eee;
- border: 1px solid #eee;
- width: 160px;
- padding: 15px 18px;
- }
- .details-content-menu-line {
- height: 15px;
- width: 0;
- border: 1px solid #ccc;
- background-color: #ccc;
- margin-left: 4px
- }
- .details-content-menu-name {
- color: #33475f;
- font-size: 13px;
- }
- .details-content-menu-circle {
- display: inline-block;
- width: 8px;
- height: 8px;
- border-radius: 5px;
- border: 1px solid #ccc;
- margin-top: 5px;
- background-color: #eee;
- margin-right: 10px;
- }
- .details-mask {
- position: fixed;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- background: #000;
- opacity: .6;
- filter:alpha(opacity=60);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
- }
|