
.box2 {
    background: #F8FCFF;
    padding-top: 0.94rem;
    padding-bottom: 1.14rem;
}
.box2 .main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.73rem 0.1rem;
}
.box2_box {
    width: 6.9rem;
    height: auto;
    background: #FFFFFF;
    border-radius: 0.2rem;
    overflow: hidden;
    transition: 0.3s;
}

.box2_box_top {
    width: 100%;
    height: 3.3rem;
    background: #F5F5F5;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box2_box_top::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(133deg, #EDF5FF 0%, #C1EDFF 100%);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.box2_box_top_p {
    position: absolute;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 2.8rem;
    color: #626262;
    opacity: 0.02;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.box2_box_top img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: 0.5s;
}

.box2_box_bottom {
    padding: 0.27rem 0.36rem 0.26rem 0.3rem;
}
.box2_box_bottom_box{
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box2_box_bottom_box_btn{
    width: 0.39rem;
    height: 0.23rem;
    background: #C6C6C6;
    border-radius: 0.12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.box2_box_bottom_box_btn img{
    width: 0.16rem;
    height: 0.1rem;
}
.box2_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.25rem;
    color: #020202;
    transition: 0.3s;
}

.box2_p2 {
    position: relative;
    padding-left: 0.13rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.14rem;
    color: #5C5C5C;
    line-height: 0.3rem;
}

.box2_p2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.06rem;
    height: 0.06rem;
    background: #B7B7B7;
    border-radius: 50%;
    transition: 0.3s;
}

.box2_box:hover {
    box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.08);
}

.box2_box:hover .box2_box_top::after {
    opacity: 1;
}

.box2_box:hover .box2_box_top img {
    transform: scale(1.1);
}

.box2_box:hover .box2_p1 {
    color: var(--c);
}

.box2_box:hover .box2_p2::before{
    background-color: var(--hc);
}
.box2_box:hover .box2_box_bottom_box_btn{
    background: var(--hc);
}