.main{
    width:1300px;
    /*background: grey;*/
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.main>.left{
    width: 90%;
    /*background: white;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main>.left>div{
    width: 80%;
    /*height: 500px;*/
    background: white;
    margin: 30px 0;
    border-radius: 20px;
}
.main>.left>div>div{
    width: 95%;
    display: flex;
    margin: 20px auto;
    justify-content: space-around;
    align-items: center;
}
.main>.left>div>div>img{
    width: 12%;
    height: 12%;
    transition-property: border-radius;
    transition: 3s;
}
.main>.left>div>div>img:hover{
    border-radius: 155px;
}
.main>.left>div>div>p{
    width: 80%;
    line-height: 23px;
    margin: 25px auto;
    font-family: "楷体";
    color: #333333;
    cursor: default;
}
.main>.left>div>div>p>strong{
    color: #3590AC;
    font-size: 25px;
}
.main>.left>div>h3{
    border-left: solid 20px #5ed8ee;
    color: #333333;
    text-indent: 1em;
    cursor: default;
    margin: 20px 10px;
    font-size: 24px;
    /* text-shadow: -1px -1px white,1px 1px black; */
}
/*right*/
.main>.right{
    width: 200px;
    height: 500px;
    position: fixed;
    right: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.main>.right>div{
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: white;
}
.main>.right>div>img{
    width:27%;
}
.main>.right>div>span{
    flex: 1;
    text-align: center;
    font-size: 16px;
}