
.mybanner{
   height: 460px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size:auto 100%;
    background-image: url("/static/1111.png");
}
.mybanner img{
    width: 100%;
}
.about-show{
    display: flex;

    grid-gap: 30px;
}
.about-show .left{
  width: 200px;
    position: relative;
}
.about-show .left .mymenu{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
.about-show .left .mymenu a{
    border-right: solid 2px #999;
    display: block;
    text-align: right;
    padding: 8px 20px;
    margin: 10px 0px;
    font-size: 18px;
    color: #fff;
}
.about-show .right{
    width: 100%;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}
.about-show .right h3{
    font-size: 30px;
    margin: 10px 0px;
    font-family: Poppins-Bold;
}
.about-show .right ul{
    margin-bottom: 30px;
}
.about-show .right ul img{
    width: 100%;
}
.about-show .right ul li{
    padding: 10px 0px;
}
@media screen and (max-width:800px) {
    .mybanner{
        height: 200px;
    }
    .about-show .left{
        display: none;
    }
}