@charset "utf-8";
.link_button{
    display: inline-flex;
    padding: 16px 20px 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--main-color);
    border: 1px solid transparent;
    transition: background .3s;
    color: var(--white-color);
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.link_button i {
    position: relative;
    margin-left: 10px;
    width: 24px;
    height: 24px;
    display: inline-block;
    overflow: hidden;
}
.link_button i img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}
.link_button i img:nth-child(2) {
    top: 100%;
}

.link_button:hover {
    border: 1px solid var(--main-color);
    background: #FFF;
    color: var(--main-color);
    scale: 1;
    transform: translateY(0) !important;
}

.link_button:hover i img:first-child {
    top: -100%;
}

.link_button:hover i img:nth-child(2) {
    top: 0;
}

/*卡片hover上去的按钮样式*/
.contain_more{
    transition: all .5s;
}
.contain_more:hover{
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) !important;
    transition: transform ease 0.5s !important;
}
.contain_more:hover .more_link i svg {
    transform: rotate(32deg);
}
.contain_more:hover .more_link i svg path {
    /* stroke: var(--white-color); */
}
.more_link a{
    color: var(--main-color);
    font-weight: bold;
    font-size: 16px;
}
.more_link i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-left: 10px;
    background: rgba(222, 224, 231, 1);
}
.more_link i svg {
    transition: all .5s;
    width: 26px;
    height: 26px;
    border-radius: 50%;
}