html{
    padding: 0px;
    margin: 0px;
    min-width: 1200px;
    /*font-family: "alibab",sans-serif;*/
}
body{
    padding: 0px;
    margin: 0px;
}
.index-title{
    text-align: center;
    font-weight: 600;
    font-size: 52px;
    color: #333;
    margin-top: 86px;
    margin-bottom: 46px;
}
.index-min-title{
    font-size: 24px;
    font-weight: 100;
}
a{
    text-decoration: none;
}
@font-face {
    font-family: "alibab";
    src:url("../plug/font/阿里巴巴普惠体M.ttf") format("woff2");
    font-style: normal;
    font-display: swap;
}
/*头部*/
.header-index{
    width: 100%;
    height: 100px;
    position: fixed;
    align-content: center;
    gap: 360px;
    top: 0;
    left: 0;
    z-index: 999;
    min-width: 1200px;
    border-bottom: 1px solid #158AFF;
    min-width: 1310px;
}
.header{
    width: 100%;
    height: 100px;
    position: fixed;
    align-content: center;
    gap: 360px;
    top: 0;
    left: 0;
    z-index: 999;
    min-width: 1200px;
    border-bottom: 1px solid #158AFF;
    background-color: #fff;
    min-width: 1310px;
}
.header-index:hover{
    background-color: #fff;
}
.header-index:hover .navs li a{
    color: #313131;
}
.header-index:hover .logo-index{
    background-image: url("/static/image/u20.png") !important;;
}
.logo-index{
    width: 262px;
    height: 71px;
    background-image: url("/static/image/u21.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
    margin-left: 15%;
}
.logo{
    width: 262px;
    height: 71px;
    background-image: url("/static/image/u20.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
    margin-left: 15%;
}
.navs{
    color: white;
    float: right;
    margin-right: 15%;
    height: 70px;
}
.navs ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    line-height: 70px;
}
.navs li{
    font-size: 20px;
    font-style: normal;
}
.navs li a{
    color: #fff;
    position: relative;
    display: inline-block;
}
.navs-li-a{
    color: #313131 !important;
}
.navs li a:hover{
    color: #158AFF !important;
}

.navs li a:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px; /* 调整此值控制下划线位置 */
    margin: auto;
    width: 0;
    height: 3px;
    background-color: #158AFF;
    transition: width 0.3s ease; /* 明确指定过渡属性 */
}
.navs li a:hover::after {
    width: 100%;
}
/*轮播图*/
.banner{
    height: 2000px;
}
.swiper-container {
    height: 1020px;
}
/*我们的服务*/
.service{
    /*height: 1000px;*/
}
.service-list{
    width: 1800px;
    margin: 0px auto;

}
.service-list::after {
    content: "";
    display: block;
    clear: both;  /* 清除两侧浮动 */
}
.service-content{
    width: 860px;
    height: 346px;
    float: left;
    margin: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden; /* 隐藏超出部分 */
}

.service-content-gradient-left {
    background: linear-gradient(to right, transparent 30%, #158AFF 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    opacity: 0;
    border-radius: 20px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0, 1);
    z-index: 1;
    transform: translateZ(0);
    will-change: right, opacity;
}

.service-content:hover .service-content-gradient-left {
    right: 0;
    opacity: 1;
}
.service-content-gradient-right {
    background: linear-gradient(to left, transparent 30%, #158AFF 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    opacity: 0;
    border-radius: 20px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0, 1);
    z-index: 1;
    transform: translateZ(0);
    will-change: right, opacity;
}

.service-content:hover .service-content-gradient-right {
    right: 0;
    opacity: 1;
}
.service-content-left{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 530px;
    transform: translateY(-50%);
    width: 240px;
}
.service-content-titil-left{
    color: #fff;
    font-weight: 600;
    font-size: 50px;
    width: 240px;
    text-align: right;
    pointer-events: none;
}
.service-content-right{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 90px;
    transform: translateY(-50%);
    width: 240px;
}
.service-content-titil-right{
    color: #fff;
    font-weight: 600;
    font-size: 50px;
    width: 240px;
    text-align: left;
    pointer-events: none;
}
.service-content-min-titil{
    font-size: 14px;
}
/*我们的动态*/
.dynamics{
    margin-top: 96px;
    background-color: rgba(245, 245, 245, 0.9921568627450981);
    padding: 20px 0px;
}
.dynamics-list{
    width: 996px;
    margin: 30px auto;
}

.dynamics ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 120px;
    line-height: 70px;
}
.dynamics li{
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
}
.dynamics li a{
    color: #333;
}
.dynamics-content{
    width: 350px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.dynamics-content-img{
    height: 290px;
    border-radius: 10px 10px 0px 0px;
}
.dynamics-content-img img{
    border-radius: 10px 10px 0px 0px;
}
.dynamics-content-title{
    border-radius: 0px 0px 10px 10px;
    height: 120px;
    line-height: 120px;
    max-height: 120px;
    background-color: #fff;
    font-size: 24px;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}
.dynamics-more{
    font-weight: 400;
    font-size: 18px;
}
.dynamics-more-button{
    width: 125px;
    height: 45px;
    border-radius: 15px;
    margin: 60px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #888;

}
.dynamics-more-button a{
    color: #888;
}
.dynamics-more-button:hover{
    font-weight: 400;
    font-size: 18px;
    background-color: #158AFF;
    border: 3px solid #158AFF;
}
.dynamics-more-button:hover a{
    color: #fff;
}
/*底部*/
.bottom{
    width: 100%;
    height: 250px;
    background-color: rgba(48, 48, 48, 1);
}
.bottom-content{
    width: 950px;
    height: 100%;
    background-color: red;
    margin: 0 auto;
}
.bottom-content-left{
    padding-top: 35px;
    float: left;
    margin-left: 15%;
}
.bottom-content-text{
    color: #E0E0E0;
    font-size: 16px;
    margin-top: 30px;
}
.bottom-content-text ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}
.bottom-content-text li{
    font-style: normal;
}
.bottom-content-text li a{
    color: #E0E0E0;
}
.bottom-content-right{
    float: right;
    margin-right: 15%;
}
.bottom-content-right-logo{
    width: 257px;
    height: 66px;
    float: right;
    background-image: url("/static/image/logo_u30.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 100px;
}
/*关于我们*/
.about-image{
    margin-top: 100px;
    height: 500px;
    background-image: url("/static/image/u89.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-content{
    padding: 60px 15%;
}
.about-content h1{
    font-size: 38px;
    margin: 0;
}
.about-content p{
    font-size: 16px;
    font-weight: 100;
    color: #666;
    line-height: 2;
    text-indent: 2em;
}
.about-index-image{
    display: grid;
    place-items: center;     /* 水平和垂直居中 */
    width: 100%;
}
.about-index-image img{
    width: 65%;
    margin-bottom: 146px;
}
.index-text img{
    float: left;
}
/*公司动态*/
.company{
    background-color: rgba(242, 242, 242, 1);
    padding: 80px 0px;
}

.company-content{
    width: 350px;
    box-shadow:0 4px 8px rgba(0,0,0,0.1);
    border-radius: 20px;
}
.company-image{
    margin-top: 100px;
    height: 500px;
    background-image: url("/static/image/u127.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.company-list{
    margin: 30px auto;
}
.company-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 7%;
    line-height: 70px;
}
.company-list li{
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
}
.company-list li a{
    color: #333;
}
.company-content-img{
    height: 290px;
    border-radius: 10px 10px 0px 0px;
}
.company-content-img img{
    border-radius: 10px 10px 0px 0px;
}

.company-content-title{
    border-radius: 0px 0px 10px 10px;
    height: 120px;
    line-height:120px;
    max-height: 120px;
    background-color: #fff;
    font-size: 18px;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
}
.dynamics-lists{
    margin-top: 80px;
}
.dynamics-lists ul{
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.dynamics-lists ul li{
    font-style: normal;
    margin-top: 20px;
}
.dynamics-lists-div{
    width: 68%;
    min-width: 1080px;
    height: 260px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.dynamics-lists-div-left{
    width: 70%;
    height: 100%;
    float: left;
}
.dynamics-lists-div-left h1{
    font-size: 25px;
    font-weight: 700;
    display: block;
    color: #333333;
    margin-top: 30px;
}
.dynamics-lists-div-left time{
    font-size: 18px;
    font-weight: 700;
    color: #666666;
    display: block;
    margin-top: 50px;
}
.dynamics-lists-div-left p{
    text-indent: 2em;
    padding-right: 50px;
    color: #333;
    height: 46px;
    line-height: 23px;

    /* WebKit 内核多行省略 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    /* 其他浏览器备用方案 */
    position: relative;
    max-height: 46px;
}
.dynamics-lists-div-right{
    width: 313px;
    height: 100%;
    float: right;
}
/*服务项目*/
.service-img-div{
    margin-top: 100px;
}
.service-image{
    flex: 1 1 25%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.service-image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/*商务合作*/
.contact{
    height: 600px;
    padding: 60px 200px;
    margin-bottom: 146px;
}
.contact-img{
    margin-top: 100px;
}
.contact h1{
    font-size: 38px;
    margin: 0;
}
.contact-list{
    width: 900px;
    margin: 50px auto;
}
.contact-list-left{
    width: 400px;
    height: 400px;
    float: left;
    background-image: url("/static/image/u169.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;  /* 控制图片居中显示 */
    overflow: hidden;     /* 确保内容（包括背景）不超出容器 */
}
.contact-list-right{
    width: 400px;
    height: 400px;
    float: right;
    background-image: url("/static/image/u169.png");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-list-img-1{
    width: 100px;
    height: 100px;
    background-image: url("/static/image/u177.png");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px auto;
    margin-top: 50px;
}
.contact-list-img-2{
    width: 100px;
    height: 100px;
    background-image: url("/static/image/u178.png");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px auto;
    margin-top: 50px;
}
.contact-list-business{
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}
.contact-list-text{
    width: 300px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-indent: 2em;
    font-weight: 300;
}
.contact-list-address{
    width: 300px;
    height: 200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}
/*文章详情*/
.company-info{
    background-color: rgba(242, 242, 242, 1);
    padding: 80px 15%;
}
.company-info-title{
    text-align: center;
    margin-top: 50px;
}
.company-info-title h1{
    font-size: 28px;
    font-weight: 400;
}
.company-info-date{
    text-align: center;
}
.company-info-date time{
    font-size: 18px;
    font-weight: 400;
    color: #888888;
}
.company-info-text{
    margin-top: 50px;
}

/*招贤纳士*/
.hire-content{
    margin-top: 100px;
    padding: 60px 15%;
}
.hire-content p{
    font-size: 16px;
    font-weight: 100;
    color: #666;
    line-height: 2;
    text-indent: 2em;
}