@font-face {
    font-family: 'MiSans';
    src: url('../fonts/MiSans\ VF.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    /*width: 100%;*/
    /*height: 100%;*/
    display: block;
}

.clear {
    clear: both;
    overflow: hidden;
    height: 0;
}

.main {
    width: 100%;
    margin: 0 auto;
}

input,
textarea {
    outline: none;
}

/* 水波纹效果 */
.btn-ripple {
    vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
    animation: ani_ripple 0.75s;
    z-index: 1;
    content: "";
    position: absolute;
    display: block;
    transition: all 0.6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
    0% {
        background: rgba(0, 0, 0, 0.25);
        transform: translateX(-50%) translateY(-50%) scale(0);
    }

    to {
        background: transparent;
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
}

.swiper-button-lock {
    display: unset !important;
}

video {
    width: 100%;
    height: 100%;
}

/* 更多 */
.side-more {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1.74rem;
    height: 0.46rem;
    border-radius: 0.23rem;
    color: #0055A7;
    margin: 0.8rem auto 0;
    cursor: pointer;
}

.side-more .text {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #0055A7;
    display: flex;
    gap: 0.08rem;
    align-items: center;
}

.side-more .text img {
    width: 0.12rem;
    height: 0.12rem;
}

.side-more .line {
    position: absolute;
    left: 0.2rem;
    width: calc(100% - 0.4rem);
    height: 0.03rem;
    background-color: #BFBFBF;
}

.side-more .line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #0055A7;
    transition: all 0.4s;
}

.side-more .top-line {
    top: 0;
}

.side-more .top-line::after {
    left: 0;
}

.side-more .btm-line {
    bottom: 0;
}

.side-more .btm-line::after {
    right: 0;
}

.side-more .round {
    position: absolute;
    top: 0;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 50%;
    border: 0.03rem solid #0055A7;
    transition: all 0.4s;
}

.side-more .lf-round {
    left: 0;
    -webkit-clip-path: polygon(0 0, 45% 0, 45% 100%, 0% 100%);
    clip-path: polygon(0 0, 45% 0, 45% 100%, 0% 100%);
}

.side-more .rg-round {
    right: 0;
    -webkit-clip-path: polygon(57% 0, 100% 0, 100% 100%, 57% 100%);
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 57% 100%);
    border: 0.03rem solid #00A0E9;
}

.side-more.pro-more {
    width: 5rem;
    height: 1.05rem;
    color: #262626;
}

.side-more.pro-more .line {
    background-color: rgba(38, 38, 38, 0.12);
}

.side-more.pro-more .round {
    border-color: #262626;
    width: 1.05rem;
    height: 1.05rem;
}

.side-more:hover {
    background: #0055A7;
    transition: all 0.4s 0.3s;
}

.side-more:hover .text {
    color: #fff;
    transition: all 0.4s 0.3s;
}

.side-more:hover .text img {
    filter: brightness(0) invert(1);
    transition: all 0.4s 0.3s;
}

.side-more:hover .line::after {
    width: 100%;
    transition: all 0.3s;
}

.side-more:hover .round {
    border-color: #0055A7;
}