.content{
    overflow: hidden;
}

.banner{
    width: 100%;
    height: 480px;
    position: relative;
    padding-top: 100px;
    box-sizing: border-box;
    background: url("/newwebsite/travelcloud/images/banner.png") #d1d1d1 center center no-repeat;
}

.banner .introduction{
    margin-left: calc(50vw - 560px);
    color: #0062dc;
    font-size: 18px;
}

.banner .introduction .title{
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 25px;
    font-weight: bold;
}

.banner .introduction .desc{
    line-height: 25px;
    margin-bottom: 40px;
}

.banner .introduction .button{
    font-size: 18px;
    width: 270px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    background: #0062dc;
    cursor: pointer;
}

.banner .line{
    width: 100%;
    height: 12px;
    position: absolute;
    bottom: 0;
    background: url("/newwebsite/travelcloud/images/bottomline.png");
}

.section{
    width:1200px;
}

.section .title{
    font-size: 36px;
    color: #0062dc;
    font-weight: bold;
    text-align: center;
}

.outline{
    color: #363c48;
    width:1060px;
    margin-left: calc(50vw - 530px);
    margin-top: 30px;
    height: 350px;
    display: flex;
    margin-bottom: 110px;
    padding-left: 40px;
    padding-right: 100px;
}

.outline .leftBox{
    height: 145px;
    width: 145px;
    box-shadow: 0 0 5px 1px #E9E9E9;
    padding: 46px 33px 56px 27px;
    box-sizing: border-box;
}

.outline .leftBox img{
    width: 85px;
    height: 42px;
}

.outline .rightBox{
    height: 150px;
    width: 880px;
    margin-top: 30px;
    margin-left: 35px;
    font-size: 22px;
}

.outline .rightBox p{
    font-size: 36px;
    font-weight: bold;
    color: #0062dc;
}

.outline .rightBox .introduction{
    margin-top: 25px;
    margin-bottom: 35px;
}

.outline .rightBox .line{
    height: 1px;
    border-bottom: 1px solid #aaaaaa;
    margin-bottom: 30px;
}

.outline .rightBox .features{
    width:500px;
}
.features ul{
    display: flex;
    height: 100px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.features ul li {
    height: 36px;
    width: 150px;
    border: 1px solid #aaaaaa;
    line-height: 36px;
    text-align: center;
}

.feeControlMode{
    width: 1140px;
    margin-left: calc(50vw - 570px);
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 80px;
}

.feeControlMode p{
    margin-left: 370px;
    margin-bottom:30px;
    font-size: 36px;
    color: #0062dc;
    font-weight: bold;
}

.feeControlMode .imageBox{
    width: 100%;
    height: 750px;
    position: relative;
}

.feeControlMode .imageBox img{
    position: absolute;
    width: 540px;
    height: 750px;
    left: 100%;
    transform: translateX(-100%);
}

.feeControlMode .imageBox .floor{
    width: 170px;
    height: 90px;
    position: absolute;
    cursor: pointer;
}

.feeControlMode .imageBox .floor1{
    /*background: orange;*/
    left: 600px;
    top: 480px;
}

.feeControlMode .imageBox .floor2{
    /*background: deepskyblue;*/
    left: 685px;
    top: 335px;
}

.feeControlMode .imageBox .floor3{
    /*background: greenyellow;*/
    left: 770px;
    top: 190px;
}

.feeControlMode .imageBox .floor4{
    /*background: burlywood;*/
    left: 855px;
    top:50px;
}

.feeControlMode .imageBox .model{
    width: 540px;
    height: 120px;
    position: absolute;
    animation-play-state: paused;
    z-index:-1;
}

.feeControlMode .imageBox .floor:hover + .model{
    animation: boxAnimation 3s 1 reverse forwards; /* 添加关键帧动画 */
    animation-play-state: running;
}

@keyframes boxAnimation {
    0% {
        width: 0;
    }
    50% {
        width: 600px;
    }
    100%{
        width:0;
    }
}

.feeControlMode .imageBox .model4{
    width: 592px;
    left: 263px;
    top: 20px;
    background-size: cover;
    background: url("/newwebsite/travelcloud/images/clfkptms/model4.png") no-repeat;
}

.feeControlMode .imageBox .model3{
    width: 582px;
    left: 189px;
    top: 162px;
    background-size: cover;
    background: url("/newwebsite/travelcloud/images/clfkptms/model3.png") no-repeat;
}

.feeControlMode .imageBox .model2{
    width: 566px;
    left: 119px;
    top: 305px;
    background-size: cover;
    background: url("/newwebsite/travelcloud/images/clfkptms/model2.png") no-repeat;
}

.feeControlMode .imageBox .model1{
    left: 60px;
    top: 449px;
    background-size: cover;
    background: url("/newwebsite/travelcloud/images/clfkptms/model1.png") no-repeat;
}

.feeControlMode .imageBox .btn{
    position: absolute;
    bottom: 50px;
    background: #0062dc;
    color: #FFFFFF;
    width: 176px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    left: 442px;
}

.intelligentOutput{
    width: 100vw;
}

.intelligentOutput .title{
    margin-bottom: 40px;
}

.intelligentOutput .tabs{
    width: 1140px;
    margin-left: calc(50vw - 570px);
    display: flex;
    justify-content: space-between;
}

.intelligentOutput .tabs .tab-item{
    font-weight: bold;
    margin-bottom: 33px;
    position: relative;
    color: #787878;
    cursor: pointer;
}

.intelligentOutput .tabs .tab-item:first-child{
    color: #0062dc;
}

.intelligentOutput .tabs .tab-item:first-child .line{
    border-bottom: 1px solid #0062dc;
}

.intelligentOutput .tabs .tab-item p {
    font-size: 20px;
    margin-bottom: 23px;
    height: 20px;
}
.intelligentOutput .tabs .tab-item .line{
    width: 120px;
    border-bottom: 1px solid #666666;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.intelligentOutput .imageBox{
    background: #0062dc;
    width: 100%;
    height: 850px;
}

.intelligentOutput .imageBox img{
    width: 1130px;
    height: 740px;
    margin-left: calc(50vw - 565px);
    margin-top: 30px;
}

.uniqueAdvantages{
    width: 100%;
    padding-top: 45px;
    padding-bottom: 40px;
    background: url("/newwebsite/travelcloud/images/bj.png");
}

.uniqueAdvantages .title{
    margin-bottom: 40px;
}

.uniqueAdvantages .advantages{
    width: 1200px;
    margin-left: calc(50vw - 600px);
    height: 740px ;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.advantages .point{
    width:285px;
    height: 360px;
    position: relative;
    cursor: pointer;
}

.point .uppercase{
    height: 270px;
}
.point .uppercase img{
    width: 100%;
    height: 100%;
}

.advantages .point .name{
    width: 100%;
    height: 90px;
    color: #ffffff;
    background: #aaaaaa;
    font-weight: bold;
    text-align: center;
    line-height: 90px;
    font-size: 22px;
    transition: background-color 1s ease;
}

.point .desc_text{
    width: 100%;
    height: 270px;
    box-sizing: border-box;
    padding: 45px 20px 80px 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    opacity: 0;
    background: #4e85a6;
    visibility: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
    transition: opacity 1s ease, visibility 1s ease;
}

.advantages .point:hover .desc_text{
    opacity: 0.8;
    visibility: visible;
}

.advantages .point:hover .name{
    background: #0062dc;
}

.innovFeature{
    height: 600px;
    margin-top: 50px;
    margin-bottom: 110px;
    margin-left: calc(50vw - 600px);
}

.innovFeature .title{
    margin-bottom: 60px;
}

.innovFeature .functions{
    width: 100%;
    height: 450px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.innovFeature .functions .point{
    width: 170px;
    height: 210px;
    margin-right: 40px;
    box-shadow: 0 0 5px 1px #E9E9E9;
    transition: background-color 1s ease;
    cursor: pointer;
}

.innovFeature .functions .point:hover{
    background-color: #0062dc;
}

.innovFeature .functions .point:hover p{
    color: #ffffff;
}

.innovFeature .functions .point:hover .desc{
    color: #ffffff;
}

.functions .point p{
    color: #0062dc;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 12px;
    transition: color 1s ease;
}

.functions .point img{
    width: 30px;
    height: 30px;
    margin-top: 20px;
}

.functions .point img:nth-child(2){
    display: none;
}

.functions .point:hover img:first-child{
    display: none;
}

.functions .point:hover img:nth-child(2){
    display: inline-block;
}

.functions .point .desc{
    color: #7c7c7c;
    font-size: 14px;
    line-height: 22px;
    width: 130px;
    height: 90px;
    margin-left: 20px;
    transition: color 1s ease;
}

.reform  {
    margin-left: calc(50vw - 600px);
    margin-bottom: 110px;
}

.reform  .title{
    margin-bottom: 50px;
}

.reform  #tabList {
    width: 1160px;
    margin-left: 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 18px;
}

.reform  #tabList li p{
    border: none;
    padding-bottom: 10px;
    padding-right: 3px;
    padding-left: 3px;
}

.reform  #tabList li:first-child p{
    border-bottom: 1px solid #0062dc;
}



.reform  #tabList li{
    position: relative;
    cursor: pointer;
}

.reform  #tabList li img{
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-30px);
}

.reform  .line{
    border-top: 1px solid #aaaaaa;
    margin-bottom: 40px;
}

.reform  .tab-content{
    width: 1160px;
    margin-left: 20px;
    height: 280px;
    background: #f8f8f8;
    position: relative;
    margin-bottom: 20px;
    display: none;
}

.reform  .line + .tab-content{
    display: block ;
}

.reform  .tab-content img{
    width: 100%;
    height: 100%;
}

.reform  .button{
    background: #0062dc;
    width: 140px;
    height: 50px;
    margin-left: 530px;
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    cursor: pointer;
}

.smartTravel {
    margin-left: calc(50vw - 600px);
    margin-bottom: 50px;
}

.smartTravel .title{
    margin-bottom: 50px;
}

.smartTravel .enterprise{
    display: flex;
    justify-content: space-between;
}

.smartTravel .enterprise .item{
    width: 330px;
    height: 465px;
    cursor: pointer;
}

.smartTravel .enterprise .item .imgBox{
    width: 330px;
    height: 330px;
}

.smartTravel .enterprise .item .introduction{
    height: 135px;
    width: 100%;
    padding-top: 25px;
    padding-left: 40px;
    box-sizing: border-box;
    font-size: 20px;
    color: #ffffff;
    background:#aaaaaa;
    transition: background-color 1s ease;
}

.enterprise .item .introduction div{
    font-size: 22px;
    font-weight: bold;
}

.enterprise .item:hover .introduction{
    background-color: #0062dc;
}