 .TRS_Editor img {
    display: block;
    margin: 0 auto!important;
}
 /* PC端样式 */
        .mobile_content { display: none; }
             .pc_content { display: block; }
             
             /* 移动端样式 - 屏幕宽度小于768px时 */
             @media (max-width: 767px) {
                html{
         font-size: 39px;
        }
               img{
               max-width:100%
               }
                 .TRS_Editor p img,.TRS_Editor div img,.TRS_Editor span img{height: auto!important;}
                 .mobile_content { display: block; }
                 .pc_content { display: none; }
             }
.news-head > p:nth-child(2) {
    width: 1400px;
}
@media screen and (max-width: 480px) {
  .news-head > p:nth-child(2) {
    width: 100%!important;
}
}
.news-head {
    min-height: 259px;
}
.month_en{font-style:normal;}


.news-head p span:last-child {
    margin-left: 0px;
}

.TRS_Editor p img,.TRS_Editor div img,.TRS_Editor span img{max-width:100%}
      /*底部*/
.bottom{
    float: left;
    width: 100%;
    padding: 0 4%;
    overflow: hidden;
    background-color: #444444;
}

  .row {
    margin-right: -15px;
    margin-left: -15px;
}
@media (min-width: 768px) {
    .col-sm-9,  .col-sm-12 {
    float: left;
}


}
 .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 768px) {
    .col-sm-9 {
    width: 75%;
}}
/* .dingyue p {
    font-size: 16px;
    color: #333333;
    text-indent: 2em;
    line-height: 28px;
 
    margin-bottom: 20px;
}
.dingyue h5 {
    font-size: 20px;
    color: #333333;
    padding-bottom: 28px;
    border-bottom: 1px solid #E0E0E0;
} */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}
h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}


  :root {
            --primary-color: #6366f1;
            --primary-dark: #4f46e5;
            --secondary-color: #8b5cf6;
            --accent-color: #06b6d4;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --error-color: #ef4444;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --text-light: #9ca3af;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-accent: #f1f5f9;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
            --radius-2xl: 1.5rem;
        }

     /* 现代化入会流程设计 */
     .process-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 30px 0;
          

            position: relative;
            overflow: hidden;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .process-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
        }

        .process-title {
            text-align: center;
            font-size: 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-weight: 800;
            position: relative;

        }

        .process-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            padding: 20px 0;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            border-radius: 2px;
            z-index: 1;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeInUp 0.8s ease-out;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }
        .step:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .step-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;

            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }

 

        .step-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-xl);
            background: rgba(255, 255, 255, 0.95);
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--step-color), var(--step-color-light));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--step-color), var(--step-color-light));
            opacity: 0.3;
            z-index: -1;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        .step-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .step-content {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            text-align: center;
            font-weight: 400;
        }

        .step-01 { --step-color: var(--primary-color); --step-color-light: var(--primary-dark); }
        .step-02 { --step-color: var(--secondary-color); --step-color-light: #7c3aed; }
        .step-03 { --step-color: var(--accent-color); --step-color-light: #0891b2; }
        .step-04 { --step-color: var(--success-color); --step-color-light: #059669; }

        /* 现代化表单设计 */
        .form-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 30px;
        
           
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
        }

        .form-title {
            font-size: 30px;
            margin-bottom: 10px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            position: relative;

        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        .intro-text {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
         /* 现代化响应式设计 */
         @media (max-width: 1200px) {
          
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {

            .process-title {
                font-size: 24px;
            }

            .process-steps {
                flex-direction: row;
                flex-wrap: wrap;
           
            }

            .step {
                min-width: 50%;
            }

            .step-card {
                padding: 10px;
            }

           

            .form-title {
                font-size: 24px;
            }

            
        }