
a:visited {
    color:#000;
}


/* 自定义下拉框按钮，兼容ie */
/* select::-ms-expand { display: none; } */

.tab:hover {
    transform: translateY(-4px);
    transition: linear 0.1s;
    border-bottom:3px solid #ffce00;
}

.now{
    border-bottom:3px solid #ffce00;
}

/* 跳动动画 */
@keyframes beat {
    0% {
        bottom: 45px;
    }

    25% {
        bottom: 30px;
    }
    50% {
        bottom: 25px;
    }

    75% {
        bottom: 30px;
    }

    100% {
        bottom: 45px;
    }
}

/* 跳动动画 */
@keyframes beat2 {
    0% {
        top: 68px;
    }

    50% {
        top: 86px;
    }
    100% {
        top: 68px;
    }
}

/* 跳动动画 */
@keyframes beat3 {
    0% {
        top: 0;
    }

    50% {
        top: 20px;
    }
    100% {
        top: 0;
    }
}

/* 跳动动画 */
@keyframes beat4 {
    0% {
        top: 145px;
    }

    50% {
        top: 165px;
    }
    100% {
        top: 145px;
    }
}

/* 跳动动画 */
@keyframes beat5 {
    0% {
        top: 135px;
    }

    50% {
        top: 155px;
    }
    100% {
        top: 135px;
    }
}

/* 方案动画 */
@keyframes beat6 {
    0% {
        top: 0;
    }

    50% {
        top: -20px;
    }
    100% {
        top: 0;
    }
}

.main{
    margin: 0 auto;
    width: 1200px;
}
/* 头部导航 */

.headerBox{
    background:#f7f7f7;
    width:100%;
    height:60px;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 999999;
	box-shadow: 0px 1px 0px 0px 
		rgba(238, 238, 238, 1);
    }

    .header_active{
        background-color: rgba(255, 255, 255, 0.97);
        box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.05);
        backdrop-filter: saturate(180%) blur(20px)
    }
    .header_tab{
        height: 60px;
        margin-left:112px;
        /* background-color: white; */
        width:750px;
        display: flex;
    }
    
.tabView{
    display: flex;
    flex-direction: column;
}

.select2{
    display: none;
}


/* 头部图片 */
.top{
    width: 100%;
    height: 460px;
    background-color: #f7f7f7;
}

.top_container{
    width:1200px;
    height:100%;
    /* background: pink; */
    margin: 0 auto;
    display: flex;
    padding-top:60px;
}

.top_left{
    width: 50%;
    height: 100%;
}

.top_left img{
    width:355px;height:51px;margin-top: 56px;
}

#searchInput{
    border: 0; 
                        height: 35px;width:241px;
                        margin-left: 35px;margin-top:10px;font-size:18px;
}

.top_left p{
    margin-top:24px;font-size:36px;color:#3E3E3E;height: 36px;
}

.search{
    margin-top:40px;
    width: 539px;
	height: 55px;
	background-color: #ffffff;
	box-shadow: 0px 10px 41px 2px 
	rgba(160, 160, 160, 0.3);
	border-radius: 28px;
    display: flex;
}

.search_right{
    width: 249px;
	height: 55px;
	background-color: #ffce00;
	border-radius: 28px;
    margin-left:15px;
    font-size: 18px;
    text-align: center;
    line-height: 55px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    transform: scale(1);
    cursor: pointer;
}
.search_right:active {
    transform: scale(0.97);
}
.top_right{
    width: 590px;
    height: 423px;
    background-image: url('../img/topBg.png');
    background-size: 590px 423px;
    background-repeat:no-repeat;
    margin-top: -10px;
    margin-left: auto;
    position: relative;
}

.man1{
    width: 34px;
    height: 58px;
    background-image: url('../img/man1.png');
    background-size: 34px 58px;
    position:absolute;
    bottom: 35px;
    left: 35px;
    animation-name: beat;
    /*动画名称*/
    animation-duration: 2s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;

}
.man2{
    width: 34px;
    height: 58px;
    background-image: url('../img/man2.png');
    background-size: 34px 58px;
    position:absolute;
    top: 78px;
    left: 1px;
    animation-name: beat2;
    /*动画名称*/
    animation-duration: 2s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running; 

}
    
.man3{
    width: 34px;
    height: 58px;
    background-image: url('../img/man3.png');
    background-size: 34px 58px;
    position:absolute;
    top: 0px;
    left: 190px;
    animation-name: beat3;
    /*动画名称*/
    animation-duration: 2s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running; 
}

.man4{
    width: 34px;
    height: 58px;
    background-image: url('../img/man4.png');
    background-size: 34px 58px;
    position:absolute;
    top: 165px;
    left: 170px;
    animation-name: beat4;
    /*动画名称*/
    animation-duration: 2s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;  

}
.man5{
    width: 34px;
    height: 58px;
    background-image: url('../img/man5.png');
    background-size: 34px 58px;
    position:absolute;
    top: 165px;
    right: 35px;
    animation-name: beat5;
    /*动画名称*/
    animation-duration: 2s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;  
}

.programme{
    height: 620px;
    width:1200px;
    display: flex;
    margin: 0 auto;
}

.programme_left{
    width: 574px;
	height: 455px;
	background-color: #ffffff;
	box-shadow: 0px 0px 57px 0px 
		rgba(0, 0, 0, 0.05);
	border-radius: 10px;
    margin-top:128px;
}

.programme_right{
    width: 574px;
	height: 455px;
	background-color: #ffffff;
	box-shadow: 0px 0px 57px 0px 
		rgba(0, 0, 0, 0.05);
	border-radius: 10px;
    margin-left:52px;
    margin-top:128px
}

.picBg{
    width:144px;
    height:144px;
    margin-left:210px;
    margin-top:58px;
    background-image: url('../img/xy2.png');
    background-size: 144px 138px;
    background-repeat:no-repeat;
    position: relative;
}

.picxy{
    width: 54px;
    height:77px;
    background-image: url('../img/xy.png');
    background-size: 54px 77px;
    background-repeat:no-repeat;
    position:absolute;
    top: 0px;
    left: 40px;
    animation-name: beat6;
    /*动画名称*/
    animation-duration: 1.5s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;  
}

.picxy3{
    width: 40px;
    height:77px;
    background-image: url('../img/xy3.png');
    background-size: 40px 77px;
    background-repeat:no-repeat;
    position:absolute;
    top: 0px;
    left: 42px;
    animation-name: beat6;
    /*动画名称*/
    animation-duration: 1.5s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;  
}

.picText{
    width: 210px;
    height: 23px;
    font-family: PingFangSC-Regular;
    font-size: 21px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #000000;
    margin-top:30px;
    margin-left:192px;
}

.picText2{
    width: 100%;
    text-align: center;
	height: 16px;
	font-family: PingFangSC-Regular;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #555555;
    margin-top:34px;
}

.picBtn{
    width: 160px;
	height: 50px;
	background-color: #ffce00;
	border-radius: 25px;
    font-size: 18px; 
    line-height: 50px;
    text-align: center;
    margin-left:202px;
    margin-top:50px;
    transform: scale(1);
    cursor: pointer;
}

.picBtn:active{
    transform: scale(0.97);
}


.programme_item_hover {
    transform: translateY(-30px);
    transition: 1s;
    /* background-image: linear-gradient(0deg, 
    #fdf5e7 0%, 
    #fffcf8 100%), 
    linear-gradient(
        #ffffff, 
        #ffffff); */
}

.why{
    width: 100%;
    height: 730px;
    background-image: url('../img/whyBg.jpg');
    background-repeat:no-repeat;
    background-size: 100% 525px;
    background-position: 0px 110px;
    position:relative;
    margin-top:-50px
}

.why_container{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.whyText{
    text-align: center;
    height: 33px;
	font-family: PingFangSC-Medium;
	font-size: 32px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 30px;
	letter-spacing: 2px;
	color: #ffffff;
    padding-top:210px;
}

.whyCard{
    width:100%;
    display: flex;
    margin-top:70px;
}

.whyCard_item{
	width: 380px;
	height: 530px;
	background-color: #ffffff;
	box-shadow: 0px 0px 57px 0px 
		rgba(0, 0, 0, 0.05);
	border-radius: 6px;
    margin-left:30px
}


.toPosition{
    height: 115px;
    width: 100%;
}

.whyPic{
    width: 119px;
	height: 148px;
    background-image: url('../img/why1.png');
    background-repeat:no-repeat;
    background-size: 119px 148px;
    position:relative;
    margin-left:130px;
    margin-top:35px;
}

.whyPicUp{
    width:52px;
    height:80px;
    background-image: url('../img/why2.png');
    background-size: 52px 80px;
    background-repeat:no-repeat;
    position:absolute;
    top: 30px;
    left: 30px;
    animation-name: beatWhy;
    /*动画名称*/
    animation-duration: 1.5s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;  
}

.whyPicUp2{
    width:52px;
    height:80px;
    background-image: url('../img/why3.png');
    background-size: 52px 80px;
    background-repeat:no-repeat;
    position:absolute;
    top: 30px;
    left: 35px;
    animation-name: beatWhy;
    /*动画名称*/
    animation-duration: 1.5s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;  
}

.whyPicUp3{
    width:49px;
    height:63px;
    background-image: url('../img/why4.png');
    background-size: 49px 63px;
    background-repeat:no-repeat;
    position:absolute;
    top: 25px;
    left: 40px;
    animation-name: beatWhy2;
    /*动画名称*/
    animation-duration: 1.5s;
    /*设置秒数*/
    animation-timing-function: linear;
    /*速度曲线*/
    animation-iteration-count: infinite;
    /*播放次数*/
    animation-direction: alternate;
    /*逆向播放*/
    animation-play-state: running;  
}
.whyPicText{
    width: 100%;
	height: 63px;
	font-family: PingFangSC-Regular;
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 40px;
	letter-spacing: 1px;
	color: #000000;
    text-align: center;
    margin-top:57px;
}

.whyList{
    margin-top:65px;
    width: 100%;
    padding-left:56px;
}

.whyList_item{
    display: flex;
    margin-top:28px;
}

.whyList_item_pic{
    width: 12px;
	height: 12px;
    background-image: url('../img/title_sign.png');
    background-size: 12px 12px;
    background-repeat:no-repeat;
    margin-top:5px;
}

.whyList_item_text{
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #555555;
    margin-left:20px;
    letter-spacing: 1px;
	color: #555555;
}


/* 跳动动画 */
@keyframes beatWhy {
    0% {
        top: 20px;
    }

    50% {
        top: 30px;
    }
    100% {
        top: 20px;
    }
}

/* 跳动动画 */
@keyframes beatWhy2 {
    0% {
        top: 25px;
    }

    50% {
        top: 35px;
    }
    100% {
        top: 25px;
    }
}

.solution{
    height: 615px;
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.solution_title{
    padding-top:110px;
    width: 100%;
    text-align: center;
    font-family: PingFangSC-Medium;
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 2px;
    color: #1d1c1c;
}

.solution_view{
    width: 1200px;
	height: 458px;
	background-color: #ffffff;
	box-shadow: 0px 0px 57px 0px 
		rgba(0, 0, 0, 0.05);
	border-radius: 14px;
    position: absolute;
    top:210px;
    z-index: 20000;
    display: flex;
}

.solution_view_left{
  width:690px;
  height: 100%;
}

.inputStyle{
    border: 0;
    height: 40px;width:520px;
    margin-left: 29px;font-size:16px;margin-top:5px;
}

input::-webkit-input-placeholder {
    font-size: 16px;
}
input:-moz-placeholder {
    font-size: 16px;
}
input::-moz-placeholder {
    font-size: 16px;
}
input:-ms-input-placeholder {
    font-size: 16px;
}

.fromInput{
    width: 572px;
	height: 50px;
	background-color: #ffffff;
	border-radius: 6px;
	border: solid 1px #eeeeee;
    margin-left:40px;
    margin-bottom:20px;
}
.viewContent{
    width:690px;
    height: 500px;
}

.viewContent_right{
    width: 509px;
	border-radius: 14px;
}

.viewContent_title{
    width:200px;
    padding-top:54px;
    padding-left:40px;
    padding-bottom:40px;
    font-family: PingFangSC-Regular;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #000000;
}

.viewContent_btn{
    margin-left:40px;
    margin-top:30px;
    width: 193px;
	height: 50px;
	line-height: 50px;
	background-color: #ffce00;
	border-radius: 25px;
    font-family: PingFangSC-Regular;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 1px;
	color: #000000;
    text-align: center;
    transform: scale(1);
    cursor: pointer;
}

.viewContent_btn:active{
    transform: scale(0.97);
}

.solution_view_right{
    height:100%;
    width: 510px;
    border-radius: 0 14px 14px 0px;
    	background-image: linear-gradient(-90deg, 
		#fdf5e7 0%, 
		#fffcf8 100%), 
	linear-gradient(
		#fdf5e7, 
		#fdf5e7);
	background-blend-mode: normal, 
		normal;
}

.viewContent_title{
    padding-left:65px
}

.checkBox{
    height:300px;
    width:380px;
    cursor: pointer;
}

.checkItem{
    width: 378px;
    display: flex;
    padding-left:95px;
    padding-bottom:40px;
}

.box_right{
    margin-left:120px;
}

.labelText{
    font-family: PingFangSC-Regular;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #4e4e4e;
}

.form_dialog_title1{
    margin-top:50px ;
}

.form_dialog_view div:nth-child(1){
    width:100%;height:40px
}

.labelText{
    text-indent: 2px;
}

input[type="checkbox"]{
    position:absolute;
    opacity: 0;
}

.labelPositon{
    position: relative;
}

.checkBorder{
    height:18px;
    width: 18px;
    border-radius: 4px;
    position: absolute;
    left:-30px;
	border: solid 1px #ff9528;
    cursor: pointer;
}

.labelPositon::before{
	width: 10px;
	height: 10px;
	border-radius: 4px;
    display: inline-block;
    content: '';
    position: absolute;
    left:-25px;
    top:5px;
	/* border: solid 1px #ff9528; */
    cursor: pointer;
}

input[type="checkbox"]:checked+.labelPositon::before{
	background-color: #ff6f3d;
}




.compony_img_view img {
    width: 179px;
    height: 70px;
}
.compony_img_view img:hover {
    transform: scale(1.05);
    box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.get_view {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 63px;
}
.get_item {
    width: 286px;
    height: 370px;
    position: relative;
}
.get_item:hover{
    transform: scale(1.02);
    transition: 0.5s;
}
.get_background {
    width: 286px;
    height: 370px;
    position: absolute;
    top: 0;
}
.get_content {
    font-size: 18px;
    color: #FFFFFF;
    position: absolute;
    bottom: 21px;
    left: 20px;
}
.get_title {
    font-size: 18px;
    color: #FFFFFF;
    position: absolute;
    bottom: 89px;
    left: 20px;
}

.goTop{
	width: 60px;
	height: 60px;
	background-color: #ffffff;
	box-shadow: 0px 0px 21px 0px 
		rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    z-index: 888;
    cursor: pointer;
    position: fixed;
    bottom: 15%;
    right: 30px;
    text-align: center;
    z-index: 88888887;
}

.goTop img{
    width:22px;height:19px;margin-top:20px;
}

.ewm_dialog .ewm_dialog_view:nth-child(1){
    width:100%;height:40px
}

.dialog_text{
    margin-top:40px;
}

.dialog_text_one{
    margin-top:0px;
}

.mask{
    width: 100%;
    height: 100%;
    z-index: 88888888;
    background: #000000;
    opacity: 0.4;
    position: fixed;
    top: 0;
    left: 0;
    display: none;

}

.form_dialog{
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 690px;
    background-color: #fff;
    display: none;
    z-index: 88888889;
    border-radius: 10px;
    transform: scale(0.8);
}

.ewm_dialog{
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 505px;
    background-color: #fff;
    display: none;
    z-index: 88888889;
    border-radius: 10px;
}

.dialog_icon{
    float: right;
    margin-top:30px;
    margin-right: 30px;
    cursor: pointer;
}

.dialog_title{
    width:100%;
    font-size: 20px;
    height: 26px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #191919;
    line-height: 26px;
    text-align: center;
    margin-top:30px;
}
.dialog_text{
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
    height: 30px;
    width: 100%;
    text-align: center;
}



.ewm{
    width: 213px ;
    height: 213px;
    background-image: url('../img/ewm.png');
    background-size: 213px 213px;
    background-repeat:no-repeat;
    margin-left:195px;
    margin-top:40px;
}

.form_dialog_title{
    width: 100%;
    height: 24px;
    font-size: 20px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 24px;
    padding-left:40px;
    padding-bottom: 10px;
}

.form_item{
    height:50px;
    width:510px;
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    margin-left: 40px;
    margin-top: 16px;
}

.form_choose{
    width:510px;
    padding-left:40px;
    display: flex;
}

.form_item input{
    border: 0;
                    height: 40px;width:470px;
                    margin-left: 28px;margin-top:5px;font-size:16px;
}




.checked{
    background-color: #FFF5EA;
    color:#FF9528;
}

#sendIt{
    width: 508px;
    height: 55px;
    background: #FFCE00;
    border-radius: 28px;    
    font-size: 18px;
    text-align: center;
    line-height: 55px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    transform: scale(1);
    cursor: pointer;
    margin-top:50px;
    margin-left:41px;
}
#sendIt:active {
    transform: scale(0.97);
}

.xuanzhuan{
    transform:rotate(180deg);
    padding-top: 3px;
    transition: all 0.5s;   
}

.search_right:hover{
    background-color: #ffc600;
}

.picBtn:hover{
    background-color: #ffc600;
}

#sendIt:hover{
    background-color: #ffc600;
}

.viewContent_btn:hover{
    background-color: #ffc600;
}
.programme_item_hover2{
    transform: translateY(-30px);
    transition: 1s;
    background-image: linear-gradient(0deg,
    #fdf5e7 0%,
    #fffcf8 100%),
    linear-gradient(
            #ffffff,
            #ffffff);
}

