/* 首页特定样式 - 基于logo颜色的简约霸气版 */

/* 英雄区/轮播区域 */
.hero {
    height: 75vh; /* 从85vh减小到75vh */
    min-height: 500px; /* 从600px减小到500px */
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    margin-top: 80px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero1.jpg');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero2.jpg');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero3.jpg');
}

.slide.current {
    opacity: 1;
    z-index: 2;
}

.slide .content {
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    z-index: 3;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease 0.5s forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide .content h1 {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.slide .content h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.slide .content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 隐藏重复的容器标题内容，仅在移动设备上使用 */
.hero .container {
    display: none;
}

/* 下滚指示器 */
.scroll-down {
    position: absolute;
    bottom: 40px; /* 从30px增加到40px，使其更靠近底部内容 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1.5s infinite alternate;
    cursor: pointer;
    text-decoration: none;
}

.scroll-text {
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-down i {
    font-size: 20px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0.3;
        transform: translate(-50%, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* 关于我们部分样式 - 更加简约大气 */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.about-img-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.img-hover-zoom {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-hover-zoom:hover {
    transform: scale(1.03);
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    border-radius: 20px;
    opacity: 0.3;
}

.about-decoration {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -30px;
    opacity: 0.5;
}

.dots-decoration {
    width: 100%;
    height: 100%;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.company-vision {
    background-color: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.vision-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.company-vision blockquote {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 120px;
    margin: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--block-shadow);
}

.stat span {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

/* 优化我们的故事区块样式 */
.our-story {
    padding: 60px 0 40px; /* 增加底部内边距 */
}

.our-story .section-header {
    margin-bottom: 40px;
}

.our-story .about-content {
    margin-bottom: 0; /* 移除about-content底部外边距 */
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* 改为顶部对齐 */
    gap: 50px; /* 增加照片和文字之间的间距 */
}

.our-story .about-img-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    position: relative;
    margin-top: 8px; /* 添加顶部边距，微调位置 */
}

.our-story .about-text {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 确保文本顶部对齐 */
}

.our-story .about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.our-story .company-vision {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.our-story .vision-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.our-story blockquote {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

.our-story .about-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
    padding-bottom: 20px; /* 添加底部间距确保可见 */
}

.our-story .stat {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff; /* 确保有背景色 */
    border-radius: 8px; /* 添加圆角 */
    padding: 15px; /* 添加内边距 */
    box-shadow: var(--card-shadow); /* 添加阴影 */
}

.our-story .stat span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block; /* 确保显示为块级元素 */
}

.our-story .stat p {
    margin: 5px 0 0;
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .our-story .about-content {
        flex-direction: column;
    }
    
    .our-story .about-img-wrapper {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .our-story {
        padding: 40px 0;
    }
    
    .our-story .about-stats {
        justify-content: space-between;
    }
    
    .our-story .stat {
        min-width: calc(33% - 20px);
    }
}

/* 数据统计部分 - 更加霸气 */
.counter-section {
    padding: 80px 0;
    position: relative;
    color: #fff;
    margin-top: 50px; /* 添加顶部间距 */
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.8), rgba(232, 158, 91, 0.8));
    z-index: 1;
}

.counter-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-item i {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.counter-item h4 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* 业务范围部分 - 更加简约霸气 */
.services {
    padding: 30px 0 80px; /* 增加顶部内边距 */
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 修改为固定的4列布局 */
    gap: 20px; /* 缩小间距以适应更多列 */
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--block-shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 169, 157, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-img-wrapper {
    height: 180px; /* 从220px减小到180px */
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 响应式样式 */
@media screen and (max-width: 1200px) {
    .hero {
        height: 75vh;
    }
    
    .slide .content h1 {
        font-size: 40px;
    }
    
    .slide .content p {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr); /* 大屏幕保持4列 */
    }
}

@media screen and (max-width: 992px) {
    .hero {
        height: 70vh;
    }
    
    .slide .content h1 {
        font-size: 36px;
    }
    
    .slide .content p {
        font-size: 16px;
    }
    
    .counter-item {
        flex-basis: 50%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 中等屏幕显示2列 */
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide .content h1 {
        font-size: 28px;
    }
    
    .slide .content p {
        font-size: 14px;
    }
    
    /* 显示备用标题 */
    .slider {
        display: none;
    }
    
    .hero .container {
        display: block;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        position: relative;
        z-index: 2;
    }
    
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero1.jpg');
        background-size: cover;
        background-position: center;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero .page-description {
        font-size: 16px;
        max-width: 280px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .about-img-wrapper,
    .about-text {
        flex: 100%;
    }
    
    .about-decoration {
        display: none;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* 小屏幕显示1列 */
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .counter-wrapper {
        flex-direction: column;
    }
    
    .counter-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .counter-item i {
        font-size: 40px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-item h4 {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* 合作伙伴部分 - 更加大气 */
.partners {
    padding: 80px 0;
}

.partners .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo {
    width: 200px;
    height: 120px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: var(--block-shadow);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA区域 - 更加霸气 */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/decoration/dots.svg');
    background-size: 15px;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* 联系我们部分 - 更加大气 */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    margin: 0;
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: var(--button-shadow);
}

.contact-form {
    flex: 1.5;
    min-width: 300px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
    position: relative;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--text-color);
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-group.invalid label {
    color: #e74c3c;
}

.form-response {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-response.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-response.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.form-response i {
    margin-right: 8px;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.form-actions .btn {
    display: flex;
    align-items: center;
}

.form-actions .btn i {
    margin-left: 8px;
}

/* 响应式样式 */
@media screen and (max-width: 1200px) {
    .hero {
        height: 75vh;
    }
    
    .slide .content h1 {
        font-size: 40px;
    }
    
    .slide .content p {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .hero {
        height: 70vh;
    }
    
    .slide .content h1 {
        font-size: 36px;
    }
    
    .slide .content p {
        font-size: 16px;
    }
    
    .counter-item {
        flex-basis: 50%;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide .content h1 {
        font-size: 28px;
    }
    
    .slide .content p {
        font-size: 14px;
    }
    
    /* 显示备用标题 */
    .slider {
        display: none;
    }
    
    .hero .container {
        display: block;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        position: relative;
        z-index: 2;
    }
    
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero1.jpg');
        background-size: cover;
        background-position: center;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero .page-description {
        font-size: 16px;
        max-width: 280px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .about-img-wrapper,
    .about-text {
        flex: 100%;
    }
    
    .about-decoration {
        display: none;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* 小屏幕显示1列 */
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .counter-wrapper {
        flex-direction: column;
    }
    
    .counter-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .counter-item i {
        font-size: 40px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-item h4 {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* 淡入动画 */
[data-animation-item] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-animation-item].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* 按顺序淡入 */
[data-animation-group] [data-animation-item]:nth-child(1) {
    transition-delay: 0.1s;
}

[data-animation-group] [data-animation-item]:nth-child(2) {
    transition-delay: 0.2s;
}

[data-animation-group] [data-animation-item]:nth-child(3) {
    transition-delay: 0.3s;
}

[data-animation-group] [data-animation-item]:nth-child(4) {
    transition-delay: 0.4s;
}

/* 计数器动画 */
@keyframes count {
    from {
        content: attr(data-count);
    }
    to {
        content: attr(data-count);
    }
}
