123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- @import "~@less/variables.less";
- .details-wrapper {
- .maskZIndex;
- position: fixed;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- line-height: 21px;
- img {
- max-width: 100%;
- }
- }
- .details-drag-name {
- position: absolute;
- width: 100%;
- height: 70px;
- top: 0;
- }
- .details-content-wrapper {
- position: fixed;
- padding: 110px 0 50px 0;
- width: 80%;
- height: 80%;
- left: 10%;
- top: 10%;
- background: #fff;
- overflow: hidden;
- z-index: 10;
- word-break: break-all;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .details-content-name {
- position: absolute;
- top: 43px;
- width: 100%;
- padding: 0 40px;
- height: 37px;
- line-height: 37px;
- font-size: 28px;
- font-weight: bold;
- color: #1E1E1E;
- }
- .details-content-title-box {
- position: relative;
- line-height: 30px;
- font-size: 20px;
- }
- .details-menu-title-wrapper {
- padding: 0 4px 0 20px;
- position: relative;
- }
- .details-content-title-name {
- position: relative;
- font-weight: bold;
- background: #fff;
- padding-right: 5px;
- font-size: 22px;
- line-height: 30px;
- display: inline-block;
- z-index: 10;
- color: #1E1E1E;
- }
- .details-close {
- position: absolute;
- right: 0;
- cursor: pointer;
- top: -43px;
- }
- .details-content {
- position: relative;
- height: 100%;
- padding: 0 220px 0 40px;
- overflow-y: auto;
-
- ul li {
- list-style: disc;
- list-style-position: inside;
- }
- ol li{
- list-style: decimal;
- list-style-position: inside;
- }
- }
- .content-menu-box {
- position: absolute;
- top: 110px;
- right: 20px;
- width: 200px;
- height: 80%;
- overflow: hidden;
-
- }
- .content-menu-wrapper {
- width: 240px;
- height: 100%;
- overflow-y: auto;
- }
- .content-menu {
-
- background: #F5F6F7;
- border: 1px solid #F5F6F7;
- width: 200px;
- padding: 15px 20px;
- }
- .details-content-menu-line {
- height: 20px;
- width: 0;
- background-color: #E0E2E3;
- margin-left: 0px
- }
- .details-content-menu-name {
- position: relative;
- color: #777777;
- font-size: 14px;
- cursor: pointer;
- line-height: 19px;
- }
- .details-content-menu-circle-box {
- display:inline-block;
- position: absolute;
- left: -25px;
- background: #F5F6F7;
- }
- .details-content-menu-circle {
- position: relative;
- display: inline-block;
- width: 8px;
- height: 8px;
- border-radius: 5px;
- margin-top: 5px;
- background-color: #E0E2E3;
- margin-right: 10px;
-
- }
- .details-content-menu-img {
- position: relative;
- z-index: 20;
- left: -3px;
- top: 0;
- }
- .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);";
- }
- .details-content-box {
- border-left: 1px solid #969C9F;
- padding: 0 0 0 33px;
- }
- .details-content-title-circle-box {
- position: absolute;
- z-index: 10;
- background: #fff;
- left: -40px;
- height: 32px;
- top: 0px;
- }
- .details-content-title-circle {
- display: inline-block;
- width: 12px;
- height: 12px;
- border-radius: 50%;
- background: #3B9ED0;
- position: relative;
- top: 2px;
- }
- .content-menu-border{
- border-left: 2px solid #E0E2E3;
- }
- pre {
- white-space: pre-wrap;
- word-wrap: break-word;
- font-family: inherit;
- color: #1E1E1E;
- margin: 10px 0;
- line-height: 21px;
- }
|