body {
  font-size: 14px;
  color: #1d2129;
  font-family: OPPOSans-M;
}

img {
  width: 100%;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes growUpTitle {  
    0% {
        opacity: 0;
        -webkit-transform: translateY(110px);
        -ms-transform: translateY(110px);
        transform: translateY(110px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes growUp {  
    0% {  
        transform: translateX(-50%) scale(0.5);  
        bottom: -500px;  
        opacity: 0;  
    }  
    100% {  
        transform: translateX(-50%) scale(1); /* 放大到原始大小 */  
        bottom: 0; /* 移动到容器底部 */  
        opacity: 1; /* 完全可见 */  
    }  
}
@keyframes fadeUpTab {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(10);
        -ms-transform: translateY(10);
        transform: translateY(10)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}
.fadeInUp{
    -webkit-animation: fadeInUp 1s ease-out; 
    animation: fadeInUp 1s ease-out; 
}
.fadeInDown{
    -webkit-animation: fadeInDown 1s ease-out; 
    animation: fadeInDown 1s ease-out; 
}
.color-blue{
    color: #7052FF;

}
 /*导航样式*/
.com-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  min-width: 1200px;
}


.com-header .nav_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(78, 89, 105, .06);
    transition: background 0.2s ease;

}
 .transparent .nav_bottom{
    background: transparent;
    box-shadow: none;
}

.nav_box {
    display: flex;
  }
  
  .nav_ul {
    display: flex;
  }
  
  .nav_ul li {
    margin-right: 40px;
    line-height: 28px;
    cursor: pointer;
  }
  
  .nav_ul li:hover {
    color: #7052FF;
  }
  
  .nav_logo {
    width: 102px;
    margin-right: 40px;
    font-size: 0;
  }
  
  .nav_li_active {
    position: relative;
    color: #7052FF;
  }
  
  /* .nav_li_active::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 3px;
    border-radius: 2rem;
    background: #7052FF;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
  } */


  /**/
.content-wrap{
    height: 100%;
    min-height: 100vh;

}
  /*导航样式*/
  #banner{
    position: relative;
    display: flex;
   

  }
  #banner #video-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block !important;
    object-fit: cover;
    height: 100%;
   

  }


.banner_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width:100%; */
    width: 1200px;
    margin:0 auto;
   margin-top: 150px;
   min-height: calc(100vh - 150px);
    z-index: 2;
}
.btn-banner-list{
    position:absolute;bottom:215px;
}


#banner h1 {
  font-size: 48px;
  line-height: 60px;
  /* font-weight: bold; */
  text-align: left;
  font-family: HelloFont WenYiHei;
  font-variation-settings: "opsz" auto;
}
.banner-title{
    width:62%;

}

.banner_desc {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 54px;
  font-family: PingFang SC;
  font-weight: 500;
}
#banner .bar{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    /* z-index: 2; */
   background: linear-gradient(to top, #fff,  transparent);
    backdrop-filter: blur(1px);

}
.linear-gradient{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 2;
    background: linear-gradient(to bottom, #fff,  transparent);
    backdrop-filter: blur(1px);

}

.bar-content{
    width: 1200px;
    height: 100%;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #A08DEB;
    text-align: center;

}
.bar-content .section .title{
    font-size:24px;
    font-weight: bold;
    line-height:48px;

}

.but {
  line-height: 24px;
  padding: 4px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.but_white {
  border: 1px solid #7052FF;
  color: #7052FF;
  background: #fff;
  margin-right: 12px;
}

.but_blue {
  background: #7052FF;
  color: #fff;
}

.banner_btn {
  font-size: 24px;
  background-color:#A14DFF;
  border-radius: 24px;
  width:160px;
  height:48px; 
  padding: 0; 
  box-sizing: border-box; 
  overflow: hidden;
}
.banner_btn:hover{
    transform: scale(1.2);
    transition: all 0.6s ease-in;
    background-image: url('../img/button-bg.gif');
    background-color:transparent;
    background-size: 100% 100%; 
    background-position: center;
    background-repeat: no-repeat; 
   
}
.workSpace:hover{
    background: #F0EDFF;
    transition: background 0.5s ease
}
.register:hover{
    background: #8D75FF;
    transition: background 0.5s ease
}
/*主图内容样式*/
.panel {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 80px 0;
}
.panel .title {
    font-size: 48px;
    line-height: 56px;
    font-family:  PingFang SC;
    font-weight: 500;
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease; /* 平滑过渡效果 */  
    animation: none; /* 应用动画 */ 
   
  }
  .panel .grow-up-title-in-viewport{
    animation: growUpTitle 2s forwards; /* 应用动画 */  

  }
  .scene1_content{
    width:60%;
    min-width: 1000px;
    /* width:1400px; */
    /* height:700px; */
  }
  
/* 当屏幕宽度小于600px时应用的样式 */
@media (max-width: 1400px) {
    .pic_box{height:480px;}
  }
   
  /* 当屏幕宽度在600px到900px之间时应用的样式 */
  @media (min-width: 1400px) and (max-width: 1500px) {
    .pic_box{height:480px;}
  }
  @media (min-width: 1500px) and (max-width: 1700px) {
    .pic_box{height:450px;}
  }
  @media (min-width: 1700px) and (max-width: 1900px) {
    .pic_box{height:480px;}
  }
  @media (min-width: 1900px) and (max-width: 2100px) {
    .pic_box{height:560px;}
  }
  @media (min-width: 2100px) and (max-width: 2350px) {
    .pic_box{height:600px;}
  }
  @media (min-width: 2350px) and (max-width: 2470px) {
    .pic_box{height:640px;}
  }
   
  /* 当屏幕宽度大于900px时应用的样式 */
  @media (min-width: 2470px) {
    .pic_box{height:677px;}
  }
 
  .pic_box{
    width:100%;
    margin-top: 50px;
     position: relative;
      overflow: hidden;
    }
    .pic_box img{
        width:100%;
        height:auto;
    }

  .grow-up-animation{
    position: absolute;  
    bottom: -100%; /* 初始位置在容器底部下方 */  
    left: 50%;  
    transform: translateX(-50%) scale(0.5); /* 初始缩小并居中 */  
    opacity: 0; /* 初始不可见 */  
    width: auto; /* 根据图片自然宽度调整 */  
    height: auto; /* 根据图片自然高度调整 */  
    transition: transform 0.5s ease, opacity 0.5s ease; /* 平滑过渡效果 */  
    animation: none; /* 应用动画 */  
  }
   .grow-up-animation-in-viewport {
    animation: growUp 1.5s forwards; /* 应用动画 */  

  }
  .scene2_content{
    /* width:1400px; */
    width:60%;
    min-width: 1000px;
    display: flex;
    flex-direction: row;
    margin-top:100px;
  }
  .scene2_content .scene_tab{
    display: flex;
    flex-direction: column;
  }
.scene2_tab_li {
    width:10px;
    height:80px;
    background: #f1f4ff;
    margin: 4px 12px;
     cursor: pointer;
    border-radius: 6px;
}

.scene2_tab_li_active {
  background-color: #7052FF;
}

.swiper {
  /* width: 1400px; */
  width:100%;
  min-width: 1000px;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
}
.swiper_big {
    width: 100%;
  }
.swiper-slide {
  display: flex;
  align-items: center;
}
.swiper2-content{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: row;
   
}
.swiper2-content .left{
    width:50%;
    padding:82px 4px 82px 40px;
    position: relative;
    box-sizing: border-box;
}
.scene2_desc{
    color:#4E5969;
    /* font-size: 24px; */
    font-size: 22px;
    font-weight: 400;
    line-height: 56px;
    padding-top:12px;
}
.scene2_title{
    font-family: PingFang SC;
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
}
.scene2_btn{
    position: absolute;
    bottom:100px;
    width:136px;
    height: 52px;
border-radius: 8px;
font-family: PingFang SC;
font-size: 20px;
font-weight: normal;

}
.swiper2-content .right{
    width:50%;
    /* width:760px; */
    height:100%;
    background-color: #F7F8FA;
    border-radius: 12px;
    
  
}
.swiper2-content .right video{
    height:100%;
    border-radius: 12px;
    width:100%;
}
.scene3_content {
    width:100%;
    height:100%;
    /* margin-top:60px; */
  }
  .scene3_content .swiper_big{
    /* height:580px; */
    height: Unset;
    padding-bottom:50px

  }

#scene3_tab {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin:30px auto;
    padding-top: 30px;
    width: 1200px;
   
}
.scene3_tab_li{
    cursor: pointer;
    transition: transform 20s ease-in;
   
}
.scene3_tab_li img{
    height:52px;
    width:auto;
    object-fit: contain;
}
.scene3_tab_li :hover{
    /* animation:transform 2s ease-in; */
    /* transform: translateY(-20px);  */

    -webkit-animation: fadeUpTab 1s ease; 
    animation: fadeUpTab 1s ease; 

}
.scene3_tab_li_active{  
     -webkit-animation: fadeUpTab 1s ease; 
    animation: fadeUpTab 1s ease;

 }
#scene3_swiper .swiper-slide{
    /* background-color: blue; */
}
#scene3_swiper .swiper-slide img{
    width:100%;
    height:auto;
    box-shadow: 0px 18.29px 36.57px 0px rgba(112, 82, 255, 0.08);
    border-radius: 14px;
   
}
.scene3_tab_li_active{
    /* -webkit-animation: fadeUpTab 2s ease-out; 
    animation: fadeUpTab 2s ease-out;  */
    /* background-color: red; */
   
   
   
}
.scene3_img {
    /* transition: opacity 0.5s ease, transform 0.5s ease; */
  }
  .scene3_content .swiper-slide-shadow-left,
  .scene3_content .swiper-slide-shadow-right {
    background-image: none !important;
  }
.scene3_img_cur{
    box-shadow: 0px 20px 40px 0px rgba(112, 82, 255, 0.08)!important;

}
.scene3_img_active{
    /* transition: transform 0.9s ease; 
    transform: scale(1.1);  */
}
#scene3 .swiper-button-prev img,#scene3 .swiper-button-next img{
   transform: scale(2.5);

}
#scene3 .swiper-button-prev img:hover,#scene3 .swiper-button-next img:hover{
 
 }
#scene3 .swiper-button-prev, .swiper-rtl .swiper-button-next{
    left:21.8%;
}
#scene3 .swiper-button-next, .swiper-rtl .swiper-button-prev{
    right:20.7%; 
}

#scene3 .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    opacity: 0;
}
#scene3 .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    opacity: 0; 
}
.scene4_content{
    width:100%;
    height:100%;
    margin-top:80px;

    /* overflow: hidden;  
    white-space: nowrap;  
    box-sizing: border-box;   */
}

 .scene4_content .swiper_big{
    height:130px;
}
.scene4_content .swiper-slide {
    margin: 0 auto;
    padding: 0 12px;
}
.scene4_content img{
    /* width:134px; */
    width:auto;
    height:72px;
    border-radius: 6px;
} 
.scene4_content img:hover{
    transition: transform 0.9s ease;
    transform: scale(1.1);
    padding:12px;
    box-shadow:0px 0px 4px 1px #ccc;
    border-radius: 12px;
   
}
.scene5_content {
    display: flex;
    margin-top: 36px;
  }








/* .scene3_tab_li,
.scene4_tab_li {
  padding: 12px 20px;
  text-align: center;
  margin: 0 18px;
  cursor: pointer;
  color: 20px;
  line-height: 28px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.scene3_tab_li_avatar,
.scene4_tab_li_avatar {
  width: 32px;
  height: 32px;
  margin-right: 8px;
} */


.scene4_tab_li_active {
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(270deg, #68a3ff 0%, #216dff 100%);
}

.scene5_tab {
  background: #f7f9ff;
  padding: 40px;
  border-radius: 24px;
  margin-right: 20px;
}

.scene5_tab_li {
  background: #fff;
  box-shadow: 0 0 16px #e4edfd;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 62px;
  border-radius: 12px;
  color: #4e596a;
  cursor: pointer;
}

.scene5_tab_li_avatar {
  width: 16px;
  font-size: 0;
  margin-right: 8px;
}

.scene5_tab_li_active {
  background-image: linear-gradient(to right, #6691ff, #9ab5ff);
  color: #fff;
  /* border: 2px solid; */
  /* border-image: linear-gradient(to right, rgba(185, 206, 255, 1), rgba(185, 206, 255, 0)) 1; */
}

.scene5_box {
  display: flex;
}

.scene5_content {
  background: #fff;
  /* width: 1400px; */
  width:60%;
  min-width: 1000px;
  margin-top:80px;


}
.scene5_card {
    background: linear-gradient(172deg, #EDE6FF -5%, rgba(255, 255, 255, 0) 99%);
    width: 440px;
    height: 342px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    margin: 0 12px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
  }
  .scene5_card_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block !important;
    object-fit: cover;
    height: 100%;
    border-radius: 32px;
    transition: all 0.5s;
   
  }
  .scene5_card_bg:hover{
    transform: scale(1.1);
    transition: all 0.5s;
  
    
  }
  .scene5_card_title{
    font-size: 24px;
font-weight: 500;
padding-bottom: 20px;
color:#1D2129;
font-family: PingFang SC;

  }
  .scene5_card_desc p{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    font-family: PingFang SC;
    color: #4E5969;
    font-weight: 400;
    line-height: 38px;;
  }
  .scene5_card_desc p img{
    width:14px;
    height:11px;
    margin-right:6px;
  }
.scene9 {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
  background-color: #1E2129;
  color:#fff;
}

.scene9_logo_box {
  width: 168px;
}

.scene9_logo {
  width: 130px;
}

.scene9_logo_desc {
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
  color:#ffffff;
  font-family: OPPOSans-R;
}

.scene9_content {
  display: flex;
}

.scene9_erCode_ul {
  display: flex;
}

.scene9_erCode_img {
  width: 90px;
  margin-right: 16px;
}
.scene9_erCode_img img{
    border-radius: 8px;
}

.scene9_erCode_li {
  text-align: center;
}

.scene9_line {
  width: 1px;
  height: 178px;
  background: #1E2129;
  margin: 0 114px;
}

.scene9_content_title {
  font-size: 20px;
  line-height: 36px;
  color: #ffffff;
  margin-bottom: 20px;
}

.scene9_content a {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}

.scene9_content_a {
  margin-bottom: 12px;
  font-family: OPPOSans-R;
}
.scene9_content_a:hover{
    color:#A997FF ;
}
.scene9_content_a a:hover{
    color:#A997FF ;
}

.scene9_content_div {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}

.scene9_erCode_li_text {
  font-size: 12px;
  margin-left: -16px;
  margin-top: 8px;
  font-family: OPPOSans-R;
  
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #2E3138;
  height: 72px;
  color: #FFFFFF;
  font-family: OPPOSans-R;
  font-size: 12px;
  background-color: #1E2129;
}

#chatIframe {
  height: 500px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.modal .submit {
  height: 48px;
  line-height: 48;
  border-radius: 8px;
  opacity: 1;

  /* 自动布局 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  color: #fff;
  font-family: PingFangSC-Semibold;
  font-size: 14px;
  /* Primary/Primary-30%-P3 */
  background: #d4cbff;
  /* cursor: not-allowed; */
}

.modal .submit.active {
  background: #7052ff;
  cursor: pointer;
}

.modal .tip-desc {
  font-family: PingFangSC-Regular;
  margin-top: 16px;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0px;

  /* 超/灰/G8 */
  color: #86909C;
}

.modal .title {
  width: 100%;
  font-family: PingFangSC-Medium;
  font-size: 24px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 32px;
  /* Font/text-primary */
  color: #1d2129;
}

.modal-content {
  background: #fefefe;
  padding: 45px;
  border-radius: 16px;
  width: 436px;
  height: 620px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: calc(50vw - 218px);
  margin-top: calc(50vh - 288px);
}

.modal-content .content .input-wrapper input {
  flex: 1;
  cursor: unset;
}

.modal-content .content .input-wrapper input:hover {
  cursor: unset;
}

.phone-msg-error {
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: -18px;
  font-size: 12px;
  line-height: 16px;
  font-family: PingFangSC-Regular !important;
  color: #fa2714 !important;
}

.modal-content .content .input-wrapper {
  position: relative;
  width: 340px;
  height: 48px;
  border-radius: 8px;
  opacity: 1;
  margin-bottom: 18px;

  /* 自动布局 */
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 12px 0px 12px 12px;

  /* 超/灰/G1 */
  background: #ffffff;
  /* 超/灰/G5 */
  border: 1px solid #e2e3e8;
}

.modal-content .content .code-wrapper {
  justify-content: space-between;
  display: flex;
  gap: 12px;
}

.modal-content .content .code-wrapper .code-send {
  width: 112px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #7052ff;
  border: 1px solid #7052ff;
  font-family: PingFangSC-Medium;
  font-size: 14px;
  box-sizing: border-box;
  font-weight: normal;
  border-radius: 8px;
  cursor: pointer;
  /* Primary/Primary-30%-P3 */
  /* color: #D4CBFF; */
}

.modal-content .content .code-wrapper .code-send.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.modal-content .content .code-input-wrapper {
  width: 216px;
  height: 48px;
  border-radius: 8px;
  opacity: 1;
  margin-bottom: 16px;
  /* 自动布局 */
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 12px 0px 12px 12px;

  /* 超/灰/G1 */
  background: #ffffff;
  /* 超/灰/G5 */
  border: 1px solid #e2e3e8;
}

.modal-content .content .input-wrapper img {
  width: 16px;
  height: 16px;
}

.code-input-wrapper {
  flex: 1;
}

.modal-content .content .input-wrapper input,
.modal-content .content .code-input-wrapper input {
  margin-left: 10px;
  border: none;
  outline: none;
  font-family: PingFangSC-Regular;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0px;

  /* 超/灰/G9 */
  color: #1d2129;
  caret-color: #1d2129;
}

/* .select-wrapper .select-box{
        width:90%;
        height:40px; 
        border:0px;
        display: inline-block;
} */


.close {
  position: absolute;
  top: 0;
  right: 10px;
  color: #aaa;
  font-size: 28px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.yx-message {
  position: fixed;
  top: 80px;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
  min-width: 200px;
  padding: 18px 30px;
  border-radius: 6px;
  display: flex;
  font-weight: normal;
  align-items: center;
  gap: 8px;
}

.yx-message.error {
  color: #f56c6c;
  background-color: #fef0f0;
  border-color: #fde2e2;
}

.yx-message.success {
  color: #67c23a;
  background-color: #f0f9eb;
  border-color: #e1f3d8;
}

.yx-message.warning {
  color: #e6a23c;
  background-color: #fdf6ec;
  border-color: #faecd8;
}

.rd-introduce {
  width: 100%;
  overflow: scroll;
  display: none;
}

.introduce-nav {
  background: #fff;
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  top: 0;
  height: 145px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.16),
    0px 16px 24px 2px rgba(0, 0, 0, 0.04), 0px 4px 32px 4px rgba(0, 0, 0, 0.04);
}

.img-nav img {
  margin: auto;
  display: inline-block;
  width: 1440px;
  height: 145px;
  object-fit: contain;
}

.img-content {
  width: 848px;
  height: auto;
  margin-top: 161px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.introduce-tab {
  background-color: #fff;
  border-top: 2px solid #f7f8fa;
  height: 84px;
  width: 100%;
}

.introduce-tab img {
  display: inline-block;
  height: 52px;
  width: 802px;
  margin-left: 50%;
  margin-top: 16px;
  transform: translateX(-50%);
}
.disableInput{
    cursor: not-allowed !important; 
    background-color:#F5F7FA !important 
 }
 .disableInput input{
    background-color:#F5F7FA !important 
 }
