123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- .hc-datav-gui-box {
- position: relative;
- height: 600px;
- width: 1363px;
- display: flex;
- transform: scale(1);
- transform-origin: 0 0;
- overflow: hidden;
- .hc-gui-info-img {
- position: relative;
- height: 100%;
- display: flex;
- align-items: center;
- flex: 1.5;
- .el-carousel {
- height: 100%;
- width: 100%;
- padding: 0 24px 15px;
- --el-carousel-indicator-out-color:#12ced1;
- .el-carousel__container {
- position: relative;
- height: 100%;
- .el-carousel__arrow {
- font-size: 24px;
- color: #12ced1;
- background-color: transparent;
- &:hover {
- color: #64a6fc;
- }
- }
- .el-carousel__arrow--left {
- left: -35px;
- }
- .el-carousel__arrow--right {
- right: -35px;
- }
- }
- .el-carousel__item {
- display: inline-flex;
- justify-content: center;
- }
- .el-carousel__indicator--horizontal {
- padding: 0 4px;
- }
- }
- .gui-info-img {
- position: relative;
- height: 100%;
- img {
- position: relative;
- height: 100%;
- }
- .gui-file-item-box {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- display: flex;
- padding: 18px;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: center;
- align-content: flex-start;
- justify-content: flex-start;
- .gui-file-item {
- position: relative;
- display: flex;
- width: 25%;
- height: 19.6%;
- padding: 1%;
- .item {
- position: relative;
- background: #927a6a;
- color: #1A1A1A;
- height: 100%;
- width: 12%;
- padding: 6px 3px;
- font-size: 13px;
- border: 1px solid #5d4848;
- border-radius: 3px;
- text-orientation: upright;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- cursor: pointer;
- writing-mode: vertical-rl;
- display: flex;
- flex-direction: column;
- justify-content: center;
- transition: transform .2s;
- &.cur, &:hover {
- z-index: 22;
- color: white;
- background: #A16222;
- border: 1px solid #bbbbbb;
- font-size: 10px;
- transform: scale(1.2);
- }
- }
- }
- }
- }
- }
- .hc-gui-info-data {
- position: relative;
- height: 100%;
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- .hc-gui-data-container {
- position: relative;
- img {
- height: 450px;
- }
- .hc-gui-info-item-box {
- position: absolute;
- top: 50px;
- left: 36px;
- right: 28px;
- height: 325px;
- overflow: hidden;
- .hc-gui-info-item {
- position: relative;
- height: 100%;
- width: 100%;
- font-size: 14px;
- .info-item {
- position: relative;
- display: flex;
- color: #101010;
- .title {
- margin-right: 10px;
- font-weight: bold;
- span + span {
- margin-left: 29px;
- }
- }
- .text {
- flex: 1;
- }
- }
- .info-item-name {
- color: #101010;
- margin-top: 14px;
- line-height: 1.8;
- }
- .hc-info-item-bottom {
- position: absolute;
- bottom: 4px;
- right: -2px;
- left: 4px;
- }
- .info-item + .info-item {
- margin-top: 14px;
- }
- }
- }
- }
- .btn-box {
- position: relative;
- height: 50px;
- display: flex;
- padding-right: 10px;
- justify-content: flex-end;
- align-items: flex-end;
- }
- }
- }
|