.epower-home-service {
    border-radius: 0 0 4px 4px;
    box-shadow: 
        10px 0 10px -10px rgba(0, 0, 0, 0.08),
        -10px 0 10px -10px rgba(0, 0, 0, 0.08),
        0 10px 10px -10px rgba(0, 0, 0, 0.08);
    width: 1200px;
    margin: 0 auto; /* 横向居中 */
}
.epower-home-service .banner {
    width: 1200px; /* 固定宽度 */
    height: 340px;
    position: relative;
    margin: 0 auto; /* 横向居中 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* 添加阴影，参数依次为：X偏移，Y偏移，模糊半径，阴影颜色 */
}
 .epower-home-service .news .news-banner {
     background: linear-gradient(135deg, #3369E3 0%, #008a64 100%);
 }
.epower-home-service .banner img {
    width: 100%; /* 图片宽度设置为 100%，填充整个横幅 */
    height: 100%; /* 图片高度也设置为 100% */
    object-fit: cover; /* 确保图片按比例缩放，同时填充整个横幅 */
}
.epower-home-service .title {
    height: 32px;
    font-size: 32px;
    color: #333;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.epower-home-service .bar {
    margin: 0 auto;
    width: 48px;
    height: 2px;
    background: #3c7ee5;
    border-radius: 2px;
}

.epower-home-service .info {
    height: 19px;
    font-size: 14px;
    color: #999999;
    line-height: 19px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 9px;
}

.epower-home-service .news {
    padding-bottom: 20px;
    background: #fff;
    top:-2px;
}

.epower-home-service .news .center {
    height: 376px;
}

.epower-home-service .news .news-banner {
    height: 100px;
    padding-left: 40px;
    padding-right: 40px;
    background-size: cover;
}

.epower-home-service .news .news-banner h3 {
    margin-top: 34px;
    width: 128px;
    height: 32px;
    font-size: 32px;
    color: #fff;
    line-height: 32px;
}

.epower-home-service .news .news-banner span {
    width: 140px;
    height: 32px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    margin-top: 41px;
    margin-left: 10px;
}

.epower-home-service .news .news-banner a {
    margin-top: 34px;
    height: 32px;
    color: #fff;
    line-height: 32px;
    font-size: 14px;
}

.epower-home-service .news .news-list {
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 32px;
    padding-left: 54px;
    padding-right: 54px;
}

.epower-home-service .news .news-list li {
    line-height: 44px;
    border-bottom: 2px dashed #e5e5e5;
    list-style: circle;
    float: left;
    width: 48%;
}

.epower-home-service .news .news-list li:nth-child(2n) {
    float: right;
}

.epower-home-service .news .news-list li a {
    float: left;
    color: #333;
    width: 80%;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;        /* 禁止文本换行 */
    overflow: hidden;           /* 超出部分隐藏 */
    text-overflow: ellipsis;    /* 超出部分以省略号显示 */
}

.epower-home-service .news .news-list li a:hover {
    color: #3369E3; /* 鼠标悬停时字体变色 */
    font-weight: bold;
    transition: width 0.3s ease;    /* 动画效果 */
    width: 100%;
}

.epower-home-service .news .news-list li a::after {
    content: "";
    display: block;
    width: 0;                       /* 初始宽度为0 */
    height: 5px;                    /* 下划线高度 */
    background-image: linear-gradient(to right, #3369E3, #008A64);
    transition: width 0.3s ease;    /* 动画效果 */
    position: absolute;
    left: 0;
    bottom: 0;
}

.epower-home-service .news .news-list li a:hover::after {
    width: 100%; /* 悬停时下划线扩展到100%宽度 */
}

.epower-home-service .news .news-list li span {
    float: right;
    width: 20%;
    line-height: 44px;
    text-align: right;
    font-weight: bold;
}
/* 悬停时隐藏日期 */
.epower-home-service .news .news-list li:hover span {
    display: none;
}

.service_price {
    color: #008a64;
    display: block;
    line-height: 42px;
    font-size: 24px;
}


.sc-list {
    margin-bottom: 40px;
    border-radius: 4px;
}

.sc-content {
    box-sizing: border-box;
    width: calc(33.33% - 20px);
    height: 256px;
    padding: 32px;
    margin: 10px;
    box-shadow: 0px -1px 0px 0px #EDEEFF, 0px 2px 10px 0px rgb(182 192 219 / 30%);
    background: #FFFFFF;
    float: left;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sc-content:nth-child(3n) {
    margin-right: 0;
    border-right: none;
}

.sc-content:hover {
    transform: translateX(-5px);
    box-shadow: 0px 10px 20px rgba(0, 200, 100, 0.3);
    position: relative;
    transition: all 0.3s ease;
}
.sc-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, #3369E3 0%, #008a64 100%);
    transition: all 0.4s ease;
}

.sc-content:hover::before {
    left: 0;
}
.sc-list::after {
    content: "";
    display: table;
    clear: both;
}


.sc-h5-title {
    font-size: 20px;
    color: #666;
    line-height: 36px;
    height: 36px;
    font-weight: bold
}
.sc-h5-title:hover {
    color: #3369E3;
    font-weight: bold;
}

.sc-h5-title span {
    display: inline-block;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-weight: normal;
    background: #3369E3;
    border-radius: 11px 11px 11px 0px;
    color: #fff;
    font-size: 12px;
    vertical-align: middle;
}

.sc-p-title {
    height: 72px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.sc-a-title {
    position: absolute;
    bottom: 24px;
    left: 32px;
    font-size: 16px;
    display: inline-block;
    padding: 8px 50px;
    border-radius: 4px;
}
.sc-p-title:hover {
    font-weight: bold;
}
.sc-a-title:hover {
    font-weight: bold;
}

.sc-div-title {
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block;
    width: 164px;
    height: 106px;
    float: right;
}

.sc-div-title img {
    width: 100%;
    height: 100%;
    display: block;
}
/* 同时调整容器和内部元素 */
.share-container {
    margin: 30px 0 60px !important; /* 上 左右 下 */
    padding-bottom: 20px;
}
.qrcode-placeholder {
    margin-bottom: 15px;
}
