/* ===== 服务区块样式 ===== */
.royal-service-section {
    padding: 90px 0 0;
    overflow: hidden;
    background: #f6f6f6;
}

/* 服务信息容器 */
.royal-servcie-info {
    overflow: hidden;
}

/* 头部区域 */
.royal-service-header {
    margin-bottom: 30px;
    position: relative;
}

.royal-service-title {
    font-size: 30px;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 15px; 
}

/* 标题下划线装饰 */
.royal-service-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #f7b700;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.royal-service-header:hover .royal-service-title::after {
    width: 100px;
}

/* 头部描述 */
.royal-service-header p {
    font-size: 18px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

/* 头部装饰数字 */
.royal-service-header span {
    font-size: 42px;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d6d6d6;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    opacity: 0.5;
}

/* 服务主体内容 */
.royal-service-body {
    font-size: 16px;
    padding: 0 15px;
    line-height: 1.8;
    color: #666;
}

.royal-service-body p {
    margin-bottom: 15px;
}

.royal-service-body p:last-child {
    margin-bottom: 0;
}

/* 服务图片 */
.royal-service-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin: 30px 0;
    background: #fff;
}

.royal-service-image img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    -o-transition: transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.royal-service-image:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* 服务模块宽度 */
.servcie {
    width: 50%;
    overflow: hidden;
}

/* 服务列表区域 */
.royal-service-list {
    overflow: hidden;
    padding: 60px 0;
}

.royal-service-list-content {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
}
 

/* ===== 992px及以下适配 ===== */
@media (max-width: 992px) {
    
    /* 内边距调整 */
    .royal-service-section {
        padding: 30px 0 0 0;  
    }
    
    .royal-service-list {
        padding: 30px 0;   
    }
    
    /* 头部布局调整 */
    .royal-service-header {
        margin-bottom:15px;   
    }
    
    .royal-service-title {
        font-size: 24px;   
    }
    .royal-service-title::after{
        width: 48px;
    }
    /* 描述文字缩小 */
    .royal-service-header p {
        font-size: 16px;  
    }
    
    /* 装饰数字缩小 */
    .royal-service-header span {
        font-size: 32px;  
        position: relative;
        margin: 15px 0;
        display: block; 
        opacity: 0.3;  /* 降低透明度，避免干扰 */
    }
    
    /* 服务主体调整 */
    .royal-service-body {
       
        padding: 0;  
    }
     
    /* 图片边距 */
    .royal-service-image {
        margin: 15px 0 0;  
    }
    
    /* 服务列表内容调整 */
    .royal-service-list-content {
       display: block;
    }
    
    /* 服务项调整 */
    .servcie{
        width: 100%; 
        margin-bottom: 30px;
    }
    
  
}
 