/* scriptText improved css start  */


/* Center everything wrapper */

.contentWrapper {
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* To ensure vertical stacking of internal elements */
    /* Use the site background (inherited from body) so the global color is authoritative */
    background-color: inherit;
}

/* Site-wide background variables and helpers */
:root {
    --site-bg: #303030; /* chosen global background: soft off-white */
    --site-bg-alt: #f4f6f8;
}

html, body {
    height: 100%;
}

/* Enforce a consistent page background color. Use !important to override inline/bootstrap utilities where necessary. */
body {
    background-color: var(--site-bg) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Make container elements transparent so the body color shows through, but keep cards and explicit backgrounds intact. */
.page-uniform-container,
.container,
.container-fluid {
    background-color: transparent !important;
}

/* Utility: treat Bootstrap's .bg-light as the page background so sections that used it appear consistent. */
.bg-light {
    background-color: var(--site-bg);
}

/* Keep small component backgrounds (cards, controls) readable, but avoid using these on large layout wrappers */
.bg-white, .bg-gray-50 {
    background-color: #ffffff !important;
}

/* If a section uses these utility classes at large scale, prefer a more subtle alternative (use .card or .panel wrappers instead) */
.container .bg-white, .container-fluid .bg-white {
    background-color: #ffffff !important;
}




/* Revised textarea css */

.responsiveTextarea {
    width: 100%;
    max-width: 800px;
    min-height: 200px;
    padding: 20px;
    border: 2px solid #444444;
    border-radius: 12px;
    resize: vertical;
    font-size: 16px;
    font-family: 'Roboto', 'Arial', sans-serif;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    outline: none;
    margin: 20px 0;
    /* Adjusted to provide top and bottom margins only */
    background: #ffffff;
    /* White background for the textarea */
    color: #333333;
    /* Dark text color for better contrast against the white background */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.responsiveTextarea:focus {
    border-color: #008cba;
    box-shadow: 0 0 15px rgba(0, 140, 186, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


/* Media query for screens smaller than 768px */

@media (max-width: 768px) {
    .responsiveTextarea {
        font-size: 14px;
        padding: 15px;
        min-height: 150px;
    }
}


/* scriptText improved css end  */


/* scriptText improved css end  */


/* Form for converting start  */

.conversionFormsContainer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    /* Space between the two forms */
    flex-wrap: wrap;
    /* This will allow the forms to wrap on smaller screens */
}

.convertForm {
    background: #333333;
    /* Darker shade to contrast with the body background */
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    /* Shadow for depth */
}

.convertBtn {
    background-color: #008cba;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    /* Shadow for depth */
}

.convertBtn:hover {
    background-color: #006a98;
    /* Slightly darker shade on hover */
    transform: translateY(-2px);
    /* Slight lift effect on hover */
}


/* Media query for screens smaller than 768px */

@media (max-width: 768px) {
    .conversionFormsContainer {
        flex-direction: column;
        gap: 20px;
    }
    .convertForm {
        width: 100%;
    }
    .convertBtn {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* Form for converting end  */


/* loading box start  */

@import "compass/css3";
* {
    padding: 0;
    margin: 0;
    }

.confirm-box {
    width: 280px;
    position: relative;
    margin: 30px auto;
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
    font-weight: bold;
    background: #DDD;
    border-radius: 0.4em;
    border: 1px solid rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    &:after {
        content: "";
        display: table;
        clear: both;
    }
}

.confirm-box p {
    text-align: center;
    padding: 10px 30px;
    line-height: 1.2em;
    border-radius: 0.4em 0.4em 0 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 30px 30px rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    background: #0088CC;
}

.confirm-box a {
    display: block;
    position: relative;
    padding: 7px 40px;
    width: 130px;
    margin: 0 auto;
    margin-bottom: 15px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.7);
    border-radius: 0.2em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 20px 20px rgba(255, 255, 255, 0.2), 1px 2px 1px rgba(0, 0, 0, 0.2), 0 0 2px 8px rgba(50, 50, 50, 0.1);
    transition: all 0.3s ease-out;
    background: #d02211;
    z-index: 100;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.6);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    -webkit-font-smoothing: subpixel-antialiased;
    &:hover {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -20px 20px rgba(200, 200, 200, 0.1), 1px 2px 1px rgba(0, 0, 0, 0.2), 0 0 2px 8px rgba(100, 100, 100, 0.1);
    }
    &:active {
        top: 1px;
    }
}

#progress-bar {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 15px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    background: #232323;
    border-radius: 1em;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

#inner-pb {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.8);
    width: 0;
    height: 22px;
    margin-left: 5px;
    margin-top: 2px;
    background: repeating-linear-gradient(-45deg, #0077CC, #0077CC 20px, #0099FF 20px, #0099FF 40px);
    border-radius: 0.8em;
    animation: roll 5s linear infinite;
    box-shadow: inset 0 10px 10px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -5px 3px rgba(0, 0, 0, 0.2), 0 3px 2px rgba(0, 0, 0, 0.3);
}

@-moz-keyframes roll {
    0% {
        width: 0;
    }
    100% {
        width: 95%;
    }
}

@-webkit-keyframes roll {
    0% {
        width: 0;
    }
    100% {
        width: 95%;
    }
}


/* loading box end  */


/*message box start*/

.messagebox {
    display: none;
    /* Initially, the box is hidden */
    background-color: #4CAF50;
    /* Green background */
    color: white;
    /* White text */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded corners */
    padding: 10px;
    /* Some padding */
    z-index: 1;
    /* Sit on top */
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 100vh;
}


/*message box end*/

.media-item img {
    border: 1px solid #ccc;
    /* Add a border to the image */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    /* Add a slight shadow */
    margin-bottom: 10px;
    /* Add some space below the image */
}

.media-item {
    flex: 0 0 16.66%;
    /* 100% / 6 items */
    margin-bottom: 20px;
    /* Add some space between each media item */
    height: 190px;
    /* A bit less than the container to account for margins/paddings */
    overflow: hidden;
    /* Hide overflowing content */
}

.media-item {
    flex: 0 0 16.66%;
    /* 100% / 6 items */
    margin-bottom: 20px;
    /* Add some space between each media item */
    height: auto;
    /* Allow it to adjust based on content */
    overflow: visible;
    /* Show all content */
    max-width: 173px;
    /* Adjust as needed */
}

.media-item video,
.media-item img {
    max-width: 100%;
}

.media-section {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    /* Spacing between items */
}

.media-item img:hover {
    transform: scale(1.1);
    /* Zoom in a bit */
    transition: transform 0.3s ease;
    /* Smooth transition */
}

.modal {
    display: none;
    position: fixed;
    z-index: 1111111111111111111111111111111111111;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.media-item form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* Spacing between the input and the button */
}

.media-item input[type="file"] {
    display: none;
    /* Hide the default file input */
}

.media-item label {
    background-color: #4CAF50;
    /* Green background */
    color: white;
    /* White text */
    padding: 8px 16px;
    /* Padding for the label */
    border: none;
    /* No border */
    cursor: pointer;
    /* Hand cursor on hover */
    border-radius: 4px;
    /* Rounded corners */
    text-align: center;
    /* Center the text */
    display: block;
    /* Make it a block element */
    width: 100%;
    /* Full width */
}

.media-item button[type="submit"] {
    background-color: #008CBA;
    /* Blue background */
    color: white;
    /* White text */
    padding: 8px 16px;
    /* Padding for the button */
    border: none;
    /* No border */
    cursor: pointer;
    /* Hand cursor on hover */
    border-radius: 4px;
    /* Rounded corners */
    text-align: center;
    /* Center the text */
    display: block;
    /* Make it a block element */
    width: 100%;
    /* Full width */
    margin-top: 10px;
    /* Spacing from the label */
}

.media-item label:hover,
.media-item button[type="submit"]:hover {
    opacity: 0.8;
    /* Slight fade on hover */
}


/* add loading */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark background for better visibility */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loader img {
    width: 100px;
    /* Adjust based on your GIF size */
    height: 100px;
    /* Adjust based on your GIF size */
    margin-bottom: 10px;
    display: block;
    /* Ensures the image is centered */
    margin-left: auto;
    margin-right: auto;
}

#loader p {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    /* Centers the text */
}


/* the carousel
/* Carousel Styles */

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 250px;
    /* Adjust based on your content */
}

.carousel-slide {
    display: flex;
    transition: all 0.5s ease;
    flex-wrap: nowrap;
    /* Prevent items from wrapping to the next line */
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.prev {
    left: 0;
    /* Position it at the very left */
}

.next {
    right: 0;
    /* Position it at the very right */
}


/* Responsive Styles */

@media screen and (max-width: 768px) {
    .media-section {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row for mobile devices */
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .media-section {
        grid-template-columns: repeat(4, 1fr);
        /* 4 items per row for tablets */
    }
}

@media screen and (min-width: 1025px) {
    .media-section {
        grid-template-columns: repeat(6, 1fr);
        /* 6 items per row for desktops */
    }
}


/*subtitle-content that makes the subtitle look good and responsive:*/

.subtitle-content {
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black background */
    color: #ffffff;
    /* White text color */
    padding: 10px;
    /* Padding around the text */
    border-radius: 5px;
    /* Rounded corners */
    max-width: 100%;
    /* Ensure it doesn't overflow its container */
    word-wrap: break-word;
    /* Break long words to the next line */
    font-size: 14px;
    /* Font size */
    text-align: center;
    /* Center the text */
    margin-top: 10px;
    /* Space between the image and the subtitle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* A subtle shadow for depth */
    overflow-y: auto;
    /* Allow vertical scrolling */
    text-overflow: ellipsis;
    /* Add ellipsis for overflowed text */
    height: 80px;
    /* Fixed height for the container */
}


/* For smaller screens, adjust the font size */

@media (max-width: 768px) {
    .subtitle-content {
        font-size: 14px;
    }
}


/* generate-UpdatedVideo bouton  */

.generate-button-container {
    display: flex;
    justify-content: center;
    /* Center the button horizontally */
    margin-top: 20px;
    /* Add some margin at the top for spacing */
    margin-bottom: 40px;
    /* Add more margin at the bottom for spacing */
}

.generate-button {
    background-color: #007BFF;
    /* Blue background */
    color: #FFFFFF;
    /* White text */
    padding: 10px 30px;
    /* Padding around the button */
    border: none;
    /* Remove default border */
    border-radius: 5px;
    /* Rounded corners */
    font-size: 18px;
    /* Font size */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
}

.generate-button:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}


/* For smaller screens, adjust the button size */

@media (max-width: 768px) {
    .generate-button {
        padding: 8px 25px;
        /* Reduce padding */
        font-size: 16px;
        /* Reduce font size */
    }
}


/* add loader 1 start */

.loader1 {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    /* Center the loader */
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* For smaller screens, adjust the loader size */

@media (max-width: 768px) {
    .customLoader {
        width: 20px;
        height: 20px;
    }
}


/* add loader 1 end  */


/* CSS to display windows videos start  */

.recommendation-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.recommendation-header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.recommendation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 60px 10px 10px 10px;
    overflow-y: auto;
    width: 100%;
    max-height: 80%;
}

.VideoTag_video__i0yT6 {
    width: 200px;
    height: 150px;
}


/* Video Container and Duration Styling */

.video-container {
    position: relative;
    width: 200px;
    height: 150px;
    /* Adjust as needed */
    margin-bottom: -10px;
}

.video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 12px;
    left: 5px;
    /* Adjusted from right to left */
}

#video-window {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#image-window {
    display: none;
    position: absolute;
    width: 100%;
    height: 89%;
    background: white;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#image1-window {
    display: none;
    position: absolute;
    width: 100%;
    height: 89%;
    background: white;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#video-grid {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    max-height: 90%;
    overflow-y: auto;
    gap: 10px;
    /* Adjust as needed */
}


/* Responsive Design */








/* CSS to display windows videos end  */


/* CSS recommendation-button start  */

.recommendation-button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 4px;
}

.recommendation-button:hover {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}

@media only screen and (max-width: 600px) {
    .recommendation-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* CSS recommendation-button end  */


/* for different quries border and search start */


/* CSS video-border start */

.video-border {
    position: absolute;
    top: 10px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + -3px);
    border: 2px solid blue;
    z-index: 1;
    pointer-events: none;
    /* Ensure clicks go through the border to the videoContainer */
}


/* CSS video-border end */






  







/* for different quries border and search start */

@media (max-width: 768px) {
    .video-border {
        position: absolute;
        top: 8px;
        left: -5px;
        width: calc(100% + 9px);
        height: calc(100% + 2px);
    }
}

@media (max-width: 480px) {
    .video-border {
        position: absolute;
        top: 3px;
        left: -5px;
        width: calc(100% + 10px);
        height: calc(100% + 10px);
    }
}


/* for different quries border and search end */

.video-controls {
    width: 100%;
    height: 16%;
}

.image-controls {
    width: 100%;
    height: 16%;
}

.audio-controls {
    height: 4%;
    width: 100%;
}


/*image recommendation css start*/


/* Image Recommendation Button Styling */

.image-recommendation-button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 4px;
}

.image-recommendation-button:hover {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}

@media only screen and (max-width: 600px) {
    .image-recommendation-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* Image Recommendation Window Styling */



.image-grid {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    max-height: 90%;
    overflow-y: auto;
    gap: 17px;
}


/* Image Container Styling */

.image-container {
    position: relative;
    /* width: 200px; */
    height: 150px;
    margin-bottom: -10px;
}

.ImageTag {
    /* width: 200px; */
    height: 150px;
}


/* Image Border Styling */

.image-border {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 9px);
    height: calc(100% + 9px);
    border: 2px solid blue;
    z-index: 1;
    pointer-events: none;
}


/* Close Button Styling */






/*Image Recommendation Window start*/


/* Search Bar and Button Styling */

.image-search-bar-container {
    display: block;
    position: relative;
    left: 12%;
}

.image-search-bar {
    background: aliceblue;
}

.image-search-bar {
    width: 183px;
    position: relative;
    left: 164px;
    height: 27px;
    bottom: -1px;
}

.confirm-image-recom-button {
    position: relative;
    display: block;
    bottom: 10.08%;
    left: 90%;
}

.image-search-button,
.confirm-image-recom-button {
    background: #008cba;
    color: white;
}

.image-search-button {
    position: relative;
    left: 348px;
    height: 27px;
    top: -26px;
}

.image-search-button:hover,
.confirm-image-recom-button:hover {
    background: #00b1cc;
}


/* Responsive Design */




/*Image Recommendation Window end*/

/*save setting audion and regenerate with voice */
.save-audio-settings {
    background-color: #008CBA;
    color: white;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    display: block;
    margin-top: 10px;
    width: 50%;
    
}
.Regenrate-with-voice {
    background-color: #008CBA;
    color: white;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    display: block;
    margin-top: 10px;
    width: 50%;
}


/*filter start */

.filter-menu {
    position: relative;
}

.filter-options {
    display: none;
    position: absolute;
    z-index: 10;
    /* Add more styling as needed */
}

.filter-btn:hover + .filter-options,
.filter-options:hover {
    display: block;
}

.save-btn {
    margin-top: 10px;
    /* Additional styling */
}

.gif-image {
    margin-top: 10px;
    /* Additional styling */
}


/*filter end */





/*vivid start here  */

.vivid-DIV_1 {
                                                                                bottom: 0px;
                                                                                color: rgb(255, 255, 255);
                                                                                display: flex;
                                                                                height: 525.4px;
                                                                                left: 0px;
                                                                                width: 100%;
                                                                                max-height: 760px;
                                                                                min-height: auto;
                                                                                min-width: auto;
                                                                                position: relative;
                                                                                right: 0px;
                                                                                text-decoration: none solid rgb(255, 255, 255);
                                                                                top: 0px;
                                                                                border: 0.8px solid rgba(164, 164, 164, 0.28);
                                                                                border-radius: 8px;
                                                                                flex-flow: column nowrap;
                                                                                font: 16px Inter, sans-serif;
                                                                                outline: rgb(255, 255, 255) none 0px;
                                                                                overflow: hidden;
}/*.vivid-DIV_1*/

.vivid-DIV_1:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_1:after*/

.vivid-DIV_1:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_1:before*/

.vivid-DIV_2 {
    align-items: center;
    color: rgb(255, 255, 255);
    display: flex;
    height: 53px;
    justify-content: space-between;
    min-height: auto;
    min-width: auto;
    padding-inline-end: 20px;
    position: sticky;
    text-decoration: none solid rgb(255, 255, 255);
    top: 0px;
    width: 100%;
    z-index: 0;
    background: rgb(38, 38, 38) none repeat scroll 0% 0% / auto padding-box border-box;
    border-top: 0px solid rgb(255, 255, 255);
    border-right: 0px solid rgb(255, 255, 255);
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.08);
    border-left: 0px solid rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
    flex: 0 0 auto;
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    padding: 0px 20px 0px 0px;
}/*.vivid-DIV_2*/

.vivid-DIV_2:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_2:after*/

.vivid-DIV_2:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_2:before*/

.vivid-DIV_3 {
                                                color: rgb(255, 255, 255);
        display: flex;
    height: 52.2px;
            min-height: auto;
        min-width: auto;
        text-decoration: none solid rgb(255, 255, 255);
            width: 197.863px;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_3*/

.vivid-DIV_3:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_3:after*/

.vivid-DIV_3:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_3:before*/

.vivid-DIV_4 {
    align-items: center;
                                                                color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    display: flex;
    height: 52.2px;
            min-height: auto;
        min-width: auto;
    padding-inline-end: 15px;
    padding-inline-start: 15px;
        text-decoration: none solid rgba(255, 255, 255, 0.5);
            width: 101.162px;
    border: 0px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font: 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
    padding: 0px 15px;
}/*.vivid-DIV_4*/

.vivid-DIV_4:after {
                                            color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-DIV_4:after*/

.vivid-DIV_4:before {
                                            color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-DIV_4:before*/

.vivid-P_5 {
                                                color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    height: 21px;
        margin-block-end: 0px;
    margin-block-start: 0px;
        min-height: auto;
        min-width: auto;
        text-decoration: none solid rgba(255, 255, 255, 0.9);
            width: 71.1625px;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 600 14px / 21px Inter, sans-serif;
    margin: 0px;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-P_5*/

.vivid-P_5:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        border: 0px solid rgba(255, 255, 255, 0.9);
    font: 600 14px / 21px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-P_5:after*/

.vivid-P_5:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        border: 0px solid rgba(255, 255, 255, 0.9);
    font: 600 14px / 21px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-P_5:before*/

.vivid-DIV_6 {
    align-items: center;
                                                                color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    display: flex;
    height: 52.2px;
            min-height: auto;
        min-width: auto;
    padding-inline-end: 15px;
    padding-inline-start: 15px;
        text-decoration: none solid rgba(255, 255, 255, 0.5);
            width: 96.7px;
    border: 0px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font: 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
    padding: 0px 15px;
}/*.vivid-DIV_6*/

.vivid-DIV_6:after {
                                            color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-DIV_6:after*/

.vivid-DIV_6:before {
                                            color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-DIV_6:before*/

.vivid-P_7 {
                                                color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    height: 21px;
        margin-block-end: 0px;
    margin-block-start: 0px;
        min-height: auto;
        min-width: auto;
        text-decoration: none solid rgba(255, 255, 255, 0.5);
            width: 66.7px;
    border: 0px solid rgba(255, 255, 255, 0.5);
    font: 14px / 21px Inter, sans-serif;
    margin: 0px;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-P_7*/

.vivid-P_7:after {
                                            color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 14px / 21px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-P_7:after*/

.vivid-P_7:before {
                                            color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 14px / 21px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-P_7:before*/

.vivid-svg_8 {
                                                color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    fill: rgb(138, 138, 138);
    height: 16px;
            min-height: auto;
        min-width: auto;
    overflow-clip-margin: content-box;
        text-decoration: none solid rgb(255, 255, 255);
            width: 16px;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    overflow: hidden;
}/*.vivid-svg_8*/

.vivid-svg_8:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    fill: rgb(138, 138, 138);
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-svg_8:after*/

.vivid-svg_8:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    fill: rgb(138, 138, 138);
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-svg_8:before*/

.vivid-path_9 {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    d: path("M 8.00003 8.70711 L 12.5962 13.3033 C 12.7915 13.4986 13.1081 13.4986 13.3033 13.3033 C 13.4986 13.108 13.4986 12.7915 13.3033 12.5962 L 8.70714 8 L 13.3033 3.40381 C 13.4986 3.20854 13.4986 2.89196 13.3033 2.6967 C 13.1081 2.50144 12.7915 2.50144 12.5962 2.6967 L 8.00003 7.29289 L 3.40384 2.6967 C 3.20858 2.50144 2.892 2.50144 2.69673 2.6967 C 2.50147 2.89196 2.50147 3.20854 2.69673 3.40381 L 7.29293 8 L 2.69673 12.5962 C 2.50147 12.7915 2.50147 13.108 2.69673 13.3033 C 2.89199 13.4986 3.20858 13.4986 3.40384 13.3033 L 8.00003 8.70711 Z");
    fill: rgb(138, 138, 138);
        text-decoration: none solid rgb(255, 255, 255);
            border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-path_9*/

.vivid-path_9:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    fill: rgb(138, 138, 138);
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-path_9:after*/

.vivid-path_9:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    fill: rgb(138, 138, 138);
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-path_9:before*/

.vivid-DIV_10 {
                                                color: rgb(255, 255, 255);
                                                display: flex;
                                                height: 100%;
                                                min-height: auto;
                                                min-width: auto;
                                                text-decoration: none solid rgb(255, 255, 255);
                                                width: 100%;
                                                position: relative;
                                                background: rgb(38, 38, 38) none repeat scroll 0% 0% / auto padding-box border-box;
                                                border: 0px solid rgb(255, 255, 255);
                                                flex-flow: column nowrap;
                                                font: 16px Inter, sans-serif;
                                                outline: rgb(255, 255, 255) none 0px;
                                                overflow-y: hidden;
}/*.vivid-DIV_10*/

.vivid-DIV_10:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_10:after*/

.vivid-DIV_10:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_10:before*/

.vivid-DIV_11 {
    align-items: center;
    bottom: 0px;
    box-shadow: rgba(19, 19, 19, 0.22) 0px 4px 10px 0px;
    color: rgb(255, 255, 255);
    column-gap: 16px;
    display: flex;
    height: 148px;
    left: 0px;
    min-height: auto;
    min-width: auto;
    position: sticky;
    width: 100%;
    right: 0px;
    row-gap: 16px;
    text-decoration: none solid rgb(255, 255, 255);
    text-wrap: nowrap;
    top: 0px;
    background: rgb(46, 46, 46) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px solid rgb(255, 255, 255);
    flex: 0 0 auto;
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    overflow-x: scroll;
    overflow-y: hidden;
}/*.vivid-DIV_11*/

.vivid-DIV_11:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_11:after*/

.vivid-DIV_11:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_11:before*/

.vivid-DIV_12 {
                                                color: rgb(255, 255, 255);
                                                display: flex;
                                                height: 148px;
                                                min-height: auto;
                                                min-width: auto;
                                                text-decoration: none solid rgb(255, 255, 255);
                                                text-wrap: nowrap;
                                                width: 100%;
                                                position: relative;
                                                border: 0px solid rgb(255, 255, 255);
                                                font: 16px Inter, sans-serif;
                                                outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_12*/

.vivid-DIV_12:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_12:after*/

.vivid-DIV_12:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_12:before*/

.vivid-DIV_13 {
    align-items: center;
                                                color: rgb(255, 255, 255);
    column-gap: 4px;
        cursor: pointer;
    display: flex;
    height: 148px;
                left: 0px;
        min-height: auto;
        min-width: auto;
    padding-block-end: 20px;
    padding-block-start: 20px;
    padding-inline-end: 10px;
    padding-inline-start: 10px;
        row-gap: 4px;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    top: 0px;
        width: 36px;
    z-index: 4;
    background: rgb(46, 46, 46) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    padding: 20px 10px;
}/*.vivid-DIV_13*/

.vivid-DIV_13:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_13:after*/

.vivid-DIV_13:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_13:before*/

.vivid-P_14 {
                                                color: rgb(191, 191, 191);
        cursor: pointer;
    height: 36.925px;
        margin-block-end: 0px;
    margin-block-start: 0px;
        min-height: auto;
        min-width: auto;
        text-align: center;
    text-decoration: none solid rgb(191, 191, 191);
        text-wrap: nowrap;
    transform: matrix(-1, 0, 0, -1, 0, 0);
        width: 16px;
    writing-mode: vertical-rl;
    border: 0px solid rgb(191, 191, 191);
    font: 10px / 16px Inter, sans-serif;
    margin: 0px;
    outline: rgb(191, 191, 191) none 0px;
}/*.vivid-P_14*/

.vivid-P_14:after {
                                            color: rgb(191, 191, 191);
        cursor: pointer;
    text-align: center;
    text-decoration: none solid rgb(191, 191, 191);
        text-wrap: nowrap;
    writing-mode: vertical-rl;
    border: 0px solid rgb(191, 191, 191);
    font: 10px / 16px Inter, sans-serif;
    outline: rgb(191, 191, 191) none 0px;
}/*.vivid-P_14:after*/

.vivid-P_14:before {
                                            color: rgb(191, 191, 191);
        cursor: pointer;
    text-align: center;
    text-decoration: none solid rgb(191, 191, 191);
        text-wrap: nowrap;
    writing-mode: vertical-rl;
    border: 0px solid rgb(191, 191, 191);
    font: 10px / 16px Inter, sans-serif;
    outline: rgb(191, 191, 191) none 0px;
}/*.vivid-P_14:before*/

.vivid-DIV_15 {
                                                color: rgb(255, 255, 255);
                                                column-gap: 24px;
                                                display: flex;
                                                height: 148px;
                                                min-height: auto;
                                                min-width: auto;
                                                padding-block-end: 20px;
                                                padding-block-start: 20px;
                                                padding-inline-end: 11px;
                                                padding-inline-start: 11px;
                                                row-gap: 24px;
                                                text-decoration: none solid rgb(255, 255, 255);
                                                text-wrap: nowrap;
                                                width: 100%;
                                                position: relative;
                                                border: 0px solid rgb(255, 255, 255);
                                                flex: 1 1 auto;
                                                font: 16px Inter, sans-serif;
                                                outline: rgb(255, 255, 255) none 0px;
                                                padding: 20px -63px;
}/*.vivid-DIV_15*/

.vivid-DIV_15:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_15:after*/

.vivid-DIV_15:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_15:before*/

.vivid-DIV_16, .vivid-DIV_32 {
                                        bottom: 0px;
                                        color: rgb(255, 255, 255);
                                        height: 108px;
                                        left: 0px;
                                        min-height: auto;
                                        min-width: auto;
                                        position: relative;
                                        right: 0px;
                                        text-decoration: none solid rgb(255, 255, 255);
                                        text-wrap: nowrap;
                                        top: 0px;
                                        position: relative;
                                        border: 0px solid rgb(255, 255, 255);
                                        font: 16px Inter, sans-serif;
                                        outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_16, .vivid-DIV_32*/

.vivid-DIV_16:after, .vivid-DIV_32:after {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_16:after, .vivid-DIV_32:after*/

.vivid-DIV_16:before, .vivid-DIV_32:before {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_16:before, .vivid-DIV_32:before*/

.vivid-DIV_17, .vivid-DIV_33 {
                                        bottom: 0px;
        color: rgb(255, 255, 255);
        height: 108px;
                        left: 0px;
        position: relative;
    right: 0px;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    top: 0px;
        width: 192px;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_17, .vivid-DIV_33*/

.vivid-DIV_17:after, .vivid-DIV_33:after {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_17:after, .vivid-DIV_33:after*/

.vivid-DIV_17:before, .vivid-DIV_33:before {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_17:before, .vivid-DIV_33:before*/

.vivid-DIV_18, .vivid-DIV_34 {
                                                        bottom: 1px;
                                                        color: rgb(255, 255, 255);
                                                        height: 108px;
                                                        left: -1px;
                                                        position: absolute;
                                                        right: 1px;
                                                        text-decoration: none solid rgb(255, 255, 255);
                                                        text-wrap: nowrap;
                                                        top: -1px;
                                                        width: 186px;
                                                        background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0% / auto padding-box border-box;
                                                        border: 0px solid rgb(255, 255, 255);
                                                        border-radius: 4px;
                                                        font: 16px Inter, sans-serif;
                                                        outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_18, .vivid-DIV_34*/

.vivid-DIV_18:after, .vivid-DIV_34:after {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_18:after, .vivid-DIV_34:after*/

.vivid-DIV_18:before, .vivid-DIV_34:before {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_18:before, .vivid-DIV_34:before*/

.vivid-DIV_19 {
                                                        bottom: 0px;
    box-shadow: rgb(64, 64, 64) 0px 0px 0px 2px;
        color: rgb(255, 255, 255);
        cursor: pointer;
    display: flex;
    height: 108px;
                        left: 0px;
        position: relative;
    right: 0px;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    top: 0px;
        width: 192px;
    z-index: 1;
    border: 0px solid rgb(255, 255, 255);
    border-radius: 4px;
    flex-flow: column nowrap;
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    overflow: hidden;
}/*.vivid-DIV_19*/

.vivid-DIV_19:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_19:after*/

.vivid-DIV_19:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_19:before*/

.vivid-IMG_20, .vivid-IMG_36 {
                                                                color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    height: 108px;
            min-height: auto;
        min-width: auto;
    object-fit: cover;
        text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
        width: 192px;
    border: 0px solid rgb(255, 255, 255);
    border-radius: 4px;
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-IMG_20, .vivid-IMG_36*/

.vivid-IMG_20:after, .vivid-IMG_36:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-IMG_20:after, .vivid-IMG_36:after*/

.vivid-IMG_20:before, .vivid-IMG_36:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-IMG_20:before, .vivid-IMG_36:before*/

.vivid-DIV_21, .vivid-DIV_37 {
                                                        bottom: 4px;
            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    height: 16px;
                        left: 151.587px;
    padding-inline-end: 4px;
    padding-inline-start: 4px;
        position: absolute;
    right: 4px;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    top: 88px;
        width: 36.4125px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px solid rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
    padding: 0px 4px;
}/*.vivid-DIV_21, .vivid-DIV_37*/

.vivid-DIV_21:after, .vivid-DIV_37:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-DIV_21:after, .vivid-DIV_37:after*/

.vivid-DIV_21:before, .vivid-DIV_37:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-DIV_21:before, .vivid-DIV_37:before*/

.vivid-BUTTON_22, .vivid-BUTTON_38 {
    align-items: center;
    appearance: none;
    bottom: 84px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    height: 16px;
    left: 162px;
    padding-block-end: 2px;
    padding-block-start: 2px;
    padding-inline-end: 4px;
    padding-inline-start: 4px;
    position: absolute;
    right: 4px;
    text-align: start;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
    text-wrap: nowrap;
    top: 4px;
    width: 16px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
    padding: 2px 4px;
    width: 12%;
}/*.vivid-BUTTON_22, .vivid-BUTTON_38*/

.vivid-BUTTON_22:after, .vivid-BUTTON_38:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    display: block;
    text-align: start;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-BUTTON_22:after, .vivid-BUTTON_38:after*/

.vivid-BUTTON_22:before, .vivid-BUTTON_38:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    display: block;
    text-align: start;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-BUTTON_22:before, .vivid-BUTTON_38:before*/

.vivid-svg_23, .vivid-svg_39 {
                                                color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    display: block;
    fill: none;
    height: 16px;
            min-height: auto;
        min-width: auto;
    overflow-clip-margin: content-box;
        text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
        width: 16px;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
    overflow: hidden;
}/*.vivid-svg_23, .vivid-svg_39*/

.vivid-svg_23:after, .vivid-svg_39:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-svg_23:after, .vivid-svg_39:after*/

.vivid-svg_23:before, .vivid-svg_39:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-svg_23:before, .vivid-svg_39:before*/

.vivid-path_24, .vivid-path_40 {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    d: path("M 2.86621 6.5 C 2.03778 6.5 1.36621 7.17157 1.36621 8 C 1.36621 8.82843 2.03778 9.5 2.86621 9.5 C 3.69464 9.5 4.36621 8.82843 4.36621 8 C 4.36621 7.17157 3.69464 6.5 2.86621 6.5 Z");
    fill: rgba(255, 255, 255, 0.9);
        text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
        border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_24, .vivid-path_40*/

.vivid-path_24:after, .vivid-path_40:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: rgba(255, 255, 255, 0.9);
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_24:after, .vivid-path_40:after*/

.vivid-path_24:before, .vivid-path_40:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: rgba(255, 255, 255, 0.9);
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_24:before, .vivid-path_40:before*/

.vivid-path_25, .vivid-path_41 {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    d: path("M 8 6.5 C 7.17157 6.5 6.5 7.17157 6.5 8 C 6.5 8.82843 7.17157 9.5 8 9.5 C 8.82843 9.5 9.5 8.82843 9.5 8 C 9.5 7.17157 8.82843 6.5 8 6.5 Z");
    fill: rgba(255, 255, 255, 0.9);
        text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
        border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_25, .vivid-path_41*/

.vivid-path_25:after, .vivid-path_41:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: rgba(255, 255, 255, 0.9);
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_25:after, .vivid-path_41:after*/

.vivid-path_25:before, .vivid-path_41:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: rgba(255, 255, 255, 0.9);
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_25:before, .vivid-path_41:before*/

.vivid-path_26, .vivid-path_42 {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    d: path("M 13.1338 6.5 C 12.3054 6.5 11.6338 7.17157 11.6338 8 C 11.6338 8.82843 12.3054 9.5 13.1338 9.5 C 13.9622 9.5 14.6338 8.82843 14.6338 8 C 14.6338 7.17157 13.9622 6.5 13.1338 6.5 Z");
    fill: rgba(255, 255, 255, 0.9);
        text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
        border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_26, .vivid-path_42*/

.vivid-path_26:after, .vivid-path_42:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: rgba(255, 255, 255, 0.9);
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_26:after, .vivid-path_42:after*/

.vivid-path_26:before, .vivid-path_42:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
    fill: rgba(255, 255, 255, 0.9);
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-path_26:before, .vivid-path_42:before*/

.vivid-DIV_27, .vivid-DIV_43 {
    align-items: center;
                                                        bottom: 84px;
            color: rgb(237, 237, 237);
        cursor: pointer;
    display: flex;
    height: 20px;
                        justify-content: center;
    left: 4px;
        position: absolute;
    right: 168px;
    text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
    top: 4px;
        width: 20px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px solid rgb(237, 237, 237);
    border-radius: 4px;
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-DIV_27, .vivid-DIV_43*/

.vivid-DIV_27:after, .vivid-DIV_43:after {
                                            color: rgb(237, 237, 237);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
    border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-DIV_27:after, .vivid-DIV_43:after*/

.vivid-DIV_27:before, .vivid-DIV_43:before {
                                            color: rgb(237, 237, 237);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
    border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-DIV_27:before, .vivid-DIV_43:before*/

.vivid-svg_28, .vivid-svg_44 {
                                                color: rgb(237, 237, 237);
        cursor: pointer;
    display: block;
    fill: rgb(255, 255, 255);
    height: 12px;
            min-height: auto;
        min-width: auto;
    overflow-clip-margin: content-box;
        text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
        width: 12px;
    border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
    overflow: hidden;
}/*.vivid-svg_28, .vivid-svg_44*/

.vivid-svg_28:after, .vivid-svg_44:after {
                                            color: rgb(237, 237, 237);
        cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
    border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-svg_28:after, .vivid-svg_44:after*/

.vivid-svg_28:before, .vivid-svg_44:before {
                                            color: rgb(237, 237, 237);
        cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
    border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-svg_28:before, .vivid-svg_44:before*/

.vivid-path_29, .vivid-path_45 {
                                            clip-rule: evenodd;
    color: rgb(237, 237, 237);
        cursor: pointer;
    d: path("M 7.77488 1.85249 C 7.86117 1.64927 8.14927 1.64948 8.23526 1.85283 L 10.469 7.13522 C 10.5341 7.28924 10.7292 7.33713 10.8583 7.23077 L 13.981 4.65717 C 14.1541 4.5145 14.413 4.65441 14.3885 4.87741 L 13.5353 12.6414 C 13.4378 13.5285 12.6883 14.2002 11.7958 14.2002 H 4.21419 C 3.32168 14.2002 2.57216 13.5285 2.47467 12.6414 L 1.62149 4.87741 C 1.59697 4.65424 1.85621 4.51437 2.02926 4.65739 L 5.1424 7.23031 C 5.27129 7.33685 5.46642 7.28924 5.53178 7.13532 L 7.77488 1.85249 Z");
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
        text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
        border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-path_29, .vivid-path_45*/

.vivid-path_29:after, .vivid-path_45:after {
                                            clip-rule: evenodd;
    color: rgb(237, 237, 237);
        cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
    border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-path_29:after, .vivid-path_45:after*/

.vivid-path_29:before, .vivid-path_45:before {
                                            clip-rule: evenodd;
    color: rgb(237, 237, 237);
        cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(237, 237, 237);
        text-wrap: nowrap;
    border: 0px solid rgb(237, 237, 237);
    font: 500 14px / 21px Inter, sans-serif;
    outline: rgb(237, 237, 237) none 0px;
}/*.vivid-path_29:before, .vivid-path_45:before*/

.vivid-DIV_30, .vivid-DIV_46 {
    align-items: center;
                                        bottom: 0px;
            color: rgb(255, 255, 255);
        cursor: pointer;
    display: flex;
    height: 108px;
                        justify-content: center;
    left: 0px;
        pointer-events: none;
    position: absolute;
    right: 0px;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    top: 0px;
        width: 192px;
    z-index: 2;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_30, .vivid-DIV_46*/

.vivid-DIV_30:after, .vivid-DIV_46:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    pointer-events: none;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_30:after, .vivid-DIV_46:after*/

.vivid-DIV_30:before, .vivid-DIV_46:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    pointer-events: none;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_30:before, .vivid-DIV_46:before*/

.vivid-P_31, .vivid-P_47 {
                                                color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
    height: 20px;
        margin-block-end: 0px;
    margin-block-start: 0px;
        min-height: auto;
        min-width: auto;
        pointer-events: none;
    text-decoration: none solid rgba(255, 255, 255, 0.7);
        text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px;
    text-wrap: nowrap;
        width: 40.2125px;
    border: 0px solid rgba(255, 255, 255, 0.7);
    font: 700 13px / 20px Inter, sans-serif;
    margin: 0px;
    outline: rgba(255, 255, 255, 0.7) none 0px;
}/*.vivid-P_31, .vivid-P_47*/

.vivid-P_31:after, .vivid-P_47:after {
                                            color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
    pointer-events: none;
    text-decoration: none solid rgba(255, 255, 255, 0.7);
        text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px;
    text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.7);
    font: 700 13px / 20px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.7) none 0px;
}/*.vivid-P_31:after, .vivid-P_47:after*/

.vivid-P_31:before, .vivid-P_47:before {
                                            color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
    pointer-events: none;
    text-decoration: none solid rgba(255, 255, 255, 0.7);
        text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px;
    text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.7);
    font: 700 13px / 20px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.7) none 0px;
}/*.vivid-P_31:before, .vivid-P_47:before*/

.vivid-DIV_35 {
                                                        bottom: 0px;
                                                        box-shadow: rgb(253 253 253) 0px 0px 0px 2px;
                                                        color: rgb(255, 255, 255);
                                                        cursor: pointer;
                                                        display: flex;
                                                        height: 108px;
                                                        left: 0px;
                                                        position: relative;
                                                        right: 0px;
                                                        text-decoration: none solid rgb(255, 255, 255);
                                                        text-wrap: nowrap;
                                                        top: 0px;
                                                        width: 186px;
                                                        z-index: 1;
                                                        border: 0px solid rgb(255, 255, 255);
                                                        border-radius: 4px;
                                                        flex-flow: column nowrap;
                                                        font: 16px Inter, sans-serif;
                                                        outline: rgb(255, 255, 255) none 0px;
                                                        overflow: hidden;
}/*.vivid-DIV_35*/

.vivid-DIV_35:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_35:after*/

.vivid-DIV_35:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
        text-wrap: nowrap;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_35:before*/

.vivid-control {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.vivid-BUTTON_48 {
    align-items: center;
    appearance: none;
                                                                                color: rgb(155, 161, 166);
        cursor: pointer;
    display: none;
    height: 28px;
            justify-content: center;
        min-width: 28px;
    padding-block-end: 0px;
    padding-block-start: 0px;
    padding-inline-end: 0px;
    padding-inline-start: 0px;
    position: fixed;
    right: 10px;
    text-align: start;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    width: 30px;
    z-index: 5;
    background: rgb(26, 29, 30) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0.8px solid rgb(255, 255, 255);
    border-radius: 50%;
    flex: 0 0 auto;
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
    padding: 0px;
    transition: all 0.1s ease 0s;
}/*.vivid-BUTTON_48*/

.vivid-BUTTON_48:after {
                                            color: rgb(155, 161, 166);
        cursor: pointer;
    text-align: start;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
}/*.vivid-BUTTON_48:after*/

.vivid-BUTTON_48:before {
                                            color: rgb(155, 161, 166);
        cursor: pointer;
    text-align: start;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
}/*.vivid-BUTTON_48:before*/

.vivid-svg_49 {
                                                color: rgb(155, 161, 166);
        cursor: pointer;
    fill: none;
    height: 15px;
        overflow-clip-margin: content-box;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    width: 15px;
    border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
    overflow: hidden;
}/*.vivid-svg_49*/

.vivid-svg_49:after {
                                            color: rgb(155, 161, 166);
        cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
}/*.vivid-svg_49:after*/

.vivid-svg_49:before {
                                            color: rgb(155, 161, 166);
        cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
}/*.vivid-svg_49:before*/

.vivid-path_50 {
                                            clip-rule: evenodd;
    color: rgb(155, 161, 166);
        cursor: pointer;
    d: path("M 8.14645 3.14645 C 8.34171 2.95118 8.65829 2.95118 8.85355 3.14645 L 12.8536 7.14645 C 13.0488 7.34171 13.0488 7.65829 12.8536 7.85355 L 8.85355 11.8536 C 8.65829 12.0488 8.34171 12.0488 8.14645 11.8536 C 7.95118 11.6583 7.95118 11.3417 8.14645 11.1464 L 11.2929 8 H 2.5 C 2.22386 8 2 7.77614 2 7.5 C 2 7.22386 2.22386 7 2.5 7 H 11.2929 L 8.14645 3.85355 C 7.95118 3.65829 7.95118 3.34171 8.14645 3.14645 Z");
    fill: rgb(155, 161, 166);
    fill-rule: evenodd;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
        border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
}/*.vivid-path_50*/

.vivid-path_50:after {
                                            clip-rule: evenodd;
    color: rgb(155, 161, 166);
        cursor: pointer;
    fill: rgb(155, 161, 166);
    fill-rule: evenodd;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
}/*.vivid-path_50:after*/

.vivid-path_50:before {
                                            clip-rule: evenodd;
    color: rgb(155, 161, 166);
        cursor: pointer;
    fill: rgb(155, 161, 166);
    fill-rule: evenodd;
    text-decoration: none solid rgb(155, 161, 166);
        text-wrap: nowrap;
    border: 0px solid rgb(155, 161, 166);
    font: 600 11px Inter, sans-serif;
    outline: rgb(155, 161, 166) none 0px;
}/*.vivid-path_50:before*/

.vivid-DIV_51 {
                                                display: block;
                                                color: rgb(255, 255, 255);
                                                height: 100%;
                                                margin-block-start: 3px;
                                                /* min-height: auto; */
                                                /* min-width: auto; */
                                                /* padding-block-end: 10px; */
                                                /* padding-block-start: 10px; */
                                                /* padding-inline-end: 11px; */
                                                /* padding-inline-start: 11px; */
                                                text-decoration: none solid rgb(255, 255, 255);
                                                border: 0px solid rgb(255, 255, 255);
                                                font: 16px Inter, sans-serif;
                                                outline: rgb(255, 255, 255) none 0px;
                                                padding: 10px 11px;
                                                width: 100%;
                                                position: relative;
                                                margin-top: 3px;
}/*.vivid-DIV_51*/

.vivid-DIV_51:after {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_51:after*/

.vivid-DIV_51:before {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_51:before*/

.vivid-DIV_52 {
    align-items: start;
    color: rgb(255, 255, 255);
    column-gap: 12px;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin-block-end: 8px;
    row-gap: 12px;
    text-decoration: none solid rgb(255, 255, 255);
    width: 100%;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    margin: 0px 0px 8px;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_52*/

.vivid-DIV_52:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_52:after*/

.vivid-DIV_52:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_52:before*/

.vivid-DIV_53 {
                                                color: rgb(255, 255, 255);
                                                column-gap: 10px;
                                                display: flex;
                                                height: 184px;
                                                min-height: auto;
                                                min-width: auto;
                                                row-gap: 10px;
                                                text-decoration: none solid rgb(255, 255, 255);
                                                width: 100%;
                                                border: 0px solid rgb(255, 255, 255);
                                                flex-flow: column nowrap;
                                                font: 16px Inter, sans-serif;
                                                outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_53*/

.vivid-DIV_53:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_53:after*/

.vivid-DIV_53:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_53:before*/

.vivid-DIV_54 {
    align-items: center;
    color: rgb(255, 255, 255);
    column-gap: 4px;
    display: flex;
    height: 22px;
    min-height: auto;
    min-width: auto;
    row-gap: 4px;
    text-decoration: none solid rgb(255, 255, 255);
    width: 100%;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_54*/

.vivid-DIV_54:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_54:after*/

.vivid-DIV_54:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_54:before*/

.vivid-P_55 {
                                                color: rgba(255, 255, 255, 0.3);
        height: 22px;
        margin-block-end: 0px;
    margin-block-start: 0px;
        min-height: auto;
        min-width: auto;
        text-decoration: none solid rgba(255, 255, 255, 0.3);
            width: 72.8125px;
    border: 0px solid rgba(255, 255, 255, 0.3);
    font: 16px / 22px Inter, sans-serif;
    margin: 0px;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_55*/

.vivid-P_55:after {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_55:after*/

.vivid-P_55:before {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_55:before*/

.vivid-svg_56 {
                                                color: rgb(255, 255, 255);
        display: block;
    fill: rgba(255, 255, 255, 0.5);
    height: 15px;
            min-height: auto;
        min-width: auto;
    overflow-clip-margin: content-box;
    padding-block-end: 1.5px;
    padding-block-start: 1.5px;
    padding-inline-end: 1.5px;
    padding-inline-start: 1.5px;
        stroke-width: 2px;
    text-decoration: none solid rgb(255, 255, 255);
            width: 8px;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    overflow: hidden;
    padding: 1.5px;
}/*.vivid-svg_56*/

.vivid-svg_56:after {
                                            color: rgb(255, 255, 255);
        fill: rgba(255, 255, 255, 0.5);
    stroke-width: 2px;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-svg_56:after*/

.vivid-svg_56:before {
                                            color: rgb(255, 255, 255);
        fill: rgba(255, 255, 255, 0.5);
    stroke-width: 2px;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-svg_56:before*/

.vivid-path_57 {
                                            clip-rule: evenodd;
    color: rgb(255, 255, 255);
        d: path("M 0.285077 14.3536 C 0.0898142 14.1583 0.0898147 13.8417 0.285077 13.6464 L 6.43156 7.49996 L 0.285079 1.35356 C 0.0898156 1.15829 0.0898132 0.841712 0.285074 0.646449 C 0.480335 0.451185 0.796918 0.451183 0.992181 0.646444 L 7.49222 7.1464 C 7.58599 7.24017 7.63867 7.36735 7.63867 7.49996 C 7.63867 7.63257 7.58599 7.75974 7.49223 7.85351 L 0.992183 14.3536 C 0.796921 14.5488 0.480339 14.5488 0.285077 14.3536 Z");
    fill: rgba(255, 255, 255, 0.5);
    fill-rule: evenodd;
        stroke-width: 2px;
    text-decoration: none solid rgb(255, 255, 255);
            border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-path_57*/

.vivid-path_57:after {
                                            clip-rule: evenodd;
    color: rgb(255, 255, 255);
        fill: rgba(255, 255, 255, 0.5);
    fill-rule: evenodd;
    stroke-width: 2px;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-path_57:after*/

.vivid-path_57:before {
                                            clip-rule: evenodd;
    color: rgb(255, 255, 255);
        fill: rgba(255, 255, 255, 0.5);
    fill-rule: evenodd;
    stroke-width: 2px;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-path_57:before*/

.vivid-P_58 {
                                                color: rgba(255, 255, 255, 0.3);
        height: 22px;
        margin-block-end: 0px;
    margin-block-start: 0px;
        min-height: auto;
        min-width: auto;
        text-decoration: none solid rgba(255, 255, 255, 0.3);
            width: 60.4875px;
    border: 0px solid rgba(255, 255, 255, 0.3);
    font: 16px / 22px Inter, sans-serif;
    margin: 0px;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_58*/

.vivid-P_58:after {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_58:after*/

.vivid-P_58:before {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_58:before*/

.vivid-DIV_59 {
    align-items: start;
    color: rgb(255, 255, 255);
    column-gap: 12px;
    display: flex;
    height: 100%;
        /*     /* min-height: auto; */
    /*     /* min-width: auto; */
    /*     /* row-gap: 14px; */
    text-decoration: none solid rgb(255, 255, 255);
    width: 100%;
    border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_59*/

.vivid-DIV_59:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_59:after*/

.vivid-DIV_59:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_59:before*/

.vivid-DIV_60 {
                    display: block;
                    color: rgb(255, 255, 255);
                    max-height: 100%;
                    min-height: auto;
                    min-width: auto;
                    padding-block-end: 14px;
                    padding-block-start: 14px;
                    padding-inline-end: 16px;
                    padding-inline-start: 16px;
                    text-decoration: none solid rgb(255, 255, 255);
                    width: 100%;
                    background: rgb(54, 54, 54) none repeat scroll 0% 0% / auto padding-box border-box;
                    border: 0px solid rgb(255, 255, 255);
                    border-radius: 8px;
                    font: 16px Inter, sans-serif;
                    outline: rgb(255, 255, 255) none 0px;
                    overflow: auto;
                    padding: 14px 16px;
}/*.vivid-DIV_60*/

.vivid-DIV_60:after {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_60:after*/

.vivid-DIV_60:before {
                                            color: rgb(255, 255, 255);
        text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_60:before*/

.vivid-P_61 {
                                                color: rgba(255, 255, 255, 0.3);
                                                display: inline-block;
                                                margin-block-end: 0px;
                                                margin-block-start: 0px;
                                                text-decoration: none solid rgba(255, 255, 255, 0.3);
                                                width: 100%;
                                                border: 0px solid rgba(255, 255, 255, 0.3);
                                                font: 500 16px / 22px Inter, sans-serif;
                                                margin: 0px;
                                                outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_61*/

.vivid-P_61:after {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_61:after*/

.vivid-P_61:before {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-P_61:before*/

.vivid-SPAN_62 {
                                            color: rgba(255, 255, 255, 0.3);
            text-decoration: none solid rgba(255, 255, 255, 0.3);
            border: 0px solid rgba(255, 255, 255, 0.3);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-SPAN_62*/

.vivid-SPAN_62:hover {
    background-color: rgb(100, 100, 255); /* Example hover color */
    color: white; /* Ensure text color contrasts well with the hover background */
    cursor: pointer; /* Optional: Changes the cursor to indicate the span is clickable */
}


.vivid-SPAN_62:after {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-SPAN_62:after*/

.vivid-SPAN_62:before {
                                            color: rgba(255, 255, 255, 0.3);
        text-decoration: none solid rgba(255, 255, 255, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.3);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.3) none 0px;
}/*.vivid-SPAN_62:before*/

.vivid-SPAN_63 {
                                            color: rgba(255, 255, 255, 0.5);
            text-decoration: none solid rgba(255, 255, 255, 0.5);
            background: rgba(247, 235, 129, 0.2) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px solid rgba(255, 255, 255, 0.5);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-SPAN_63*/

.vivid-SPAN_63:after {
                                            color: rgba(255, 255, 255, 0.5);
        text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-SPAN_63:after*/

.vivid-SPAN_63:before {
                                            color: rgba(255, 255, 255, 0.5);
        text-decoration: none solid rgba(255, 255, 255, 0.5);
        border: 0px solid rgba(255, 255, 255, 0.5);
    font: 500 16px / 22px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.5) none 0px;
}/*.vivid-SPAN_63:before*/

.vivid-DIV_64 {
    align-items: center;
    bottom: 0px;
    color: rgb(255, 255, 255);
    column-gap: 10px;
    display: flex;
    height: 64.8px;
    justify-content: end;
    min-height: auto;
    min-width: auto;
    padding-block-end: 14px;
    padding-block-start: 14px;
    padding-inline-end: 20px;
    padding-inline-start: 20px;
    position: sticky;
    row-gap: 0px;
    text-decoration: none solid rgb(255, 255, 255);
    width: 1062.4px;
    z-index: 101;
    background: rgb(38, 38, 38) none repeat scroll 0% 0% / auto padding-box border-box;
    border-top: 0.8px solid rgba(255, 255, 255, 0.08);
    border-right: 0px solid rgb(255, 255, 255);
    border-bottom: 0px solid rgb(255, 255, 255);
    border-left: 0px solid rgb(255, 255, 255);
    border-radius: 0px 0px 8px 8px;
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    padding: 14px 20px;
    width: 100%;
}/*.vivid-DIV_64*/

.vivid-DIV_64:after {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_64:after*/

.vivid-DIV_64:before {
                                            color: rgb(255, 255, 255);
        display: block;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-DIV_64:before*/

.vivid-BUTTON_65 {
    align-items: normal;
    appearance: none;
                                                                                color: rgb(255, 255, 255);
        cursor: pointer;
    display: block;
    height: 26px;
            min-height: auto;
        min-width: auto;
    padding-inline-end: 14px;
    padding-inline-start: 14px;
        text-align: start;
    text-decoration: none solid rgb(255, 255, 255);
            width: 51.675px;
    background: rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    border-radius: 3px;
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    padding: 1px 14px;
}/*.vivid-BUTTON_65*/

.vivid-BUTTON_65:after {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    text-align: start;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-BUTTON_65:after*/

.vivid-BUTTON_65:before {
                                            color: rgb(255, 255, 255);
        cursor: pointer;
    text-align: start;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-BUTTON_65:before*/

.vivid-P_66 {
                                                color: rgb(192, 192, 192);
                                                cursor: pointer;
                                                height: 26px;
                                                margin-block-end: 0px;
                                                margin-block-start: 0px;
                                                text-decoration: none solid rgb(192, 192, 192);
                                                text-wrap: nowrap;
                                                user-select: none;
                                                width: 51.675px;
                                                border: 0px solid rgb(192, 192, 192);
                                                font: 600 14px / 26px Inter, sans-serif;
                                                margin: 0px;
                                                outline: rgb(192, 192, 192) none 0px;
                                                left: -14px;
                                                position: relative;
}/*.vivid-P_66*/

.vivid-P_66:after {
                                            color: rgb(192, 192, 192);
        cursor: pointer;
    text-decoration: none solid rgb(192, 192, 192);
        text-wrap: nowrap;
    user-select: none;
    border: 0px solid rgb(192, 192, 192);
    font: 600 14px / 26px Inter, sans-serif;
    outline: rgb(192, 192, 192) none 0px;
}/*.vivid-P_66:after*/

.vivid-P_66:before {
                                            color: rgb(192, 192, 192);
        cursor: pointer;
    text-decoration: none solid rgb(192, 192, 192);
        text-wrap: nowrap;
    user-select: none;
    border: 0px solid rgb(192, 192, 192);
    font: 600 14px / 26px Inter, sans-serif;
    outline: rgb(192, 192, 192) none 0px;
}/*.vivid-P_66:before*/

.vivid-BUTTON_67 {
    align-items: normal;
    appearance: none;
                                                                                color: rgb(255, 255, 255);
        cursor: not-allowed;
    display: block;
    height: 26px;
            min-height: auto;
        min-width: auto;
    opacity: 0.2;
    padding-block-end: 5px;
    padding-block-start: 5px;
    padding-inline-end: 18px;
    padding-inline-start: 18px;
        text-align: start;
    text-decoration: none solid rgb(255, 255, 255);
            width: 103.125px;
    background: rgb(7, 73, 165) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    border-radius: 4px;
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    padding: 5px 18px;
}/*.vivid-BUTTON_67*/

.vivid-BUTTON_67:after {
                                            color: rgb(255, 255, 255);
        cursor: not-allowed;
    text-align: start;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-BUTTON_67:after*/

.vivid-BUTTON_67:before {
                                            color: rgb(255, 255, 255);
        cursor: not-allowed;
    text-align: start;
    text-decoration: none solid rgb(255, 255, 255);
        border: 0px solid rgb(255, 255, 255);
    font: 16px Inter, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.vivid-BUTTON_67:before*/

.vivid-P_68 {
                                                color: rgba(255, 255, 255, 0.9);
                                                cursor: not-allowed;
                                                height: 26px;
                                                margin-block-end: 0px;
                                                margin-block-start: 0px;
                                                text-decoration: none solid rgba(255, 255, 255, 0.9);
                                                text-wrap: nowrap;
                                                user-select: none;
                                                width: 103.125px;
                                                border: 0px solid rgba(255, 255, 255, 0.9);
                                                font: 600 14px / 26px Inter, sans-serif;
                                                margin: 0px;
                                                outline: rgba(255, 255, 255, 0.9) none 0px;
                                                position: relative;
                                                right: 18px;
                                                top: -4px;
}/*.vivid-P_68*/

.vivid-P_68:after {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: not-allowed;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    user-select: none;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 600 14px / 26px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-P_68:after*/

.vivid-P_68:before {
                                            color: rgba(255, 255, 255, 0.9);
        cursor: not-allowed;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
        text-wrap: nowrap;
    user-select: none;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 600 14px / 26px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.vivid-P_68:before*/




@media (max-width: 768px) {
    .vivid-SPAN_62 {
        font: 500 14px / 22px Inter, sans-serif;
    }
}




/*vivid end here  */    



/*recom start here  */ 

.recom-DIV_1 {
    z-index: 2;
    position: absolute;
    block-size: 22px;
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    height: 22px;
    inline-size: 56px;
    margin-inline-end: 4px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 28px 12px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 28px 12px;
    width: 56px;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    margin: 0px 4px 0px 0px;
    outline: rgb(151, 151, 151) none 0px;
    left: 122px;
}/*.recom-DIV_1*/

.recom-DIV_1:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-DIV_1:after*/

.recom-DIV_1:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-DIV_1:before*/

.recom-SPAN_2 {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: not-allowed;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-SPAN_2*/

.recom-SPAN_2:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: not-allowed;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-SPAN_2:after*/

.recom-SPAN_2:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: not-allowed;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-SPAN_2:before*/

.recom-svg_3 {
    border-radius: 8px;
    border: 1px solid rgb(222, 222, 222);
    transform: translate(-2px, 2px);
    position: relative;
    right: 113px;
    block-size: 22px;
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    box-sizing: border-box;
    caret-color: rgb(194, 194, 194);
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    display: inline-block;
    fill: none;
    height: 22px;
    inline-size: 22px;
    overflow-clip-margin: content-box;
    perspective-origin: 12px 12px;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    transform-origin: 12px 12px;
    vertical-align: middle;
    width: 22px;
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
    overflow: hidden;
    background: #7f7f7f;
    cursor: pointer;
}/*.recom-svg_3*/

.recom-svg_3:hover {
    background-color: red;
}


.recom-svg_7:hover {
    background-color: #006a98;

}

.recom-svg_3:active, .recom-svg_3:focus {
    background-color: red;
}

.recom-svg_7:active, .recom-svg_7:focus {
    background-color: #006a98;
}

.recom-svg_3:after {
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    fill: none;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-svg_3:after*/

.recom-svg_3:before {
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    fill: none;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-svg_3:before*/

.recom-path_4 {
    transform: scale(0.7) translate(2px, 2px);
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    clip-rule: evenodd;
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: pointer;
    d: path("M15.429 11.286A3.424 3.424 0 0112 14.714a3.424 3.424 0 01-3.429-3.428V4.429A3.424 3.424 0 0112 1a3.424 3.424 0 013.429 3.429v6.857zM12 17a5.716 5.716 0 005.714-5.714H20c0 4.034-2.983 7.348-6.857 7.908v3.52h-2.286v-3.52C6.983 18.634 4 15.32 4 11.286h2.286A5.716 5.716 0 0012 17z");
    fill: rgb(255 255 255);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-path_4*/

.recom-path_4:after {
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    clip-rule: evenodd;
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    fill: rgb(194, 194, 194);
    fill-rule: evenodd;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-path_4:after*/

.recom-path_4:before {
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    clip-rule: evenodd;
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    fill: rgb(194, 194, 194);
    fill-rule: evenodd;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-path_4:before*/

.recom-path_5 {
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    clip-rule: evenodd;
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    d: path("M 17 0.282 V 1.065 A 3.5 3.5 0 0 1 17.984 7.921 C 17.709 8.004 17.437 7.781 17.437 7.496 C 17.437 7.308 17.555 7.133 17.739 7.081 A 2.63 2.63 0 0 0 19.625 4.565 A 2.627 2.627 0 0 0 17 1.94 V 2.723 A 0.221 0.221 0 0 1 16.624 2.881 L 15.403 1.66 A 0.217 0.217 0 0 1 15.403 1.35 L 16.628 0.128 A 0.217 0.217 0 0 1 17 0.282 Z M 14.896 2.995 A 2.624 2.624 0 0 0 16.26 7.08 A 0.428 0.428 0 0 1 16.562 7.496 C 16.562 7.78 16.29 8.003 16.015 7.92 A 3.496 3.496 0 0 1 14.2 2.465 A 0.44 0.44 0 0 1 14.856 2.422 A 0.44 0.44 0 0 1 14.896 2.995 Z");
    fill: rgb(194, 194, 194);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-path_5*/

.recom-path_5:after {
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    clip-rule: evenodd;
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    fill: rgb(194, 194, 194);
    fill-rule: evenodd;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-path_5:after*/

.recom-path_5:before {
    border-block-end-color: rgb(194, 194, 194);
    border-block-start-color: rgb(194, 194, 194);
    border-inline-end-color: rgb(194, 194, 194);
    border-inline-start-color: rgb(194, 194, 194);
    caret-color: rgb(194, 194, 194);
    clip-rule: evenodd;
    color: rgb(194, 194, 194);
    column-rule-color: rgb(194, 194, 194);
    cursor: not-allowed;
    fill: rgb(194, 194, 194);
    fill-rule: evenodd;
    text-decoration: none solid rgb(194, 194, 194);
    text-emphasis-color: rgb(194, 194, 194);
    text-size-adjust: 100%;
    border: 0px none rgb(194, 194, 194);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(194, 194, 194) none 0px;
}/*.recom-path_5:before*/

.recom-SPAN_6 {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    margin-inline-start: 8px;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    margin: 0px 0px 0px 8px;
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-SPAN_6*/

.recom-SPAN_6:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-SPAN_6:after*/

.recom-SPAN_6:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 18.4px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-SPAN_6:before*/

.recom-svg_7 {
    transform: translate(3px, 2px);
    position: relative;
    block-size: 22px;
    border-block-end-color: rgb(222, 222, 222);
    border-block-end-style: solid;
    border-block-end-width: 1px;
    border-block-start-color: rgb(222, 222, 222);
    border-block-start-style: solid;
    border-block-start-width: 1px;
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(222, 222, 222);
    border-inline-end-style: solid;
    border-inline-end-width: 1px;
    border-inline-start-color: rgb(222, 222, 222);
    border-inline-start-style: solid;
    border-inline-start-width: 1px;
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    box-sizing: border-box;
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    display: inline-block;
    fill: none;
    height: 22px;
    inline-size: 22px;
    overflow-clip-margin: content-box;
    perspective-origin: 12px 12px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 12px 12px;
    vertical-align: middle;
    width: 22px;
    border: 1px solid rgb(222, 222, 222);
    border-radius: 8px;
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
    overflow: hidden;
    background-color: #7f7f7f;
}/*.recom-svg_7*/

.recom-svg_7:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-svg_7:after*/

.recom-svg_7:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-svg_7:before*/

.recom-path_8 {
    transform: scale(0.8) translate(1px, 1px);
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    d: path("M 6 10 C 4.9 10 4 10.9 4 12 S 4.9 14 6 14 S 8 13.1 8 12 S 7.1 10 6 10 Z M 18 10 C 16.9 10 16 10.9 16 12 S 16.9 14 18 14 S 20 13.1 20 12 S 19.1 10 18 10 Z M 12 10 C 10.9 10 10 10.9 10 12 S 10.9 14 12 14 S 14 13.1 14 12 S 13.1 10 12 10 Z");
    fill: rgb(255 255 255);
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-path_8*/

.recom-path_8:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-path_8:after*/

.recom-path_8:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 16px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.recom-path_8:before*/




/*recom end here  */  


/*recom start here  */
.record-D_1 {
    align-items: center;
    block-size: 46px;
    border-end-end-radius: 35px;
    border-end-start-radius: 35px;
    border-start-end-radius: 35px;
    border-start-start-radius: 35px;
    bottom: 0px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 46px;
    inline-size: 94px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    justify-content: center;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: 94px;
    min-width: 94px;
    padding-inline-end: 10px;
    padding-inline-start: 10px;
    perspective-origin: 47px 23px;
    position: relative;
    right: 0px;
    top: 0px;
    transform-origin: 47px 23px;
    user-select: none;
    width: 94px;
    background: rgb(0 0 0 / 62%) none repeat scroll 0% 0% / auto padding-box border-box;
    border-radius: 35px;
    font: 0px "Open Sans", sans-serif;
    padding: 0px 10px;
    transition: all 0.2s ease 0s;
    z-index: 2;
    transform: scale(0.6) translate(-230px, -10px);
}/*.record-D_1*/

.record-D_1:after {
    cursor: pointer;
    display: block;
    user-select: none;
    font: 0px "Open Sans", sans-serif;
}/*.record-D_1:after*/

.record-D_1:before {
    cursor: pointer;
    display: block;
    user-select: none;
    font: 0px "Open Sans", sans-serif;
}/*.record-D_1:before*/

.record-I_2 {
    block-size: 28px;
    border-end-end-radius: 50%;
    border-end-start-radius: 50%;
    border-start-end-radius: 50%;
    border-start-start-radius: 50%;
    bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    inline-size: 28px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 14px 14px;
    position: relative;
    right: 0px;
    top: 0px;
    transform-origin: 14px 14px;
    transition-behavior: normal, normal;
    user-select: none;
    width: 28px;
    background: rgb(255, 0, 51) none repeat scroll 0% 0% / auto padding-box border-box;
    border-radius: 50%;
    font: italic 0px "Open Sans", sans-serif;
    transition: background-color 0.2s ease 0s, opacity 0.2s ease 0s;
    transform: scale(1) translate(-5px, 7px);
}/*.record-I_2*/

.record-I_2:after {
    cursor: pointer;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-I_2:after*/

.record-I_2:before {
    cursor: pointer;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-I_2:before*/

.record-I_3 {
    block-size: 10px;
    border-end-end-radius: 2px;
    border-end-start-radius: 2px;
    border-start-end-radius: 2px;
    border-start-start-radius: 2px;
    bottom: 4px;
    cursor: pointer;
    display: block;
    height: 10px;
    inline-size: 10px;
    inset-block-end: 4px;
    inset-block-start: 14px;
    inset-inline-end: 4px;
    inset-inline-start: 14px;
    left: 14px;
    perspective-origin: 5px 5px;
    position: absolute;
    right: 4px;
    top: 14px;
    transform: matrix(1, 0, 0, 1, -5, -5);
    transform-origin: 5px 5px;
    user-select: none;
    width: 10px;
    background: rgb(22, 37, 70) none repeat scroll 0% 0% / auto padding-box border-box;
    border-radius: 2px;
    font: italic 0px "Open Sans", sans-serif;
    transition: all 0.2s ease 0s;
}/*.record-I_3*/

.record-I_3:after {
    cursor: pointer;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-I_3:after*/

.record-I_3:before {
    cursor: pointer;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-I_3:before*/

.record-svg_4 {
    block-size: 19px;
    bottom: -5px;
    cursor: pointer;
    display: block;
    height: 19px;
    inline-size: 14px;
    inset-block-end: -5px;
    inset-block-start: 14px;
    inset-inline-end: 0px;
    inset-inline-start: 14px;
    left: 14px;
    opacity: 0;
    overflow-clip-margin: content-box;
    perspective-origin: 7px 9.5px;
    position: absolute;
    right: 0px;
    top: 14px;
    transform: matrix(1, 0, 0, 1, -7, -9.5);
    transform-origin: 7px 9.5px;
    user-select: none;
    width: 14px;
    font: italic 0px "Open Sans", sans-serif;
    overflow: hidden;
    transition: opacity 0.2s ease 0s;
}/*.record-svg_4*/

.record-svg_4:after {
    cursor: pointer;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-svg_4:after*/

.record-svg_4:before {
    cursor: pointer;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-svg_4:before*/

.record-g_5 {
    cursor: pointer;
    fill: none;
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    transform-origin: 0px 0px;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-g_5*/

.record-g_5:after {
    cursor: pointer;
    fill: none;
    fill-rule: evenodd;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-g_5:after*/

.record-g_5:before {
    cursor: pointer;
    fill: none;
    fill-rule: evenodd;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-g_5:before*/

.record-path_6 {
    cursor: pointer;
    d: path("M 7 12 C 8.66 12 9.99 10.66 9.99 9 L 10 3 C 10 1.34 8.66 0 7 0 C 5.34 0 4 1.34 4 3 L 4 9 C 4 10.66 5.34 12 7 12 Z M 12.3 9 C 12.3 12 9.76 14.1 7 14.1 C 4.24 14.1 1.7 12 1.7 9 L 0 9 C 0 12.41 2.72 15.23 6 15.72 L 6 19 L 8 19 L 8 15.72 C 11.28 15.24 14 12.42 14 9 L 12.3 9 Z");
    fill: rgb(255, 255, 255);
    perspective-origin: 0px 0px;
    transform-origin: 0px 0px;
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-path_6*/

.record-path_6:after {
    cursor: pointer;
    fill: rgb(255, 255, 255);
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-path_6:after*/

.record-path_6:before {
    cursor: pointer;
    fill: rgb(255, 255, 255);
    user-select: none;
    font: italic 0px "Open Sans", sans-serif;
}/*.record-path_6:before*/

.record-D_7 {
    block-size: 15.2px;
    border-block-end-color: rgb(255, 0, 51);
    border-block-start-color: rgb(255, 0, 51);
    border-inline-end-color: rgb(255, 0, 51);
    border-inline-start-color: rgb(255, 0, 51);
    caret-color: rgb(255, 0, 51);
    color: rgb(255, 0, 51);
    column-rule-color: rgb(255, 0, 51);
    cursor: pointer;
    height: 15.2px;
    inline-size: 32.5375px;
    margin-inline-start: 5px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 16.2625px 7.6px;
    text-align: center;
    text-decoration: none solid rgb(255, 0, 51);
    text-emphasis-color: rgb(255, 0, 51);
    transform-origin: 16.2687px 7.6px;
    user-select: none;
    width: 32.5375px;
    border: 0px none rgb(255, 0, 51);
    font: 13px "Open Sans", sans-serif;
    margin: 0px 0px 0px 5px;
    outline: rgb(255, 0, 51) none 0px;
    transition: opacity 0.2s ease 0s;
    transform: scale(1.5) translate(20px, -9px);
}/*.record-D_7*/

.record-D_7:after {
    border-block-end-color: rgb(255, 0, 51);
    border-block-start-color: rgb(255, 0, 51);
    border-inline-end-color: rgb(255, 0, 51);
    border-inline-start-color: rgb(255, 0, 51);
    caret-color: rgb(255, 0, 51);
    color: rgb(255, 0, 51);
    column-rule-color: rgb(255, 0, 51);
    cursor: pointer;
    text-align: center;
    text-decoration: none solid rgb(255, 0, 51);
    text-emphasis-color: rgb(255, 0, 51);
    user-select: none;
    border: 0px none rgb(255, 0, 51);
    font: 13px "Open Sans", sans-serif;
    outline: rgb(255, 0, 51) none 0px;
}/*.record-D_7:after*/

.record-D_7:before {
    border-block-end-color: rgb(255, 0, 51);
    border-block-start-color: rgb(255, 0, 51);
    border-inline-end-color: rgb(255, 0, 51);
    border-inline-start-color: rgb(255, 0, 51);
    caret-color: rgb(255, 0, 51);
    color: rgb(255, 0, 51);
    column-rule-color: rgb(255, 0, 51);
    cursor: pointer;
    text-align: center;
    text-decoration: none solid rgb(255, 0, 51);
    text-emphasis-color: rgb(255, 0, 51);
    user-select: none;
    border: 0px none rgb(255, 0, 51);
    font: 13px "Open Sans", sans-serif;
    outline: rgb(255, 0, 51) none 0px;
}/*.record-D_7:before*/

.record-D_8 {
    block-size: 46px;
    border-end-end-radius: 22.5px;
    border-end-start-radius: 22.5px;
    border-start-end-radius: 22.5px;
    border-start-start-radius: 22.5px;
    bottom: 0px;
    cursor: pointer;
    height: 46px;
    inline-size: 0px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    max-inline-size: 0px;
    max-width: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 0px 23px;
    position: relative;
    right: 0px;
    top: 0px;
    transform-origin: 0px 23px;
    user-select: none;
    width: 0px;
    border-radius: 22.5px;
    font: 0px "Open Sans", sans-serif;
    overflow: hidden;
    transition: all 0.2s ease 0s;
}/*.record-D_8*/

.record-D_8:after {
    cursor: pointer;
    user-select: none;
    font: 0px "Open Sans", sans-serif;
}/*.record-D_8:after*/

.record-D_8:before {
    cursor: pointer;
    user-select: none;
    font: 0px "Open Sans", sans-serif;
}/*.record-D_8:before*/

.record-D_9 {
    block-size: 46px;
    bottom: 0px;
    cursor: pointer;
    height: 46px;
    inline-size: 46px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: -46px;
    left: -46px;
    perspective-origin: 23px 23px;
    position: absolute;
    right: 0px;
    top: 0px;
    transform: matrix(1, 0, 0, 1, 40.679, 0);
    transform-origin: 23px 23px;
    user-select: none;
    width: 46px;
    animation: 1s linear 0s infinite normal none running PROCESSING-ANIMATION;
    background: rgba(0, 0, 0, 0) repeating-linear-gradient(-65deg, rgb(232, 232, 233), rgb(232, 232, 233) 10px, rgb(255, 255, 255) 10px, rgb(255, 255, 255) 20px) repeat scroll 0% 0% / auto padding-box border-box;
    font: 0px "Open Sans", sans-serif;
}/*.record-D_9*/

.record-D_9:after {
    cursor: pointer;
    user-select: none;
    font: 0px "Open Sans", sans-serif;
}/*.record-D_9:after*/

.record-D_9:before {
    cursor: pointer;
    user-select: none;
    font: 0px "Open Sans", sans-serif;
}/*.record-D_9:before*/

.record-D_10 {
    block-size: 46px;
    border-block-end-color: rgb(39, 42, 48);
    border-block-start-color: rgb(39, 42, 48);
    border-inline-end-color: rgb(39, 42, 48);
    border-inline-start-color: rgb(39, 42, 48);
    bottom: 0px;
    caret-color: rgb(39, 42, 48);
    color: rgb(39, 42, 48);
    column-rule-color: rgb(39, 42, 48);
    cursor: pointer;
    height: 46px;
    inline-size: 0px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    perspective-origin: 0px 23px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(39, 42, 48);
    text-emphasis-color: rgb(39, 42, 48);
    text-wrap: nowrap;
    top: 0px;
    transform-origin: 0px 23px;
    user-select: none;
    width: 0px;
    border: 0px none rgb(39, 42, 48);
    font: 14px / 46px "Open Sans", sans-serif;
    outline: rgb(39, 42, 48) none 0px;
}/*.record-D_10*/

.record-D_10:after {
    border-block-end-color: rgb(39, 42, 48);
    border-block-start-color: rgb(39, 42, 48);
    border-inline-end-color: rgb(39, 42, 48);
    border-inline-start-color: rgb(39, 42, 48);
    caret-color: rgb(39, 42, 48);
    color: rgb(39, 42, 48);
    column-rule-color: rgb(39, 42, 48);
    cursor: pointer;
    text-decoration: none solid rgb(39, 42, 48);
    text-emphasis-color: rgb(39, 42, 48);
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(39, 42, 48);
    font: 14px / 46px "Open Sans", sans-serif;
    outline: rgb(39, 42, 48) none 0px;
}/*.record-D_10:after*/

.record-D_10:before {
    border-block-end-color: rgb(39, 42, 48);
    border-block-start-color: rgb(39, 42, 48);
    border-inline-end-color: rgb(39, 42, 48);
    border-inline-start-color: rgb(39, 42, 48);
    caret-color: rgb(39, 42, 48);
    color: rgb(39, 42, 48);
    column-rule-color: rgb(39, 42, 48);
    cursor: pointer;
    text-decoration: none solid rgb(39, 42, 48);
    text-emphasis-color: rgb(39, 42, 48);
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(39, 42, 48);
    font: 14px / 46px "Open Sans", sans-serif;
    outline: rgb(39, 42, 48) none 0px;
}/*.record-D_10:before*/

.record-S_11 {
    block-size: 46px;
    border-block-end-color: rgb(39, 42, 48);
    border-block-start-color: rgb(39, 42, 48);
    border-inline-end-color: rgb(39, 42, 48);
    border-inline-start-color: rgb(39, 42, 48);
    bottom: 0px;
    caret-color: rgb(39, 42, 48);
    color: rgb(39, 42, 48);
    column-rule-color: rgb(39, 42, 48);
    cursor: pointer;
    display: block;
    float: left;
    height: 46px;
    inline-size: 80.925px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    opacity: 0.6;
    padding-inline-end: 11px;
    padding-inline-start: 22px;
    perspective-origin: 56.9625px 23px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(39, 42, 48);
    text-emphasis-color: rgb(39, 42, 48);
    text-wrap: nowrap;
    top: 0px;
    transform-origin: 56.9625px 23px;
    user-select: none;
    width: 80.925px;
    border: 0px none rgb(39, 42, 48);
    font: 14px / 46px "Open Sans", sans-serif;
    outline: rgb(39, 42, 48) none 0px;
    padding: 0px 11px 0px 22px;
}/*.record-S_11*/

.record-S_11:after {
    border-block-end-color: rgb(39, 42, 48);
    border-block-start-color: rgb(39, 42, 48);
    border-inline-end-color: rgb(39, 42, 48);
    border-inline-start-color: rgb(39, 42, 48);
    caret-color: rgb(39, 42, 48);
    color: rgb(39, 42, 48);
    column-rule-color: rgb(39, 42, 48);
    cursor: pointer;
    text-decoration: none solid rgb(39, 42, 48);
    text-emphasis-color: rgb(39, 42, 48);
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(39, 42, 48);
    font: 14px / 46px "Open Sans", sans-serif;
    outline: rgb(39, 42, 48) none 0px;
}/*.record-S_11:after*/

.record-S_11:before {
    border-block-end-color: rgb(39, 42, 48);
    border-block-start-color: rgb(39, 42, 48);
    border-inline-end-color: rgb(39, 42, 48);
    border-inline-start-color: rgb(39, 42, 48);
    caret-color: rgb(39, 42, 48);
    color: rgb(39, 42, 48);
    column-rule-color: rgb(39, 42, 48);
    cursor: pointer;
    text-decoration: none solid rgb(39, 42, 48);
    text-emphasis-color: rgb(39, 42, 48);
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(39, 42, 48);
    font: 14px / 46px "Open Sans", sans-serif;
    outline: rgb(39, 42, 48) none 0px;
}/*.record-S_11:before*/


/*AllEdit appear start   */

.allEdit-D_1 {
    /* block-size: 132px; */
    /* bottom: 331.2px; */
    /* height: 132px; */
    /* inline-size: 164.363px; */
    /* inset-block-end: 331.2px; */
    /* inset-block-start: 0px; */
    /* inset-inline-end: 1354.84px; */
    /* inset-inline-start: 0px; */
    left: 0px;
    /* perspective-origin: 82.175px 66px; */
    position: fixed;
    /* right: 1354.84px; */
    /* text-size-adjust: 100%; */
    top: 0px;
    /* transform: matrix(1, 0, 0, 1, 184.55, -5.35); */
    /* transform-origin: 82.1813px 66px; */
    /* width: 164.363px; */
    z-index: 10555555555555555555555555555555555;
    font: 12px / 13.8px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
}/*.allEdit-D_1*/

@media screen and (max-width: 670px) {
  .allEdit-D_1{
    left: -169px;
  }
}

.allEdit-D_1:after {
    text-size-adjust: 100%;
    font: 12px / 13.8px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
}/*.allEdit-D_1:after*/

.allEdit-D_1:before {
    text-size-adjust: 100%;
    font: 12px / 13.8px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
}/*.allEdit-D_1:before*/

.allEdit-D_2 {
    block-size: 120px;
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    height: 120px;
    inline-size: 164.363px;
    padding-block-end: 6px;
    padding-block-start: 6px;
    perspective-origin: 82.175px 66px;
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    transform-origin: 82.1813px 66px;
    width: 164.363px;
    background: rgb(34, 34, 34) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(215, 209, 209);
    border-radius: 8px;
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
    padding: 6px 0px;
    transform: translate(16px, -33px);
}/*.allEdit-D_2*/

.allEdit-D_2:after {
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
}/*.allEdit-D_2:after*/

.allEdit-D_2:before {
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
}/*.allEdit-D_2:before*/

.allEdit-D_3, .allEdit-D_8, .allEdit-D_12, .allEdit-D_16, .allEdit-D_20 {
    block-size: 18px;
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    cursor: pointer;
    height: 22px;
    inline-size: 152.363px;
    padding-block-end: 3px;
    padding-block-start: 3px;
    padding-inline-end: 6px;
    padding-inline-start: 6px;
    perspective-origin: 82.175px 12px;
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    transform-origin: 82.1813px 12px;
    width: 152.363px;
    background: rgb(34, 34, 34) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
    padding: 3px 6px;
}/*.allEdit-D_3, .allEdit-D_8, .allEdit-D_12, .allEdit-D_16, .allEdit-D_20*/

.allEdit-D_3:after, .allEdit-D_8:after, .allEdit-D_12:after, .allEdit-D_16:after, .allEdit-D_20:after {
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    cursor: pointer;
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
}/*.allEdit-D_3:after, .allEdit-D_8:after, .allEdit-D_12:after, .allEdit-D_16:after, .allEdit-D_20:after*/

.allEdit-D_3:before, .allEdit-D_8:before, .allEdit-D_12:before, .allEdit-D_16:before, .allEdit-D_20:before {
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    cursor: pointer;
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
}/*.allEdit-D_3:before, .allEdit-D_8:before, .allEdit-D_12:before, .allEdit-D_16:before, .allEdit-D_20:before*/

.allEdit-svg_4, .allEdit-svg_9, .allEdit-svg_13, .allEdit-svg_17, .allEdit-svg_21 {
    block-size: 18px;
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    display: inline-block;
    fill: none;
    height: 18px;
    inline-size: 18px;
    margin-inline-end: 6px;
    overflow-clip-margin: content-box;
    perspective-origin: 9px 9px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 9px 9px;
    vertical-align: middle;
    width: 18px;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    margin: 0px 6px 0px 0px;
    outline: rgb(151, 151, 151) none 0px;
    overflow: hidden;
    transform: translate(-1px, -3px);
}/*.allEdit-svg_4, .allEdit-svg_9, .allEdit-svg_13, .allEdit-svg_17, .allEdit-svg_21*/

.allEdit-svg_4:after, .allEdit-svg_9:after, .allEdit-svg_13:after, .allEdit-svg_17:after, .allEdit-svg_21:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-svg_4:after, .allEdit-svg_9:after, .allEdit-svg_13:after, .allEdit-svg_17:after, .allEdit-svg_21:after*/

.allEdit-svg_4:before, .allEdit-svg_9:before, .allEdit-svg_13:before, .allEdit-svg_17:before, .allEdit-svg_21:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-svg_4:before, .allEdit-svg_9:before, .allEdit-svg_13:before, .allEdit-svg_17:before, .allEdit-svg_21:before*/

.allEdit-path_5 {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    d: path("M 15.28 21.902 C 15.943 21.618 16.603 21.324 17.272 21.058 A 0.69 0.69 0 0 1 17.744 21.054 C 18.413 21.321 19.071 21.617 19.734 21.903 C 20.252 22.126 20.462 21.965 20.416 21.383 C 20.358 20.646 20.291 19.909 20.258 19.169 A 0.897 0.897 0 0 1 20.432 18.636 C 20.879 18.048 21.352 17.483 21.814 16.907 C 22.124 16.521 22.047 16.253 21.586 16.132 C 20.88 15.947 20.169 15.786 19.467 15.587 A 0.778 0.778 0 0 1 19.057 15.274 C 18.652 14.628 18.275 13.962 17.883 13.306 C 17.64 12.9 17.371 12.898 17.133 13.3 C 16.749 13.948 16.364 14.596 15.998 15.254 A 0.666 0.666 0 0 1 15.531 15.608 C 14.821 15.776 14.114 15.953 13.408 16.138 C 12.953 16.256 12.88 16.51 13.183 16.885 C 13.646 17.458 14.103 18.039 14.583 18.595 C 14.763 18.803 14.797 19.008 14.773 19.267 C 14.704 19.981 14.654 20.697 14.597 21.412 C 14.573 21.98 14.769 22.121 15.28 21.902 Z");
    fill: rgb(151, 151, 151);
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_5*/

.allEdit-path_5:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_5:after*/

.allEdit-path_5:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_5:before*/

.allEdit-path_6 {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    clip-rule: evenodd;
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    d: path("M 2 7 A 2 2 0 0 1 4 5 H 18 A 2 2 0 0 1 20 7 V 14.555 A 1.088 1.088 0 0 1 19.75 14.285 A 73.543 73.543 0 0 1 18.635 12.428 C 18.442 12.099 18.249 11.77 18.053 11.442 C 17.703 10.856 17.313 10.852 16.97 11.433 L 16.897 11.555 C 16.367 12.451 15.837 13.346 15.33 14.255 A 0.962 0.962 0 0 1 14.655 14.767 C 13.631 15.01 12.609 15.267 11.59 15.532 C 10.932 15.702 10.826 16.07 11.264 16.612 L 11.739 17.202 C 12.225 17.807 12.711 18.412 13.216 19 H 4 A 2 2 0 0 1 2 17 V 7 Z M 14.4 11.654 A 0.4 0.4 0 0 1 14.4 12.346 L 9.6 15.118 A 0.4 0.4 0 0 1 9 14.771 V 9.23 A 0.4 0.4 0 0 1 9.6 8.883 L 14.4 11.655 Z");
    fill: rgb(151, 151, 151);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_6*/

.allEdit-path_6:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    clip-rule: evenodd;
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    fill-rule: evenodd;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_6:after*/

.allEdit-path_6:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    clip-rule: evenodd;
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    fill-rule: evenodd;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_6:before*/

.allEdit-S_7, .allEdit-S_11, .allEdit-S_15, .allEdit-S_19, .allEdit-S_23 {
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    cursor: pointer;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
}/*.allEdit-S_7, .allEdit-S_11, .allEdit-S_15, .allEdit-S_19, .allEdit-S_23*/

.allEdit-S_7:after, .allEdit-S_11:after, .allEdit-S_15:after, .allEdit-S_19:after, .allEdit-S_23:after {
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    cursor: pointer;
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
}/*.allEdit-S_7:after, .allEdit-S_11:after, .allEdit-S_15:after, .allEdit-S_19:after, .allEdit-S_23:after*/

.allEdit-S_7:before, .allEdit-S_11:before, .allEdit-S_15:before, .allEdit-S_19:before, .allEdit-S_23:before {
    border-block-end-color: rgb(215, 209, 209);
    border-block-start-color: rgb(215, 209, 209);
    border-inline-end-color: rgb(215, 209, 209);
    border-inline-start-color: rgb(215, 209, 209);
    caret-color: rgb(215, 209, 209);
    color: rgb(215, 209, 209);
    column-rule-color: rgb(215, 209, 209);
    cursor: pointer;
    text-decoration: none solid rgb(215, 209, 209);
    text-emphasis-color: rgb(215, 209, 209);
    text-size-adjust: 100%;
    border: 0px none rgb(215, 209, 209);
    font: 10.5px / 16.5px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(215, 209, 209) none 0px;
}/*.allEdit-S_7:before, .allEdit-S_11:before, .allEdit-S_15:before, .allEdit-S_19:before, .allEdit-S_23:before*/

.allEdit-path_10, .allEdit-path_14 {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    d: path("M 2.25 15.75 L 7.409 10.591 A 2.25 2.25 0 0 1 10.591 10.591 L 15.75 15.75 M 14.25 14.25 L 15.659 12.841 A 2.25 2.25 0 0 1 18.841 12.841 L 21.75 15.75 M 3.75 19.5 H 20.25 A 1.5 1.5 0 0 0 21.75 18 V 6 A 1.5 1.5 0 0 0 20.25 4.5 H 3.75 A 1.5 1.5 0 0 0 2.25 6 V 18 A 1.5 1.5 0 0 0 3.75 19.5 Z M 14.25 8.25 H 14.258 V 8.258 H 14.25 V 8.25 Z M 14.625 8.25 A 0.375 0.375 0 1 1 13.875 8.25 A 0.375 0.375 0 0 1 14.625 8.25 Z");
    fill: rgb(151, 151, 151);
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_10, .allEdit-path_14*/

.allEdit-path_10:after, .allEdit-path_14:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_10:after, .allEdit-path_14:after*/

.allEdit-path_10:before, .allEdit-path_14:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_10:before, .allEdit-path_14:before*/

.allEdit-path_18 {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    d: path("M 5.5 17 A 4.5 4.5 0 0 1 4.06 8.235 A 4.5 4.5 0 0 1 12.362 5.189 A 3.5 3.5 0 0 1 16.866 9.461 A 4 4 0 0 1 15 17 H 5.5 Z M 9.25 14.25 A 0.75 0.75 0 0 0 10.75 14.25 V 9.66 L 12.7 11.76 A 0.75 0.75 0 1 0 13.8 10.74 L 10.55 7.24 A 0.75 0.75 0 0 0 9.45 7.24 L 6.2 10.74 A 0.75 0.75 0 1 0 7.3 11.76 L 9.25 9.66 V 14.25 Z");
    fill: rgb(151, 151, 151);
    perspective-origin: 0px 0px;
    stroke: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_18*/

.allEdit-path_18:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    stroke: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_18:after*/

.allEdit-path_18:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    stroke: rgb(151, 151, 151);
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_18:before*/

.allEdit-path_22 {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    clip-rule: evenodd;
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    d: path("M 14.7 3 A 6.313 6.313 0 0 0 9.102 6.402 A 6.356 6.356 0 0 0 6.402 9.102 A 6.313 6.313 0 0 0 3 14.7 C 3 18.183 5.817 21 9.3 21 A 6.313 6.313 0 0 0 14.898 17.598 A 6.356 6.356 0 0 0 17.598 14.898 A 6.313 6.313 0 0 0 21 9.3 C 21 5.817 18.183 3 14.7 3 Z M 9.3 19.2 A 4.502 4.502 0 0 1 5.7 12 C 5.7 15.483 8.517 18.3 12 18.3 C 11.244 18.867 10.308 19.2 9.3 19.2 Z M 12 16.5 A 4.502 4.502 0 0 1 8.4 9.3 C 8.4 12.774 11.217 15.591 14.7 15.6 C 13.944 16.167 13.008 16.5 12 16.5 Z M 16.23 13.53 A 4.502 4.502 0 0 1 10.47 7.77 A 4.502 4.502 0 0 1 16.23 13.53 Z M 18.3 12 C 18.3 8.526 15.483 5.709 12 5.7 A 4.502 4.502 0 0 1 18.3 12 Z");
    fill: rgb(151, 151, 151);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_22*/

.allEdit-path_22:after {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    clip-rule: evenodd;
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    fill-rule: evenodd;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_22:after*/

.allEdit-path_22:before {
    border-block-end-color: rgb(151, 151, 151);
    border-block-start-color: rgb(151, 151, 151);
    border-inline-end-color: rgb(151, 151, 151);
    border-inline-start-color: rgb(151, 151, 151);
    caret-color: rgb(151, 151, 151);
    clip-rule: evenodd;
    color: rgb(151, 151, 151);
    column-rule-color: rgb(151, 151, 151);
    cursor: pointer;
    fill: rgb(151, 151, 151);
    fill-rule: evenodd;
    text-decoration: none solid rgb(151, 151, 151);
    text-emphasis-color: rgb(151, 151, 151);
    text-size-adjust: 100%;
    border: 0px none rgb(151, 151, 151);
    font: 12px / 0px Arial, sans-serif, Tahoma, Helvetica, "Microsoft Yahei", "Noto Color Emoji";
    outline: rgb(151, 151, 151) none 0px;
}/*.allEdit-path_22:before*/

.allEdit-S_7:hover, .allEdit-S_11:hover, .allEdit-S_15:hover, .allEdit-S_19:hover, .allEdit-S_23:hover {
    color: rgb(255 255 255);
}


/*AllEdit appear end   */

/* duration start*/

.duration-D_1 {
    block-size: 16px;
    border-block-end-color: rgba(255, 255, 255, 0.9);
    border-block-end-style: solid;
    border-block-start-color: rgba(255, 255, 255, 0.9);
    border-block-start-style: solid;
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
    border-inline-end-color: rgba(255, 255, 255, 0.9);
    border-inline-end-style: solid;
    border-inline-start-color: rgba(255, 255, 255, 0.9);
    border-inline-start-style: solid;
    border-start-end-radius: 4px;
    border-start-start-radius: 4px;
    bottom: 4px;
    box-sizing: border-box;
    caret-color: rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.9);
    column-rule-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    height: 16px;
    inline-size: 35.8056px;
    inset-block-end: 4px;
    inset-block-start: 88px;
    inset-inline-end: 4px;
    inset-inline-start: 152.194px;
    left: 152.194px;
    padding-inline-end: 4px;
    padding-inline-start: 4px;
    perspective-origin: 17.9028px 8px;
    position: absolute;
    right: 4px;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
    text-emphasis-color: rgba(255, 255, 255, 0.9);
    text-wrap: nowrap;
    top: 88px;
    transform-origin: 17.9028px 8px;
    width: 35.8056px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px solid rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
    padding: 0px 4px;
    transform: scale(1.2) translate(7px, 37px);
}/*.duration-D_1*/

.duration-D_1:after {
    border-block-end-color: rgba(255, 255, 255, 0.9);
    border-block-end-style: solid;
    border-block-start-color: rgba(255, 255, 255, 0.9);
    border-block-start-style: solid;
    border-inline-end-color: rgba(255, 255, 255, 0.9);
    border-inline-end-style: solid;
    border-inline-start-color: rgba(255, 255, 255, 0.9);
    border-inline-start-style: solid;
    box-sizing: border-box;
    caret-color: rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.9);
    column-rule-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
    text-emphasis-color: rgba(255, 255, 255, 0.9);
    text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.duration-D_1:after*/

.duration-D_1:before {
    border-block-end-color: rgba(255, 255, 255, 0.9);
    border-block-end-style: solid;
    border-block-start-color: rgba(255, 255, 255, 0.9);
    border-block-start-style: solid;
    border-inline-end-color: rgba(255, 255, 255, 0.9);
    border-inline-end-style: solid;
    border-inline-start-color: rgba(255, 255, 255, 0.9);
    border-inline-start-style: solid;
    box-sizing: border-box;
    caret-color: rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.9);
    column-rule-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    text-decoration: none solid rgba(255, 255, 255, 0.9);
    text-emphasis-color: rgba(255, 255, 255, 0.9);
    text-wrap: nowrap;
    border: 0px solid rgba(255, 255, 255, 0.9);
    font: 500 10px / 16px Inter, sans-serif;
    outline: rgba(255, 255, 255, 0.9) none 0px;
}/*.duration-D_1:before*/

/* duration end*/


/*serach bar and confirm new start */


*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box;}
:after,:before{--tw-content:"";}
button,input{-webkit-font-feature-settings:inherit;font-feature-settings:inherit;/* color:inherit; */font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0;}
button{text-transform:none;}
[type=submit],button{-webkit-appearance:button;background-image:none;}
input::placeholder{color:#9ca3af;}
button{cursor:pointer;}
:disabled{cursor:default;}
svg{display:block;vertical-align:middle;}
[type=text]{--tw-shadow:0 0 #0000;-webkit-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem;}
[type=text]:focus{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px;}
input::placeholder{color:#6b7280;opacity:1;}
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;}
.pointer-events-none{pointer-events:none;}
.absolute{position:absolute;}
.relative{position:relative;}
.inset-y-0{bottom:0;top:0;}
.left-0{left:0;}
.z-10{z-index:10;}
.mt-2{margin-top:.5rem;}
.block{display:block;}
.flex{display:flex;}
.h-5{height:1.25rem;}
.w-5{width:1.25rem;}
.w-full{/* width: 100%; */}
.cursor-pointer{cursor:pointer;}
.items-center{align-items:center;}
.items-stretch{align-items:stretch;}
.rounded-md{border-radius:.375rem;margin-left: 1%;margin-right: 1%;}
.rounded-xl{border-radius:.75rem;}
.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem;}
.border{border-width:1px;}
.border-0{border-width:0;}
.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));}
.bg-main-600{--tw-bg-opacity:1;background-color:rgb(38 74 220);}
.px-4{padding-left:1rem;padding-right:1rem;}
.py-1{padding-bottom:.25rem;padding-top:.25rem;}
.pl-10{/* padding-left:2.5rem; */position: relative;width: 100%;}
.pl-3{padding-left:.75rem;position: relative;}
.pr-1{padding-right:.25rem;}
.text-sm{font-size:.875rem;line-height:1.25rem;}
.font-medium{font-weight:500;}
.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));}
.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));}
.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));}
.ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 #0000;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);}
.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);}
.ring-main-600{--tw-ring-opacity:1;--tw-ring-color:rgb(67 80 135);margin-left: 6px;}
.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);}
.placeholder\:text-gray-400::placeholder{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity));}
.hover\:border-gray-300:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));}
.hover\:bg-main-700:hover{--tw-bg-opacity:1;background-color:rgb(61 28 185);}
.hover\:ring-main-700:hover{--tw-ring-opacity:1;--tw-ring-color:rgb(185 28 28/var(--tw-ring-opacity));}
.focus\:border-gray-400:focus{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity));}
.focus\:shadow-sm:focus{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:0 0 #0000,0 0 #0000,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);}
.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px;}
.focus\:ring-0:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 #0000;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);}

/*serach bar and confirm new end


/*! CSS Used from: https://app.ClousB.us/static/css/main.94d0492b.css */
button{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}
button{overflow:visible;}
button{text-transform:none;}
[type=button],button{-webkit-appearance:button;}
:focus{outline:none;}
.ClousB-button{cursor:pointer;box-sizing:border-box;padding:calc(.5em - 1px) calc(1em - 1px);vertical-align:middle;font-size:1rem;line-height:1.5rem;}
.ClousB-button.ClousB-button-only-icon{padding:calc(.5em - 1px);}
.ClousB-button:disabled{cursor:default;}
.ClousB-button .ClousB-button-content{display:flex;align-items:center;}
.ClousB-button .ClousB-button-content>.ClousB-icon{flex:0 0 auto;display:block;font-size:1.5em;margin-right:.5em;}
.ClousB-button .ClousB-button-content>.ClousB-icon:only-child{margin-right:0;}
.ClousB-button.ClousB-button-default{border-radius:8px;}
[data-theme=light] .ClousB-button-default,body .ClousB-button-default{border:1px solid var(--ClousB-gray-5);color:var(--ClousB-gray-9);background-color: white;}
[data-theme=light] .ClousB-button-default svg,body .ClousB-button-default svg{color: black;}
[data-theme=light] .ClousB-button-default:focus,[data-theme=light] .ClousB-button-default:hover,body .ClousB-button-default:focus,body .ClousB-button-default:hover{color:var(--ClousB-blue-5);border:1px solid var(--ClousB-gray-5);}
[data-theme=light] .ClousB-button-default:focus svg,[data-theme=light] .ClousB-button-default:hover svg,body .ClousB-button-default:focus svg,body .ClousB-button-default:hover svg{color: #544b4b;}
[data-theme=light] .ClousB-button-default:active,body .ClousB-button-default:active{color:var(--ClousB-blue-8);border:1px solid var(--ClousB-gray-5);}
[data-theme=light] .ClousB-button-default:active svg,body .ClousB-button-default:active svg{color:var(--ClousB-blue-8);}
[data-theme=light] .ClousB-button-default:disabled,body .ClousB-button-default:disabled{color:var(--ClousB-gray-5);background-color:var(--ClousB-gray-3);border:1px solid var(--ClousB-gray-5);}
[data-theme=light] .ClousB-button-default:disabled svg,body .ClousB-button-default:disabled svg{color:var(--ClousB-gray-5);}
.ClousB-icon{display:inline-block;font-style:normal;vertical-align:middle;font-size:1rem;line-height:0;color:currentColor;}
.ClousB-modal-portal .ClousB-modal .ClousB-modal-close{position:absolute;left:.5rem;top:.5rem;padding:0;border:0;font-size:.875rem;background-color:transparent;}


 /* animation start here */

 .AnimateCa-D_1 {
    backdrop-filter: blur(20px);
    block-size: 428.6px;
    border-block-end-color: rgba(7, 50, 71, 0.06);
    border-block-end-style: solid;
    border-block-end-width: 0.8px;
    border-block-start-color: rgba(7, 50, 71, 0.06);
    border-block-start-style: solid;
    border-block-start-width: 0.8px;
    border-end-end-radius: 16px;
    border-end-start-radius: 16px;
    border-inline-end-color: rgba(7, 50, 71, 0.06);
    border-inline-end-style: solid;
    border-inline-end-width: 0.8px;
    border-inline-start-color: rgba(7, 50, 71, 0.06);
    border-inline-start-style: solid;
    border-inline-start-width: 0.8px;
    border-start-end-radius: 16px;
    border-start-start-radius: 16px;
    box-shadow: rgba(29, 41, 47, 0.12) 0px 6px 32px 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 428.6px;
    inline-size: 270px;
    perspective-origin: 135px 214.3px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 135px 214.3px;
    user-select: none;
    width: 270px;
    background: rgba(255, 255, 255, 0.9) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0.8px solid rgba(7, 50, 71, 0.06);
    border-radius: 16px;
    flex-flow: column nowrap;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
    transform: translate(0px, -110px);
    z-index: 999999999999999999;
}/*.AnimateCa-D_1*/

.AnimateCa-D_1:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_1:after*/

.AnimateCa-D_1:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_1:before*/

.AnimateCa-D_2 {
    align-items: center;
    block-size: 52px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: grab;
    display: flex;
    height: 52px;
    inline-size: 268.4px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    justify-content: space-between;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-inline-end: 15px;
    padding-inline-start: 15px;
    perspective-origin: 134.2px 26px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 134.2px 26px;
    user-select: none;
    width: 268.4px;
    border: 0px none rgb(9, 12, 20);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 0px 15px;
    position: relative;
    width: 100%;
}/*.AnimateCa-D_2*/

.AnimateCa-D_2:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: grab;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_2:after*/

.AnimateCa-D_2:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: grab;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_2:before*/

.AnimateCa-D_3 {
    block-size: 52px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: grab;
    height: 52px;
    inline-size: 76.7125px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 38.35px 26px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 38.3563px 26px;
    user-select: none;
    width: 76.7125px;
    border: 0px none rgb(9, 12, 20);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_3*/

.AnimateCa-D_3:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: grab;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_3:after*/

.AnimateCa-D_3:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: grab;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_3:before*/

.AnimateCa-D_4 {
    align-items: center;
    block-size: 20px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    border-start-end-radius: 4px;
    border-start-start-radius: 4px;
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: flex;
    height: 20px;
    inline-size: 20px;
    justify-content: center;
    margin-inline-start: 141.688px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 10px 10px;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    transform-origin: 10px 10px;
    user-select: none;
    width: 20px;
    border: 0px none rgba(21, 41, 60, 0.5);
    border-radius: 4px;
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 0px 0px 0px 141.688px;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_4*/

.AnimateCa-D_4:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_4:after*/

.AnimateCa-D_4:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_4:before*/

.AnimateCa-svg_5 {
    block-size: 16px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    fill: none;
    height: 16px;
    inline-size: 16px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    overflow-clip-margin: content-box;
    perspective-origin: 8px 8px;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    transform-origin: 8px 8px;
    user-select: none;
    width: 16px;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
    overflow: hidden;
}/*.AnimateCa-svg_5*/

.AnimateCa-svg_5:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-svg_5:after*/

.AnimateCa-svg_5:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-svg_5:before*/

.AnimateCa-g_6 {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    fill: none;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-g_6*/

.AnimateCa-g_6:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-g_6:after*/

.AnimateCa-g_6:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-g_6:before*/

.AnimateCa-path_7 {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    clip-rule: evenodd;
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    d: path("M 10 11.131 L 16.434 17.566 L 17.566 16.434 L 11.13 10 L 17.565 3.566 L 16.433 2.434 L 10 8.87 L 3.566 2.434 L 2.434 3.566 L 8.87 10 L 2.435 16.434 L 3.567 17.566 L 10 11.13 Z");
    fill: rgba(21, 41, 60, 0.5);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-path_7*/

.AnimateCa-path_7:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    clip-rule: evenodd;
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    fill: rgba(21, 41, 60, 0.5);
    fill-rule: evenodd;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-path_7:after*/

.AnimateCa-path_7:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    clip-rule: evenodd;
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    fill: rgba(21, 41, 60, 0.5);
    fill-rule: evenodd;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 700 16px / 52px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-path_7:before*/

.AnimateCa-D_8 {
    block-size: 375px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 375px;
    inline-size: 268.4px;
    max-block-size: 375.6px;
    max-height: 375.6px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 134.2px 187.5px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 134.2px 187.5px;
    user-select: none;
    width: 268.4px;
    border: 0px none rgb(9, 12, 20);
    flex-flow: column nowrap;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_8*/

.AnimateCa-D_8:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_8:after*/

.AnimateCa-D_8:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_8:before*/

.AnimateCa-D_9 {
    block-size: 296.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 296.6px;
    inline-size: 268.4px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-inline-end: 10px;
    padding-inline-start: 16px;
    perspective-origin: 134.2px 148.3px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 134.2px 148.3px;
    user-select: none;
    width: 268.4px;
    border: 0px none rgb(9, 12, 20);
    flex: 1 1 auto;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden scroll;
    padding: 0px 10px 0px 16px;
    width: 100%;
}/*.AnimateCa-D_9*/

.AnimateCa-D_9:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_9:after*/

.AnimateCa-D_9:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_9:before*/

.AnimateCa-D_10 {
    block-size: 296.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 296.6px;
    inline-size: 236.8px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    max-block-size: 100%;
    max-height: 100%;
    perspective-origin: 118.4px 148.3px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 118.4px 148.3px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_10*/

.AnimateCa-D_10:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_10:after*/

.AnimateCa-D_10:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_10:before*/

.AnimateCa-D_11 {
    block-size: 36px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 36px;
    inline-size: 236.8px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    perspective-origin: 118.4px 18px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 118.4px 18px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    border-radius: 8px;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_11*/

.AnimateCa-D_11:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_11:after*/

.AnimateCa-D_11:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_11:before*/

.AnimateCa-D_12 {
    align-items: center;
    block-size: 36px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 36px;
    inline-size: 236.8px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    perspective-origin: 118.4px 18px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 118.4px 18px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
    width: 100%;
}/*.AnimateCa-D_12*/

.AnimateCa-D_12:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_12:after*/

.AnimateCa-D_12:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_12:before*/

.AnimateCa-D_13 {
    block-size: 36px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 36px;
    inline-size: 236.8px;
    justify-content: flex-end;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 118.4px 18px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.4px 18px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    flex: 1 1 0%;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
    width: 100%;
}/*.AnimateCa-D_13*/

.AnimateCa-D_13:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_13:after*/

.AnimateCa-D_13:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_13:before*/

.AnimateCa-D_14 {
    block-size: 36px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-gap: 0px;
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 36px;
    inline-size: 236.8px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 118.4px 18px;
    position: relative;
    right: 0px;
    row-gap: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    top: 0px;
    transform: matrix(1, 0, 0, 1, 0, 0);
    transform-origin: 118.4px 18px;
    user-select: none;
    width: 236.8px;
    background: rgba(51, 102, 128, 0.08) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(9, 12, 20);
    border-radius: 8px;
    font: 12px / 12px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    transition: transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1) 0s;
    width: 100%;
}/*.AnimateCa-D_14*/

.AnimateCa-D_14:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 12px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_14:after*/

.AnimateCa-D_14:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 12px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_14:before*/

.AnimateCa-D_15 {
        align-items: center;
        block-size: 32px;
        border-block-end-color: rgba(21, 41, 60, 0.5);
        border-block-start-color: rgba(21, 41, 60, 0.5);
        border-end-end-radius: 6px;
        border-end-start-radius: 6px;
        border-inline-end-color: rgba(21, 41, 60, 0.5);
        border-inline-start-color: rgba(21, 41, 60, 0.5);
        border-start-end-radius: 6px;
        border-start-start-radius: 6px;
        bottom: 0px;
        box-sizing: border-box;
        caret-color: rgba(21, 41, 60, 0.5);
        color: rgba(21, 41, 60, 0.5);
        column-rule-color: rgba(21, 41, 60, 0.5);
        cursor: pointer;
        display: flex;
        height: 32px;
        inline-size: 74.9375px;
        inset-block-end: 0px;
        inset-block-start: 0px;
        inset-inline-end: 0px;
        inset-inline-start: 0px;
        justify-content: center;
        left: 0px;
        margin-block-end: 2px;
        margin-block-start: 2px;
        margin-inline-end: 2px;
        margin-inline-start: 2px;
        min-block-size: auto;
        min-height: auto;
        min-inline-size: auto;
        min-width: auto;
        padding-inline-end: 4px;
        padding-inline-start: 4px;
        perspective-origin: 37.4625px 16px;
        position: relative;
        right: 0px;
        text-align: center;
        text-decoration: none solid rgba(21, 41, 60, 0.5);
        text-emphasis-color: rgba(21, 41, 60, 0.5);
        text-overflow: ellipsis;
        text-size-adjust: 100%;
        text-wrap: nowrap;
        top: 0px;
        transform-origin: 37.4688px 16px;
        user-select: none;
        width: 74.9375px;
        border: 0px none rgba(21, 41, 60, 0.5);
        border-radius: 6px;
        flex: 1 1 89.3333px;
        font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
        margin: 2px;
        outline: rgba(21, 41, 60, 0.5) none 0px;
        overflow: hidden;
        padding: 0px 4px;
        transition: color 0.2s linear 0s;
        background: white;
}/*.AnimateCa-D_15*/

.AnimateCa-D_15:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_15:after*/

.AnimateCa-D_15:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    opacity: 0;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_15:before*/

.AnimateCa-S_16 {
    align-items: center;
    block-size: 32px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: flex;
    height: 32px;
    inline-size: 66.9375px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 33.4625px 16px;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 33.4688px 16px;
    user-select: none;
    width: 66.9375px;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_16*/

.AnimateCa-S_16:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_16:after*/

.AnimateCa-S_16:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_16:before*/

.AnimateCa-S_17 {
    block-size: 22px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    height: 22px;
    inline-size: 66.9375px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 33.4625px 11px;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-overflow: ellipsis;
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 33.4688px 11px;
    user-select: none;
    width: 66.9375px;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
}/*.AnimateCa-S_17*/

.AnimateCa-S_17:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_17:after*/

.AnimateCa-S_17:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-align: center;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 600 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_17:before*/




.AnimateCa-D_18 {
    align-items: center;
    block-size: 32px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-end-end-radius: 6px;
    border-end-start-radius: 6px;
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    border-start-end-radius: 6px;
    border-start-start-radius: 6px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: flex;
    height: 32px;
    inline-size: 74.9375px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    justify-content: center;
    left: 0px;
    margin-block-end: 2px;
    margin-block-start: 2px;
    margin-inline-end: 2px;
    margin-inline-start: 2px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-inline-end: 4px;
    padding-inline-start: 4px;
    perspective-origin: 37.4625px 16px;
    position: relative;
    right: 0px;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-overflow: ellipsis;
    text-size-adjust: 100%;
    text-wrap: nowrap;
    top: 0px;
    transform-origin: 37.4688px 16px;
    user-select: none;
    width: 74.9375px;
    border: 0px none rgba(21, 41, 60, 0.5);
    border-radius: 6px;
    flex: 1 1 89.3333px;
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 2px;
    outline: rgba(21, 41, 60, 0.5) none 0px;
    overflow: hidden;
    padding: 0px 4px;
    transition: color 0.2s linear 0s;
}/*.AnimateCa-D_18*/

.AnimateCa-D_18:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_18:after*/

.AnimateCa-D_18:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    opacity: 0;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_18:before*/

.AnimateCa-S_19, .AnimateCa-S_22 {
    align-items: center;
    block-size: 32px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: flex;
    height: 32px;
    inline-size: 66.9375px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 33.4625px 16px;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 33.4688px 16px;
    user-select: none;
    width: 66.9375px;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-S_19, .AnimateCa-S_22*/

.AnimateCa-S_19:after, .AnimateCa-S_22:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-S_19:after, .AnimateCa-S_22:after*/

.AnimateCa-S_19:before, .AnimateCa-S_22:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-S_19:before, .AnimateCa-S_22:before*/


/* Apply styles to .AnimateCa-D_18, .AnimateCa-D_15, .AnimateCa-D_21 when hovered */
.AnimateCa-D_18:hover, .AnimateCa-D_15:hover, .AnimateCa-D_21:hover {
    background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box;
}

/* Apply styles to child elements when their parent is hovered */
.AnimateCa-D_18:hover .AnimateCa-S_20, 
.AnimateCa-D_15:hover .AnimateCa-S_17, 
.AnimateCa-D_21:hover .AnimateCa-S_23 {
    color: rgb(9, 12, 20);
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    font-family: "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
}



.AnimateCa-S_20, .AnimateCa-S_23 {
    block-size: 22px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    height: 22px;
    inline-size: 66.9375px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 33.4625px 11px;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-overflow: ellipsis;
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 33.4688px 11px;
    user-select: none;
    width: 66.9375px;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
    overflow: hidden;
}/*.AnimateCa-S_20, .AnimateCa-S_23*/

.AnimateCa-S_20:after, .AnimateCa-S_23:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-S_20:after, .AnimateCa-S_23:after*/

.AnimateCa-S_20:before, .AnimateCa-S_23:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-S_20:before, .AnimateCa-S_23:before*/





.AnimateCa-D_21 {
    align-items: center;
    block-size: 32px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-end-end-radius: 6px;
    border-end-start-radius: 6px;
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    border-start-end-radius: 6px;
    border-start-start-radius: 6px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: flex;
    height: 32px;
    inline-size: 74.9375px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    justify-content: center;
    left: 0px;
    margin-block-end: 2px;
    margin-block-start: 2px;
    margin-inline-end: 2px;
    margin-inline-start: 2px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-inline-end: 4px;
    padding-inline-start: 4px;
    perspective-origin: 37.4625px 16px;
    position: relative;
    right: 0px;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-overflow: ellipsis;
    text-size-adjust: 100%;
    text-wrap: nowrap;
    top: 0px;
    transform-origin: 37.4688px 16px;
    user-select: none;
    width: 74.9375px;
    border: 0px none rgba(21, 41, 60, 0.5);
    border-radius: 6px;
    flex: 1 1 89.3333px;
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 2px;
    outline: rgba(21, 41, 60, 0.5) none 0px;
    overflow: hidden;
    padding: 0px 4px;
    transition: color 0.2s linear 0s;
}/*.AnimateCa-D_21*/

.AnimateCa-D_21:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_21:after*/

.AnimateCa-D_21:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 500 14px / 22px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_21:before*/

.AnimateCa-D_24 {
    block-size: 260.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 260.6px;
    inline-size: 236.8px;
    padding-block-start: 16px;
    perspective-origin: 118.4px 130.3px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.4px 130.3px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 16px 0px 0px;
    width: 100%;
}/*.AnimateCa-D_24*/

.AnimateCa-D_24:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_24:after*/

.AnimateCa-D_24:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_24:before*/

.AnimateCa-D_25 {
    block-size: 244.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 244.6px;
    inline-size: 236.8px;
    perspective-origin: 118.4px 122.3px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.4px 122.3px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_25*/

.AnimateCa-D_25:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_25:after*/

.AnimateCa-D_25:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_25:before*/

.AnimateCa-D_26 {
    block-size: 244.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 244.6px;
    inline-size: 236.8px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 118.4px 122.3px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.4px 122.3px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    flex: 0 0 auto;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_26*/

.AnimateCa-D_26:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_26:after*/

.AnimateCa-D_26:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_26:before*/

.AnimateCa-D_27 {
    block-size: 244.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 244.6px;
    inline-size: 236.8px;
    perspective-origin: 118.4px 122.3px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.4px 122.3px;
    user-select: none;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    flex-flow: column nowrap;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_27*/

.AnimateCa-D_27:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_27:after*/

.AnimateCa-D_27:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_27:before*/

.AnimateCa-D_28 {
    block-size: 244.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 244.6px;
    inline-size: 248.8px;
    max-block-size: 244.6px;
    max-height: 244.6px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-block-end: 16px;
    padding-block-start: 3px;
    padding-inline-end: 3px;
    padding-inline-start: 3px;
    perspective-origin: 124.4px 122.3px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform: matrix(1, 0, 0, 1, -2, 0);
    transform-origin: 124.4px 122.3px;
    user-select: none;
    width: 248.8px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden auto;
    padding: 3px 3px 16px;
    width: 100%;
}/*.AnimateCa-D_28*/

.AnimateCa-D_28:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_28:after*/

.AnimateCa-D_28:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_28:before*/

.AnimateCa-D_29 {
    block-size: 307.975px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 307.975px;
    inline-size: 247.2px;
    perspective-origin: 123.6px 153.988px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 123.6px 153.988px;
    user-select: none;
    width: 100%;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_29*/

.AnimateCa-D_29:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_29:after*/

.AnimateCa-D_29:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_29:before*/

.AnimateCa-D_30 {
    block-size: 307.975px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-gap: 22px;
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 213.97500000000002px;
    inline-size: 247.2px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    perspective-origin: 123.6px 153.988px;
    position: relative;
    right: 0px;
    /* row-gap: -64px; */
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 123.6px 153.988px;
    user-select: none;
    width: 247.2px;
    border: 0px none rgb(9, 12, 20);
    flex-flow: row wrap;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-D_30*/

.AnimateCa-D_30:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_30:after*/

.AnimateCa-D_30:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_30:before*/

.AnimateCa-D_Item {
    align-items: center;
    block-size: 97.325px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 97.325px;
    inline-size: 73.325px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-block-end: 4px;
    perspective-origin: 36.6625px 48.6625px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 36.6625px 48.6625px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgb(9, 12, 20);
    flex-flow: column nowrap;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 0px 0px 4px;
}/*.AnimateCa-D_31, .AnimateCa-D_45, .AnimateCa-D_62, .AnimateCa-D_79, .AnimateCa-D_96, .AnimateCa-D_113, .AnimateCa-D_130, .AnimateCa-D_147, .AnimateCa-D_164*/

.AnimateCa-D_31:after, .AnimateCa-D_45:after, .AnimateCa-D_62:after, .AnimateCa-D_79:after, .AnimateCa-D_96:after, .AnimateCa-D_113:after, .AnimateCa-D_130:after, .AnimateCa-D_147:after, .AnimateCa-D_164:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_31:after, .AnimateCa-D_45:after, .AnimateCa-D_62:after, .AnimateCa-D_79:after, .AnimateCa-D_96:after, .AnimateCa-D_113:after, .AnimateCa-D_130:after, .AnimateCa-D_147:after, .AnimateCa-D_164:after*/

.AnimateCa-D_31:before, .AnimateCa-D_45:before, .AnimateCa-D_62:before, .AnimateCa-D_79:before, .AnimateCa-D_96:before, .AnimateCa-D_113:before, .AnimateCa-D_130:before, .AnimateCa-D_147:before, .AnimateCa-D_164:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_31:before, .AnimateCa-D_45:before, .AnimateCa-D_62:before, .AnimateCa-D_79:before, .AnimateCa-D_96:before, .AnimateCa-D_113:before, .AnimateCa-D_130:before, .AnimateCa-D_147:before, .AnimateCa-D_164:before*/

.AnimateCa-D_32, .AnimateCa-D_46, .AnimateCa-D_63, .AnimateCa-D_80, .AnimateCa-D_97, .AnimateCa-D_114, .AnimateCa-D_131, .AnimateCa-D_148, .AnimateCa-D_165 {
    align-items: center;
    block-size: 73.325px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 73.325px;
    inline-size: 73.325px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    justify-content: center;
    left: 0px;
    margin-block-end: 4px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 36.6625px 36.6625px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 36.6625px 36.6625px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgb(9, 12, 20);
    border-radius: 8px;
    flex-flow: column nowrap;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 0px 0px 4px;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_32, .AnimateCa-D_46, .AnimateCa-D_63, .AnimateCa-D_80, .AnimateCa-D_97, .AnimateCa-D_114, .AnimateCa-D_131, .AnimateCa-D_148, .AnimateCa-D_165*/

.AnimateCa-D_32:after, .AnimateCa-D_46:after, .AnimateCa-D_63:after, .AnimateCa-D_80:after, .AnimateCa-D_97:after, .AnimateCa-D_114:after, .AnimateCa-D_131:after, .AnimateCa-D_148:after, .AnimateCa-D_165:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_32:after, .AnimateCa-D_46:after, .AnimateCa-D_63:after, .AnimateCa-D_80:after, .AnimateCa-D_97:after, .AnimateCa-D_114:after, .AnimateCa-D_131:after, .AnimateCa-D_148:after, .AnimateCa-D_165:after*/

.AnimateCa-D_32:before, .AnimateCa-D_46:before, .AnimateCa-D_63:before, .AnimateCa-D_80:before, .AnimateCa-D_97:before, .AnimateCa-D_114:before, .AnimateCa-D_131:before, .AnimateCa-D_148:before, .AnimateCa-D_165:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_32:before, .AnimateCa-D_46:before, .AnimateCa-D_63:before, .AnimateCa-D_80:before, .AnimateCa-D_97:before, .AnimateCa-D_114:before, .AnimateCa-D_131:before, .AnimateCa-D_148:before, .AnimateCa-D_165:before*/

.AnimateCa-D_33, .AnimateCa-D_47, .AnimateCa-D_64, .AnimateCa-D_81, .AnimateCa-D_98, .AnimateCa-D_115, .AnimateCa-D_132, .AnimateCa-D_149, .AnimateCa-D_166 {
    block-size: 73.325px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 73.325px;
    inline-size: 73.325px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 36.6625px 36.6625px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 36.6625px 36.6625px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
}/*.AnimateCa-D_33, .AnimateCa-D_47, .AnimateCa-D_64, .AnimateCa-D_81, .AnimateCa-D_98, .AnimateCa-D_115, .AnimateCa-D_132, .AnimateCa-D_149, .AnimateCa-D_166*/

.AnimateCa-D_33:after, .AnimateCa-D_47:after, .AnimateCa-D_64:after, .AnimateCa-D_81:after, .AnimateCa-D_98:after, .AnimateCa-D_115:after, .AnimateCa-D_132:after, .AnimateCa-D_149:after, .AnimateCa-D_166:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_33:after, .AnimateCa-D_47:after, .AnimateCa-D_64:after, .AnimateCa-D_81:after, .AnimateCa-D_98:after, .AnimateCa-D_115:after, .AnimateCa-D_132:after, .AnimateCa-D_149:after, .AnimateCa-D_166:after*/

.AnimateCa-D_33:before, .AnimateCa-D_47:before, .AnimateCa-D_64:before, .AnimateCa-D_81:before, .AnimateCa-D_98:before, .AnimateCa-D_115:before, .AnimateCa-D_132:before, .AnimateCa-D_149:before, .AnimateCa-D_166:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_33:before, .AnimateCa-D_47:before, .AnimateCa-D_64:before, .AnimateCa-D_81:before, .AnimateCa-D_98:before, .AnimateCa-D_115:before, .AnimateCa-D_132:before, .AnimateCa-D_149:before, .AnimateCa-D_166:before*/

.AnimateCa-D_34, .AnimateCa-D_48, .AnimateCa-D_65, .AnimateCa-D_82, .AnimateCa-D_99, .AnimateCa-D_116, .AnimateCa-D_133, .AnimateCa-D_150, .AnimateCa-D_167 {
    block-size: 73.325px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 73.325px;
    inline-size: 73.325px;
    perspective-origin: 36.6625px 36.6625px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 36.6625px 36.6625px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_34, .AnimateCa-D_48, .AnimateCa-D_65, .AnimateCa-D_82, .AnimateCa-D_99, .AnimateCa-D_116, .AnimateCa-D_133, .AnimateCa-D_150, .AnimateCa-D_167*/

.AnimateCa-D_34:after, .AnimateCa-D_48:after, .AnimateCa-D_65:after, .AnimateCa-D_82:after, .AnimateCa-D_99:after, .AnimateCa-D_116:after, .AnimateCa-D_133:after, .AnimateCa-D_150:after, .AnimateCa-D_167:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_34:after, .AnimateCa-D_48:after, .AnimateCa-D_65:after, .AnimateCa-D_82:after, .AnimateCa-D_99:after, .AnimateCa-D_116:after, .AnimateCa-D_133:after, .AnimateCa-D_150:after, .AnimateCa-D_167:after*/

.AnimateCa-D_34:before, .AnimateCa-D_48:before, .AnimateCa-D_65:before, .AnimateCa-D_82:before, .AnimateCa-D_99:before, .AnimateCa-D_116:before, .AnimateCa-D_133:before, .AnimateCa-D_150:before, .AnimateCa-D_167:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_34:before, .AnimateCa-D_48:before, .AnimateCa-D_65:before, .AnimateCa-D_82:before, .AnimateCa-D_99:before, .AnimateCa-D_116:before, .AnimateCa-D_133:before, .AnimateCa-D_150:before, .AnimateCa-D_167:before*/

.AnimateCa-D_35 {
    align-items: center;
    block-size: 73.325px;
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    box-sizing: border-box;
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    display: flex;
    height: 73.325px;
    inline-size: 73.325px;
    justify-content: center;
    perspective-origin: 36.6625px 36.6625px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    transform-origin: 36.6625px 36.6625px;
    user-select: none;
    width: 73.325px;
    background: rgba(51, 102, 128, 0.08) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgba(24, 51, 78, 0.4);
    border-radius: 8px;
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-D_35*/

.AnimateCa-D_35:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-D_35:after*/

.AnimateCa-D_35:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-D_35:before*/

.AnimateCa-svg_36 {
    block-size: 20px;
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    box-sizing: border-box;
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    display: block;
    fill: none;
    height: 20px;
    inline-size: 20px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    overflow-clip-margin: content-box;
    perspective-origin: 10px 10px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    transform-origin: 10px 10px;
    user-select: none;
    width: 20px;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
    overflow: hidden;
}/*.AnimateCa-svg_36*/

.AnimateCa-svg_36:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-svg_36:after*/

.AnimateCa-svg_36:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-svg_36:before*/

.AnimateCa-g_37 {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    box-sizing: border-box;
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-g_37*/

.AnimateCa-g_37:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-g_37:after*/

.AnimateCa-g_37:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-g_37:before*/

.AnimateCa-path_38 {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    box-sizing: border-box;
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    d: path("M 4 3.5 L 15 16.5");
    fill: none;
    perspective-origin: 0px 0px;
    stroke: rgba(24, 51, 78, 0.4);
    stroke-width: 2.6px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-path_38*/

.AnimateCa-path_38:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    stroke: rgba(24, 51, 78, 0.4);
    stroke-width: 2.6px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-path_38:after*/

.AnimateCa-path_38:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    stroke: rgba(24, 51, 78, 0.4);
    stroke-width: 2.6px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-path_38:before*/

.AnimateCa-rect_39 {
    block-size: 18px;
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    box-sizing: border-box;
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    height: 18px;
    inline-size: 18px;
    perspective-origin: 0px 0px;
    rx: 9px;
    stroke: rgba(24, 51, 78, 0.4);
    stroke-width: 2px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    width: 18px;
    x: 1px;
    y: 1px;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-rect_39*/

.AnimateCa-rect_39:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    stroke: rgba(24, 51, 78, 0.4);
    stroke-width: 2px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-rect_39:after*/

.AnimateCa-rect_39:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgba(24, 51, 78, 0.4);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: pointer;
    fill: none;
    stroke: rgba(24, 51, 78, 0.4);
    stroke-width: 2px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-rect_39:before*/

.AnimateCa-D_40 {
    block-size: 0px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 69.325px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: flex;
    height: 0px;
    inline-size: 0px;
    inset-block-end: 69.325px;
    inset-block-start: 4px;
    inset-inline-end: 69.325px;
    inset-inline-start: 4px;
    left: 4px;
    perspective-origin: 0px 0px;
    position: absolute;
    right: 69.325px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 4px;
    transform-origin: 0px 0px;
    user-select: none;
    width: 0px;
    z-index: 3;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_40*/

.AnimateCa-D_40:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_40:after*/

.AnimateCa-D_40:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_40:before*/

.AnimateCa-D_41, .AnimateCa-D_58, .AnimateCa-D_75, .AnimateCa-D_92, .AnimateCa-D_109, .AnimateCa-D_126, .AnimateCa-D_143, .AnimateCa-D_160, .AnimateCa-D_177 {
    block-size: 0px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 69.325px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 0px;
    inline-size: 0px;
    inset-block-end: 69.325px;
    inset-block-start: 4px;
    inset-inline-end: 4px;
    inset-inline-start: 69.325px;
    left: 69.325px;
    perspective-origin: 0px 0px;
    position: absolute;
    right: 4px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 4px;
    transform-origin: 0px 0px;
    user-select: none;
    width: 0px;
    z-index: 3;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_41, .AnimateCa-D_58, .AnimateCa-D_75, .AnimateCa-D_92, .AnimateCa-D_109, .AnimateCa-D_126, .AnimateCa-D_143, .AnimateCa-D_160, .AnimateCa-D_177*/

.AnimateCa-D_41:after, .AnimateCa-D_58:after, .AnimateCa-D_75:after, .AnimateCa-D_92:after, .AnimateCa-D_109:after, .AnimateCa-D_126:after, .AnimateCa-D_143:after, .AnimateCa-D_160:after, .AnimateCa-D_177:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_41:after, .AnimateCa-D_58:after, .AnimateCa-D_75:after, .AnimateCa-D_92:after, .AnimateCa-D_109:after, .AnimateCa-D_126:after, .AnimateCa-D_143:after, .AnimateCa-D_160:after, .AnimateCa-D_177:after*/

.AnimateCa-D_41:before, .AnimateCa-D_58:before, .AnimateCa-D_75:before, .AnimateCa-D_92:before, .AnimateCa-D_109:before, .AnimateCa-D_126:before, .AnimateCa-D_143:before, .AnimateCa-D_160:before, .AnimateCa-D_177:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_41:before, .AnimateCa-D_58:before, .AnimateCa-D_75:before, .AnimateCa-D_92:before, .AnimateCa-D_109:before, .AnimateCa-D_126:before, .AnimateCa-D_143:before, .AnimateCa-D_160:before, .AnimateCa-D_177:before*/

.AnimateCa-D_42, .AnimateCa-D_59, .AnimateCa-D_76, .AnimateCa-D_93, .AnimateCa-D_110, .AnimateCa-D_127, .AnimateCa-D_144, .AnimateCa-D_161, .AnimateCa-D_178 {
    block-size: 0px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 4px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 0px;
    inline-size: 0px;
    inset-block-end: 4px;
    inset-block-start: 69.325px;
    inset-inline-end: 69.325px;
    inset-inline-start: 4px;
    left: 4px;
    perspective-origin: 0px 0px;
    position: absolute;
    right: 69.325px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 69.325px;
    transform-origin: 0px 0px;
    user-select: none;
    width: 0px;
    z-index: 3;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_42, .AnimateCa-D_59, .AnimateCa-D_76, .AnimateCa-D_93, .AnimateCa-D_110, .AnimateCa-D_127, .AnimateCa-D_144, .AnimateCa-D_161, .AnimateCa-D_178*/

.AnimateCa-D_42:after, .AnimateCa-D_59:after, .AnimateCa-D_76:after, .AnimateCa-D_93:after, .AnimateCa-D_110:after, .AnimateCa-D_127:after, .AnimateCa-D_144:after, .AnimateCa-D_161:after, .AnimateCa-D_178:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_42:after, .AnimateCa-D_59:after, .AnimateCa-D_76:after, .AnimateCa-D_93:after, .AnimateCa-D_110:after, .AnimateCa-D_127:after, .AnimateCa-D_144:after, .AnimateCa-D_161:after, .AnimateCa-D_178:after*/

.AnimateCa-D_42:before, .AnimateCa-D_59:before, .AnimateCa-D_76:before, .AnimateCa-D_93:before, .AnimateCa-D_110:before, .AnimateCa-D_127:before, .AnimateCa-D_144:before, .AnimateCa-D_161:before, .AnimateCa-D_178:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_42:before, .AnimateCa-D_59:before, .AnimateCa-D_76:before, .AnimateCa-D_93:before, .AnimateCa-D_110:before, .AnimateCa-D_127:before, .AnimateCa-D_144:before, .AnimateCa-D_161:before, .AnimateCa-D_178:before*/

.AnimateCa-D_43, .AnimateCa-D_60, .AnimateCa-D_77, .AnimateCa-D_94, .AnimateCa-D_111, .AnimateCa-D_128, .AnimateCa-D_145, .AnimateCa-D_162, .AnimateCa-D_179 {
    block-size: 0px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 4px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 0px;
    inline-size: 0px;
    inset-block-end: 4px;
    inset-block-start: 69.325px;
    inset-inline-end: 4px;
    inset-inline-start: 69.325px;
    left: 69.325px;
    perspective-origin: 0px 0px;
    position: absolute;
    right: 4px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 69.325px;
    transform-origin: 0px 0px;
    user-select: none;
    width: 0px;
    z-index: 3;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_43, .AnimateCa-D_60, .AnimateCa-D_77, .AnimateCa-D_94, .AnimateCa-D_111, .AnimateCa-D_128, .AnimateCa-D_145, .AnimateCa-D_162, .AnimateCa-D_179*/

.AnimateCa-D_43:after, .AnimateCa-D_60:after, .AnimateCa-D_77:after, .AnimateCa-D_94:after, .AnimateCa-D_111:after, .AnimateCa-D_128:after, .AnimateCa-D_145:after, .AnimateCa-D_162:after, .AnimateCa-D_179:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_43:after, .AnimateCa-D_60:after, .AnimateCa-D_77:after, .AnimateCa-D_94:after, .AnimateCa-D_111:after, .AnimateCa-D_128:after, .AnimateCa-D_145:after, .AnimateCa-D_162:after, .AnimateCa-D_179:after*/

.AnimateCa-D_43:before, .AnimateCa-D_60:before, .AnimateCa-D_77:before, .AnimateCa-D_94:before, .AnimateCa-D_111:before, .AnimateCa-D_128:before, .AnimateCa-D_145:before, .AnimateCa-D_162:before, .AnimateCa-D_179:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_43:before, .AnimateCa-D_60:before, .AnimateCa-D_77:before, .AnimateCa-D_94:before, .AnimateCa-D_111:before, .AnimateCa-D_128:before, .AnimateCa-D_145:before, .AnimateCa-D_162:before, .AnimateCa-D_179:before*/

.AnimateCa-S_44, .AnimateCa-S_61, .AnimateCa-S_78, .AnimateCa-S_95, .AnimateCa-S_112, .AnimateCa-S_129, .AnimateCa-S_146, .AnimateCa-S_163, .AnimateCa-S_180 {
    block-size: 16px;
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    box-sizing: border-box;
    caret-color: rgba(17, 26, 44, 0.7);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: default;
    display: block;
    height: 16px;
    inline-size: 73.325px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 36.6625px 8px;
    text-align: center;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-overflow: ellipsis;
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 36.6625px 8px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 12px / 16px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
    overflow: hidden;
}/*.AnimateCa-S_44, .AnimateCa-S_61, .AnimateCa-S_78, .AnimateCa-S_95, .AnimateCa-S_112, .AnimateCa-S_129, .AnimateCa-S_146, .AnimateCa-S_163, .AnimateCa-S_180*/

.AnimateCa-S_44:after, .AnimateCa-S_61:after, .AnimateCa-S_78:after, .AnimateCa-S_95:after, .AnimateCa-S_112:after, .AnimateCa-S_129:after, .AnimateCa-S_146:after, .AnimateCa-S_163:after, .AnimateCa-S_180:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgba(17, 26, 44, 0.7);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: default;
    text-align: center;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 12px / 16px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-S_44:after, .AnimateCa-S_61:after, .AnimateCa-S_78:after, .AnimateCa-S_95:after, .AnimateCa-S_112:after, .AnimateCa-S_129:after, .AnimateCa-S_146:after, .AnimateCa-S_163:after, .AnimateCa-S_180:after*/

.AnimateCa-S_44:before, .AnimateCa-S_61:before, .AnimateCa-S_78:before, .AnimateCa-S_95:before, .AnimateCa-S_112:before, .AnimateCa-S_129:before, .AnimateCa-S_146:before, .AnimateCa-S_163:before, .AnimateCa-S_180:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgba(17, 26, 44, 0.7);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: default;
    text-align: center;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 12px / 16px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-S_44:before, .AnimateCa-S_61:before, .AnimateCa-S_78:before, .AnimateCa-S_95:before, .AnimateCa-S_112:before, .AnimateCa-S_129:before, .AnimateCa-S_146:before, .AnimateCa-S_163:before, .AnimateCa-S_180:before*/

.AnimateCa-D_49, .AnimateCa-D_66, .AnimateCa-D_83, .AnimateCa-D_100, .AnimateCa-D_117, .AnimateCa-D_134, .AnimateCa-D_151, .AnimateCa-D_168 {
    align-items: center;
    block-size: 73.325px;
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    height: 73.325px;
    inline-size: 73.325px;
    justify-content: center;
    perspective-origin: 36.6625px 36.6625px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 36.6625px 36.6625px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgb(255, 255, 255);
    border-radius: 8px;
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_49, .AnimateCa-D_66, .AnimateCa-D_83, .AnimateCa-D_100, .AnimateCa-D_117, .AnimateCa-D_134, .AnimateCa-D_151, .AnimateCa-D_168*/

.AnimateCa-D_49:after, .AnimateCa-D_66:after, .AnimateCa-D_83:after, .AnimateCa-D_100:after, .AnimateCa-D_117:after, .AnimateCa-D_134:after, .AnimateCa-D_151:after, .AnimateCa-D_168:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_49:after, .AnimateCa-D_66:after, .AnimateCa-D_83:after, .AnimateCa-D_100:after, .AnimateCa-D_117:after, .AnimateCa-D_134:after, .AnimateCa-D_151:after, .AnimateCa-D_168:after*/

.AnimateCa-D_49:before, .AnimateCa-D_66:before, .AnimateCa-D_83:before, .AnimateCa-D_100:before, .AnimateCa-D_117:before, .AnimateCa-D_134:before, .AnimateCa-D_151:before, .AnimateCa-D_168:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_49:before, .AnimateCa-D_66:before, .AnimateCa-D_83:before, .AnimateCa-D_100:before, .AnimateCa-D_117:before, .AnimateCa-D_134:before, .AnimateCa-D_151:before, .AnimateCa-D_168:before*/

.AnimateCa-D_50, .AnimateCa-D_67, .AnimateCa-D_84, .AnimateCa-D_101, .AnimateCa-D_118, .AnimateCa-D_135, .AnimateCa-D_152, .AnimateCa-D_169 {
    block-size: 73.325px;
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    height: 73.325px;
    inline-size: 73.325px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 36.6625px 36.6625px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 36.6625px 36.6625px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_50, .AnimateCa-D_67, .AnimateCa-D_84, .AnimateCa-D_101, .AnimateCa-D_118, .AnimateCa-D_135, .AnimateCa-D_152, .AnimateCa-D_169*/

.AnimateCa-D_50:after, .AnimateCa-D_67:after, .AnimateCa-D_84:after, .AnimateCa-D_101:after, .AnimateCa-D_118:after, .AnimateCa-D_135:after, .AnimateCa-D_152:after, .AnimateCa-D_169:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_50:after, .AnimateCa-D_67:after, .AnimateCa-D_84:after, .AnimateCa-D_101:after, .AnimateCa-D_118:after, .AnimateCa-D_135:after, .AnimateCa-D_152:after, .AnimateCa-D_169:after*/

.AnimateCa-D_50:before, .AnimateCa-D_67:before, .AnimateCa-D_84:before, .AnimateCa-D_101:before, .AnimateCa-D_118:before, .AnimateCa-D_135:before, .AnimateCa-D_152:before, .AnimateCa-D_169:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_50:before, .AnimateCa-D_67:before, .AnimateCa-D_84:before, .AnimateCa-D_101:before, .AnimateCa-D_118:before, .AnimateCa-D_135:before, .AnimateCa-D_152:before, .AnimateCa-D_169:before*/

.AnimateCa-IMG_51, .AnimateCa-IMG_68, .AnimateCa-IMG_85, .AnimateCa-IMG_102, .AnimateCa-IMG_119, .AnimateCa-IMG_136, .AnimateCa-IMG_153, .AnimateCa-IMG_170 {
    block-size: 73.325px;
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    height: 73.325px;
    inline-size: 73.325px;
    object-fit: contain;
    perspective-origin: 36.6625px 36.6625px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 36.6625px 36.6625px;
    user-select: none;
    width: 73.325px;
    border: 0px none rgb(255, 255, 255);
    border-radius: 8px;
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-IMG_51, .AnimateCa-IMG_68, .AnimateCa-IMG_85, .AnimateCa-IMG_102, .AnimateCa-IMG_119, .AnimateCa-IMG_136, .AnimateCa-IMG_153, .AnimateCa-IMG_170*/

.AnimateCa-IMG_51:after, .AnimateCa-IMG_68:after, .AnimateCa-IMG_85:after, .AnimateCa-IMG_102:after, .AnimateCa-IMG_119:after, .AnimateCa-IMG_136:after, .AnimateCa-IMG_153:after, .AnimateCa-IMG_170:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-IMG_51:after, .AnimateCa-IMG_68:after, .AnimateCa-IMG_85:after, .AnimateCa-IMG_102:after, .AnimateCa-IMG_119:after, .AnimateCa-IMG_136:after, .AnimateCa-IMG_153:after, .AnimateCa-IMG_170:after*/

.AnimateCa-IMG_51:before, .AnimateCa-IMG_68:before, .AnimateCa-IMG_85:before, .AnimateCa-IMG_102:before, .AnimateCa-IMG_119:before, .AnimateCa-IMG_136:before, .AnimateCa-IMG_153:before, .AnimateCa-IMG_170:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-IMG_51:before, .AnimateCa-IMG_68:before, .AnimateCa-IMG_85:before, .AnimateCa-IMG_102:before, .AnimateCa-IMG_119:before, .AnimateCa-IMG_136:before, .AnimateCa-IMG_153:before, .AnimateCa-IMG_170:before*/

.AnimateCa-D_52, .AnimateCa-D_69, .AnimateCa-D_86, .AnimateCa-D_103, .AnimateCa-D_120, .AnimateCa-D_137, .AnimateCa-D_154, .AnimateCa-D_171 {
    block-size: 20px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 49.325px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: flex;
    height: 20px;
    inline-size: 20px;
    inset-block-end: 49.325px;
    inset-block-start: 4px;
    inset-inline-end: 49.325px;
    inset-inline-start: 4px;
    left: 4px;
    perspective-origin: 10px 10px;
    position: absolute;
    right: 49.325px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 4px;
    transform-origin: 10px 10px;
    user-select: none;
    width: 20px;
    z-index: 3;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_52, .AnimateCa-D_69, .AnimateCa-D_86, .AnimateCa-D_103, .AnimateCa-D_120, .AnimateCa-D_137, .AnimateCa-D_154, .AnimateCa-D_171*/

.AnimateCa-D_52:after, .AnimateCa-D_69:after, .AnimateCa-D_86:after, .AnimateCa-D_103:after, .AnimateCa-D_120:after, .AnimateCa-D_137:after, .AnimateCa-D_154:after, .AnimateCa-D_171:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_52:after, .AnimateCa-D_69:after, .AnimateCa-D_86:after, .AnimateCa-D_103:after, .AnimateCa-D_120:after, .AnimateCa-D_137:after, .AnimateCa-D_154:after, .AnimateCa-D_171:after*/

.AnimateCa-D_52:before, .AnimateCa-D_69:before, .AnimateCa-D_86:before, .AnimateCa-D_103:before, .AnimateCa-D_120:before, .AnimateCa-D_137:before, .AnimateCa-D_154:before, .AnimateCa-D_171:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_52:before, .AnimateCa-D_69:before, .AnimateCa-D_86:before, .AnimateCa-D_103:before, .AnimateCa-D_120:before, .AnimateCa-D_137:before, .AnimateCa-D_154:before, .AnimateCa-D_171:before*/

.AnimateCa-D_53, .AnimateCa-D_70, .AnimateCa-D_87, .AnimateCa-D_104, .AnimateCa-D_121, .AnimateCa-D_138, .AnimateCa-D_155, .AnimateCa-D_172 {
    block-size: 20px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 4px;
    border-start-start-radius: 4px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 20px;
    inline-size: 20px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 10px 10px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 10px 10px;
    user-select: none;
    visibility: hidden;
    width: 20px;
    border: 0px none rgb(9, 12, 20);
    border-radius: 4px;
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
}/*.AnimateCa-D_53, .AnimateCa-D_70, .AnimateCa-D_87, .AnimateCa-D_104, .AnimateCa-D_121, .AnimateCa-D_138, .AnimateCa-D_155, .AnimateCa-D_172*/

.AnimateCa-D_53:after, .AnimateCa-D_70:after, .AnimateCa-D_87:after, .AnimateCa-D_104:after, .AnimateCa-D_121:after, .AnimateCa-D_138:after, .AnimateCa-D_155:after, .AnimateCa-D_172:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_53:after, .AnimateCa-D_70:after, .AnimateCa-D_87:after, .AnimateCa-D_104:after, .AnimateCa-D_121:after, .AnimateCa-D_138:after, .AnimateCa-D_155:after, .AnimateCa-D_172:after*/

.AnimateCa-D_53:before, .AnimateCa-D_70:before, .AnimateCa-D_87:before, .AnimateCa-D_104:before, .AnimateCa-D_121:before, .AnimateCa-D_138:before, .AnimateCa-D_155:before, .AnimateCa-D_172:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(9, 12, 20);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_53:before, .AnimateCa-D_70:before, .AnimateCa-D_87:before, .AnimateCa-D_104:before, .AnimateCa-D_121:before, .AnimateCa-D_138:before, .AnimateCa-D_155:before, .AnimateCa-D_172:before*/

.AnimateCa-D_54, .AnimateCa-D_71, .AnimateCa-D_88, .AnimateCa-D_105, .AnimateCa-D_122, .AnimateCa-D_139, .AnimateCa-D_156, .AnimateCa-D_173 {
    align-items: center;
    block-size: 20px;
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-end-end-radius: 2px;
    border-end-start-radius: 2px;
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    border-start-end-radius: 2px;
    border-start-start-radius: 2px;
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    height: 20px;
    inline-size: 20px;
    justify-content: center;
    perspective-origin: 10px 10px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 10px 10px;
    user-select: none;
    visibility: hidden;
    width: 20px;
    background: rgba(0, 0, 0, 0.3) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    border-radius: 2px;
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_54, .AnimateCa-D_71, .AnimateCa-D_88, .AnimateCa-D_105, .AnimateCa-D_122, .AnimateCa-D_139, .AnimateCa-D_156, .AnimateCa-D_173*/

.AnimateCa-D_54:after, .AnimateCa-D_71:after, .AnimateCa-D_88:after, .AnimateCa-D_105:after, .AnimateCa-D_122:after, .AnimateCa-D_139:after, .AnimateCa-D_156:after, .AnimateCa-D_173:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_54:after, .AnimateCa-D_71:after, .AnimateCa-D_88:after, .AnimateCa-D_105:after, .AnimateCa-D_122:after, .AnimateCa-D_139:after, .AnimateCa-D_156:after, .AnimateCa-D_173:after*/

.AnimateCa-D_54:before, .AnimateCa-D_71:before, .AnimateCa-D_88:before, .AnimateCa-D_105:before, .AnimateCa-D_122:before, .AnimateCa-D_139:before, .AnimateCa-D_156:before, .AnimateCa-D_173:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-D_54:before, .AnimateCa-D_71:before, .AnimateCa-D_88:before, .AnimateCa-D_105:before, .AnimateCa-D_122:before, .AnimateCa-D_139:before, .AnimateCa-D_156:before, .AnimateCa-D_173:before*/

.AnimateCa-svg_55, .AnimateCa-svg_72, .AnimateCa-svg_89, .AnimateCa-svg_106, .AnimateCa-svg_123, .AnimateCa-svg_140, .AnimateCa-svg_157, .AnimateCa-svg_174 {
    block-size: 12px;
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    fill: none;
    height: 12px;
    inline-size: 12px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    overflow-clip-margin: content-box;
    perspective-origin: 6px 6px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 6px 6px;
    user-select: none;
    visibility: hidden;
    width: 12px;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    overflow: hidden;
}/*.AnimateCa-svg_55, .AnimateCa-svg_72, .AnimateCa-svg_89, .AnimateCa-svg_106, .AnimateCa-svg_123, .AnimateCa-svg_140, .AnimateCa-svg_157, .AnimateCa-svg_174*/

.AnimateCa-svg_55:after, .AnimateCa-svg_72:after, .AnimateCa-svg_89:after, .AnimateCa-svg_106:after, .AnimateCa-svg_123:after, .AnimateCa-svg_140:after, .AnimateCa-svg_157:after, .AnimateCa-svg_174:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-svg_55:after, .AnimateCa-svg_72:after, .AnimateCa-svg_89:after, .AnimateCa-svg_106:after, .AnimateCa-svg_123:after, .AnimateCa-svg_140:after, .AnimateCa-svg_157:after, .AnimateCa-svg_174:after*/

.AnimateCa-svg_55:before, .AnimateCa-svg_72:before, .AnimateCa-svg_89:before, .AnimateCa-svg_106:before, .AnimateCa-svg_123:before, .AnimateCa-svg_140:before, .AnimateCa-svg_157:before, .AnimateCa-svg_174:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-svg_55:before, .AnimateCa-svg_72:before, .AnimateCa-svg_89:before, .AnimateCa-svg_106:before, .AnimateCa-svg_123:before, .AnimateCa-svg_140:before, .AnimateCa-svg_157:before, .AnimateCa-svg_174:before*/

.AnimateCa-g_56, .AnimateCa-g_73, .AnimateCa-g_90, .AnimateCa-g_107, .AnimateCa-g_124, .AnimateCa-g_141, .AnimateCa-g_158, .AnimateCa-g_175 {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: none;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-g_56, .AnimateCa-g_73, .AnimateCa-g_90, .AnimateCa-g_107, .AnimateCa-g_124, .AnimateCa-g_141, .AnimateCa-g_158, .AnimateCa-g_175*/

.AnimateCa-g_56:after, .AnimateCa-g_73:after, .AnimateCa-g_90:after, .AnimateCa-g_107:after, .AnimateCa-g_124:after, .AnimateCa-g_141:after, .AnimateCa-g_158:after, .AnimateCa-g_175:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-g_56:after, .AnimateCa-g_73:after, .AnimateCa-g_90:after, .AnimateCa-g_107:after, .AnimateCa-g_124:after, .AnimateCa-g_141:after, .AnimateCa-g_158:after, .AnimateCa-g_175:after*/

.AnimateCa-g_56:before, .AnimateCa-g_73:before, .AnimateCa-g_90:before, .AnimateCa-g_107:before, .AnimateCa-g_124:before, .AnimateCa-g_141:before, .AnimateCa-g_158:before, .AnimateCa-g_175:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-g_56:before, .AnimateCa-g_73:before, .AnimateCa-g_90:before, .AnimateCa-g_107:before, .AnimateCa-g_124:before, .AnimateCa-g_141:before, .AnimateCa-g_158:before, .AnimateCa-g_175:before*/

.AnimateCa-path_57, .AnimateCa-path_74, .AnimateCa-path_108, .AnimateCa-path_142, .AnimateCa-path_176 {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    d: path("M 6 1.516 L 10.5 2.172 V 6.823 A 4.5 4.5 0 0 1 8.469 10.585 L 6 12.206 L 3.531 10.586 A 4.5 4.5 0 0 1 1.5 6.823 V 2.172 L 6 1.516 Z M 9.292 11.84 L 6 14 L 2.708 11.84 A 6 6 0 0 1 0 6.823 V 1.74 A 1 1 0 0 1 0.856 0.75 L 5.856 0.021 A 1 1 0 0 1 6.144 0.021 L 11.144 0.751 A 1 1 0 0 1 12 1.74 V 6.823 A 6 6 0 0 1 9.292 11.84 Z M 6.13 8.53 L 9.13 5.53 L 8.07 4.47 L 5.56 6.978 L 3.989 5.63 L 3.013 6.77 L 5.113 8.57 L 5.64 9.021 L 6.131 8.531 Z");
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_57, .AnimateCa-path_74, .AnimateCa-path_108, .AnimateCa-path_142, .AnimateCa-path_176*/

.AnimateCa-path_57:after, .AnimateCa-path_74:after, .AnimateCa-path_108:after, .AnimateCa-path_142:after, .AnimateCa-path_176:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_57:after, .AnimateCa-path_74:after, .AnimateCa-path_108:after, .AnimateCa-path_142:after, .AnimateCa-path_176:after*/

.AnimateCa-path_57:before, .AnimateCa-path_74:before, .AnimateCa-path_108:before, .AnimateCa-path_142:before, .AnimateCa-path_176:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_57:before, .AnimateCa-path_74:before, .AnimateCa-path_108:before, .AnimateCa-path_142:before, .AnimateCa-path_176:before*/

.AnimateCa-path_91, .AnimateCa-path_125 {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    d: path("M 6 1.516 L 10.5 2.172 V 6.823 A 4.5 4.5 0 0 1 8.469 10.585 L 6 12.206 L 3.531 10.586 A 4.5 4.5 0 0 1 1.5 6.823 V 2.172 L 6 1.516 Z M 9.292 11.84 L 6 14 L 2.708 11.84 A 6 6 0 0 1 0 6.823 V 1.74 A 1 1 0 0 1 0.856 0.75 L 5.856 0.021 A 1 1 0 0 1 6.144 0.021 L 11.144 0.751 A 1 1 0 0 1 12 1.74 V 6.823 A 6 6 0 0 1 9.292 11.84 Z M 6.13 8.53 L 9.13 5.53 L 8.07 4.47 L 5.56 6.978 L 3.989 5.63 L 3.013 6.77 L 5.113 8.57 L 5.64 9.021 L 6.131 8.531 Z");
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_91, .AnimateCa-path_125*/

.AnimateCa-path_91:after, .AnimateCa-path_125:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_91:after, .AnimateCa-path_125:after*/

.AnimateCa-path_91:before, .AnimateCa-path_125:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_91:before, .AnimateCa-path_125:before*/

.AnimateCa-path_159 {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    box-sizing: border-box;
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    d: path("M 6 1.516 L 10.5 2.172 V 6.823 A 4.5 4.5 0 0 1 8.469 10.585 L 6 12.206 L 3.531 10.586 A 4.5 4.5 0 0 1 1.5 6.823 V 2.172 L 6 1.516 Z M 9.292 11.84 L 6 14 L 2.708 11.84 A 6 6 0 0 1 0 6.823 V 1.74 A 1 1 0 0 1 0.856 0.75 L 5.856 0.021 A 1 1 0 0 1 6.144 0.021 L 11.144 0.751 A 1 1 0 0 1 12 1.74 V 6.823 A 6 6 0 0 1 9.292 11.84 Z M 6.13 8.53 L 9.13 5.53 L 8.07 4.47 L 5.56 6.978 L 3.989 5.63 L 3.013 6.77 L 5.113 8.57 L 5.64 9.021 L 6.131 8.531 Z");
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_159*/

.AnimateCa-path_159:after {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_159:after*/

.AnimateCa-path_159:before {
    border-block-end-color: rgb(255, 255, 255);
    border-block-start-color: rgb(255, 255, 255);
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-start-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
    clip-rule: evenodd;
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    fill-rule: evenodd;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(255, 255, 255);
    font: 700 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}/*.AnimateCa-path_159:before*/

.AnimateCa-D_181, .AnimateCa-D_182 {
    block-size: 0px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 0px;
    inline-size: 236.8px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 118.4px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.4px 0px;
    user-select: none;
    visibility: hidden;
    width: 236.8px;
    border: 0px none rgb(9, 12, 20);
    flex: 0 0 auto;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
}/*.AnimateCa-D_181, .AnimateCa-D_182*/

.AnimateCa-D_181:after, .AnimateCa-D_182:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_181:after, .AnimateCa-D_182:after*/

.AnimateCa-D_181:before, .AnimateCa-D_182:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    visibility: hidden;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_181:before, .AnimateCa-D_182:before*/

.AnimateCa-D_183 {
    align-self: stretch;
    block-size: 78.4px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgba(7, 50, 71, 0.06);
    border-block-start-style: solid;
    border-block-start-width: 0.8px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 78.4px;
    inline-size: 268.4px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-block-end: 12px;
    padding-block-start: 12px;
    padding-inline-end: 16px;
    padding-inline-start: 16px;
    perspective-origin: 134.2px 39.2px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 134.2px 39.2px;
    user-select: none;
    width: 268.4px;
    border-top: 0.8px solid rgba(7, 50, 71, 0.06);
    border-right: 0px none rgb(9, 12, 20);
    border-bottom: 0px none rgb(9, 12, 20);
    border-left: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 12px 16px;
}/*.AnimateCa-D_183*/

.AnimateCa-D_183:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_183:after*/

.AnimateCa-D_183:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_183:before*/

.AnimateCa-D_184, .AnimateCa-D_185 {
    block-size: 53.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 53.6px;
    inline-size: 236.4px;
    perspective-origin: 118.2px 26.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.2px 26.8px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_184, .AnimateCa-D_185*/

.AnimateCa-D_184:after, .AnimateCa-D_185:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_184:after, .AnimateCa-D_185:after*/

.AnimateCa-D_184:before, .AnimateCa-D_185:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_184:before, .AnimateCa-D_185:before*/

.AnimateCa-D_186 {
    block-size: 20px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: default;
    height: 20px;
    inline-size: 236.4px;
    margin-block-end: 2px;
    perspective-origin: 118.2px 10px;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    transform-origin: 118.2px 10px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 0px 0px 2px;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_186*/

.AnimateCa-D_186:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: default;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_186:after*/

.AnimateCa-D_186:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: default;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-D_186:before*/

.AnimateCa-D_187 {
    block-size: 31.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 31.6px;
    inline-size: 236.4px;
    perspective-origin: 118.2px 15.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.2px 15.8px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_187*/

.AnimateCa-D_187:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_187:after*/

.AnimateCa-D_187:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_187:before*/

.AnimateCa-D_188 {
    align-items: center;
    block-size: 31.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 31.6px;
    inline-size: 236.4px;
    perspective-origin: 118.2px 15.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.2px 15.8px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_188*/

.AnimateCa-D_188:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_188:after*/

.AnimateCa-D_188:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_188:before*/

.AnimateCa-D_189 {
    block-size: 31.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 31.6px;
    inline-size: 64px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    margin-inline-end: 8px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 32px 15.8px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 32px 15.8px;
    user-select: none;
    vertical-align: top;
    width: 64px;
    border: 0px none rgb(9, 12, 20);
    border-radius: 8px;
    flex: 0 0 64px;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 0px 8px 0px 0px;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_189*/

.AnimateCa-D_189:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_189:after*/

.AnimateCa-D_189:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_189:before*/

.AnimateCa-S_190 {
    align-items: stretch;
    block-size: 31.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 31.6px;
    inline-size: 64px;
    perspective-origin: 32px 15.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 32px 15.8px;
    user-select: none;
    width: 64px;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_190*/

.AnimateCa-S_190:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_190:after*/

.AnimateCa-S_190:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_190:before*/

.AnimateCa-S_191 {
    align-items: center;
    block-size: 31.6px;
    border-block-end-color: rgba(0, 0, 0, 0);
    border-block-end-style: solid;
    border-block-end-width: 0.8px;
    border-block-start-color: rgba(0, 0, 0, 0);
    border-block-start-style: solid;
    border-block-start-width: 0.8px;
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgba(0, 0, 0, 0);
    border-inline-end-style: solid;
    border-inline-end-width: 0.8px;
    border-inline-start-color: rgba(0, 0, 0, 0);
    border-inline-start-style: solid;
    border-inline-start-width: 0.8px;
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 31.6px;
    inline-size: 64px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-inline-end: 12px;
    padding-inline-start: 12px;
    perspective-origin: 32px 15.8px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 32px 15.8px;
    transition-behavior: normal, normal, normal;
    user-select: none;
    width: 64px;
    background: rgba(51, 102, 128, 0.08) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0.8px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    flex: 1 1 0%;
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 0px 12px;
    transition: color 0.1s linear 0s, border-color 0.1s linear 0s, background-color 0.1s linear 0s;
}/*.AnimateCa-S_191*/

.AnimateCa-S_191:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_191:after*/

.AnimateCa-S_191:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_191:before*/

.AnimateCa-INPUT_192 {
    appearance: none;
    background-position: 0px 0px;
    block-size: 30px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-end-style: none;
    border-block-end-width: 0px;
    border-block-start-color: rgb(9, 12, 20);
    border-block-start-style: none;
    border-block-start-width: 0px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-end-style: none;
    border-inline-end-width: 0px;
    border-inline-start-color: rgb(9, 12, 20);
    border-inline-start-style: none;
    border-inline-start-width: 0px;
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    display: block;
    height: 30px;
    inline-size: 22.0125px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: 4.403px;
    min-width: 4.403px;
    padding-block-end: 5px;
    padding-block-start: 5px;
    padding-inline-end: 0px;
    padding-inline-start: 0px;
    perspective-origin: 11px 15px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 11.0063px 15px;
    transition-behavior: normal, normal, normal;
    user-select: none;
    width: 22.0125px;
    background: rgba(0, 0, 0, 0) none repeat scroll 0px 0px / auto padding-box border-box;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 5px 0px;
    transition: color 0.1s linear 0s, border-color 0.1s linear 0s, background-color 0.1s linear 0s;
}/*.AnimateCa-INPUT_192*/

.AnimateCa-INPUT_192:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-INPUT_192:after*/

.AnimateCa-INPUT_192:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-INPUT_192:before*/

.AnimateCa-S_193 {
    align-items: center;
    block-size: 20px;
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    display: flex;
    height: 20px;
    inline-size: 16.3875px;
    justify-content: space-between;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 8.1875px 10px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 8.19375px 10px;
    user-select: none;
    width: 16.3875px;
    border: 0px none rgba(24, 51, 78, 0.4);
    flex: 1 0 0%;
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-S_193*/

.AnimateCa-S_193:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    display: block;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-S_193:after*/

.AnimateCa-S_193:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    display: block;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-S_193:before*/

.AnimateCa-D_194 {
    block-size: 22px;
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-end-end-radius: 1px;
    border-end-start-radius: 1px;
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    border-start-end-radius: 1px;
    border-start-start-radius: 1px;
    bottom: 4px;
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    height: 22px;
    inline-size: 18px;
    inset-block-end: 4px;
    inset-block-start: 4px;
    inset-inline-end: 4px;
    inset-inline-start: 40.4px;
    left: 40.4px;
    opacity: 0;
    perspective-origin: 9px 11px;
    position: absolute;
    right: 4px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    top: 4px;
    transform-origin: 9px 11px;
    user-select: none;
    width: 18px;
    border: 0px none rgba(24, 51, 78, 0.4);
    border-radius: 1px;
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
    overflow: hidden;
    transition: all 0.1s linear 0s;
}/*.AnimateCa-D_194*/

.AnimateCa-D_194:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-D_194:after*/

.AnimateCa-D_194:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-D_194:before*/

.AnimateCa-D_195, .AnimateCa-D_198 {
    align-items: center;
    block-size: 11px;
    border-block-end-color: rgb(229, 230, 235);
    border-block-start-color: rgb(229, 230, 235);
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
    border-inline-end-color: rgb(229, 230, 235);
    border-inline-start-color: rgb(229, 230, 235);
    border-start-end-radius: 4px;
    border-start-start-radius: 4px;
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: flex;
    height: 11px;
    inline-size: 18px;
    justify-content: center;
    perspective-origin: 9px 5.5px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 9px 5.5px;
    user-select: none;
    width: 18px;
    border: 0px none rgb(229, 230, 235);
    border-radius: 4px;
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
    transition: all 0.1s linear 0s;
}/*.AnimateCa-D_195, .AnimateCa-D_198*/

.AnimateCa-D_195:after, .AnimateCa-D_198:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-D_195:after, .AnimateCa-D_198:after*/

.AnimateCa-D_195:before, .AnimateCa-D_198:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-D_195:before, .AnimateCa-D_198:before*/

.AnimateCa-svg_196, .AnimateCa-svg_199 {
    block-size: 10px;
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: block;
    fill: none;
    height: 10px;
    inline-size: 10px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    overflow-clip-margin: content-box;
    perspective-origin: 5px 5px;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 5px 5px;
    user-select: none;
    vertical-align: -2px;
    width: 10px;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
    overflow: hidden;
}/*.AnimateCa-svg_196, .AnimateCa-svg_199*/

.AnimateCa-svg_196:after, .AnimateCa-svg_199:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-svg_196:after, .AnimateCa-svg_199:after*/

.AnimateCa-svg_196:before, .AnimateCa-svg_199:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-svg_196:before, .AnimateCa-svg_199:before*/

.AnimateCa-path_197 {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    d: path("M 39.6 30.557 L 24.043 15 L 8.487 30.557");
    fill: none;
    perspective-origin: 0px 0px;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-path_197*/

.AnimateCa-path_197:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-path_197:after*/

.AnimateCa-path_197:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-path_197:before*/

.AnimateCa-path_200 {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    d: path("M 39.6 17.443 L 24.043 33 L 8.487 17.443");
    fill: none;
    perspective-origin: 0px 0px;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-path_200*/

.AnimateCa-path_200:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-path_200:after*/

.AnimateCa-path_200:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-path_200:before*/

.AnimateCa-D_201 {
    block-size: 20px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 20px;
    inline-size: 6.65px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 3.325px 10px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 3.325px 10px;
    user-select: none;
    width: 6.65px;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_201*/

.AnimateCa-D_201:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_201:after*/

.AnimateCa-D_201:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_201:before*/

.AnimateCa-D_202 {
    block-size: 2px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 22px;
    border-end-start-radius: 22px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 22px;
    border-start-start-radius: 22px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 2px;
    inline-size: 164.4px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 82.2px 1px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 82.2px 1px;
    user-select: none;
    width: 164.4px;
    background: rgba(27, 61, 95, 0.2) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(9, 12, 20);
    border-radius: 22px;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_202*/

.AnimateCa-D_202:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_202:after*/

.AnimateCa-D_202:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-D_202:before*/

.AnimateCa-S_203 {
    block-size: 2px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    height: 2px;
    inline-size: 19.125px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 145.275px;
    inset-inline-start: 0px;
    left: 0px;
    perspective-origin: 9.5625px 1px;
    position: absolute;
    right: 145.275px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 9.5625px 1px;
    user-select: none;
    width: 19.125px;
    background: rgba(17, 26, 44, 0.7) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_203*/

.AnimateCa-S_203:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_203:after*/

.AnimateCa-S_203:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_203:before*/

.AnimateCa-S_204 {
    block-size: 18px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: -16px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    height: 18px;
    inline-size: 18px;
    inset-block-end: -16px;
    inset-block-start: 0px;
    inset-inline-end: 127.287px;
    inset-inline-start: 19.1125px;
    left: 19.1125px;
    perspective-origin: 9px 9px;
    position: absolute;
    right: 127.287px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform: matrix(1, 0, 0, 1, -9, 2);
    transform-origin: 9px 9px;
    user-select: none;
    width: 18px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_204*/

.AnimateCa-S_204:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_204:after*/

.AnimateCa-S_204:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-S_204:before*/

.AnimateCa-svg_205 {
    block-size: 18px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    height: 18px;
    inline-size: 18px;
    overflow-clip-margin: content-box;
    perspective-origin: 9px 9px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 9px 9px;
    user-select: none;
    width: 18px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
}/*.AnimateCa-svg_205*/

.AnimateCa-svg_205:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-svg_205:after*/

.AnimateCa-svg_205:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-svg_205:before*/

.AnimateCa-g_206 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-g_206*/

.AnimateCa-g_206:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-g_206:after*/

.AnimateCa-g_206:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-g_206:before*/

.AnimateCa-mask_207 {
    block-size: 18px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 18px;
    inline-size: 14px;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    width: 14px;
    x: 2px;
    y: 0.223px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-mask_207*/

.AnimateCa-mask_207:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-mask_207:after*/

.AnimateCa-mask_207:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-mask_207:before*/

.AnimateCa-path_208 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 2 0.223 H 16 V 18.223 H 2 Z");
    fill: rgb(255, 255, 255);
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_208*/

.AnimateCa-path_208:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_208:after*/

.AnimateCa-path_208:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_208:before*/

.AnimateCa-path_209 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 3 11 C 3 12.864 3 13.796 3.304 14.53 A 4 4 0 0 0 5.469 16.696 C 6.204 17 7.136 17 9 17 S 11.796 17 12.53 16.696 A 4 4 0 0 0 14.695 14.531 C 15 13.796 15 12.864 15 11 V 9.283 C 15 7.794 15 7.05 14.803 6.368 A 4.998 4.998 0 0 0 13.956 4.702 C 13.522 4.14 12.921 3.702 11.719 2.823 L 10.132 1.663 C 9.804 1.424 9.64 1.305 9.461 1.256 A 1 1 0 0 0 8.975 1.248 C 8.794 1.29 8.625 1.404 8.29 1.631 L 6.51 2.84 C 5.226 3.711 4.584 4.146 4.12 4.718 A 5 5 0 0 0 3.212 6.43 C 3 7.135 3 7.91 3 9.46 V 11 Z");
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_209*/

.AnimateCa-path_209:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_209:after*/

.AnimateCa-path_209:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_209:before*/

.AnimateCa-path_210 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 3 11 C 3 12.864 3 13.796 3.304 14.53 A 4 4 0 0 0 5.469 16.696 C 6.204 17 7.136 17 9 17 S 11.796 17 12.53 16.696 A 4 4 0 0 0 14.695 14.531 C 15 13.796 15 12.864 15 11 V 9.283 C 15 7.794 15 7.05 14.803 6.368 A 4.998 4.998 0 0 0 13.956 4.702 C 13.522 4.14 12.921 3.702 11.719 2.823 L 10.132 1.663 C 9.804 1.424 9.64 1.305 9.461 1.256 A 1 1 0 0 0 8.975 1.248 C 8.794 1.29 8.625 1.404 8.29 1.631 L 6.51 2.84 C 5.226 3.711 4.584 4.146 4.12 4.718 A 5 5 0 0 0 3.212 6.43 C 3 7.135 3 7.91 3 9.46 V 11 Z");
    fill: rgb(255, 255, 255);
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_210*/

.AnimateCa-path_210:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_210:after*/

.AnimateCa-path_210:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_210:before*/

.AnimateCa-path_211 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 10.132 1.665 L 9.542 2.472 L 10.132 1.665 Z M 9.461 1.257 L 9.201 2.223 L 9.461 1.257 Z M 8.29 1.632 L 7.729 0.805 L 8.289 1.632 Z M 8.975 1.249 L 9.201 2.223 L 8.975 1.249 Z M 3.212 6.429 L 4.17 6.718 L 3.212 6.43 Z M 6.51 2.84 L 7.071 3.668 L 6.511 2.84 Z M 4.12 4.718 L 3.344 4.088 L 4.121 4.718 Z M 14.804 6.369 L 13.843 6.647 L 14.803 6.369 Z M 11.72 2.824 L 12.31 2.016 L 11.72 2.824 Z M 13.957 4.703 L 13.167 5.314 L 13.957 4.703 Z M 14.697 14.531 L 13.773 14.148 L 14.696 14.531 Z M 16 11 V 9.283 H 14 V 11 H 16 Z M 2 9.46 V 11 H 4 V 9.46 H 2 Z M 12.309 2.015 L 10.722 0.857 L 9.542 2.472 L 11.129 3.632 L 12.309 2.016 Z M 7.729 0.805 L 5.948 2.013 L 7.07 3.668 L 8.851 2.46 L 7.73 0.805 Z M 10.722 0.857 C 10.462 0.667 10.124 0.4 9.72 0.292 L 9.2 2.222 C 9.157 2.212 9.148 2.198 9.206 2.235 C 9.276 2.279 9.366 2.345 9.541 2.472 L 10.721 0.857 Z M 8.852 2.46 C 9.03 2.339 9.124 2.276 9.194 2.235 C 9.254 2.2 9.244 2.213 9.201 2.223 L 8.749 0.275 C 8.342 0.369 7.995 0.624 7.729 0.805 L 8.85 2.46 Z M 9.72 0.292 A 2 2 0 0 0 8.748 0.275 L 9.2 2.223 L 9.72 0.292 Z M 4 9.46 C 4 7.847 4.01 7.248 4.17 6.717 L 2.255 6.14 C 1.99 7.021 2 7.971 2 9.461 H 4 Z M 5.948 2.012 C 4.715 2.848 3.923 3.374 3.343 4.086 L 4.896 5.347 C 5.246 4.917 5.736 4.572 7.07 3.667 L 5.948 2.013 Z M 4.17 6.718 A 4 4 0 0 1 4.896 5.348 L 3.343 4.088 A 6 6 0 0 0 2.255 6.14 L 4.17 6.717 Z M 16 9.284 C 16 7.854 16.01 6.941 15.763 6.091 L 13.842 6.647 C 13.991 7.16 14 7.737 14 9.284 H 16 Z M 11.13 3.63 C 12.379 4.543 12.838 4.89 13.165 5.313 L 14.748 4.09 C 14.207 3.39 13.464 2.859 12.308 2.015 L 11.13 3.631 Z M 15.763 6.09 A 6.002 6.002 0 0 0 14.748 4.09 L 13.165 5.313 A 4 4 0 0 1 13.842 6.646 L 15.763 6.09 Z M 9 18 C 9.918 18 10.657 18 11.257 17.959 C 11.865 17.917 12.404 17.829 12.913 17.619 L 12.148 15.771 C 11.923 15.864 11.628 15.929 11.121 15.963 C 10.605 16 9.946 16 9 16 V 18 Z M 14 11 C 14 11.945 14 12.604 13.964 13.12 C 13.93 13.626 13.865 13.922 13.772 14.147 L 15.619 14.913 C 15.831 14.403 15.919 13.865 15.959 13.256 C 16 12.657 16 11.918 16 11 H 14 Z M 12.913 17.618 A 5 5 0 0 0 15.619 14.913 L 13.772 14.147 A 3 3 0 0 1 12.148 15.771 L 12.913 17.618 Z M 9 16 C 8.054 16 7.395 16 6.88 15.964 C 6.373 15.93 6.077 15.865 5.852 15.772 L 5.087 17.619 C 5.597 17.831 6.135 17.919 6.743 17.959 C 7.343 18.001 8.082 18 9 18 V 16 Z M 2 11 C 2 11.918 2 12.657 2.04 13.257 C 2.082 13.866 2.17 14.404 2.38 14.914 L 4.228 14.148 C 4.135 13.923 4.07 13.628 4.036 13.121 C 4 12.605 4 11.946 4 11 H 2 Z M 5.852 15.772 A 3 3 0 0 1 4.228 14.148 L 2.381 14.914 A 5 5 0 0 0 5.087 17.619 L 5.852 15.772 Z");
    fill: rgb(7, 50, 71);
    fill-opacity: 0.16;
    mask-image: url(".cb775__a");
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_211*/

.AnimateCa-path_211:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(7, 50, 71);
    fill-opacity: 0.16;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_211:after*/

.AnimateCa-path_211:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(7, 50, 71);
    fill-opacity: 0.16;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_211:before*/

.AnimateCa-path_212 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    clip-rule: evenodd;
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 7.125 6.261 L 11.069 9.571 A 0.563 0.563 0 0 1 11.069 10.432 L 7.125 13.741 V 12.271 L 9.832 10.001 L 7.125 7.73 V 6.26 Z");
    fill: rgb(21, 41, 60);
    fill-opacity: 0.5;
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_212*/

.AnimateCa-path_212:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    clip-rule: evenodd;
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(21, 41, 60);
    fill-opacity: 0.5;
    fill-rule: evenodd;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_212:after*/

.AnimateCa-path_212:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    clip-rule: evenodd;
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(21, 41, 60);
    fill-opacity: 0.5;
    fill-rule: evenodd;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-path_212:before*/


 
 /* animation end here */



/* duration start here */
.AnimateCa-TimDIV_1 {
    align-self: stretch;
    block-size: 78.4px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgba(7, 50, 71, 0.06);
    border-block-start-style: solid;
    border-block-start-width: 0.8px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 78.4px;
    inline-size: 268.4px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-block-end: 12px;
    padding-block-start: 12px;
    padding-inline-end: 16px;
    padding-inline-start: 16px;
    perspective-origin: 134.2px 39.2px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 134.2px 39.2px;
    user-select: none;
    width: 268.4px;
    border-top: 0.8px solid rgba(7, 50, 71, 0.06);
    border-right: 0px none rgb(9, 12, 20);
    border-bottom: 0px none rgb(9, 12, 20);
    border-left: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 12px 16px;
    width: 100%;
    display: flex;
}/*.AnimateCa-TimDIV_1*/

.AnimateCa-TimDIV_1:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_1:after*/

.AnimateCa-TimDIV_1:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_1:before*/

.AnimateCa-TimDIV_2, .AnimateCa-TimDIV_3 {
    block-size: 53.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 53.6px;
    inline-size: 236.4px;
    perspective-origin: 118.2px 26.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.2px 26.8px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 80%;
}/*.AnimateCa-TimDIV_2, .AnimateCa-TimDIV_3*/

.AnimateCa-TimDIV_2:after, .AnimateCa-TimDIV_3:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_2:after, .AnimateCa-TimDIV_3:after*/

.AnimateCa-TimDIV_2:before, .AnimateCa-TimDIV_3:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_2:before, .AnimateCa-TimDIV_3:before*/

.AnimateCa-TimDIV_4 {
    block-size: 20px;
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    box-sizing: border-box;
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: default;
    height: 20px;
    inline-size: 236.4px;
    margin-block-end: 2px;
    perspective-origin: 118.2px 10px;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    transform-origin: 118.2px 10px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 0px 0px 2px;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-TimDIV_4*/

.AnimateCa-TimDIV_4:after {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: default;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-TimDIV_4:after*/

.AnimateCa-TimDIV_4:before {
    border-block-end-color: rgba(21, 41, 60, 0.5);
    border-block-start-color: rgba(21, 41, 60, 0.5);
    border-inline-end-color: rgba(21, 41, 60, 0.5);
    border-inline-start-color: rgba(21, 41, 60, 0.5);
    caret-color: rgba(21, 41, 60, 0.5);
    color: rgba(21, 41, 60, 0.5);
    column-rule-color: rgba(21, 41, 60, 0.5);
    cursor: default;
    text-decoration: none solid rgba(21, 41, 60, 0.5);
    text-emphasis-color: rgba(21, 41, 60, 0.5);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgba(21, 41, 60, 0.5);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(21, 41, 60, 0.5) none 0px;
}/*.AnimateCa-TimDIV_4:before*/

.AnimateCa-TimDIV_5 {
    block-size: 31.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 31.6px;
    inline-size: 236.4px;
    perspective-origin: 118.2px 15.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.2px 15.8px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-TimDIV_5*/

.AnimateCa-TimDIV_5:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_5:after*/

.AnimateCa-TimDIV_5:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_5:before*/

.AnimateCa-TimDIV_6 {
    align-items: center;
    block-size: 31.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 31.6px;
    inline-size: 236.4px;
    perspective-origin: 118.2px 15.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 118.2px 15.8px;
    user-select: none;
    width: 236.4px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    width: 100%;
}/*.AnimateCa-TimDIV_6*/

.AnimateCa-TimDIV_6:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_6:after*/

.AnimateCa-TimDIV_6:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_6:before*/

.AnimateCa-TimDIV_7 {
    block-size: 31.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 31.6px;
    inline-size: 64px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    margin-inline-end: 8px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 32px 15.8px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 32px 15.8px;
    user-select: none;
    vertical-align: top;
    width: 64px;
    border: 0px none rgb(9, 12, 20);
    border-radius: 8px;
    flex: 0 0 58px;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    margin: 0px 8px 0px 0px;
    outline: rgb(9, 12, 20) none 0px;
    background-color: #ced6d9;
}/*.AnimateCa-TimDIV_7*/

.AnimateCa-TimDIV_7:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_7:after*/

.AnimateCa-TimDIV_7:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_7:before*/

.AnimateCa-TimSPAN_8 {
    align-items: center;
    block-size: 33.6px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 31.6px;
    inline-size: 64px;
    perspective-origin: 32px 15.8px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 32px 15.8px;
    user-select: none;
    width: 21px;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_8*/

.AnimateCa-TimSPAN_8:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_8:after*/

.AnimateCa-TimSPAN_8:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_8:before*/

.AnimateCa-TimSPAN_9 {
    align-items: center;
    block-size: 31.6px;
    border-block-end-color: rgba(0, 0, 0, 0);
    border-block-end-style: solid;
    border-block-end-width: 0.8px;
    border-block-start-color: rgba(0, 0, 0, 0);
    border-block-start-style: solid;
    border-block-start-width: 0.8px;
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgba(0, 0, 0, 0);
    border-inline-end-style: solid;
    border-inline-end-width: 0.8px;
    border-inline-start-color: rgba(0, 0, 0, 0);
    border-inline-start-style: solid;
    border-inline-start-width: 0.8px;
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: flex;
    height: 31.6px;
    inline-size: 64px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    padding-inline-end: 16px;
    padding-inline-start: 12px;
    perspective-origin: 32px 15.8px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 32px 15.8px;
    transition-behavior: normal, normal, normal;
    user-select: none;
    width: 37px;
    border: 0.8px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    flex: 1 1 0%;
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 0px 12px;
    transition: color 0.1s linear 0s, border-color 0.1s linear 0s, background-color 0.1s linear 0s;
}/*.AnimateCa-TimSPAN_9*/

.AnimateCa-TimSPAN_9:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_9:after*/

.AnimateCa-TimSPAN_9:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    display: block;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_9:before*/

.AnimateCa-TimINPUT_10 {
    appearance: none;
    background-position: 0px 0px;
    block-size: 30px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-end-style: none;
    border-block-end-width: 0px;
    border-block-start-color: rgb(9, 12, 20);
    border-block-start-style: none;
    border-block-start-width: 0px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-end-style: none;
    border-inline-end-width: 0px;
    border-inline-start-color: rgb(9, 12, 20);
    border-inline-start-style: none;
    border-inline-start-width: 0px;
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    display: block;
    height: 30px;
    inline-size: 22.0125px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: 4.403px;
    min-width: 4.403px;
    padding-block-end: 5px;
    padding-block-start: 5px;
    padding-inline-end: 0px;
    padding-inline-start: 0px;
    perspective-origin: 11px 15px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 11.0063px 15px;
    transition-behavior: normal, normal, normal;
    user-select: none;
    width: 22.0125px;
    background: rgba(0, 0, 0, 0) none repeat scroll 0px 0px / auto padding-box border-box;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    padding: 5px 0px;
    transition: color 0.1s linear 0s, border-color 0.1s linear 0s, background-color 0.1s linear 0s;
}/*.AnimateCa-TimINPUT_10*/

.AnimateCa-TimINPUT_10:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimINPUT_10:after*/

.AnimateCa-TimINPUT_10:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimINPUT_10:before*/

.AnimateCa-TimSPAN_11 {
    align-items: center;
    block-size: 20px;
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    display: flex;
    height: 20px;
    inline-size: 16.3875px;
    justify-content: space-between;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 8.1875px 10px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 8.19375px 10px;
    user-select: none;
    width: 16.3875px;
    border: 0px none rgba(24, 51, 78, 0.4);
    flex: 1 0 0%;
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-TimSPAN_11*/

.AnimateCa-TimSPAN_11:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    display: block;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-TimSPAN_11:after*/

.AnimateCa-TimSPAN_11:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    display: block;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-TimSPAN_11:before*/

.AnimateCa-TimDIV_12 {
    block-size: 22px;
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-end-end-radius: 1px;
    border-end-start-radius: 1px;
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    border-start-end-radius: 1px;
    border-start-start-radius: 1px;
    bottom: 4px;
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    height: 22px;
    inline-size: 18px;
    inset-block-end: 4px;
    inset-block-start: 4px;
    inset-inline-end: 4px;
    inset-inline-start: 40.4px;
    left: 40.4px;
    opacity: 0;
    perspective-origin: 9px 11px;
    position: absolute;
    right: 4px;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    top: 4px;
    transform-origin: 9px 11px;
    user-select: none;
    width: 18px;
    border: 0px none rgba(24, 51, 78, 0.4);
    border-radius: 1px;
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
    overflow: hidden;
    transition: all 0.1s linear 0s;
}/*.AnimateCa-TimDIV_12*/

.AnimateCa-TimDIV_12:after {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-TimDIV_12:after*/

.AnimateCa-TimDIV_12:before {
    border-block-end-color: rgba(24, 51, 78, 0.4);
    border-block-start-color: rgba(24, 51, 78, 0.4);
    border-inline-end-color: rgba(24, 51, 78, 0.4);
    border-inline-start-color: rgba(24, 51, 78, 0.4);
    caret-color: rgb(0, 202, 224);
    color: rgba(24, 51, 78, 0.4);
    column-rule-color: rgba(24, 51, 78, 0.4);
    cursor: default;
    text-decoration: none solid rgba(24, 51, 78, 0.4);
    text-emphasis-color: rgba(24, 51, 78, 0.4);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(24, 51, 78, 0.4);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(24, 51, 78, 0.4) none 0px;
}/*.AnimateCa-TimDIV_12:before*/

.AnimateCa-TimDIV_13, .AnimateCa-TimDIV_16 {
    align-items: center;
    block-size: 11px;
    border-block-end-color: rgb(229, 230, 235);
    border-block-start-color: rgb(229, 230, 235);
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
    border-inline-end-color: rgb(229, 230, 235);
    border-inline-start-color: rgb(229, 230, 235);
    border-start-end-radius: 4px;
    border-start-start-radius: 4px;
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: flex;
    height: 11px;
    inline-size: 18px;
    justify-content: center;
    perspective-origin: 9px 5.5px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 9px 5.5px;
    user-select: none;
    width: 18px;
    border: 0px none rgb(229, 230, 235);
    border-radius: 4px;
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
    transition: all 0.1s linear 0s;
}/*.AnimateCa-TimDIV_13, .AnimateCa-TimDIV_16*/

.AnimateCa-TimDIV_13:after, .AnimateCa-TimDIV_16:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-TimDIV_13:after, .AnimateCa-TimDIV_16:after*/

.AnimateCa-TimDIV_13:before, .AnimateCa-TimDIV_16:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: block;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-TimDIV_13:before, .AnimateCa-TimDIV_16:before*/

.AnimateCa-Timsvg_14, .AnimateCa-Timsvg_17 {
    block-size: 10px;
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    display: block;
    fill: none;
    height: 10px;
    inline-size: 10px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    overflow-clip-margin: content-box;
    perspective-origin: 5px 5px;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 5px 5px;
    user-select: none;
    vertical-align: -2px;
    width: 10px;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
    overflow: hidden;
}/*.AnimateCa-Timsvg_14, .AnimateCa-Timsvg_17*/

.AnimateCa-Timsvg_14:after, .AnimateCa-Timsvg_17:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timsvg_14:after, .AnimateCa-Timsvg_17:after*/

.AnimateCa-Timsvg_14:before, .AnimateCa-Timsvg_17:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timsvg_14:before, .AnimateCa-Timsvg_17:before*/

.AnimateCa-Timpath_15 {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    d: path("M 39.6 30.557 L 24.043 15 L 8.487 30.557");
    fill: none;
    perspective-origin: 0px 0px;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timpath_15*/

.AnimateCa-Timpath_15:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timpath_15:after*/

.AnimateCa-Timpath_15:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timpath_15:before*/

.AnimateCa-Timpath_18 {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    d: path("M 39.6 17.443 L 24.043 33 L 8.487 17.443");
    fill: none;
    perspective-origin: 0px 0px;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timpath_18*/

.AnimateCa-Timpath_18:after {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timpath_18:after*/

.AnimateCa-Timpath_18:before {
    border-block-end-color: rgba(17, 26, 44, 0.7);
    border-block-start-color: rgba(17, 26, 44, 0.7);
    border-inline-end-color: rgba(17, 26, 44, 0.7);
    border-inline-start-color: rgba(17, 26, 44, 0.7);
    caret-color: rgb(0, 202, 224);
    color: rgba(17, 26, 44, 0.7);
    column-rule-color: rgba(17, 26, 44, 0.7);
    cursor: pointer;
    fill: none;
    stroke: rgba(17, 26, 44, 0.7);
    stroke-width: 4px;
    text-decoration: none solid rgba(17, 26, 44, 0.7);
    text-emphasis-color: rgba(17, 26, 44, 0.7);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgba(17, 26, 44, 0.7);
    font: 10px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgba(17, 26, 44, 0.7) none 0px;
}/*.AnimateCa-Timpath_18:before*/

.AnimateCa-TimDIV_19 {
    block-size: 20px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    height: 20px;
    inline-size: 6.65px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 3.325px 10px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    transform-origin: 3.325px 10px;
    user-select: none;
    width: 6.65px;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_19*/

.AnimateCa-TimDIV_19:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_19:after*/

.AnimateCa-TimDIV_19:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(0, 202, 224);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: default;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_19:before*/

.AnimateCa-TimDIV_20 {
    block-size: 2px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-end-end-radius: 22px;
    border-end-start-radius: 22px;
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    border-start-end-radius: 22px;
    border-start-start-radius: 22px;
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 2px;
    inline-size: 164.4px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    min-block-size: auto;
    min-height: auto;
    min-inline-size: auto;
    min-width: auto;
    perspective-origin: 82.2px 1px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 82.2px 1px;
    user-select: none;
    width: 164.4px;
    background: rgba(27, 61, 95, 0.2) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(9, 12, 20);
    border-radius: 22px;
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_20*/

.AnimateCa-TimDIV_20:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_20:after*/

.AnimateCa-TimDIV_20:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimDIV_20:before*/

.AnimateCa-TimSPAN_21 {
    block-size: 2px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: 0px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    height: 2px;
    inline-size: 19.125px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 145.275px;
    inset-inline-start: 0px;
    left: 0px;
    perspective-origin: 9.5625px 1px;
    position: absolute;
    right: 145.275px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform-origin: 9.5625px 1px;
    user-select: none;
    width: 19.125px;
    background: rgba(17, 26, 44, 0.7) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_21*/

.AnimateCa-TimSPAN_21:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_21:after*/

.AnimateCa-TimSPAN_21:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_21:before*/

.AnimateCa-TimSPAN_22 {
    block-size: 18px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    bottom: -16px;
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    display: block;
    height: 18px;
    inline-size: 18px;
    inset-block-end: -16px;
    inset-block-start: 0px;
    inset-inline-end: 127.287px;
    inset-inline-start: 19.1125px;
    left: 19.1125px;
    perspective-origin: 9px 9px;
    position: absolute;
    right: 127.287px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    top: 0px;
    transform: matrix(1, 0, 0, 1, -9, 2);
    transform-origin: 9px 9px;
    user-select: none;
    width: 18px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_22*/

.AnimateCa-TimSPAN_22:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_22:after*/

.AnimateCa-TimSPAN_22:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-TimSPAN_22:before*/

.AnimateCa-Timsvg_23 {
    block-size: 18px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    height: 18px;
    inline-size: 18px;
    overflow-clip-margin: content-box;
    perspective-origin: 9px 9px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 9px 9px;
    user-select: none;
    width: 18px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
    overflow: hidden;
}/*.AnimateCa-Timsvg_23*/

.AnimateCa-Timsvg_23:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timsvg_23:after*/

.AnimateCa-Timsvg_23:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timsvg_23:before*/

.AnimateCa-Timg_24 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timg_24*/

.AnimateCa-Timg_24:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timg_24:after*/

.AnimateCa-Timg_24:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: none;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timg_24:before*/

.AnimateCa-Timmask_25 {
    block-size: 18px;
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    height: 18px;
    inline-size: 14px;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    width: 14px;
    x: 2px;
    y: 0.223px;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timmask_25*/

.AnimateCa-Timmask_25:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timmask_25:after*/

.AnimateCa-Timmask_25:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timmask_25:before*/

.AnimateCa-Timpath_26 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 2 0.223 H 16 V 18.223 H 2 Z");
    fill: rgb(255, 255, 255);
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_26*/

.AnimateCa-Timpath_26:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_26:after*/

.AnimateCa-Timpath_26:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_26:before*/

.AnimateCa-Timpath_27 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 3 11 C 3 12.864 3 13.796 3.304 14.53 A 4 4 0 0 0 5.469 16.696 C 6.204 17 7.136 17 9 17 S 11.796 17 12.53 16.696 A 4 4 0 0 0 14.695 14.531 C 15 13.796 15 12.864 15 11 V 9.283 C 15 7.794 15 7.05 14.803 6.368 A 4.998 4.998 0 0 0 13.956 4.702 C 13.522 4.14 12.921 3.702 11.719 2.823 L 10.132 1.663 C 9.804 1.424 9.64 1.305 9.461 1.256 A 1 1 0 0 0 8.975 1.248 C 8.794 1.29 8.625 1.404 8.29 1.631 L 6.51 2.84 C 5.226 3.711 4.584 4.146 4.12 4.718 A 5 5 0 0 0 3.212 6.43 C 3 7.135 3 7.91 3 9.46 V 11 Z");
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_27*/

.AnimateCa-Timpath_27:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_27:after*/

.AnimateCa-Timpath_27:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_27:before*/

.AnimateCa-Timpath_28 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 3 11 C 3 12.864 3 13.796 3.304 14.53 A 4 4 0 0 0 5.469 16.696 C 6.204 17 7.136 17 9 17 S 11.796 17 12.53 16.696 A 4 4 0 0 0 14.695 14.531 C 15 13.796 15 12.864 15 11 V 9.283 C 15 7.794 15 7.05 14.803 6.368 A 4.998 4.998 0 0 0 13.956 4.702 C 13.522 4.14 12.921 3.702 11.719 2.823 L 10.132 1.663 C 9.804 1.424 9.64 1.305 9.461 1.256 A 1 1 0 0 0 8.975 1.248 C 8.794 1.29 8.625 1.404 8.29 1.631 L 6.51 2.84 C 5.226 3.711 4.584 4.146 4.12 4.718 A 5 5 0 0 0 3.212 6.43 C 3 7.135 3 7.91 3 9.46 V 11 Z");
    fill: rgb(255, 255, 255);
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_28*/

.AnimateCa-Timpath_28:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_28:after*/

.AnimateCa-Timpath_28:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(255, 255, 255);
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_28:before*/

.AnimateCa-Timpath_29 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 10.132 1.665 L 9.542 2.472 L 10.132 1.665 Z M 9.461 1.257 L 9.201 2.223 L 9.461 1.257 Z M 8.29 1.632 L 7.729 0.805 L 8.289 1.632 Z M 8.975 1.249 L 9.201 2.223 L 8.975 1.249 Z M 3.212 6.429 L 4.17 6.718 L 3.212 6.43 Z M 6.51 2.84 L 7.071 3.668 L 6.511 2.84 Z M 4.12 4.718 L 3.344 4.088 L 4.121 4.718 Z M 14.804 6.369 L 13.843 6.647 L 14.803 6.369 Z M 11.72 2.824 L 12.31 2.016 L 11.72 2.824 Z M 13.957 4.703 L 13.167 5.314 L 13.957 4.703 Z M 14.697 14.531 L 13.773 14.148 L 14.696 14.531 Z M 16 11 V 9.283 H 14 V 11 H 16 Z M 2 9.46 V 11 H 4 V 9.46 H 2 Z M 12.309 2.015 L 10.722 0.857 L 9.542 2.472 L 11.129 3.632 L 12.309 2.016 Z M 7.729 0.805 L 5.948 2.013 L 7.07 3.668 L 8.851 2.46 L 7.73 0.805 Z M 10.722 0.857 C 10.462 0.667 10.124 0.4 9.72 0.292 L 9.2 2.222 C 9.157 2.212 9.148 2.198 9.206 2.235 C 9.276 2.279 9.366 2.345 9.541 2.472 L 10.721 0.857 Z M 8.852 2.46 C 9.03 2.339 9.124 2.276 9.194 2.235 C 9.254 2.2 9.244 2.213 9.201 2.223 L 8.749 0.275 C 8.342 0.369 7.995 0.624 7.729 0.805 L 8.85 2.46 Z M 9.72 0.292 A 2 2 0 0 0 8.748 0.275 L 9.2 2.223 L 9.72 0.292 Z M 4 9.46 C 4 7.847 4.01 7.248 4.17 6.717 L 2.255 6.14 C 1.99 7.021 2 7.971 2 9.461 H 4 Z M 5.948 2.012 C 4.715 2.848 3.923 3.374 3.343 4.086 L 4.896 5.347 C 5.246 4.917 5.736 4.572 7.07 3.667 L 5.948 2.013 Z M 4.17 6.718 A 4 4 0 0 1 4.896 5.348 L 3.343 4.088 A 6 6 0 0 0 2.255 6.14 L 4.17 6.717 Z M 16 9.284 C 16 7.854 16.01 6.941 15.763 6.091 L 13.842 6.647 C 13.991 7.16 14 7.737 14 9.284 H 16 Z M 11.13 3.63 C 12.379 4.543 12.838 4.89 13.165 5.313 L 14.748 4.09 C 14.207 3.39 13.464 2.859 12.308 2.015 L 11.13 3.631 Z M 15.763 6.09 A 6.002 6.002 0 0 0 14.748 4.09 L 13.165 5.313 A 4 4 0 0 1 13.842 6.646 L 15.763 6.09 Z M 9 18 C 9.918 18 10.657 18 11.257 17.959 C 11.865 17.917 12.404 17.829 12.913 17.619 L 12.148 15.771 C 11.923 15.864 11.628 15.929 11.121 15.963 C 10.605 16 9.946 16 9 16 V 18 Z M 14 11 C 14 11.945 14 12.604 13.964 13.12 C 13.93 13.626 13.865 13.922 13.772 14.147 L 15.619 14.913 C 15.831 14.403 15.919 13.865 15.959 13.256 C 16 12.657 16 11.918 16 11 H 14 Z M 12.913 17.618 A 5 5 0 0 0 15.619 14.913 L 13.772 14.147 A 3 3 0 0 1 12.148 15.771 L 12.913 17.618 Z M 9 16 C 8.054 16 7.395 16 6.88 15.964 C 6.373 15.93 6.077 15.865 5.852 15.772 L 5.087 17.619 C 5.597 17.831 6.135 17.919 6.743 17.959 C 7.343 18.001 8.082 18 9 18 V 16 Z M 2 11 C 2 11.918 2 12.657 2.04 13.257 C 2.082 13.866 2.17 14.404 2.38 14.914 L 4.228 14.148 C 4.135 13.923 4.07 13.628 4.036 13.121 C 4 12.605 4 11.946 4 11 H 2 Z M 5.852 15.772 A 3 3 0 0 1 4.228 14.148 L 2.381 14.914 A 5 5 0 0 0 5.087 17.619 L 5.852 15.772 Z");
    fill: rgb(7, 50, 71);
    fill-opacity: 0.16;
    mask-image: url(".cb775__a");
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_29*/

.AnimateCa-Timpath_29:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(7, 50, 71);
    fill-opacity: 0.16;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_29:after*/

.AnimateCa-Timpath_29:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(7, 50, 71);
    fill-opacity: 0.16;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_29:before*/

.AnimateCa-Timpath_30 {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    box-sizing: border-box;
    caret-color: rgb(9, 12, 20);
    clip-rule: evenodd;
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    d: path("M 7.125 6.261 L 11.069 9.571 A 0.563 0.563 0 0 1 11.069 10.432 L 7.125 13.741 V 12.271 L 9.832 10.001 L 7.125 7.73 V 6.26 Z");
    fill: rgb(21, 41, 60);
    fill-opacity: 0.5;
    fill-rule: evenodd;
    perspective-origin: 0px 0px;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    transform-origin: 0px 0px;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_30*/

.AnimateCa-Timpath_30:after {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    clip-rule: evenodd;
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(21, 41, 60);
    fill-opacity: 0.5;
    fill-rule: evenodd;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_30:after*/

.AnimateCa-Timpath_30:before {
    border-block-end-color: rgb(9, 12, 20);
    border-block-start-color: rgb(9, 12, 20);
    border-inline-end-color: rgb(9, 12, 20);
    border-inline-start-color: rgb(9, 12, 20);
    caret-color: rgb(9, 12, 20);
    clip-rule: evenodd;
    color: rgb(9, 12, 20);
    column-rule-color: rgb(9, 12, 20);
    cursor: pointer;
    fill: rgb(21, 41, 60);
    fill-opacity: 0.5;
    fill-rule: evenodd;
    text-decoration: none solid rgb(9, 12, 20);
    text-emphasis-color: rgb(9, 12, 20);
    text-size-adjust: 100%;
    user-select: none;
    border: 0px none rgb(9, 12, 20);
    font: 12px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(9, 12, 20) none 0px;
}/*.AnimateCa-Timpath_30:before*/


/* duration end here */




.Confom-BUTTON_1:hover {
    background: #00b1cc;
}
.Confom-BUTTON_1 {
    appearance: button;
    background-position: 0px 50%;
    block-size: 32px;
    border-block-end-color: rgb(255, 255, 255);
    border-block-end-style: none;
    border-block-end-width: 0px;
    border-block-start-color: rgb(255, 255, 255);
    border-block-start-style: none;
    border-block-start-width: 0px;
    border-end-end-radius: 8px;
    border-end-start-radius: 8px;
    border-inline-end-color: rgb(255, 255, 255);
    border-inline-end-style: none;
    border-inline-end-width: 0px;
    border-inline-start-color: rgb(255, 255, 255);
    border-inline-start-style: none;
    border-inline-start-width: 0px;
    border-start-end-radius: 8px;
    border-start-start-radius: 8px;
    bottom: 0px;
    box-shadow: rgba(0, 171, 214, 0.16) 0px 4px 8px 0px;
    caret-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    column-rule-color: rgb(255, 255, 255);
    cursor: pointer;
    height: 32px;
    inline-size: 76.8281px;
    inset-block-end: 0px;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    inset-inline-start: 0px;
    left: 0px;
    padding-block-end: 0px;
    padding-block-start: 0px;
    padding-inline-end: 16px;
    padding-inline-start: 16px;
    perspective-origin: 38.4062px 16px;
    position: relative;
    right: 0px;
    text-decoration: none solid rgb(255, 255, 255);
    text-emphasis-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    text-wrap: nowrap;
    top: 0px;
    transform-origin: 38.4141px 16px;
    user-select: none;
    width: 76.8281px;
    background: rgba(0, 0, 0, 0) linear-gradient(60deg, rgb(74, 126, 227), rgb(27, 201, 227), rgb(26, 219, 192)) repeat scroll 0px 50% / 300% 300% padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    border-radius: 8px;
    font: 700 12px / 18.858px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    overflow: hidden;
    padding: 0px 16px;
    /* transition: background-position 0.8s ease-out 0s; */
    /* transform: translate(-26px, 20px); */
    margin: 3px;
}


.secondsRange {width: 50%;}

.Confom-BUTTON_1-div {width: 50%;}





  
  .AnimateCa-ComDIV_1 {
    box-sizing: border-box;
    color: rgb(250, 250, 250);
    column-rule-color: rgb(250, 250, 250);
    cursor: default;
    height: 28px;
    width: max-content;
    background: rgb(30, 30, 40) none repeat scroll 0% 0% / auto padding-box border-box;
    border-radius: 6px;
    font: 500 14px / 20px "Albert Sans", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    padding: 4px 8px;
    z-index: 99999999;
    position: relative;
}  


/* Initially hide the .animateCaComHidden elements */
.animateCaComHidden {
    display: none;
  }
  
  /* Show the immediately following .animateCaComHidden sibling when hovering over .AnimateCa-S_180 */
  .AnimateCa-S_180:hover + .animateCaComHidden,
  /* Also maintain visibility when hovering over the .animateCaComHidden element itself */
  .animateCaComHidden:hover {
    display: block; /* or "flex", "inline", etc., depending on your layout needs */
  }
  
  #AnimateCa-ComDIV_1-84, #AnimateCa-ComDIV_1-95, #AnimateCa-ComDIV_1-62, #AnimateCa-ComDIV_1-117, #AnimateCa-ComDIV_1-147 {
    transform: translate(15px, -1px);
  }

  #AnimateCa-ComDIV_1-84, #AnimateCa-ComDIV_1-36, #AnimateCa-ComDIV_1-32 {
    transform: translate(34px, -1px);
  }




/* Professional Video Player Styles */
.video-player-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #000;
}

.video-player-container:fullscreen {
    max-width: none;
    width: 100%;
    height: 100%;
}

.video-player-container video {
    display: block;
    width: 100%;
    border-radius: 12px;
    object-fit: contain; /* Maintain aspect ratio and fit within container */
}

/* Video orientation handling */
.video-player-container.landscape-mode {
    max-width: 100%;
    width: 100%;
}

.video-player-container.portrait-mode {
    max-width: 400px; /* Limit width for portrait videos */
    margin: 0 auto;
}

.video-element.landscape-mode,
.video-element.portrait-mode {
    height: auto;
    aspect-ratio: auto; /* Let the video maintain its natural aspect ratio */
    max-height: none; /* Ensure no height constraints */
}

.video-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    z-index: 2147483647;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding-top: 20px;
}

.video-player-container:hover .video-controls-overlay {
    opacity: 1;
}

.progress-bar-container {
    width: calc(100% - 20px);
    margin: 0 10px;
    cursor: pointer;
    height: 10px;
    display: flex;
    align-items: center;
}

.progress-bar-custom {
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: height 0.1s ease;
}

.progress-bar-container:hover .progress-bar-custom {
    height: 8px;
}

.progress-bar-filled {
    height: 100%;
    width: 0;
    background-color: #007bff;
    border-radius: 5px;
}

.controls-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}

.controls-left, .controls-right {
    display: flex;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    padding: 8px;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.control-btn:hover {
    transform: scale(1.1);
    color: #007bff;
}

.volume-container {
    display: flex;
    align-items: center;
}

.volume-slider {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    -webkit-appearance: none;
    background: transparent;
}

.volume-container:hover .volume-slider {
    width: 80px;
    opacity: 1;
    margin-left: 5px;
}

.volume-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #ffffff;
    margin-top: -5px;
}

.time-display {
    font-size: 0.85rem;
    margin-left: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.subtitle-toggle {
    display: flex;
    align-items: center;
}

.subtitle-toggle .form-check-label {
    color: white;
    font-size: 0.85rem;
}

.subtitle-toggle .form-check-input {
    cursor: pointer;
}

@media (max-width: 576px) {
    .time-display {
        display: none;
    }
    .volume-container:hover .volume-slider {
        width: 60px;
    }
}

 

 