Can you take a look at what's wrong with my hover selector?

<el-col :xs="24" :sm="24" class="introduce">
<el-col :xs="24" :sm="6" class="a">
            <div class="intro">

dadaaaaaaaaaaaaaaaaaaaaaaaaa

<br>aaaaaaaaaaaaaaaaaaaaaa<br>aaaaaaaaaaaaaaaaaaaaaaa</div> </el-col> </el-col>

CSS

  .introduce{
    position: absolute;
    top:930px;
    width:80%;
    left:50%;
    margin-left:-40%;
    background-color: white;
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  }
  .intro{
    height: 400px;
    background-color: red;
    margin-top: 25px;
    margin-bottom:25px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: all 0.2s;
    text-align: center;
  }
  .a  :hover {
    border-color:-sharp74d7a5;
    box-shadow:4px 4px 0px -sharp74d7a5 inset, -4px -4px 0px -sharp74d7a5 inset
  }

p

p

I only want to have the effect of one picture, but how to correct the effect of not having two pictures?

Mar.19,2021

.intro:hover {
    border-color:-sharp74d7a5;
    box-shadow:4px 4px 0px -sharp74d7a5 inset, -4px -4px 0px -sharp74d7a5 inset
}

.a:hover {
    border-left: 4px solid red;
    border-right: 4px solid red;  
}

other styles remain the same.

Menu