/* @@navbar 
--------------------------------------------------------*/
.itscNavBar {
    background-image: url('../image/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 80% 50%;
    position: relative;
}

.itscNavBar-robot-box {
    height: 100%;
    width: 40%;
    transition: all .5s;
}

.itscNavBar-robot-box a:hover {
    color: #fff;
}

.robotandTreeBox {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    height: 480px;
    overflow: hidden;
}

.robotBox {
    width: 50%;
    height: 400px;
}

.robotPositionBox {
    position: relative;
    height: 400px;
    width: 360px;
}

.robot-body {
    width: 200px;
    z-index: 10;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

.robot-arm {
    position: absolute;
    width: 84px;
    right: 50px;
    top: 260px;
    transform-origin: bottom left;
    animation: robotArm 1s 2;
    z-index: 11;
}

.treeBox {
    width: 50%;
    height: 100%;
    position: relative;
}

.robot-tree {
    width: 550px;
    right: 100px;
    bottom: -2px;
    position: absolute;
    transition: all .5s;
}

.robot-bubble-box {
    position: absolute;
    width: 622px;
    height: 200px;
    right: -530px;
    top: 97px;
    z-index: 13;
}

.robot-bubble-text {
    position: absolute;
    width: 80%;
    height: 74%;
    top: 8%;
    right: 2%;
    padding: 20px;
    word-wrap: break-word;
    color: #fff;
    font-size: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-bubble {
    opacity: 0;
    position: absolute;
    animation: bubbleShow .5s 1 forwards;
    animation-delay: 2s;
}

.robot-light {
    width: 300px;
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translate(-50%);
    z-index: 9;
}

.logoandSearchBox {
    height: 170px;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(18, 56, 158, 0);
    z-index: 999;
}

.itscNavBarBgCustom {
    background-image: unset;
    background-size: unset;
    background-repeat: unset;
    background-position: unset;
    background-color: #0072bb;
}

@keyframes robotComeIn {
    0% {
        left: -20%;
    }

    100% {
        left: 0%;
    }
}

@keyframes robotArm {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes bubbleShow {
    0% {
        opacity: 0;
        width: 10px;
        left: 0px;
        bottom: 0px;
    }

    100% {
        opacity: 1;
        width: 620px;
        left: 0;
        bottom: 0;
    }
}

.itscNavBar-logo {
    display: flex;
    align-items: center;
    height: 120px;
    color: #fff;
    font-size: 20px;
    z-index: 30;
}

.itscNavBar-logo a {
    cursor: pointer;
}

.uicLogo {
    height: 75px;
    min-height: 40px;
}

.itscNavBar-logo div {
    margin-left: 40px;
}

.itscLogo {
    width: 80px;
    display: none;
}

.navBtnPalce {
    display: none;
}

.fullName {
    display: block;
}

.itscNavBar-bar {
    height: 120px;
    z-index: 99;
}

.itscNavBar-bar-search {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 40px;
}

.itscNavBar-bar-search input {
    background-color: rgba(255, 255, 255, .3);
    border-radius: 8px !important;
    border: unset;
    color: #fff;
    font-size: 16px;
}

.itscNavBar-bar-search .languageChange {
    color: #fff;
    margin-left: 20px;
    font-size: 16px;
    white-space: nowrap;
    cursor: pointer;
}

.itscNavBar-navbar {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 14px;
    bottom: -30px;
}

.itscNavBar-navbar a {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.itscNavBar-navbar div {
    padding: 5px 20px;
    font-size: 20px;
    white-space: nowrap;
}

.itscNavBar-navbar .navListItem:nth-last-child(2)>div {
    padding-right: 0px;
}

.itscNavBar-navbar div:hover {
    color: #00C8FF;
}

.itscNavBar-navbar .active {
    color: #00C8FF;
}

.itscNavBar-navbar-btn {
    display: none;
    font-size: 20px;
    z-index: 40;
    cursor: pointer;
}

.itscNavBar-navbar-list {
    position: absolute;
    width: calc(100% + 15px);
    left: -15px;
    background-color: rgba(0, 114, 188, 1);
    top: 40px;
    overflow: hidden;
    font-size: 16px;
    height: 0px;
    transition: all .5s;
    z-index: 30;
}

.itscNavBar-navbar-list>a {
    text-decoration: none;
    color: #fff;
}

.itscNavBar-navbar-list>a>div {
    padding: 10px 35px;
    height: 45px;
    cursor: pointer;
    position: relative;
}

.itscNavBar-navbar-list>a>div::before {
    position: absolute;
    content: '';
    bottom: -1px;
    left: 34px;
    width: 91%;
    border-bottom: 1px dashed rgba(255, 255, 255, .3);
    z-index: 1;
}

.itscNavBar-navbar-list>a>div:hover {
    background-color: #488fd3;
    color: #fff;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.input-group {
    margin: 0;
}

.languageChange a {
    color: #fff !important;
}

.itsc-nameEnCn {
    display: block;
    text-decoration: none !important;
    cursor: pointer;
    margin-top: 7px;
    width: 270px;
    margin-left: 20px;
    flex-shrink: 0;
}

.itsc-nameEnCn div {
    width: 100%;
    display: inline-block;
    text-align: justify;
    text-align-last: justify;
    line-height: 35px;
    color: #fff;
}

.itsc-nameEnCn .cn {
    font-size: 22px;
}

.itsc-nameEnCn .en {
    font-size: 15px;
}

.form-control:focus {
    border: 1px solid #fff;
    box-shadow: none;
}

@media screen and (max-width:1740px) {
    .robot-tree {
        width: 550px;
        right: 0px;
        bottom: -2px;
    }

    .robot-body {
        left: 90px;
    }

    .robot-arm {
        right: 140px;
    }

    .robot-light {
        left: 90px;
    }

    .robot-bubble-box {
        right: -440px;
    }


}


@media screen and (max-width:1525px) {
    .fullName {
        display: none;
    }

    .itscLogo {
        display: block;
    }

    .robot-tree {
        // width: 300px;
        right: -25px;
    }
    
    .robotBox {
        width: 100%;
        height: 250px;
    }
    
    .robot-body {
        width: 140px;
        bottom: -150px;
    }
    
    .robot-arm {
        width: 50px;
        right: -15px;
        top: 290px;
    }
    
    .robot-light {
        width: 150px;
        bottom: -64%;
    }
    
    .itscNavBar-robot-box {
        height: 100%;
        width: 100%;
    }
    
    .robotPositionBox {
        height: 250px;
        width: 160px;
        left: -15px;
    }
    
    .robot-bubble {
        transform: scale(0.6);
        margin-left: -130px;
        margin-bottom: -42px;
    }
    
    .robot-bubble-box {
        right: -370px;
        top: 193px;
        width: 372px;
        height: 116px;
    }
    
    .robot-bubble-text {
        width: 79%;
        height: 72%;
        top: 8%;
        right: 4%;
        font-size: 14px;
        padding: 10px;
    }
    
    @keyframes bubbleShow {
        0% {
            opacity: 0;
            width: 10px;
            left: 126px;
            bottom: 40px;
        }
    
        100% {
            opacity: 1;
            width: 620px;
            left: 0;
            bottom: 0;
        }
    }
}


@media screen and (max-width:1350px) {
    .itscNavBar-navbar div {
        padding: 10px;
        font-size: 18px;
    }

    .itscNavBar-navbar {
        bottom: -40px;
    }
}


@media screen and (max-width:1200px) {
   .robotandTreeBox {
       height: 260px;
       left: -60px;
   }
    
    .robot-tree {
        width: 300px;
    }
    
    .robot-body {
        bottom: 60px;
    }
    
    .robot-arm {
        top: 80px;
    }
    
    .robot-light {
        bottom: 19%;
    }
    
    .robot-bubble-box {
        top: -17px;
    }
    
}

@media screen and (max-width:1023px) {
    .robotPositionBox {
        left: 0px;
    }

    .robot-tree {
        right: 30px;
    }
}

@media screen and (max-width:960px) {
    .uicLogo {
        height: 50px;
    }

    .itscNavBar-logo div {
        margin-left: unset;
    }

    .itsc-nameEnCn {
        margin-left: 20px;
        width: 210px;
    }

    .itsc-nameEnCn .cn {
        font-size: 18px;
    }

    .itsc-nameEnCn .en {
        font-size: 12px;
    }

    .itsc-nameEnCn div {
        line-height: 23px;
    }

    .itscNavBar-navbar div {
        padding: 10px;
        font-size: 16px;
    }
}

@media screen and (max-width:880px) {
    .itscNavBar-bar {
        width: 100%;
        top: -100px;
    }

    .logoandSearchBox {
        height: 130px;
    }

    .itscNavBar-navbar {
        bottom: 33px;
        right: 8px;
    }

    .itscNavBar-bar-search .languageChange {
        margin-left: 10px;
    }


    .itscNavBar-bar-search {
        margin-right: unset;
        margin-top: 0px;
    }

    .itscNavBar-logo {
        justify-content: flex-start;
        top: -25px;
    }

    .navBtnPalce {
        display: block;
    }

    .uicLogo {
        height: 40px;
    }

    .itscLogo {
        width: 50px;
    }

    .itscNavBar-navbar>a {
        display: none;
    }

    .itscNavBar-navbar-btn {
        display: block;
        padding: 10px;
    }

    .itscNavBar-navbar-list {
        top: 110px;
    }

    .robotandTreeBox {
        height: 260px;
        padding-top: 50px;
    }

    .robotPositionBox {
        height: 250px;
        width: 110px;
        left: -35px;
    }
    
    .robot-body {
        width: 100px;
        bottom: 115px;
    }
    
    .robot-arm {
        width: 40px;
        right: -44px;
        top: 55px;
    }
    
    .robot-light {
        width: 100px;
        bottom: 42%;
    }
    
    .robot-bubble-box {
        right: -284px;
        top: -9px;
        width: 248px;
        height: 78px;
    }
    
    .robot-bubble {
        transform: scale(0.4);
        margin-left: -193px;
        margin-bottom: -61px;
    }
    
    .robot-bubble-text {
        width: 79%;
        height: 49%;
        top: 22%;
        right: 5%;
        font-size: 12px;
        padding: 5px;
        line-height: 14px;
    }
    
    @keyframes bubbleShow {
        0% {
            opacity: 0;
            width: 10px;
            left: 180px;
            bottom: 50px;
        }
    
        100% {
            opacity: 1;
            width: 620px;
            left: 0;
            bottom: 0;
        }
    }
    
}

@media screen and (max-width:780px) {
    .itscNavBar-navbar div {
        padding: 10px;
        font-size: 16px;
    }
}

@media screen and (max-width:767px) {
    .itscNavBar-bar {
        top: -100px;
    }
}

@media screen and (max-width:700px) {
    .robotandTreeBox {
    height: 200px;
}
    .robot-tree {
        width: 200px;
    }
}

@media screen and (max-width:680px) {
    .itsc-nameEnCn {
        position: relative;
        left: -166px;
        top: 53px;
    }
}

@media screen and (max-width:660px) {
    .input-group .form-control {
        float: right;
        width: 90%;
    }
}

@media screen and (max-width:610px) {
    .robot-tree {
        display: none;
    }
}

@media screen and (max-width:460px) {
    .itscNavBar-logo {
        top: 30px;
    }

    .itsc-nameEnCn {
        width: 140px;
        left: 0px;
        top: -5px;
    }
}

@media screen and (max-width:375px) {
    .robotandTreeBox {
        height: 160px;
    }

    .robotPositionBox {
        height: 165px;
        width: 70px;
        left: -50px;
    }

    .robot-body {
        width: 65px;
    }

    .robot-arm {
        width: 25px;
        right: -61px;
        top: 0px;
    }

    .robot-light {
        width: 75px;
        bottom: 65%;
    }

    .robot-bubble-box {
        right: -298px;
        top: -68px;
        width: 248px;
        height: 78px;
    }

    .robot-bubble {
        transform: scale(0.35);
        margin-left: -204px;
        margin-bottom: -65px;
    }

    .robot-bubble-text {
        width: 69%;
        height: 69%;
        top: 18%;
        right: 15%;
        font-size: 12px;
        padding: 5px;
    }

    @keyframes bubbleShow {
        0% {
            opacity: 0;
            width: 10px;
            left: 200px;
            bottom: 70px;
        }

        100% {
            opacity: 1;
            width: 620px;
            left: 0;
            bottom: 0;
        }
    }
}

@media screen and (max-width:355px) {

    .itsc-nameEnCn {
        width: 95px;
        left: 0px;
        top: -5px;
    }
}

@media screen and (max-width:319px) {
    .robotandTreeBox {
        height: 10px;
    }

    .robotBox {
        display: none;
    }

}

/* @@name 
--------------------------------------------------------*/
.itsc-name {
    height: 5vw;
    min-height: 50px;
    max-height: 100px;
}

.itsc-name-small {
    height: 10vw;
    min-height: 50px;
    display: none;
}

@media screen and (max-width:600px) {
    .itsc-name {
        display: none;
    }

    .itsc-name-small {
        display: block;
    }
}

/* @@serverList 
--------------------------------------------------------*/

.itsc-model {
    margin-top: 20px;
    position: relative;
    margin-bottom: 30px;
}

.itsc-model-title {
    position: relative;
    text-align: center;
}

.services .itsc-model-title h1 {
    margin-top: 0px;
}

.itsc-model-title a {
    position: absolute;
    top: 60%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
    color: #383838;
    z-index: 99;
}

.itsc-model-serviceList {
    margin-top: -10px;
    overflow: hidden;
}

.itsc-model-serviceList>div>a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 30px 0;
    text-decoration: none;
}

.itsc-model-serviceList>div>a>img {
    width: 70px;
    height: 70px;
    background-color: #508bb7;
    border-radius: 50px;
}

.itsc-model-serviceList>div>a>div {
    margin-top: 15px;
    text-align: center;

}

.itsc-model-title h1 {
    display: inline-block;
    color: transparent;
    background: linear-gradient(90deg, rgba(0, 52, 90, 1) 20%, rgba(66, 182, 173, 1) 100%);
    -webkit-background-clip: text;
}

.itsc-model-serviceList>div>a:hover img {
    background-color: #3EB6AD;
}

.itsc-model-serviceList>div>a:hover div {
    color: #3EB6AD;
}

.service-item {
    height: 160px;
}

.services {
    margin-top: 60px;
}

@media screen and (max-width:768px) {
    .services {
        margin-top: 40px;
    }

    .itsc-model-title h1,
    .hotFaqModel-box-left-title h1,
    .hotFaqModel-box-right-title h1,
    .itsc-footerBox h2 {
        font-size: 30px;
    }

}


@media screen and (max-width:375px) {
    .service-item {
        width: 50%;
    }

}

@media screen and (min-width:1200px) {
    .itsc-model-serviceList>div>a>img {
        width: 90px;
        height: 90px;
    }

    .service-item {
        height: 180px;
    }
}


/* @@newList 
--------------------------------------------------------*/
.newsModel {
    background-image: url('../image/bgbg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.itsc-model-title {
    position: relative;
    text-align: center;
}

.itsc-model-title a {
    position: absolute;
    top: 44%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
    color: #383838;
}

.itsc-model-newsList {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.itsc-model-newsList>a {
    float: left;
    width: 33.3%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}

.itsc-model-newsList>a:hover div:first-child>img {
    transform: scale(1.2);
}

.itsc-model-newsList>a:hover div:last-child {
    color: #0266A4;
}

.itsc-model-newsList>a>div:first-child {
    width: 90%;
    overflow: hidden;
}

.itsc-model-newsList>a>div:first-child>img {
    width: 100%;
    object-fit: cover;
    transition: all .5s;
}

.itsc-model-newsList a>div:last-child {
    width: 90%;
    height: 110px;
    background-color: #fff;
    color: #383838;
}

.itsc-model-newsList-content {
    padding: 5px 10px;
    position: relative;
}

.itsc-model-newsList-content>div {
    margin: 4px 0;
}

.itsc-model-newsList-title {
    color: #0266A4;
}

.itsc-model-newsList-time {
    color: #bebebe;
    position: absolute;
    bottom: 5px;
    right: 10px;
}

.news .itsc-model-title h1 {
    margin-top: 0px;
}

@media screen and (max-width:991px) {
    .itsc-model-newsList>a {
        width: 50%;
    }

    .itsc-model-newsList>a:nth-child(3) {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .itsc-model-newsList {
        width: 100%;
    }
}

@media screen and (max-width:500px) {
    .itsc-model-newsList>a {
        width: 100%;
        margin-bottom: 20px;
    }

    .itsc-model-newsList>a:nth-child(3) {
        display: flex;
    }
}

/* @@hotFaq 
--------------------------------------------------------*/
.hotFaqModel {
    padding-top: 30px;
}

.hotFaqModel-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotFaqModel-box-left {
    width: 50%;
    background: linear-gradient(180deg, rgba(64, 132, 180, 1) 0%, rgba(64, 181, 173, 1) 100%);
    border-radius: 10px;
    color: #fff;
    padding-bottom: 20px;
    min-height: 300px;
}

.hotFaqModel-box-left a {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.hotFaqModel-box-left-title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hotFaqModel-box-left-title h1 {
    margin: 20px 0;
}

.hotFaqModel-box-left-title a {
    position: absolute;
    right: 20px;
}

.hotFaqModel-box-left li {
    word-wrap: break-word;
    padding-right: 30px;
    margin: 10px 0;
    cursor: pointer;
}

.hotFaqModel-box-left li:first-child {
    margin: 0;
}

.hotFaqModel-box-right {
    width: 50%;
    height: 300px;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.hotFaqModel-box-right-title h1 {
    display: inline-block;
    margin-left: 10px;
    margin-top: 0;
    color: transparent;
    background: linear-gradient(90deg, rgba(0, 52, 90, 1) 20%, rgba(66, 182, 173, 1) 100%);
    -webkit-background-clip: text;
}

.hotFaqModel-box-right-list {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 1;
}

.hotFaqModel-box-right-list div {
    margin: 3px 0;
    padding: 6px 10px 5px 10px;
    border-radius: 5px;
    transition: all .2s;
    border: 1px solid #fff;
    cursor: pointer;
}

.hotFaqModel-box-right-list div a {
    color: #000;
    text-decoration: none;
}

.hotFaqModel-box-right-list div:hover {
    border: 1px solid #f2f2f2;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width:991px) {

    .hotFaqModel-box-left,
    .hotFaqModel-box-right {
        width: 50%;
    }
}

@media screen and (max-width:660px) {

    .hotFaqModel-box-left,
    .hotFaqModel-box-right {
        width: 50%;
    }

    .hotFaqModel-box {
        flex-direction: column;
    }

    .hotFaqModel-box-left,
    .hotFaqModel-box-right {
        width: calc(100% - 40px);
        margin-bottom: 40px;
    }

    .hotFaqModel-box-right {
        margin-left: 0;
        border: 1px solid #ececec;
        border-radius: 10px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .hotFaqModel-box-right-title h1 {
        margin-top: 10px;
        margin-left: 0;
    }

    .hotFaqModel-box-right-title {
        text-align: center;
    }
}

@media screen and (max-width:375px) {
    .hotFaqModel-box-left-title h1 {
        font-size: 24px;
    }

    .hotFaqModel-box-left-title a {}

    .hotFaqModel-box-right-title h1 {
        font-size: 24px;
    }
}

/* @@downloadList2 
--------------------------------------------------------*/
.itsc-model-download {
    margin-top: 60px;
}

.itsc-model-downloadList {
    border: 3px solid #4d8fbf;
    border-radius: 10px;
    padding: 20px 0;
    width: 900px;
    position: relative;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.itsc-model-downloadList-list {
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.itsc-model-downloadList a {
    width: 100px;
    height: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.itsc-model-downloadList a:hover {
    opacity: .6;
}

.itsc-model-downloadList a img {
    margin-bottom: 10px;
}

.itsc-model-downloadList a div {
    text-align: center;
    word-wrap: initial;
    font-size: 16px;
}

.itsc-model-downloadList::before {
    content: '';
    width: 0;
    height: 0;
    right: -50px;
    border-top: 10px solid transparent;
    border-left: 50px solid #4d8fbf;
    border-bottom: 10px solid transparent;
    position: absolute;
    z-index: 90;
}

.itsc-model-downloadList::after {
    content: '';
    width: 0;
    height: 0;
    right: -35px;
    border-top: 10px solid transparent;
    border-left: 50px solid #ffffff;
    border-bottom: 10px solid transparent;
    position: absolute;
    z-index: 91;
}

.downloadRobot {
    width: 200px;
    position: absolute;
    right: -220px;
    top: -65px;
}

@media screen and (max-width:1199px) {
    .downloadRobot {
        top: 5px;
    }

    .itsc-model-downloadList {
        width: unset;
    }

    .downloadRobot {
        display: none;
    }

    .itsc-model-downloadList::before {
        display: none;
    }

    .itsc-model-downloadList::after {
        display: none;
    }
}

@media screen and (max-width:991px) {
    .downloadRobot {
        top: 4px;
    }

    .itsc-model-downloadList {
        width: unset;
        margin-left: unset;
    }

    .itsc-model-downloadList-list {
        padding: unset;
    }

    .itsc-model-downloadList a div span {
        font-size: 14px;
    }

    .itsc-model-downloadList a img {
        width: 40px;
    }
}

@media screen and (max-width:737px) {
    .downloadRobot {
        top: 5px;
    }
}

@media screen and (max-width:660px) {
    .itsc-model-download {
        margin-top: 0px;
    }
}

@media screen and (max-width:720px) {
    .downloadRobot {
        display: none;
    }

    .itsc-model-downloadList {
        width: 100%;
    }

    .itsc-model-downloadList::before {
        display: none;
    }

    .itsc-model-downloadList::after {
        display: none;
    }

    .itsc-model-downloadList {
        margin-left: 0px;
    }

    .itsc-model-download {
        margin-left: 20px;
        margin-right: 20px;
    }
}


/* @@footerBox 
--------------------------------------------------------*/
.itsc-footerBox {
    width: 100%;
    min-height: 300px;
    color: #fff;
    background-color: #0072bb;
    padding: 10px 0;
    margin-top: 50px;
}

.itsc-footerBox .container {
    position: relative;
}

.itsc-footerBox .container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.itsc-footerBox-contactList {
    display: flex;
    justify-content: center;
    align-items: center;
}

.itsc-footerBox-contactList p {
    margin: 0;
    display: inline-block;
}

.itsc-footerBox-contactList>a {
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
}

.itsc-footerBox-contactList>a:hover {
    text-decoration: unset;
    color: #fff;
}

.itsc-footerBox-contactList>a>img {
    width: 50px;
}

.itsc-footerBox-contactList>a:nth-child(2) {
    margin: 0 40px;
}

.wxcode {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-left: 40px;
}

.wxcode img {
    width: 80px;
}

.wxcode div {
    margin-top: 10px;
    text-align: center;
    white-space: nowrap;
}

.itsc-footerBox p {
    text-align: center;
}

.itsc-footerBox-address {
    margin-top: 30px;
}

@media screen and (max-width:991px) {
    .itsc-footerBox-contactList>a {
        font-size: 16px;
    }

    .wxcode>img {
        width: 60px;
    }

    .itsc-footerBox-contactList>a:nth-child(2) {
        margin: 0 20px;
    }
}

@media screen and (max-width:590px) {
    .itsc-footerBox-contactList {
        flex-direction: column;
    }

    .itsc-footerBox-contactList>a {
        width: 270px;
        margin: 20px 0;
    }

    .wxcode {
        margin: 20px 0;
    }

    .wxcode>img {
        width: 80px;
    }

    .wxcode>div {
        display: block;
        margin-top: 10px;
        font-size: 16px;
    }

    .itsc-footerBox .container h2 {
        margin-bottom: 20px;
    }

    .itsc-footerBox-address {
        margin-top: 0px;
    }
}

/* @@globalStyle 
--------------------------------------------------------*/
* {
    font-family: Arial, '微软雅黑' !important;
    font-size: 16px;
}

.glyphicon {
    font-family: "Glyphicons Halflings" !important;
}

body {
    position: relative;
}

.bd1 {
    border: 1px solid red;
}

.bd2 {
    border: 1px solid green;
}

.bd1 {
    border: 1px solid #000;
}

@media screen and (min-width:1201px) {
    .logoandSearchBox {
        padding: 0 5%;
    }
}


@media screen and (min-width:1024px) {
    .robotandTreeBox {
        padding: 40px 5% 0 5%;
    }

    .hotFaqModel {
        padding-top: 30px;
    }

    .itsc-model-newsList {
        margin-top: 10px;
    }
}

@media screen and (max-width:375px) {
    .itsc-model-newsList>a>div:first-child {
        width: 100%;
    }

    .itsc-model-newsList a>div:last-child {
        width: 100%;
    }

    .hotFaqModel-box-left,
    .hotFaqModel-box-right {
        width: 100%;
    }

    .hotFaqModel-box-right {
        margin-bottom: 10px;
    }

    .itsc-model-download {
        margin-left: 0px;
        margin-right: 0px;
    }

    .itsc-model {
        margin-bottom: 10px;
    }

    .itsc-model-newsList {
        margin-top: 40px;
    }

    .itsc-model-serviceList {
        margin-top: 10px;
    }

    .itsc-model-downloadList {
        padding: 0px;
    }

    .itsc-model-title a {
        top: unset;
        right: unset;
        left: 50%;
        bottom: -20px;
        transform: translate(-50%);
    }
}

.announce {
    margin-top: 0px;
}