:root{
    --data-bg1: #fff;
    --data-color1:#fff;
}
/* 边框合围 1 */
.btn-animate__surround {
    position: relative;
}

.btn-animate__surround:hover {
    border-radius: 0 !important;
}

.btn-animate__surround::before,
.btn-animate__surround::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: var(--data-bg1, #fff);
    transition: all 0.3s ease;
}

.btn-animate__surround::before {
    height: 0;
    width: 2px;
}

.btn-animate__surround::after {
    width: 0;
    height: 2px;
}

.btn-animate__surround:hover {
    background: transparent !important;
}

.btn-animate__surround:hover::before {
    height: 100%;
}

.btn-animate__surround:hover::after {
    width: 100%;
}

.btn-animate__surround>a {
    display: block;
}

.btn-animate__surround>a:hover {
    color: var(--data-color1, #fff) !important;
}

.btn-animate__surround>a:hover::before {
    height: 100%;
}

.btn-animate__surround>a:hover::after {
    width: 100%;
}

.btn-animate__surround>a::before,
.btn-animate__surround>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--data-bg1, #fff);
    transition: all 0.3s ease;
}

.btn-animate__surround>a:before {
    width: 2px;
    height: 0;
}

.btn-animate__surround>a:after {
    width: 0;
    height: 2px;
}

/* 边框合围 2 */
.btn-animate__surround_white:hover {
    border-radius: 0 !important;
}

.btn-animate__surround_white::before,
.btn-animate__surround_white::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    transition: all 0.3s ease;
}

.btn-animate__surround_white::before {
    height: 0;
    width: 2px;
}

.btn-animate__surround_white::after {
    width: 0;
    height: 2px;
}

.btn-animate__surround_white:hover {
    background: transparent;
}

.btn-animate__surround_white:hover::before {
    height: 100%;
}

.btn-animate__surround_white:hover::after {
    width: 100%;
}

.btn-animate__surround_white>a {
    display: block;
}

.btn-animate__surround_white>a:hover {
    color: #fff !important;
}

.btn-animate__surround_white>a:hover::before {
    height: 100%;
}

.btn-animate__surround_white>a:hover::after {
    width: 100%;
}

.btn-animate__surround_white>a::before,
.btn-animate__surround_white>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: all 0.3s ease;
}

.btn-animate__surround_white>a:before {
    width: 2px;
    height: 0;
}

.btn-animate__surround_white>a:after {
    width: 0;
    height: 2px;
}

/* 卡片 */
.animate-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animate-card-82 .animate-card__layer {
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.animate-card-82 .animate-card__layer>img {
    width: 100%;
    height: 100%;
}

.animate-card-82 .animate-card__sublayer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 6% 6%;
    margin: auto;
    transform: rotate(-90deg);
    transform-origin: 100% 0;
    background-color: rgba(102, 186, 200, .9);
    transition: all 0.35s ease;
}

.animate-card-82:hover .animate-card__sublayer {
    width: 95%;
    height: 95%;
    transform: rotate(0deg);
    transform-origin: 0 100%;
}

/* 按钮箭头向右 */
.animate-button-1 {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;

    outline: none;
    overflow: hidden;
}

.animate-button-1 a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon {
    transition: all 0.3s ease-in-out;
}

.animate-button-1:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.animate-button-1:hover .icon {
    transform: translate(4px);
}

.animate-button-1:hover::before {
    /* animation: shine 1.5s ease-out infinite; */
}

.animate-button-1::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* 视频播放按钮 */
.play-button1 {
    display: inline-block;
    position: absolute;
}

.play-button1 a {
    display: flex;
    justify-content: center;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: #f6bf26;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: rgba(246, 191, 38, 0.7) 0 0 20px 0;
    /* animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse; */
    align-items: center;
    border: 5px solid #fff;
}

.play-button1 a:is(:hover, :focus) {
    transform: scale(1.2);
}

@keyframes pulse {
    100% {
        box-shadow: 0 0 0 45px rgba(193, 244, 246, 0);
    }
}


/* 产品的按钮 */
.product-button {
    background: #004178;
    max-width: 700px;
    transition: 0.5s;
}

.product-button a {
    width: 100%;
    padding: 0 10px 0 10px;
    color: #fff;
    font-size: 18px;
    line-height: 40px;
    font-weight: 700;
    font-family: "Urbanist", sans-serif;
    transition: 0.5s;
}

.product-button:hover {
    background-size: cover;
    background: linear-gradient(to left, #24b66f, #88ca4e) no-repeat;
    transition: 0.5s;
}

.product-button.active {
    background-size: cover;
    background: linear-gradient(to left, #24b66f, #88ca4e) no-repeat;
    transition: 0.5s;
}

.product-button.active a {
    text-decoration: underline;
    transition: 0.5s;
}

.product-button:hover a {
    text-decoration: underline;
    transition: 0.5s;
}

/* 适合渐变按钮的动画 */
.animate-button-2 {
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    color: #fff;
    width: 9em;
    height: 3em;
    line-height: 2em;
    text-align: center;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 300%;
    border-radius: 30px;
    z-index: 1;
}

.animate-button-2:hover {
    animation: ani 8s linear infinite;
    border: none;
}

@keyframes ani {
    0% {
        background-position: 0;
    }

    100% {
        background-position: 400%;
    }
}
.animate-button-2:before {
	content:"";
	position:absolute;
	top:-5px;
	left:-5px;
	right:-5px;
	bottom:-5px;
	z-index:-1;
	background:linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
	background-size:400%;
	border-radius:35px;
	transition:1s;
}
.animate-button-2:hover::before {
	filter:blur(20px);
}
.animate-button-2:active {
	background:linear-gradient(32deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
}

/* 边框伸缩动画(1)=>上下边水平伸缩 */
.border-expansion-animation-1 {
    position: relative;
    width: 130px;
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 5px;
    background: #027efb;
    text-align: center;
}
.border-expansion-animation-1 a{
    color: #fff;
    display: block;
    width: 100%;
}
.border-expansion-animation-1::before,
.border-expansion-animation-1::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background: #027efb;
    transition: all 0.6s ease;
}
.border-expansion-animation-1::before {
    top: 0;
    right: 0;
}
.border-expansion-animation-1::after {
    left: 0;
    bottom: 0;
}
.border-expansion-animation-1:hover {
    background: transparent;
}
.border-expansion-animation-1:hover a{
    color: #027efb;
}
.border-expansion-animation-1:hover::before,
.border-expansion-animation-1:hover::after {
    width: 100%;
}

/* 边框伸缩动画(2)=>环绕一圈 */
.border-expansion-animation-2 {
    position: relative;
    width: 130px;
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 5px;
    background: transparent;
    text-align: center;
}
.border-expansion-animation-2 a{
    color: #027efb;
    display: block;
    width: 100%;
}
.border-expansion-animation-2 > svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.border-expansion-animation-2 > svg > rect {
    stroke-width: 6px;
    fill: transparent;
    stroke: #027efb;
    stroke-dasharray: 85 400;
    stroke-dashoffset: -200%;
    transition: 1s all ease;
}
.border-expansion-animation-2:hover > svg > rect {
    stroke-dasharray: 50 0;
    stroke-width: 3px;
    stroke-dashoffset: 0;
    stroke: #027efb;
}

/* 百叶窗(1)=>交替闭合 */
.blinds-animation-1 {
    position: relative;
    /*width: 130px;*/
    /*height: 40px;*/
    /*line-height: 40px;*/
    /*border: none;*/
    /*border-radius: 5px;*/
    background: #fff;
    text-align: center;
    z-index: 1;
}
.blinds-animation-1 a{
    display: block;
    width: 100%;
    color: #cf1f2a;
}
.blinds-animation-1::before,
.blinds-animation-1::after,
.blinds-animation-1 > a::before,
.blinds-animation-1 > a::after {
    content: '';
    position: absolute;
    top: 0;
    width: 25%;
    height: 0;
    background: #cf1f2a;
    transition: 0.5s;
    z-index: -1;
}
.blinds-animation-1::before {
    left: 0;
}
.blinds-animation-1::after {
    left: 50%;
}
.blinds-animation-1 > a::before,
.blinds-animation-1 > a::after {
    top: auto;
    bottom: 0;
}
.blinds-animation-1 > a::before {
    left: 25%;
}
.blinds-animation-1 > a::after {
    left: 75%;
}
.blinds-animation-1:hover::before,
.blinds-animation-1:hover::after,
.blinds-animation-1:hover > a::before,
.blinds-animation-1:hover > a::after {
    height: 100%;
}
.blinds-animation-1:hover a{
    color: #fff !important;
}

/* 百叶窗(2)=>交替闭合 */
.blinds-animation-2 {
    position: relative;
    /*width: 130px;*/
    /*height: 40px;*/
    /*line-height: 40px;*/
    /*border: none;*/
    /*border-radius: 5px;*/
    background: #cf1f2a;
    text-align: center;
    z-index: 1;
    border: 1px solid #cf1f2a;
}
.blinds-animation-2 a{
    display: block;
    width: 100%;
    color: #fff;
}
.blinds-animation-2::before,
.blinds-animation-2::after,
.blinds-animation-2 > a::before,
.blinds-animation-2 > a::after {
    content: '';
    position: absolute;
    top: 0;
    width: 25%;
    height: 0;
    background: #fff;
    transition: 0.5s;
    z-index: -1;
}
.blinds-animation-2::before {
    left: 0;
}
.blinds-animation-2::after {
    left: 50%;
}
.blinds-animation-2 > a::before,
.blinds-animation-2 > a::after {
    top: auto;
    bottom: 0;
}
.blinds-animation-2 > a::before {
    left: 25%;
}
.blinds-animation-2 > a::after {
    left: 75%;
}
.blinds-animation-2:hover{
    border: 1px solid #cf1f2a;
}
.blinds-animation-2:hover::before,
.blinds-animation-2:hover::after,
.blinds-animation-2:hover > a::before,
.blinds-animation-2:hover > a::after {
    height: 100%;
}
.blinds-animation-2:hover a{
    color: #cf1f2a !important;
}
/* 百叶窗(3)=>交替闭合 */
.blinds-animation-3 {
    position: relative;
    /*width: 130px;*/
    /*height: 40px;*/
    /*line-height: 40px;*/
    /*border: none;*/
    /*border-radius: 5px;*/
    background: #fff;
    text-align: center;
    z-index: 1;
    border: 2px solid #cf1f2a;
}
.blinds-animation-3 a{
    display: block;
    width: 100%;
    color: #000000;
}
.blinds-animation-3::before,
.blinds-animation-3::after,
.blinds-animation-3 > a::before,
.blinds-animation-3 > a::after {
    content: '';
    position: absolute;
    top: 0;
    width: 25%;
    height: 0;
    background: #cf1f2a;
    transition: 0.5s;
    z-index: -1;
}
.blinds-animation-3::before {
    left: 0;
}
.blinds-animation-3::after {
    left: 50%;
}
.blinds-animation-3 > a::before,
.blinds-animation-3 > a::after {
    top: auto;
    bottom: 0;
}
.blinds-animation-3 > a::before {
    left: 25%;
}
.blinds-animation-3 > a::after {
    left: 75%;
}
.blinds-animation-3:hover{
    border: 2px solid #cf1f2a;
}
.blinds-animation-3:hover::before,
.blinds-animation-3:hover::after,
.blinds-animation-3:hover > a::before,
.blinds-animation-3:hover > a::after {
    height: 100%;
}
.blinds-animation-3:hover a{
    color: #fff !important;
}
/* Loading效果 */
.loader-111 {
    position: relative;
    font-size: 48px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #FFF;
    text-shadow: 0 0 2px #90cf5b, 0 0 1px #90cf5b, 0 0 1px #90cf5b;
    letter-spacing: 2px;
}
.loader-111::after {
    content: "Loading";
    
    position: absolute;
    left: 0;
    top: 0;
    color: #90cf5b;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-animation: animloader111 6s linear infinite;
    animation: animloader111 6s linear infinite;
}
@keyframes animloader111 {
    0% {
        width: 0;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 100%;
    }
}

/* 半背景hover */
.semi-background-hover{
    position: relative;
}
.semi-background-hover a{
    position: relative;
    z-index: 2;
}
.semi-background-hover::before{
    position: absolute;
    content: "";
    background: #cf1f2a;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .5s;
    z-index: 1;
}
.semi-background-hover:hover::before{
    width: 100%;
    transition: .5s;
}
.semi-background-hover:hover a{
    color: #fff !important;
}
/* 没背景hover */
.no-background-hover{
    position: relative;
}
.no-background-hover a{
    position: relative;
    z-index: 2;
}
.no-background-hover::before{
    position: absolute;
    content: "";
    background: #cf1f2a;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: .5s;
    z-index: 1;
}
.no-background-hover:hover::before{
    width: 100%;
    transition: .5s;
}

/* swiper按钮1 */
.button-next1{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 165px;
    height: 45px;
    position: absolute;
    right: -165px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.button-next1 p:nth-child(1){
    position: relative;
    z-index: 11;
    padding-left: 45px;
    font-size: 16px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 700;
}
.button-next1 p:nth-child(2){
    position: relative;
    z-index: 11;
    font-size: 16px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 700;
}
.button-next1::before{
    position: absolute;
    content: "";
    background: #cf1f2a;
    width: 100px;
    height: 100%;
    top: 0;
    left: 0;
    transition: .5s;
    z-index: 1;
}
.button-next1:hover::before{
    width: 100%;
    transition: .5s;
}
.button-next1:hover p{
    color: #fff !important;
}
.button-prev1{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: 165px;
    height: 45px;
    left: -165px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.button-prev1 p:nth-child(1){
    position: relative;
    z-index: 11;
    color: #000000;
    font-size: 16px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 700;
}
.button-prev1 p:nth-child(2){
    position: relative;
    z-index: 11;
    padding-right: 45px;
    color: #000000;
    font-size: 16px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 700;
}
.button-prev1::before{
    position: absolute;
    content: "";
    background: #cf1f2a;
    width: 100px;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    z-index: 1;
}
.button-prev1:hover::before{
    width: 100%;
    transition: .5s;
}
.button-prev1:hover p{
    color: #fff !important;
}
