/* 手机端首页css */

header {
    width: 100%;
    height: 300px;
    position: relative;
    background: url(../img/index_bg.jpg) no-repeat;
    background-size: cover;
}

/* banner标题 */
.banner_bt {
    width: 50%;
    height: 20%;
    position: absolute;
    left: 50%;
    top: 40%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_bt>img {
    width: 95%;
}

/* 导航栏 */
.top {
    width: 94%;
    height: 50px;
    padding: 0px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top>a {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top>a>img {
    width: 100%;
    height: 65%;
    object-fit: contain;
}

.top>ul {
    display: none;
}

.top>div {
    width: 25px;
    height: 25px;
    background: url(/img/menu_open.png) no-repeat;
    background-size: cover;
}

/* 手机导航菜单 */
.navss {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #234190;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.navss>div {
    width: 30px;
    height: 30px;
    background: url(/img/menu_close.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 30px;
    right: 3%;
}

.navss>ul {
    width: 98%;
    margin: 0px auto;
}

.navss>ul>li {
    width: 92%;
    padding: 15px 0px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-bottom: 1px solid #2f7ecd;
}

.navss>ul>li>a {
    color: #fff;

}

.navss>ul>li>ul {
    width: 50%;
    font-size: 1.4rem;
    display: none;
    margin: 10px auto;
}

.navss>ul>li>ul>li {
    width: 100%;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #2f7ecd;
}

.navss>ul>li>ul>li>a {
    color: #fff;
}

.navss>ul>li:hover>ul {
    display: block;
}

/* 内容区 */
.main {
    width: 100%;
    position: relative;
}

/* 悬浮分区模块 */
.zone {
    width: 94%;
    height: 80px;
    margin: 0px 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
}

.zone>a {
    width: 42%;
    height: 100%;
    margin: 0px 2%;
    padding: 0px 2%;
    position: relative;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.zone>a>div:first-of-type {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
}

.zone>a>div:last-of-type {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.zone>a>div:first-of-type>img {
    width: 30px;
    height: 30px;
}

.zone>a>div:first-of-type>h2 {
    width: 70%;
    margin-left: 5%;
    font-size: 1.8rem;
    color: #ffffff;
    overflow: hidden;
}

.zone>a>div:last-of-type>img {
    width: 30px;
}

.zone>a:first-of-type {
    background-image: linear-gradient(0deg, #3513f9 0, #1a90ff 100%);
}

.zone>a:last-of-type {
    background-color: #041424;
}

.zone>a:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

/* 公司简介 */
.about {
    width: 96%;
    height: 500px;
    padding: 0px 2%;
    display: flex;
    align-items: center;
    background-image: url(../img/index_about_bg.png);
    background-size: cover;
}

.about>div:first-of-type {
    display: none;
}


.about>div:last-of-type {
    width: 96%;
    height: 70%;
    margin: 0px auto;
}

.about>div:last-of-type>h2 {
    width: 100%;
    height: 15%;
    font-size: 1.8rem;
    color: #234190;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about>div:last-of-type>p {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.about>div:last-of-type>p>span {
    font-size: 1.4rem;
    text-indent: 2em;
    line-height: 2.8rem;
    margin-top: 2%;
}

.about>div:last-of-type>a {
    width: 50%;
    height: 50px;
    margin: 2px auto;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(-45deg, rgb(26, 144, 255) 0px, rgb(53, 19, 249) 100%);
}

.about>div:last-of-type>a:hover {
    background-image: linear-gradient(-45deg, rgb(53, 19, 249) 0px, rgb(26, 144, 255) 100%);
}

.about>div:last-of-type>a>p {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 550;
    text-transform: uppercase;
}

.about>div:last-of-type>a>img {
    margin-left: 2%;
    width: 20px;
    height: 20px;
}

/* 首页模块标题 */
.main_bt {
    width: 95%;
    height: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main_bt>div {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #234190;
    text-transform: uppercase;
    font-weight: 550;
}

.main_bt>div>i {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    margin: 0px 15px;
    background-color: #4aa8ff;
}

.main_bt>h1 {
    width: 100%;
    height: 30px;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_bt>span {
    color: #686868;
    font-size: 1.2rem;
}

/* 主营业务 */
.product {
    width: 100%;
    height: 850px;
}

.product_oo {
    width: 96%;
    height: 720px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product_oo>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product_oo>div:nth-of-type(2) {
    display: none;
}

.product_oo>div:nth-child(odd)>div {
    width: 98%;
    height: 100px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background-color: rgba(225, 227, 255, 0.5);
}

.product_oo>div:nth-child(odd)>div>img {
    width: 50px;
    height: 50px;
}

.product_oo>div:nth-child(odd)>div>div {
    width: 70%;
    height: 70px;
    margin-left: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product_oo>div:nth-child(odd)>div>div>h2 {
    width: 100%;
    height: 35px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product_oo>div:nth-child(odd)>div>div>span {
    width: 100%;
    height: 35px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product_oo>div:nth-child(odd)>div:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

/* 资质荣誉 */
.honor {
    width: 94%;
    height: 400px;
    padding: 0px 3%;
    background-color: #f4f6ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lookplay {
    width: 100%;
    overflow: hidden;
    margin: 10px auto;
    font-size: 0;
    white-space: nowrap;
}

.playgroup {
    height: 200px;
    display: inline-block;
}

.playli {
    width: 260px;
    height: 180px;
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
}

.playli>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.playli>a>img {
    border: 1px solid #bbbbbb;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 解决方案 */
.solution {
    width: 100%;
    /* height: 750px; */
    margin: 30px auto;
}

.solution_oo {
    width: 94%;
    height: 1100px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution_oo>div {
    width: 98%;
    height: 350px;
    margin: 15px auto;
    border-radius: 15px;
    display: flex;
    align-items: end;
    justify-content: end;
}

.solution_oo>div:first-of-type {
    background: url(../img/al_zhgd.jpg) center;
}

.solution_oo>div:nth-of-type(2) {
    background: url(../img/al_xls.jpg) center;
}

.solution_oo>div:last-of-type {
    background: url(../img/al_zhst.jpg) center;
}

.solution_oo>div>div {
    width: 260px;
    height: 220px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
    background-color: #ffffff;
}

.solution_oo>div>div>img {
    width: 50px;
    height: 50px;
}

.solution_oo>div>div>h3 {
    width: 100%;
    height: 50px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.solution_oo>div>div>p {
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
    line-height: 25px;
    color: #686868;
    display: flex;
    overflow: hidden;
}

.solution_oo>div>div>div {
    width: 100%;
    height: 50px;
    display: none;
}

.solution_oo>div>div>div>a>img {
    width: 40px;
    height: 40px;
}

.solution_oo>div>div:hover>div {
    display: flex;
    align-items: center;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}