@import 'styles.css';

.top-img {
    width: 100vw;
    height: calc(506/1920*100vw);
}

.top-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.patent-view {
    width: 100vw;
    height: calc(535/1920*100vw);
    background: url("../img/Frame1100.jpg") top center/ cover no-repeat;
}

.patent-view .p-tit {
    font-size: 5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding-top: calc(105/1920*100vw);
}

.patent-view .p-lab {
    font-size: 2.4rem;
    font-weight: bold;
    color: #aaa;
    text-align: center;
}

.patent-view .p-info {
    width: 61vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
}

.patent-view .p-info .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.patent-view .p-info .item .num {
    margin-bottom: 2rem;
    font-size: 9rem;
    font-weight: bold;
    font-family: 'MiSans';
    color: #4162FF;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.patent-view .p-info .item .num i {
    font-size: 3rem;
    font-weight: bold;
    color: #4162FF;
    text-decoration: none;
    font-style: normal;
}

.patent-view .p-info .item .lab {
    font-size: 2rem;
    font-weight: bold;
    color: #777;
    text-align: center;
}

.services-view {
    width: 100vw;
    background-color: #fff;
    padding: 10.5rem 0 4rem;
}

.services-view .sv-tit {
    font-size: 5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.services-view .sv-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0 30px;
    align-items: center;
    padding-top: 7.5rem;
}

.services-view .sv-content .sv-tap {
    width: 36.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px 0;
    position: relative;
    z-index: 5;
}

.services-view .sv-content .sv-tap .tap-item {
    width: 36.2rem;
    height: 19.9rem;
    padding: 3.1rem 3.8rem;
    cursor: pointer;
    user-select: none;
    background-color: #fff;
}

.services-view .sv-content .sv-tap .tap-item .tap-tit {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 10px;
}

.services-view .sv-content .sv-tap .tap-item .tap-tit .patent-icon,
.services-view .sv-content .sv-tap .tap-item .tap-tit .soft-icon,
.services-view .sv-content .sv-tap .tap-item .tap-tit .trademark-icon {
    width: 4rem;
    height: 4rem;
    display: block;
}

.services-view .sv-content .sv-tap .tap-item .tap-tit .patent-icon {
    background: url("../img/icons/emitoubao.png") center/ cover no-repeat;
}

.services-view .sv-content .sv-tap .tap-item .tap-tit .soft-icon {
    background: url("../img/icons/icon_lipei.png") center/ cover no-repeat;
}

.services-view .sv-content .sv-tap .tap-item .tap-tit .trademark-icon {
    background: url("../img/icons/zhuanyezhuanyeke.png") center/ cover no-repeat;
}

.services-view .sv-content .sv-tap .tap-item:hover,
.services-view .sv-content .sv-tap .tap-item.on {
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 8px 12px 12px 0px rgba(130, 139, 162, 0.15);
}

.services-view .sv-content .sv-tap .tap-item.on .tap-tit {
    color: #2D5EFB;
}

.services-view .sv-content .sv-tap .tap-item.on .tap-tit .patent-icon {
    background-image: url("../img/icons/emitoubao-on.png");
}

.services-view .sv-content .sv-tap .tap-item.on .tap-tit .soft-icon {
    background-image: url("../img/icons/icon_lipei-on.png");
}

.services-view .sv-content .sv-tap .tap-item.on .tap-tit .trademark-icon {
    background-image: url("../img/icons/zhuanyezhuanyeke-on.png");
}

.services-view .sv-content .sv-tap .tap-item ul {
    margin-top: 2.1rem;
}

.services-view .sv-content .sv-tap .tap-item ul li {
    font-size: 1.6rem;
    font-weight: 500;
    color: #828BA2;
    margin-bottom: 7px;
    padding-left: 1.6rem;
    position: relative;
}

.services-view .sv-content .sv-tap .tap-item ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #828ba2;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.services-view .sv-content .sv-content-img {
    width: 86.5rem;
    height: 56.6rem;
}

.services-view .sv-content .sv-content-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-view.deepbg {
    background-color: #f5f6fb;
}

.services-view .sv-content .sv-tap .tap-item,
.services-view .sv-content .sv-tap .tap-item.on {
    background-color: #fff;
}

@keyframes lightSpeedInLeft {
    from {
        transform: translate3d(-200%, 0, 0) skewX(30deg);
        opacity: 0;
    }

    60% {
        transform: skewX(-20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(5deg);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.lightSpeedInLeft {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out;
}

@keyframes lightSpeedInRight {
    from {
        transform: translate3d(200%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(-5deg);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.lightSpeedInRight {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out;
}

.advantage-view {
    width: 100vw;
    background-color: #fff;
    padding: 105px 0;
}

.advantage-view .av-tit {
    font-size: 5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.advantage-view .av-content {
    min-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.7rem;
    margin-top: 7.5rem;
}

.advantage-view .av-content .av-item {
    width: 31.2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.advantage-view .av-content .av-item .av-icon {
    width: 100%;
    height: 20.9rem;
    border-radius: 1rem;
    overflow: hidden;
}

.advantage-view .av-content .av-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.advantage-view .av-content .av-item .av-tit {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin: 3rem 0 2rem;
    text-align: center;
    transform: translateY(-2rem);
}

.advantage-view .av-content .av-item .av-lab {
    font-size: 2rem;
    color: #8891A7;
    text-align: center;
    opacity: 0;
    transform: translateY(-6rem);
}

.advantage-view .av-content .av-item .av-lab p {
    padding: 0;
    margin: 0;
}

.advantage-view .av-content .av-item .av-tit,
.advantage-view .av-content .av-item .av-lab {
    transition: all 0.3s ease-in;
}

.advantage-view .av-content .av-item:hover .av-icon {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

.advantage-view .av-content .av-item:hover .av-tit {
    transform: translateY(0px);
}

.advantage-view .av-content .av-item:hover .av-lab {
    opacity: 1;
    transform: translateY(0px);
}

.promise-view {
    width: 100vw;
    background: url("../img/bg20250515094731.png") top center/ cover no-repeat;
    padding: 105px 0;
}

.promise-view .pv-tit {
    font-size: 5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.promise-view .pv-content {
    min-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8rem;
    margin-top: 7.5rem;
}

.promise-view .pv-content .pv-item {
    width: 38.4rem;
    padding: 4rem 4rem 4rem 8rem;
    border-radius: 1rem;
    background-color: #f4f3fd;
    box-shadow: 0px 4px 16px 0px rgba(74, 111, 244, 0.10);
    position: relative;
    overflow: hidden;
}

.promise-view .pv-content .pv-item::before {
    content: '';
    width: 140%;
    height: 120%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.promise-view .pv-content .pv-item::after {
    content: '';
    width: 37.6rem;
    height: calc(100% - 0.8rem);
    background: #f4f3fd;
    position: absolute;
    left: 0.4rem;
    top: 0.4rem;
    z-index: 1;
}

.promise-view .pv-content .pv-item:hover {
    box-shadow: 0 4px 24px 0px rgba(74, 111, 244, 0.3);
}

.promise-view .pv-content .pv-item:hover::before {
    content: '';
    width: 140%;
    height: 16rem;
    background: linear-gradient(180deg, #f1d3fa 0%, #b6dcf3 100%);
    position: absolute;
    left: -20%;
    top: calc(50% - 80px);
    animation: rotBgimg 3s linear infinite;
    transition: all .2s linear;
    z-index: 1;
}

@keyframes rotBgimg {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

.promise-view .pv-content .pv-item:hover::after {
    content: '';
    position: absolute;
    background-color: #f4f3fd;
    inset: 0.5rem;
    border-radius: 10px;
    z-index: 2;
}

.promise-view .pv-content .pv-item .pv-item-tit {
    font-size: 3rem;
    font-weight: bold;
    color: #303133;
    position: relative;
    z-index: 3;
}

.promise-view .pv-content .pv-item ul {
    margin-top: 16px;
    position: relative;
    z-index: 3;
}

.promise-view .pv-content .pv-item ul li {
    font-size: 2rem;
    color: #303133;
    padding: 5px 0 5px 22px;
    position: relative;
}

.promise-view .pv-content .pv-item ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #2d5efb;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* 数字翻转动画样式 */
.patent-view .p-info .item .num span {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.patent-view .p-info .item .num span .digit {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.patent-view .p-info .item .num span .digit.flip {
    transform: translateY(-100%);
}

.promise-view .pv-content .pv-item ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #2d5efb;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}