* {
    padding: 0;
    margin: 0;
    font-family: 黑体;
}

a {
    color: black;
    font-family: 黑体;
}

ol,
ul {
    list-style: none;
}

.main {
    width: 100%;
    height: 100vh;
}

.main header {
    width: 100%;
    height: 66px;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

header .container {
    width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 10%;
    float: left;
}

.menuList {
    width: 70%;
}

.h_menulist {
    margin-left: 100px;
    width: 90%;
}

.h_menulist>li {
    width: fit-content;
    white-space: nowrap;
    text-align: center;
    float: left;
    line-height: 64px;
    /* margin: 0 14px; */
    margin: 0 22px;
}

.h_menulist>li .item_name {
    color: white;
    text-decoration: none;
}

.telephone {
    width: 20%;
}

.log,
.menuList,
.telephone {
    float: left;
}

@media (min-width:1300px) {
    #h_logo {
        display: block;
        height: 40px;
        background: url('../img/whiteLogo.png') no-repeat center/contain;
    }
    .headerMenu {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
    }

    .menuList {
        display: block;
    }

    .telephone {
        display: block;
    }

    .main header {
        width: 100%;
        height: 66px;
        background-color: rgba(0, 0, 0, 0.6);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        font-size: 16px;
        line-height: 1;
    }

    header .container {
        width: 1200px;
        margin: 0 auto;
    }

    .h_header:hover {
        background-color: #fff;
    }

    .h_header:hover a {
        color: #666;
    }

    .h_header:hover #h_logo {
        display: block;
        height: 40px;
        background: url('../img/innvote_logo.png') no-repeat center/contain;
    }

    .childMenu {
        display: none;
    }

    .h_menulist {
        width: 90%;
        height: 66px;
        list-style: none;
        margin: 0 auto;
    }

    .h_menulist>li {
        display: table-cell;
        width: fit-content;
        height: 30px;
        text-align: center;
        position: relative;
        font-size: 16px;
    }

    .h_menulist>li>a {
        display: inline-block;
        height: 66px;
        line-height: 66px;
        cursor: pointer;
        position: relative;
        text-decoration: none;
        color: white;
    }

    .h_menulist>li>a:after {
        content: '';
        position: absolute;
        width: 0%;
        height: 4px;
        background: skyblue;
        left: 0;
        bottom: 0;
        transition: all .3s;
    }

    .h_menulist>li:hover>a:after,
    .h_menulist>li.hover>a:after {
        width: 100%;
    }

    .h_menulist>li .item_list {
        width: 150px;
        height: 0;
        position: absolute;
        top: 62px;
        left: calc(50% - 75px);
        z-index: 1000;
        overflow: hidden;
        transition: all 0.5s;
        border-radius: 10px;
    }

    .item_list li {
        width: 100%;
        height: 30px;
        line-height: 30px;
        margin: 0 auto;
        text-align: center;
        padding: 6px 0;
        overflow: hidden;
    }

    .item_list li:hover a {
        color: skyblue;
    }

    .item_list li a {
        text-decoration: none;
    }

    .h_menulist>.product:hover ul {
        background-color: #fff;
        height: 130px;
    }

    .banner {
        width: 100%;
    }

    .background {
        width: 100%;
        height: fit-content;
        background-color: #F9FBFD;
    }

    /* 管理中台框架版块 */
    .manage {
        width: 1200px;
        margin: 0 auto;
        height: fit-content;
        padding-bottom: 50px;
    }

    .title {
        text-align: center;
        font-size: 30px;
        padding: 60px 0 20px 0;
    }

    .context {
        width: 94%;
        height: fit-content;
        margin: 30px auto 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .context .leftList {
        width: 21%;
        height: 500px;
        border: 1px dashed skyblue;
        padding: 30px 38px;
        box-sizing: border-box;
    }

    .leftList ul {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .leftList ul .tili {
        width: 100%;
        display: flex;
        justify-content: space-around;
        font-size: 18px;
        color: gray;
    }

    .leftList ul li {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 10px;
        padding: 4px;
        box-sizing: border-box;
    }

    .leftList ul li a {
        color: gray;
        font-size: 16px;
        text-decoration: none;
        cursor: default;
    }

    .leftList ul li .pic {
        width: 24px;
        height: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pic img {
        width: 100%;
    }

    .center {
        width: 500px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .center .bigPic {
        width: 480px;
        height: 480px;
        overflow: hidden;
        border-radius: 50%;
        border: 1px dashed skyblue;
        position: relative;
    }

    .center .bigPic img {
        width: 490px;
        position: absolute;
        right: 0;
        bottom: 0;
        left: -4px;
        top: 0;
        margin: auto;
    }

    .rightMenu {
        width: 25%;
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .rightMenu .menuArea {
        width: 100%;
        height: 217px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menuArea .menuTL {
        width: 45px;
        height: 180px;
        text-align: center;
        padding: 6px;
        font-size: 20px;
        box-sizing: border-box;
        color: #2E95B5;
        background-color: #EBF7FD;
        display: flex;
        align-items: center;
    }

    .menuArea .menuTR {
        width: 220px;
        height: 220px;
        border: 1px dashed #B9D8E4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .menuTR p {
        color: #89898A;
        font-size: 16px;
        margin-bottom: 16px;
    }

    /* 四大特点产品版块 */
    .specal {
        width: 1000px;
        margin: 50px auto;
    }

    .specal .specalTitle {
        font-size: 30px;
        text-align: center;
        margin-bottom: 60px;
    }

    .specalList {
        height: 360px;
        width: 100%;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .specals {
        width: 196px;
        height: fit-content;
    }

    .specals .specalsText {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .specals .specalsText p {
        font-size: 17px;
        font-weight: 540;
        margin: 30px 0 10px 0;
    }

    .specalsText span {
        font-size: 14px;
        color: #696969;
        text-align: center;
    }

    .specalSecond {
        margin-top: -50px;
    }

    /* 产品介绍 */
    .productIntroduce {
        width: 1300px;
        height: fit-content;
        margin: 0 auto;
        padding: 60px 0;
    }

    .productIntroduce .introduceTitle {
        font-size: 30px;
        text-align: center;
    }

    .productIntroduce ul li:hover {
        transform: scale(1.1);
    }

    .productIntroduce ul li>img {
        width: 57px;
        height: 57px;
    }

    .productIntroduce ul li p {
        font-size: 24px;
    }

    .productIntroduce ul li span {
        font-size: 14px;
        color: gray;
        display: inline-block;
        height: 50px;
        margin-bottom: 20px;
    }

    .intrText {
        position: relative;
        height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .intrText>p {
        margin-bottom: 20px;
    }

    .productIntroduce ul li .more {
        width: 120px;
        height: 30px;
        background: url("../img/jiantoubefore.jpg") no-repeat;
        background-size: 120px 30px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        cursor: pointer;
    }

    .productIntroduce ul li .more:hover {
        background: url("../img/jiantou.jpg") no-repeat;
    }

    .shortBorder {
        width: 60px;
        border-top: 4px solid #EBEAEA;
        margin: 0 auto 30px;
    }

    /* 合作院校 */
    .cooperation {
        width: 1300px;
        margin: 60px auto 0;
    }

    .schoolTitle {
        font-size: 30px;
        text-align: center;
    }

    .schoolView {
        width: 100%;
        height: 190px;
        margin-top: 30px;
    }

    /* 产品轮播样式 */
    .picScroll-left {
        position: relative;
        width: 1300px;
        height: fit-content;
        margin-top: 20px;
        padding-top: 40px;
        box-sizing: border-box;
    }

    .picScroll-left .hd {
        width: fit-content;
    }

    .picScroll-left .hd .prev,
    .picScroll-left .hd .next {
        display: block;
        float: left;
        cursor: pointer;
        bottom: calc(50% - 32px);
    }

    .picScroll-left .hd .prev {
        position: absolute;
        left: -80px;
    }

    .picScroll-left .hd .prev img {
        transform: rotate(180deg);
    }

    .picScroll-left .hd .next {
        position: absolute;
        right: -80px;
    }

    .picScroll-left .bd {
        padding: 0;
    }

    .picScroll-left .bd ul {
        zoom: 1;
        width: 1300px;
        height: 415px;
        margin: 50px auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: unset !important;
    }

    .picScroll-left .bd ul>li {
        width: 300px !important;
        height: 100%;
        padding: 30px;
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: 2px 5px 8px #eee;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transition: all 0.3s;
        margin: 0 12.5px;
    }

    .picScroll-left .bd .tempWrap {
        width: 1300px !important;
        height: 470px !important;
        padding-top: 20px;
    }

    /* 轮播样式 */
    .slideBox {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .slideBox .hd {
        width: fit-content;
        height: 8px;
        overflow: hidden;
        position: absolute;
        top: 300px;
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: 5px;
        z-index: 1;
    }

    .slideBox .hd ul {
        width: 100%;
        height: 100%;
        zoom: 1;
        float: left;
    }

    .slideBox .hd ul li {
        float: left;
        margin: 0 3px;
        width: 34px;
        height: 8px;
        background: #C6F4FD;
        cursor: pointer;
    }

    .slideBox .hd ul li.on {
        background: #2BB6D1;
    }

    .slideBox .bd {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .slideBox .bd li {
        zoom: 1;
        vertical-align: middle;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .cooperation .bd li img {
        width: 230px;
        height: 80px;
        margin: 10px 40px;
        border: 1px solid #eee;
        transition: all 0.3s;
    }

    .cooperation .bd li img:hover {
        box-shadow: 2px 5px 8px #eee;
    }

    /* 新闻动态 */
    .newsList {
        background-color: #F9FBFD;
        margin-top: 60px;
        width: 100%;
        padding: 60px 0 100px 0;
    }
    .newsList .newsTitle {
        font-size: 30px;
        text-align: center;
    }
    .newsList .newsContainer {
        width: 1200px;
        padding-top: 60px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
    }
    .newsRight{
        width: 650px;
    }
    .newsRight .lookMore{
        margin-top: 40px;
        display: flex;
        align-items: center;
    }
    .newsRight .lookMore a {
        display: flex;
        height: 32px;
    }
    .newsRight .lookMore img {
        width: 120px;
    }
    .newsRight ul{
        margin-bottom: 0;
    }
    .newsRight ul>li {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 14px;
    }
    .newsdate{
        width: 10%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 13px;
        color: gray;

    }
    .newsdate>p {
        margin: 0;
    }
    .newsText {
        width: 85%;
        height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .newsText p {
        font-size: 18px;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .newsText span {
        font-size: 15px;
        margin: 0;
        color: grey;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    footer {
        height: 400px;
        width: 100%;
        background-color: #33373B;
    }

    .footerContainer {
        width: 1300px;
        margin: auto;
        display: flex;
        justify-content: center;
        font-size: 16px;
    }

    .footLeft {
        width: 410px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 340px;
    }

    .footLeft>.borders {
        margin: 0;
    }

    .footLeft .connect {
        height: 190px;
        padding-right: 50px;
    }

    .hotLine {
        color: white;
        margin-right: 80px;
    }

    .hotLine p {
        margin: 0;
        font-size: 14px;
    }

    .time {
        color: white;
        margin-top: 7px;
    }

    .address {
        color: white;
        margin-top: 7px;
    }

    .email {
        color: white;
        margin-top: 7px;
    }

    .hotLine span {
        font-size: 19px;
    }

    .footCenter {
        width: 440px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        color: white;
        padding-top: 16px;
    }

    .aboutUs>.title,
    .production>.title {
        font-size: 18px;
        text-align: left;
    }

    .footCenter ul li {
        margin-top: 4px;
    }

    .footCenter ul li a {
        color: #9E9F9F;
        text-decoration: none;
    }

    .footRight {
        width: 450px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .ewm {
        width: 400px;
        height: 190px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .end {
        height: 70px;
        width: 100%;
        background-color: #2D3236;
        color: white;
        font-size: 14px;
        text-align: center;
        line-height: 70px;
    }

    .mobileFoot,
    .mobileText,
    .cooperationTip,
    .mobileView {
        display: none;
    }
}

@media (max-width: 1280px) {
    .main header {
        height: .5rem;
    }

    .headerMenu {
        width: 100%;
        position: relative;
    }

    .menuList {
        display: none;
    }

    .telephone {
        display: none;
    }

    #h_logo {
        display: block;
        height: .34rem;
        background: url('../img/whiteLogo.png') no-repeat center/contain;
        margin-top: .08rem;
    }

    .logo {
        float: left;
    }

    .childMenu {
        height: .5rem;
        width: .6rem;
        position: fixed;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .childMenu .menuBtn {
        height: 0.25rem;
    }

    .childMenu ul {
        display: none;
        background-color: #fff;
        width: 100vw;
        position: absolute;
        top: .5rem;
        right: 0;
    }

    .childMenu ul>li {
        width: 100%;
        height: .35rem;
        border-bottom: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
    }
    .childMenu ul li a{
        font-size: .16rem;
        line-height: .3rem;
        padding-left: .08rem;
        text-decoration: none;
    }
    .tipHeader {
        width: 100%;
        height: 0.3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .tipHeader img {
        width: 0.16rem;
        height: .16rem;
        margin-right: 0.1rem;
    }
    .active {
        height: 2.3rem!important;
        position: relative;
    }
    .product ul {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .product ul li {
        border: 0;
    }
    .product ul li a {
        font-size: 0.14rem;
    } 
    .cooperationTip {
        width: .4rem;
        height: .4rem;
        position: fixed;
        bottom: .2rem;
        right: .2rem;
        z-index: 1004;
    }
    
    .cooperationTip a{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cooperationTip img {
        width: 80%;
    }

    .banner {
        width: 100%;
    }

    /* 管理中台框架版块 */
    .context {
        background-color: #FAFBFD;
        display: flex;
        flex-direction: column-reverse;
    }

    .background .manage {
        margin-top: 0.2rem;
    }

    .background .manage .title {
        font-size: 0.16rem;
        height: 0.16rem;
        line-height: 0.16rem;
        border-left: 0.04rem solid #43B9CF;
        padding-left: .06rem;
        margin-left: .1rem;
    }

    .rightMenu {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: .2rem;
    }

    .rightMenu .menuArea {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .rightMenu .menuArea .menuTL {
        width: 1.6rem;
        color: #007DA4;
        background-color: #ECF7FD;
        margin-top: .08rem;
        text-align: center;
        padding: 0.04rem 0;
        font-size: 0.12rem;
    }

    .rightMenu .menuArea .menuTR {
        width: 1.6rem;
        height: 1.6rem;
        border: .01rem dashed #43B9CF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .menuArea .menuTR p {
        font-size: .12rem;
        margin-bottom: 0.1rem;
    }
    .menuArea .menuTR img{
        height: 56%;
    }
    .center {
        width: 3.4rem;
        height: 3.4rem;
        margin: .1rem auto;
    }

    .center .bigPic {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 0.01rem dashed skyblue;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bigPic img {
        width: 100%;
    }

    .leftList {
        width: 90%;
        margin: 0 auto 0.032rem;
        border: 1px dashed skyblue;
    }

    .leftList ul .tili {
        width: 100%;
        font-size: .16rem;
        text-align: center;
        padding: .1rem 0;
    }

    .leftList ul li {
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: .06rem 0;
        width: 25%;
        height: .2rem;
    }

    .leftList ul li a {
        font-size: .12rem;
        margin-left: .02rem;
    }

    .leftList ul li .pic {
        height: .2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .leftList ul li .pic img {
        width: .16rem;
        height: auto;
    }
    
    /* 四大特点产品版块 */
    .specal{
        margin-top: 0.2rem;
    }
    .specal .specalTitle {
        font-size: .16rem;
        height: .16rem;
        line-height: .16rem;
        border-left: 0.04rem solid #43B9CF;
        padding-left: .06rem;
        margin-left: .1rem;
    }

    .specalList {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: .06rem auto 0;
    }

    .specalList .specals {
        width: 48%;
    }

    .specals .specalsText {
        margin-bottom: .06rem;
    }

    .specals .specalsText p {
        font-size: .12rem;
        text-align: center;
        margin: .04rem 0;
    }
    .background{
        overflow: hidden;
    }
    .productIntroduce {
        margin-top: 0.2rem;
    }

    .productIntroduce .introduceTitle {
        font-size: .16rem;
        height: .16rem;
        line-height: .16rem;
        border-left: 0.04rem solid #43B9CF;
        padding-left: .06rem;
        margin-left: .1rem;
    }

    .picScroll-left .hd .prev,
    .picScroll-left .hd .next {
        display: block;
    }

    .picScroll-left .hd .next img {
        height: 0.2rem;
    }

    .picScroll-left .hd .prev img {
        transform: rotate(180deg);
        height: 0.2rem;
    }

    .picScroll-left .bd .tempWrap {
        width: 100% !important;
        height: 2.8rem !important;
        padding-top: 0.2rem;
    }

    .picList li {
        width: 46%;
        height: 2.4rem;
        margin: 0 .09rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        box-shadow: .02rem .05rem .08rem #eee;
    }

    .picList li img {
        width: 0.5rem;
    }

    .intrText p {
        margin: .06rem 0 0.1rem;
        text-align: center;
        font-size: 0.14rem;
    }

    .intrText span {
        display: block;
        text-align: center;
        font-size: 0.12rem;
        width: 90%;
        margin: 0 auto;
    }

    .picScroll-left .hd {
        position: relative;
    }

    .picScroll-left .hd .next {
        position: absolute;
        right: .05rem;
        top: 0.4rem;
        z-index: 101;
    }

    .picScroll-left .hd .prev {
        position: absolute;
        left: .05rem;
        top: 0.4rem;
        z-index: 101;
    }
    .background {
        background-color: #F9FBFD;
    }
    .productIntroduce ul li .more {
        width: 0.8rem;
        height: 0.2rem;
        background: url("../img/jiantou.jpg") no-repeat;
        background-size: 0.8rem 0.2rem;
        margin: 0.2rem auto 0;
    }

    .cooperation .schoolTitle {
        font-size: .16rem;
        height: .16rem;
        line-height: .16rem;
        border-left: 0.04rem solid #43B9CF;
        padding-left: .06rem;
        margin: .1rem 0 .2rem .1rem;
    }

    .mobileView{
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 0.16rem;
    }
    .mobileView .bd{
        display: flex;
        width: 200%;
        height: 1.6rem;
        margin: 0.16rem 0 0.2rem;
    }
    .mobileView .bd ul li{
        width: 94%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 0 auto;
    }

    .mobileView .bd ul li img {
        width: 47%;
        height: auto;
        border: 1px solid #eee;
        margin: .06rem 0;
    }
    .mobileView .hd{
        width: 100%;
        position: absolute;
        bottom: 0;
    }
    .mobileView .hd ul {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }
    .mobileView .hd ul li {
        width: 0.3rem;
        height: .06rem;
        margin: 0 0.04rem;
        background: #C6F4FD;
        color: transparent;
    }
    .mobileView .hd ul li.on {
        background: #2BB6D1;
    }
    .schoolView{
        display: none;
    }
    /* 新闻动态 */
    .newsList {
        padding: .1rem 0 .2rem 0;
        background-color: #F9FBFD;
    }
    .newsList .newsTitle {
        font-size: .16rem;
        height: 0.16rem;
        line-height: .16rem;
        border-left: 0.04rem solid #43B9CF;
        padding-left: 0.06rem;
        margin: 0.1rem 0 0.2rem 0.1rem;
    }
    .newsContainer {
        width: 90%;
        margin: 0 auto;
    }
    .newsLeft {
        display: none;
    }
    .newsRight ul{
        width: 100%;
        margin-bottom: 0;
    }
    .newsRight ul li {
        display: flex;
        justify-content: space-between;
        margin-bottom: .1rem;
    }
    .lookMore{
        display: flex;
        justify-content: center;
        margin-top: .2rem;
    }
    .lookMore a {
        display: flex;
    }
    .lookMore img {
        width: 1rem;
    }
    .newsRight .newsdate {
        width: 20%;
        font-size: .12rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: gray;
        border-right: 1px solid #ccc;
    }
    .newsdate p {
        margin: 0;
    }
    .newsText {
        width: 77%;
    }
    .newsText p {
        font-size: .14rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .newsText span {
        font-size: .12rem;
        display: block;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: grey;
    }

    footer {
        background-color: #33373B;
        overflow: hidden;
    }

    .footCenter {
        width: 100%;
    }

    .footCenter .production {
        margin-left: .12rem;
        margin-top: .18rem;
    }

    .footCenter .production .title {
        color: #fff;
        font-size: .16rem;
    }

    .footCenter .production ul {
        overflow: hidden;
        margin: .04rem 0 .16rem;
    }

    .footCenter .production ul li {
        float: left;
        margin-right: .06rem;
        height: 0.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footCenter .production ul li a {
        font-size: 0.12rem;
        color: #D5D3D0;
    }

    .aboutUs {
        width: 100%;
        margin-left: .12rem;
    }

    .aboutUs .title {
        color: #fff;
        font-size: .16rem;
    }

    .aboutUs ul {
        overflow: hidden;
        margin: .04rem 0 .16rem;
    }

    .aboutUs ul li {
        float: left;
        margin-right:.06rem;
        height: .14rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .aboutUs ul li a {
        font-size: .12rem;
        color: #D5D3D0;
    }

    .footLeft {
        display: none;
    }

    .footRight {
        display: none;
    }

    .mobileFoot {
        width: 93%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: .16rem;
    }

    .connect {
        color: #fff;
    }

    .connect .hotLine p {
        font-size: .12rem;
        margin-bottom: .08rem;
    }

    .connect img {
        height: 0.16rem;
        margin-right: .06rem;
        margin-top: -0.03rem;
    }

    .connect .time,
    .connect .address,
    .connect .email {
        font-size: .12rem;
        margin-bottom: .08rem;
    }

    .ewm {
        width: 1.2rem;
        height: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ewm img {
        width: 100%;
    }

    .end {
        color: #C0C0BF;
        font-size: .12rem;
        text-align: center;
        background-color: #333;
        padding: 0.16rem 0;
        overflow: hidden;
    }

    .end p {
        margin-bottom: 0;
    }

    .PCText {
        display: none;
    }
}