<div class="inputReportIndex">
    <div class="inner">
      <div class="left">
        <Card :bordered="false" style="height: 48%;">1</Card>
        <div style="height: 4%;"></div>
        <Card :bordered="false" style="height: 48%;">1</Card>
      </div>
      <div class="right">
        <Card :bordered="false">
          <!--<div style="background-color: aqua; width: 100%; height: 100%;"></div>-->
        </Card>
      </div>
    </div>
  </div>

 

.inputReportIndex {
    display: flex; justify-content: center;align-items: center;width: 100%; height: 100%;
    .inner {
      width: 88%; height: 88%;
      .left{
        width: 62%;
        height: 100%;
        float: left;
      }
      .right{
        width: 35%;
        height: 100%;
        float: right;
        > .ivu-card {
          height: 100%;
          position: relative;
          > .ivu-card-body {
            height: 100%;
            position: relative;
            z-index: 99;
          }
          &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 25px;
            height: 25px;
            background: #fff;
            transition: all 0.2s ease-in-out;
          }
          &:hover::after {
            box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.11);
          }
        }
      }
    }

  }

 

相关文章:

  • 2022-12-23
  • 2021-10-13
  • 2022-12-23
  • 2021-12-22
  • 2021-07-12
  • 2022-01-07
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2022-12-23
  • 2021-10-29
相关资源
相似解决方案