﻿.car-img {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, filter 0.5s ease-in-out;
    filter: none;
}

    .car-img:hover {
        opacity: 1;
        transform: scale(1.1);
        /*filter: drop-shadow(2px 0 red) drop-shadow(-2px 0 red) drop-shadow(0 2px red) drop-shadow(0 -2px red);*/
    }

.single-item {
    position: relative;
    background: white;
    overflow: hidden;
}

.single-item::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(200,35,53,0.8);
    z-index: 0;
    transform: rotate(15deg);
}

.circle-logo {
    position: absolute;
    top: 0px;
    left: 10px;
    width: 130px;
    height: 110px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .circle-logo img {
        width: 100%;
        object-fit: contain;
        transition: all 0.4s ease;
        filter: brightness(0) invert(1);
    }

.circle-logo2 {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 120px;
    height: 80px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .circle-logo2 img {
        height: 100%;
        object-fit: contain;
        transition: all 0.4s ease;
        filter: brightness(0) invert(1);
    }

.circle-logo3 {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .circle-logo3 img {
        height: 100%;
        object-fit: contain;
        transition: all 0.4s ease;
        filter: brightness(0) invert(1);
    }


.row > div, .car-img, .mid-area {
    position: relative;
    z-index: 1;
}


.data-section .single-item.mp-none {
    margin-bottom: 0;
}

.data-section .single-item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    border-radius: var(--thm-bdr-radius);
    padding: 30px;
    margin-bottom: 10px;
    transition: all 500ms ease;
    z-index: 2;
}


    .data-section .single-item .bg {
        background: var(--thm-gray);
        border-radius: 5px;
        margin-right: 0px;
        margin-bottom: 5px;
        padding: 10px 10px;
        color: white;
        overflow-x: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
    }

        .data-section .single-item .bg::-webkit-scrollbar {
            width: 0 !important;
            height: 0;
        }

        .data-section .single-item .bg .time {
            color: var(--thm-bdr-color);
        }

    .data-section .single-item .title-bottom {
        border-bottom: 1px solid #32286D;
        margin-top: 20px;
        padding-bottom: 35px;
    }

    .data-section .single-item .single-box {
        margin-top: 35px;
        margin-bottom: 35px;
        padding-bottom: 10px;
    }

        .data-section .single-item .single-box .box-item {
            border: 1px solid var(--thm-bdr-color);
            /*            margin-right: -19px;*/
            text-align: center;
            padding-bottom: 0px;
            padding-top: 5px;
            margin-bottom: 5px;
            font-size: 12px;
            min-height: 95px;
        }

            .data-section .single-item .single-box .box-item .head {
                font-size: 16px;
                line-height: 40px;
                padding: 0px;
            }

            .data-section .single-item .single-box .box-item .sub {
                font-weight: bold;
                font-size: 16px;
                line-height: 18px;
                color: var(--thm-primary);
            }


                .data-section .single-item .single-box .box-item .sub a {
                    color: var(--thm-primary);
                    font-size: 16px;
                    -webkit-transition: all 500ms ease;
                    transition: all 500ms ease;
                }

                    .data-section .single-item .single-box .box-item .sub a:hover {
                        color: var(--thm-extra);
                    }

                    .data-section .single-item .single-box .box-item .sub a:before {
                        position: absolute;
                        bottom: 4px;
                        left: 0;
                        right: 0;
                        height: 0px;
                        content: "";
                        background-color: var(--thm-primary);
                        -webkit-transition: all 500ms ease;
                        transition: all 500ms ease;
                    }

                    .data-section .single-item .single-box .box-item .sub a:hover:before {
                        background-color: var(--thm-extra);
                    }



    .data-section .single-item .prize-area {
        border: 1px solid var(--thm-bdr-color);
        width: 100%;
        height: 100%;
    }

        .data-section .single-item .prize-area .prize {
            font-size: 14px;
            line-height: 21px;
            color: #75D115;
            display: block;
            margin-bottom: 6px;
        }

            .data-section .single-item .prize-area .prize img {
                margin-right: 5px;
            }

    .data-section .single-item .contain-area {
        margin: 60px auto;
    }

    .data-section .single-item .prize-area .cmn-btn {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        margin: 10px 0 4px;
    }

    .data-section .single-item .prize-area p {
        font-weight: normal;
        font-size: 14px;
        line-height: 21px;
        margin: auto 20%;
    }




/* 图片弹框 */

.imgModal .modal-dialog {
    max-width: fit-content !important;
    max-height: 80vh !important;
    margin: 20px auto !important;
}

.imgModal .modal-content {
    display: flex;
    flex-direction: column;
    max-height: 90vh !important;
}

.imgModal .modal-body {
    padding: 5vh !important;
    overflow: auto !important;
    text-align: center !important;
    max-height: 70vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgModal img#labelImg {
    max-width: none !important;
    max-height: 60vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .imgModal .modal-dialog {
        margin: 0 !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
    }

    .imgModal .modal-content {
        max-height: 100vh !important;
        border-radius: 0 !important;
    }

    .imgModal .modal-body {
        padding: 0 !important;
        max-height: 90vh !important;
        justify-content: flex-start !important;
        align-items: center !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch; /* iOS 滚动流畅 */
    }

    .imgModal img#labelImg {
        max-height: 85vh !important;
        margin: 0 auto !important;
    }
}