| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .top{
- border-bottom: 1px solid #ccc;
- padding-bottom: 12px;
- }
- .db-content-wrapper{
- padding-left:30px!important;
- }
- .list-item{
- position: relative;
- width: 80%;
- min-width: 1000px;
- }
- .list-top{
- display: flex;
- align-items: center;
- height: 62px;
- }
- .list-top>.ball{
- width: 10px;
- height: 10px;
- border-radius: 100%;
- background-color: #ebebeb;
- }
- .list-top>.title{
- font-size:20px;
- color: #000;
- font-weight: bold;
- margin-left: 10px;
- }
- .list-item>.line{
- position: absolute;
- width: 2px;
- top:31px;
- height: 100%;
- background-color: #f2f4f5;
- left: 4px;
- }
- .list-item .content{
- margin-left: 58px;
- border-radius: 3px ;
- background-color: #f2f4f5;
- padding: 20px;
- }
- .list-item .content{
- display: flex;
- }
- .list-item .content:not(:first-child){
- margin-top: 10px;
- }
- .content-content{
- width: 40%;
- position: relative;
- }
- .content-item{
- display: flex;
- align-items: center;
- height: 20px;
- }
- .content-item:not(:last-child){
- margin-bottom: 10px;
- }
- .content-item .title{
- font-size:14px;
- color: #000000;
- font-weight: bold;
- min-width: 120px;
- margin-right:46px;
- }
- .content-item .val{
- font-size:14px;
- color: #000;
- flex-grow: 1;
- }
- .showPhoto{
- height: auto;
- align-items: flex-start;
- }
- .showPhoto .val{
- display: flex;
- flex-direction: column;
- }
- .showPhoto .val .photo{
- width: 100px;
- height: 150px;
- }
- .content-content1{
- width: 130px;
- }
- .content-content2{
- width: 233px;
- min-width: 233px;
- }
- .content{
- position: relative;
- overflow: hidden;
- }
- .scroll-box{
- padding: 0!important;
- }
- .content-scroll{
- /*overflow-x: scroll;*/
- display: flex;
- overflow-x: scroll;
- flex-grow: 1;
- padding: 20px 20px 20px 150px;
- }
- .scroll-box .content-content1{
- padding-left: 20px;
- left: 0!important;
- }
- .content-scroll::-webkit-scrollbar
- {
- width: 5px;
- height: 5px;
- background-color: #F5F5F5;
- }
- /*定义滚动条轨道 内阴影+圆角*/
- .content-scroll::-webkit-scrollbar-track
- {
- /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
- /*border-radius: 10px;*/
- /*background-color: #F5F5F5;*/
- }
- /*定义滑块 内阴影+圆角*/
- .content-scroll::-webkit-scrollbar-thumb
- {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
- background-color:#2FACE9;
- }
- .titleLine{
- width: 5px;
- height: 20px;
- background-color: #0D7DBA;
- position: absolute;
- top:20px;
- left: 0;
- }
- .superTitle{
- font-size:16px;
- color: #0D7DBA;
- font-weight: bold;
- line-height: 20px;
- margin-bottom: 10px;
- }
|