.newkkk{
    width: 100%;
background-color: #f5f7fa;
    
}
.title{
                 color: #9d0300;
            }
            .title::before,.title::after{
                background-color: #9d0300;
            }
            .container-box {top: -20px;}
.circle-box::after{
    background-image:none;
}
.circle-box{top:40px}

        .newcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            
        }

        .hero-section {
            background: linear-gradient(135deg, #f53d37 0%, #9d0300 100%);
            /*background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);*/
            color: white;
            padding: 60px 20px;
            border-radius: 5px;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-section h1 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .info-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .info-item {
            margin-bottom: 20px;
        }

        .info-item h2 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .info-item p {
            color: #666;
        }

        .description {
            text-align: justify;
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .scientists-section {
            margin-top: 10px;
            padding: 0 20px;
        }

        .scientist-card {
            background: white;
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .scientist-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .scientist-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .scientist-info {
            flex-grow: 1;
        }

        .scientist-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .scientist-title {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .scientist-quote {
            color: #333;
            font-size: 14px;
            line-height: 1.6;
        }

        .scientists-section {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .scientist-list {
            position: absolute;
            width: 100%;
            transition: transform 0.5s ease;
            left: 0;
            right: 0;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .pagination-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .pagination-dot.active {
            background: #9d0300;
        }

        @media (max-width: 768px) {
            .container-box {top: 0px;}
            .newcontainer {
                padding: 15px;
            }

            .header h1 {
                font-size: 20px;
            }

            .description {
                font-size: 14px;
                padding: 0 15px;
            }

            .scientist-card {
                padding: 15px;
            }

            .scientist-avatar {
               width: 70px;
            height: 70px;
            }

            .scientist-name {
                font-size: 16px;
            }
            
        }
        
.wsc-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 合作伙伴样式 */
        .wsc-partner-section {
            margin-bottom: 0;
            padding: 10px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .wsc-partner-title {
            font-size: 28px;
            margin-bottom: 35px;
            text-align: center;
            color: #c41e3a;
            font-weight: 600;
            position: relative;
        }

        .wsc-partner-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #c41e3a, #ff6b6b);
            border-radius: 2px;
        }

        .wsc-partner-grid {
            display: grid;
            gap: 15px;
            justify-content: center;
            padding: 20px 0;
        }

        .wsc-partner-logo {
            width: 100%;
            height: 70px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.4s ease;
            padding: 15px;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
        }

        .wsc-partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(196, 30, 58, 0.15);
            border-color: #c41e3a;
        }

        /* 联系表单样式 */
        .wsc-contact-section {
            background: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .wsc-contact-title {
            font-size: 24px;
            margin-bottom: 30px;
            text-align: center;
            color: #2c3e50;
        }

        .wsc-form-group {
            margin-bottom: 20px;
        }

        .wsc-form-label {
            display: block;
            margin-bottom: 8px;
            color: #4a5568;
        }

        .wsc-form-input,
        .wsc-form-select,
        .wsc-form-textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 16px;
        }

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

        .wsc-form-submit {
            background: #9d0300;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .wsc-form-submit:hover {
            background: #9d0300;
        }

        /* 响应式布局 */
        @media (min-width: 768px) {
            .wsc-partner-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        /*小于电脑尺寸时*/
        @media (max-width: 767px) {
            .wsc-partner-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
            }
        
            .wsc-contact-section {
                padding: 20px;
            }
        }
        