﻿@charset "utf-8";

:root {
    --main-color: #003E96;
    --dark: #333;
    --blue: #0C56BE;
    --white-color: #FFFFFF;
    --deep-color: #304A6D;
}

img {
    max-width: 100%;
}

@keyframes jumpDown {
    0% {
        opacity: 0;
        transform: translateY(0)
    }

    100% {
        transform: translateY(5px)
    }
}

/* index */
.border_white a {

    border: 1px solid var(--white-color);
}

.border_black a,
.border_grey a {
    border: 1px solid #666;
}

.index_more a {
    display: flex;
    width: 200px;
    height: 60px;
    padding: 20px 24px;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px 0px 8px 8px;
    transition: background-color 0.3s ease-in-out;

}

.border_white a span {
    color: var(--white-color);
}

.border_black a span {
    color: #666;
}

.border_grey a span {
    color: #666;
}

.index_more a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.index_more a i {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.border_white a i::before {
    background-color: var(--white-color);

}

.border_black a i::before {
    background-color: #666;
}

.border_grey a i::before {
    background-color: #666;
}

.index_more a i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.index_more a i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.index_more a i svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;

}

.border_white a:hover {
    background-color: var(--white-color);
}

.border_black a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.border_grey a:hover {
    background-color: #666;
}

.border_white a:hover span {
    color: var(--blue);
}

.border_black a:hover span {
    color: var(--white-color);
}

.border_grey a:hover span {
    color: var(--white-color);
}

.index_more a:hover i:before {
    opacity: 0;
}

.border_white a:hover i:after {
    background-color: var(--blue);
}

.border_black a:hover i:after {
    background-color: var(--white-color);
}

.border_grey a:hover i:after {
    background-color: var(--white-color);
}

.index_more a:hover i:after {
    width: 100%;
    height: 100%;
}

.index_more a:hover i svg {
    opacity: 1;
}

.border_black a:hover i svg path {
    stroke: var(--main-color);
}

.border_grey a:hover i svg path {
    stroke: #666;
}

@media (max-width:1280px) {

    .index_more a {
        width: 166px;
        height: 60px;
        padding: 20px 16px;
    }
}

@media (max-width:350px) {
    .pro_in_button .list_ span {
        font-size: 16px;
    }
}

/* footer */

.back_top {
	position: fixed;
	right: 23px;
	bottom: 5%;
	z-index: 9999;
	display: none;
}

.back_top span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--main-color);
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
}

footer {
    position: relative;
   background: linear-gradient(80deg, #0C56BE -1.31%, #3DBBFF 113.73%);
    z-index: 9;
}
footer:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/foot_icon.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.foot_top {
    padding-top: 30px;
    padding-bottom:18px;
}

.foot_top .l {
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.foot_top .r {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.foot_top .r .code-realy {
    margin-left: 12px;
    width: 90px;
    text-align: center;
}
.foot_top .r .code-realy .pt10 {
    padding-top: 10px;
}
.foot_share {
    padding-left: 12px;
}

.foot_share ul {
    display: flex;
    margin-left: -6px;
    margin-right: -6px;
}

.foot_share ul li {
    padding: 0 6px;
}

.foot_share .w_bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 1;
}

.foot_share .w_bg::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background-color: var(--orange-color);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.foot_share .w_bg img {
    width: 22px;
    height: 22px;
}

.eject_cont {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.eject_cont .eject_tc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    margin-left: -58px;
    transform: translateY(-20px);
    padding: 8px;
    width: 116px;
    background: #FFFFFF;
    border-radius: 8px;
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.eject_cont .eject_tc:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #fff;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.eject_cont .eject_tc .img_ {
    width: 100px;
    text-align: center;
}

.eject_cont:hover {
    overflow: visible;
}

.eject_cont .eject_tc.m_show {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

.foot_share .eject_cont:hover .w_bg {
    background-color: rgba(255, 255, 255, 1);
}

.foot_share .eject_cont:hover .w_bg::before {
    width: 100%;
    height: 100%;
}

.foot_mid {
    padding-top: 60px;
    padding-bottom:50px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mid_left .big_t {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}
.foot_mid .mid_left .t {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.foot_more {
    padding-top: 28px;
}

.foot_more a {
    display: inline-flex;
    padding: 12px 26px;
    align-items: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.foot_more a img {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.mid_menu {
    width: 250px;
}

.mid_menu ul {
    display: flex;
    flex-wrap: wrap;
}

.mid_menu ul li {
    width: 50%;
    padding-bottom: 20px;
}

.mid_menu a {
    position: relative;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.mid_menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.mid_menu a:hover {
    color: rgba(255, 255, 255, 1);
}

.mid_menu a:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}
.link_list {
    padding-top: 20px;
    display: flex;
    flex-flow: column;
}
.link_list a {
    position: relative;
    font-size: 18px;
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    width:max-content;
}
.link_list a::before {
    content: '';
    position: absolute;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:rgba(255, 255, 255, 0.80);
    transform-origin: bottom left;
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out;
  }
  
  .link_list a:hover {
    color: #FFF;
  }
  .link_list a:hover::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

.mid_right {
    width: 480px;
}

.mid_right .foot_phone .list {
    /* width: 50%; */
}

.mid_right .foot_phone .t {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 290;
}

.mid_right .foot_phone .a {
    margin-top: 10px;
    color: #FFF;
    font-family: 'Rubik';
    font-size: 30px;
    font-weight: 700;
}

.mid_right .foot_phone .a a {
    font-size: inherit;
    color: inherit;
}

.mid_right .foot_adress {
    padding-top: 35px;
    font-family: 'Rubik';
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 290;
}

.foot_bottom {
    padding: 25px 0 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.foot_pic {
    padding-bottom: 20px;
}
.foot_pic img {
    margin-right: 16px;
    width:60px;
}
.foot_bottom .left {
    flex-wrap: wrap;
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 290;
    line-height: 24px;
}

.foot_bottom .left a {
    font-size: 16px;
    font-weight: 290;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.foot_bottom .left a:hover {
    color: var(--white-color);
}

.foot_bottom .right a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 290;

    line-height: 26px;
}


footer .link {
    margin-top: 20px;
    width: 288px;
    height: 50px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 12px 0 20px;
    cursor: pointer;
    position: relative;
}

footer .link .t {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    line-height: 50px;
    float: left;
}

footer .link .icon_01 {
    background-image: url(../images/drop_down.svg);
    width: 40px;
    height: 40px;
    float: right;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

footer .link .drop_down {
    background-color:rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 100%;
    left: -1px;
    width: calc(100% + 2px);
    max-height: 180px;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 5px 20px;
    overflow-y: auto;
    display: none;
}

footer .link .drop_down::-webkit-scrollbar {
    width: 2px;
    height: 2px
}

footer .link .drop_down::-webkit-scrollbar-button:vertical {
    display: none
}

footer .link .drop_down::-webkit-scrollbar-corner, footer .link .drop_down::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .3);
}

footer .link .drop_down::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

footer .link .drop_down::-webkit-scrollbar-thumb:vertical:hover {
    background-color: var(--main-color);
}

footer .link .drop_down::-webkit-scrollbar-thumb:vertical:active {
    background-color: var(--main-color);
}

footer .link .drop_down a {
    color: var(--black-color);
    display: block;
    line-height: 40px;
    font-size: 16px;
}

footer .link .drop_down a:hover {
    color:var(--main-color);
}

@media (max-width:1279px) {
    .mid_right {
        width: auto;
        max-width: 350px;
    }

    .mid_right .foot_phone {
        flex-wrap: wrap;
    }

    .mid_right .foot_phone .list {
        width: 100%;
        padding-bottom: 20px;
    }

    .mid_right .foot_adress {
        padding-top: 10px;
    }

    .foot_bottom>div:first-child {
        flex-wrap: wrap;
    }

    .foot_bottom .left {
        flex: inherit;
    }

}


@media (max-width:1200px) {
    .foot_top {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .foot_mid {
        flex-wrap: wrap;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .mid_right {
        width: 100%;
        max-width: inherit;
        padding-top: 20px;
    }

}

@media (max-width:767px) {
    
.back_top {
	right: 2px;
	bottom: 20px;
}
    .foot_top {
        flex-wrap: wrap;
    }

    .foot_top .l {
        width: 100%;
        padding-bottom: 30px;
    }

    .mid_menu {
        padding-top: 20px;
        width: 100%;
        display: none;
    }

    .mid_menu ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .mid_menu ul li {
        width: auto;
        padding: 10px;
    }

    .foot_mid {
        text-align: center;
        justify-content: center;
        padding-bottom: 30px;
    }

    .mid_right {
        padding-top: 30px;
    }

    .foot_more {
        padding-top: 20px;
    }

    .foot_more a {
        padding: 12px 20px;
    }

    .mid_right .foot_phone .a {
        font-size: 26px;
    }

    .foot_bottom {
        padding: 16px 0;
    }

    .foot_bottom .left,
    .foot_bottom .left a,
    .foot_bottom .right,
    .foot_bottom .right a {
        font-size: 14px;
    }
    .foot_pic {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .foot_pic img {
        margin-right: 16px;
        margin-bottom: 16px;
        width: calc(33.33% - 16px);
    }
.eject_cont .eject_tc {
    margin-left: -44px;
}
.eject_cont .eject_tc:before {
    margin-left: -26px;
}

}

/* 内页二级菜单 */
.height84 {
    height: 84px;
}

.page_menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 84px;
    z-index: 9;
}

.page_menu_fixed {
    position: relative;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    width: 100%;
    z-index: 99;
}

.page_menu_right {
    padding-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page_menu_right a {
    margin-right: 10px;
}

.page_menu_right a {
    padding-right: 18px;
    background-image: url(../images/page_jt.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 8px 13px;
    color: var(--deep-color);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px;

}

.page_menu_right a:hover {
    color: var(--main-color);
}

.page_menu_right a:last-child {
    margin-right: 0;
    padding-right: 0;
    background-image: none;
}

@media (max-width:767px) {
    .height84 {
        height: 75px;
    }
    .page_menu {
        position: relative;
        top: inherit;
        margin-top: 84px;
    }

    .page_menu .my-container>div:first-child {
        display: block;
        overflow: hidden;
    }

    .page_menu_fixed {
        background-color: var(--white-color);
    }

    .page_menu .page_menu_left {
        width: 100%;
    }

    .page_menu .page_menu_right {
        width: 100%;
        margin-top: 15px;
    }

    .page_menu_left {
        padding-top: 10px;
    }

    .page_menu_left a {
        padding-top: 0;
        padding-right: 16px;
        background-size: 6px 11px;
    }

    .page_menu_right a:nth-child(n+2) {
        padding-right: 12px;
        margin-right: 6px;
    }
.page_menu_right a:last-child {
    margin-right: 0;
    padding-right: 0;
    background-image: none;
}
    .page_menu_left ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .page_menu_left ul li {
        padding: 10px;
        padding-bottom: 0;
    }

    .page_menu_left a {
        padding: 0 0 12px 0;
    }

}

/* 内页 top */
.back-top {
    position: fixed;
    right: 10px;
    bottom: 5%;
    z-index: 9;
    display: none;
}

.back-top span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    border: 1px solid rgba(255, 255, 255, 0.50);
    cursor: pointer;
}

@media (max-width:767px) {
    .back-top {
        right: 2px;
        bottom: 10px;
    }

}


/*page*/
  /*page*/
  .paged {
    padding: 50px 0 50px 0;
    text-align: center;
    overflow: hidden;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged .pagination li {
    display: inline-block;
}

.paged:after {
    clear: both;
    content: '';
    width: 0px;
    display: block;
    height: 0px;
    visibility: hidden;
}

.paged span,
.paged a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    padding: 4px;
    height: 50px;
    width: 50px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 55px;
    color: #304A6D;
    background: var(--white-color);
}


.paged ul li:first-child span,
.paged ul li:first-child a,
.paged ul li:last-child span {
    width: 50px;
    height: 50px;

}

.paged ul li:first-child a:hover,
.paged ul li:first-child span:hover,
.paged ul li:last-child a:hover,
.paged ul li:last-child span:hover,
.paged a:hover,
.paged .active span {
    color: var(--white-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.paged a:hover svg path {
    stroke: var(--white-color);
}

.paged ul li.disabled span {
    cursor: default;
    pointer-events: none;
}

@media (max-width:767px) {
    .paged {
        padding: 30px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
        padding: 0 5px;
        margin: 0 2px;
        width: 40px;
        height: 40px;
    }

    .paged ul li:first-child span,
    .paged ul li:last-child a,
    .paged ul li:first-child a,
    .paged ul li:last-child span {
        width: 40px;
        height: 40px;
    }

    .paged ul li:first-child a,
    .paged ul li:first-child span,
    .paged ul li:last-child a,
    .paged ul li:last-child span {
        display: none;
    }

}


/* 视频弹出 */
/* 弹窗 */

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 10;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
    display: block;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url(../images/close_blue.svg) center no-repeat;
    background-size: 20px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: -50px;
    right: 0;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-height: 600px;
    margin: 0 auto;
    height: 60vh;
    display: flex;
    align-items: center;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
    padding: 20px;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}

@media (max-width:767px) {
    .z_tanchuang .tbox .modal .img {
        height: auto;
    }
}


/* 弹窗选中 */

.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

.img_tanchuang .tbox .modal,
.img_tanchuang .tbox .modal .img {
    max-width: 1600px;
}


@keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }
}

@-webkit-keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }
}