/* view_article_img.css */
/** {*/
/*            margin: 0;*/
/*            padding: 0;*/
/*            box-sizing: border-box;*/
/*            font-family: "Microsoft Yahei", sans-serif;*/
/*        }*/

/*        body {*/
/*            color: #333;*/
/*            line-height: 1.6;*/
/*        }*/

/*        .container {*/
/*            max-width: 1200px;*/
/*            margin: 0 auto;*/
/*            padding: 20px;*/
/*        }*/

        /* 项目标题样式 */
        .project-title {
            font-weight: bold;
        }

        /* 图片轮播区域 */
        .image-slider {
            width: 98%;
            margin: 0 auto 30px;
        }

        .main-img {
            width: 100%;
            height: 7rem!important;
            object-fit: cover;
            margin-bottom: 10px;
            border-radius: 4px;
        }

        .thumb-list {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .thumb-img {
            width: 120px;
            height: 80px!important;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
            border: 2px solid transparent;
        }

        .thumb-img.active {
            opacity: 1;
            border-color: #0066cc;
        }

        /* 项目信息区域 */
        .project-info {
            margin-bottom: 20px;
        }

        .business-info, .keywords, .category {
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }
        .keywords a{
            font-size: 14px;
            color: #666;
            margin-right: 7px;
        }
        .btn-group {
            margin: 20px 0;
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .btn-message {
            background-color: #a7a25a;
            color: white;
        }

        .btn-case {
            background-color: #666;
            color: white;
        }

        .btn:hover {
            opacity: 0.9;
        }

        .detail-title {
            font-size: 18px;
            font-weight: bold;
            margin: 15px 0 10px;
        }

        .detail-content, .project-desc {
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.8;
        }

        /* 相关案例区域 */
        .case-section {
            margin-top: 50px;
            width: 1220px;
            margin: 0 auto;
        }

        .case-title {
            font-size: 22px;
            font-weight: bold;
            color: #a7a25a;
            text-align: center;
            margin-bottom: 30px;
        }

        .case-carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .case-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }

        .case-item {
            flex: 0 0 calc(33.333% - 14px);
            text-align: center;
        }

        .case-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .case-name {
            font-size: 14px;
            color: #333;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .carousel-indicator {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
        }

        .indicator-dot.active {
            background-color: #a7a25a;
        }

        /* 留言弹窗样式 */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }

        .modal-content {
            background-color: white;
            width: 500px;
            padding: 30px;
            border-radius: 8px;
            position: relative;
            box-sizing: border-box;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        .modal-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: 500;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            box-sizing: border-box;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .modal-content {
                width: 90%;
            }
            .case-item {
                flex: 0 0 calc(50% - 10px);
            }
            .main-img {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .case-item {
                flex: 0 0 100%;
            }
            .btn-group {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
        }






