.mk-bd{
    display: grid;
    grid-template-areas: "banner banner banner"
                        "navigation navigation navigation"
                        "film film film"
                        "advantage advantage advantage"
                        "cooperation cooperation cooperation"
                        "xincen xincen xincen"
                        "partner partner partner"
                        "agent agent agent";
    grid-template-rows: 440px 60px 619px 500px 760px 400px 562px auto;
    grid-template-columns:auto 1180px auto;

}
.mk-bd-banner{
    grid-area: banner;
    background: url(../../images/marketing/banner.png) no-repeat center;
    background-size: 100% 100%;
}
.mk-bd-banner-box{
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 480px auto;
    grid-template-rows: 151px 56px 19px 25px 25px 31px 40px 95px;
    grid-template-areas: ". ."
                        "banHtxt blogo"
                        ". ."
                        "bantxt1 bantxt1"
                        "bantxt2 bantxt2"
                        ". ."
                        "banbtn banbtn"
                        ". .";
}
.mk-bd-banner-box>p:first-child{
    grid-area: banHtxt;
    font-size: 40px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 56px;
}
.mk-bd-banner-box>p:nth-child(3){
    grid-area: bantxt1;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
}
.mk-bd-banner-box>p:nth-child(4){
    grid-area: bantxt2;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
}
.banner-btn p{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 0px!important;
}
.banner-btn{
    grid-area: banbtn;
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, #1882F0 0%, #00AEEE 100%);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.ban-logo{
    grid-area: blogo;
    width: 65px;
    height: 22px;
    margin-left: 15px;
    background: url(../../images/marketing/ban-logo.png) no-repeat center;
    background-size: 100% 100%;
}
.mk-bd-navigation{
    grid-area: navigation;
    background-color: #ffffff;
    border-bottom: 1px solid #DBDBDB;
}
.mk-bd-navigation-fixed{
    position: fixed;
    width: 100%;
}
.mk-bd-navigation-box{
    grid-area: nagbox;
    display: grid;
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 22px 13px 80px 130px 160px auto;
    grid-template-areas: "phonelogo . nagtxt1 nagtxt2 . nagbox .";
    grid-template-rows: 60px;
    align-items: center;
}
.mk-bd-navigation-box>p{
    
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
    margin-bottom: 0px !important;
}
.mk-bd-navigation-box>p:nth-child(2){
    grid-area: nagtxt1;
}
.mk-bd-navigation-box>p:nth-child(3){
    grid-area: nagtxt2;
    color: #0086FE;
}
.phone-icon{
    grid-area: phonelogo;
    background: url(../../images/marketing/phone.png) no-repeat center;
    background-size: 100% 100%;
    width: 22px;
    height: 22px;
}
.mk-bd-navigation-nags{
    grid-area: nagbox;
    display: grid;
    grid-template-columns: repeat(5,80px);
    grid-template-rows: 60px;
    column-gap: 55px;
}
.mk-bd-navigation-nags>div{
    cursor: pointer;
}
.mk-bd-navigation-nags p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.active-nag p{
    font-weight: bold;
    color: #0086FE;
    border-bottom: solid 4px #0086FF;
}

.mk-bd-film{
    grid-area: film;
    background-color: #DBDBDB;
    
}
.mk-bd-film-box{
    width: 1180px;
    display: grid;
    margin-left: auto;
    margin-right: auto;
    grid-template-rows: 192px 351px auto;
    grid-template-areas: "filmtxt"
                         "filmimg";
}
.mk-bd-film-box>p{
    grid-area: filmtxt;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    line-height: 22px;
}
.mk-bd-film-img{
    grid-area: filmimg;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../../images/marketing/film.png) no-repeat center;
    width: 1180px;
    height: 351px;
    background-size: 100% 100%;
}
.video-btn a::before{
    position: absolute;
    border-radius: 50%;
    content: '';
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    top: 870px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation: water 1.5s linear infinite;
    animation: water 1.5s linear infinite;
}
@keyframes water {
    0% {
      opacity: 0.5;
      -webkit-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(2);
      transform: translate(-50%, -50%) scale(2);
    }
  }
  
  @-moz-keyframes water {
    0% {
      opacity: 0.5;
      -webkit-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(2);
      transform: translate(-50%, -50%) scale(2);
    }
  }
  
  @-webkit-keyframes water {
    0% {
      opacity: 0.5;
      -webkit-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(2);
      transform: translate(-50%, -50%) scale(2);
    }
  }
  
  @-o-keyframes water {
    0% {
      opacity: 0.5;
      -webkit-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(2);
      transform: translate(-50%, -50%) scale(2);
    }
  }
.mk-bd-film-btn{
    /* background: url(https://cdn.jdy.com/jdy/images/marketing/movie-btn.png) no-repeat center;
    background-size: 100% 100%; */
    width: 86px;
    height: 86px;
    cursor: pointer;
}
.mk-bd-advantage{
    grid-area: advantage;
    background-color: #F4F8FB;
}
.mk-bd-advantage-box{
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4,277px);
    grid-template-rows: 134px 285px 81px;
    column-gap: 24px;
}
.mk-bd-advantage-box>p{
    grid-column: 4 span;
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    line-height: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mk-bd-advantage-detail{
    background: #FFFFFF;
    border-radius: 5px;
    display: grid;
    grid-template-rows: 48px 60px 20px 22px 8px auto;
    grid-template-columns: 24px auto 24px;
    grid-template-areas: ". . ."
                        ". dicon ."
                        ". . ."
                        ". dhtxt ."
                        ". . ."
                        ". dtxt .";
}
.mk-bd-advantage-detail-icon{
    grid-area: dicon;
    width: 60px;
    height: 60px;
    background-size: 100% 100%!important;
    margin-left: auto;
    margin-right: auto;
}
.mk-bd-advantage-detail>p:nth-child(2){
    grid-area: dhtxt;
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    line-height: 22px;
    text-align: center;
}
.mk-bd-advantage-detail>p:nth-child(3){
    grid-area: dtxt;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}
.detail-icon1{
    background: url(../../images/marketing/ad1.png) no-repeat center;
}
.detail-icon2{
    background: url(../../images/marketing/ad2.png) no-repeat center;
}
.detail-icon3{
    background: url(../../images/marketing/ad3.png) no-repeat center;
}
.detail-icon4{
    background: url(../../images/marketing/ad4.png) no-repeat center;
}
.detail-icon5{
    background: url(../../images/marketing/ad5.png) no-repeat center;
}
.mk-bd-cooperation{
    grid-area: cooperation;
    background-color: #F0F2F5;
}
.mk-bd-cooperation-box{
    width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 139px 145px 276px 428px 188px;
    grid-template-rows: 106px 112px 44px 130px 131px 131px 40px;
    /* border: 1px solid #DBDBDB; */
    /* gap: 1px; */
}
.mk-bd-cooperation-box p{
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
    margin-bottom: 0px!important;
    text-align: center;
}
.mk-bd-cooperation-box>div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mk-bd-cooperation-box>div:nth-child(n+3):nth-child(-n+7){
    background-color: #0086FE;
    border-right: 1px solid #DBDBDB;;
}
.mk-bd-cooperation-box>div:nth-child(n+3):nth-child(-n+7) p{
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 22px;
    text-align: center;
}
.mk-bd-cooperation-box>div:nth-child(n+8):nth-child(-n+22){
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 22px;
    /* background-color: #0086FE; */
    border-right: 1px solid #DBDBDB;;
    border-bottom: 1px solid #DBDBDB;;
    /* height: 44px; */
}
.mk-bd-cooperation-box>div:nth-child(10),.mk-bd-cooperation-box>div:nth-child(15),.mk-bd-cooperation-box>div:nth-child(20){
    align-items: flex-start;
    padding-left: 62px;
}
.mk-bd-cooperation-box>div:nth-child(10) p:last-child,.mk-bd-cooperation-box>div:nth-child(15) p:last-child,.mk-bd-cooperation-box>div:nth-child(20) p:last-child,
.mk-bd-cooperation-box>div:nth-child(11) p:last-child,.mk-bd-cooperation-box>div:nth-child(16) p:last-child,.mk-bd-cooperation-box>div:nth-child(21) p:last-child,
.mk-bd-cooperation-box>div:nth-child(8) p,.mk-bd-cooperation-box>div:nth-child(9) p,.mk-bd-cooperation-box>div:nth-child(13) p,.mk-bd-cooperation-box>div:nth-child(14) p,
.mk-bd-cooperation-box>div:nth-child(18) p,.mk-bd-cooperation-box>div:nth-child(19) p{
    font-weight: bold;
}
.mk-bd-cooperation-box>div:nth-child(12) p,.mk-bd-cooperation-box>div:nth-child(17) p,.mk-bd-cooperation-box>div:nth-child(22) p{
    font-weight: bold;
    color: #0086FE;
    font-size: 16px;
}
.mk-bd-cooperation-box>div:nth-child(11),.mk-bd-cooperation-box>div:nth-child(16),.mk-bd-cooperation-box>div:nth-child(21){
    align-items: flex-start;
    padding-left: 82px;
}
.mk-bd-cooperation-box>div:nth-child(23){
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    line-height: 17px;
    border-right: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
    border-left: 1px solid #DBDBDB;
    align-items: flex-start;
    padding-left: 44px;
}
.mk-bd-cooperation-box>div:nth-child(8),.mk-bd-cooperation-box>div:nth-child(13),.mk-bd-cooperation-box>div:nth-child(18){
    border-left: 1px solid #DBDBDB;;
}
/* .mk-bd-cooperation-box>p:nth-child(4),.mk-bd-cooperation-box>p:nth-child(5),.mk-bd-cooperation-box>p:nth-child(6){
    font-weight: 600!important;
} */
.mk-bd-cooperation-box> p:nth-child(2){
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mk-bd-cooperation-box>p:nth-child(1){
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.mk-bd-cooperation-box>p:first-child,.mk-bd-cooperation-box>p:nth-child(2),.mk-bd-cooperation-box>div:nth-child(23){
    grid-column: 5 span;
}
.mk-bd-xincen{
    grid-area: xincen;
    background-color: #F4F8FB;
}
.mk-bd-xincen-box{
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(7,128px);
    grid-template-rows: 80px 123px 116px 81px;
    column-gap: 24px;
    justify-content: center;
}
.mk-bd-xincen-box p,.mk-bd-partner-box p{
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    line-height: 22px;
    border-bottom: 0px!important;
    text-align: center;
}
.mk-bd-xincen-box>p,.mk-bd-partner-box>p{
    grid-column: 7 span;
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    line-height: 22px;
    text-align: center;
}
.mk-bd-xincen-box>p{
    grid-column: 7 span;
    font-size: 28px;
    font-weight: 600;
    color: #212121;
    line-height: 22px;
    text-align: center;
}
.mk-bd-xincen-detail{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 72px 46px;
    align-items: flex-end;
}
.mk-bd-partner-detail{
    /* display: grid;
    grid-template-columns: auto;
    grid-template-rows: 65px 46px;
    align-items: flex-end; */
}
.mk-bd-partner-detail-font{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 65px 46px;
    align-items: flex-end;
}
.mk-bd-partner-detail:hover .mk-bd-partner-detail-font{
    display: none;
    animation: slowHide 1s linear;
}
.mk-bd-partner-detail:hover .mk-bd-partner-detail-back{
    display: block;
    animation: slowShow 1s linear;
}

  
@-moz-keyframes slowShow {
    0% {
      opacity: 0.1;
    }
    100% {
      opacity: 1;
    }
  }
@-webkit-keyframes slowShow {
    0% {
        opacity: 0.1;
      }
      100% {
        opacity: 1;
      }
}
@-moz-keyframes slowHide{
    0% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
}
@-webkit-keyframes slowHide {
    0% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
}
.mk-bd-partner-detail-back{
    display: none;
    background-color: #0086FE;
    color: #FFFFFF;
    padding: 4px;
    border-radius: 4px;
    position: relative;
    z-index: 99;
    bottom: 20px;
    right: 10px;
    width: 250px;
}
.mk-bd-xincen-detail-icon{
    width: 73px;
    height: 73px;
    background-size: 100% 100%!important;
    margin: auto;
}
.mk-bd-partner-detail-icon{
    background-size: 100% 100%!important;
    margin: auto;
}
.mk-bd-partner-detail-back>p:first-child{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #ffffff;
    padding: 14px 14px 8px;
    margin-bottom: 0;
}
.mk-bd-partner-detail-back>p:last-child{
    font-size: 12px;
    color: #ffffff;
    line-height: 18px;
    padding: 0 14px;
}
.xc-icon1{
    background: url(../../images/marketing/xc1.png) no-repeat center;
}
.xc-icon2{
    background: url(../../images/marketing/xc2.png) no-repeat center;
}
.xc-icon3{
    background: url(../../images/marketing/xc3.png) no-repeat center;
}
.xc-icon4{
    background: url(../../images/marketing/xc4.png) no-repeat center;
}
.xc-icon5{
    background: url(../../images/marketing/xc5.png) no-repeat center;
}
.xc-icon6{
    background: url(../../images/marketing/xc6.png) no-repeat center;
}
.xc-icon7{
    background: url(../../images/marketing/xc7.png) no-repeat center;
}
.p-icon1{
    width: 100px;
    height: 31px;
    background: url(../../images/marketing/p1.png) no-repeat center;
}
.p-icon2{
    width: 65px;
    height: 65px;
    background: url(../../images/marketing/p2.png) no-repeat center;
}
.p-icon3{
    width: 95px;
    height: 56px;
    background: url(../../images/marketing/p3.png) no-repeat center;
}
.p-icon4{
    width: 63px;
    height: 63px;
    background: url(../../images/marketing/p4.png) no-repeat center;
}
.p-icon5{
    width: 62px;
    height: 69px;
    background: url(../../images/marketing/p5.png) no-repeat center;
}
.p-icon6{
    width: 138px;
    height: 44px;
    background: url(../../images/marketing/p6.png) no-repeat center;
}
.p-icon7{
    width: 64px;
    height: 63px;
    background: url(../../images/marketing/p7.png) no-repeat center;
}
.p-icon8{
    width: 62px;
    height: 63px;
    background: url(../../images/marketing/p8.png) no-repeat center;
}
.p-icon9{
    width: 70px;
    height: 68px;
    background: url(../../images/marketing/p9.png) no-repeat center;
}
.p-icon10{
    width: 60px;
    height: 76px;
    background: url(../../images/marketing/p10.png) no-repeat center;
}
.mk-bd-xincen-box>div:last-child{
    grid-column: 7 span;
}
.mk-bd-partner{
    grid-area: partner;
    background-color: #DBDBDB;
}
.mk-bd-partner-box{
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(5,208px);
    grid-template-rows: 80px 95px 114px 71px 80px;
    column-gap: 50px;
    justify-content: center;
}
.mk-bd-partner-box>div:first-child,.mk-bd-partner-box>div:nth-child(8),.mk-bd-partner-box>div:last-child,.mk-bd-partner-box>p{
    grid-column: 5 span;
}
.mk-bd-agent{
    grid-area: agent;
    background-color: #0086FE;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}
.mk-bd-agent-box{
    width: 1180px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-rows: 152px 52px auto;
    grid-template-columns: auto;
    align-items: center;
}
.mk-bd-agent-box>p{
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 22px;
    text-align: center;
}
.searchKey{
    width: 558px;
    height: 51px;
    border-radius: 2px!important;
    border: 1px solid #FFFFFF!important;
    margin-right: 18px;
    padding-left: 24px;
    background-color: #0086FE!important;
    cursor:text;
    font-size: 14px!important;
    font-weight: 400;
    color: #FFFFFF!important;
    line-height: 20px;
}
.searchKey::placeholder { /* 大部分现代浏览器 */
    font-size: 14px!important;
    font-weight: 400;
    color: #FFFFFF!important;
    line-height: 20px;
 }
.mk-bd-agent-box>div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.searchBtn{
    width: 134px;
    height: 51px;
    background: #FFFFFF;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.searchBtn p{
    font-size: 16px;
    font-weight: 400;
    color: #0086FE;
    line-height: 22px;
    margin-bottom: 0px!important;
}
.noInfo{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}
.noInfo p{
    font-size: 14px!important;
    font-weight: bold;
    color: #212121;
    text-align: center;
    line-height: 20px;
    margin-bottom: 0px!important;
}
.message{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 20px;
    margin-top: 20px;
}


#videoPopup1 {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.4);
	display: none;
}

#videoPopup1 .video-box {
	width: 60%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

#videoPopup1 .video-box video {
	width: 100%;
}

#videoPopup1 .video-box .close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	text-align: center;
}

#videoPopup1 .video-box .close span {
	font-size: 16px;
	line-height: 40px;
	color: #fff;
}

#videoPopup1 .video-box .close:hover {
	background: rgba(0, 0, 0, 0.5);
}