/* 内容区 */

@media screen and (min-width: 1000px){
  .conBox{
    background-color: #ecf1f5;
    overflow: hidden;
    min-height: 790px;
    padding: 45px 0;
  }
  .conBox .ComingSoon{
    width: 595px;
    display: block;
    margin: 260px auto 0;  
  }
  .feBox{
    width: 100%;
    height: 460px;
    box-shadow:  0px 12px 32px 4px rgba(0, 0, 0, .04), 0px 8px 20px rgba(0, 0, 0, .08);
    background-color: #fff;
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
  }
  
  .feBox:nth-of-type(odd){
    animation: moveleft 1s ease-in-out forwards;
  }
  .feBox:nth-of-type(even){
    animation: moveright 1s ease-in-out forwards;
  }
  
  .feBox .tImg{
    width: 660px;
    height: 460px;
    object-fit: cover;
    clip-path: polygon(0% 0%, 70% 0%, 100% 50%,70% 100%,0% 100%);  
  }
  .feBox .zfx{
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: #00a4c4;
  }

  .feBox .msgBox{
    width: 530px;
    text-align: right;
    box-sizing: border-box;
    padding-right: 15px;
  }
  .feBox .msgBox .title{
    font-size: 35px;
    font-weight: 600;
  }
  .feBox .msgBox .sTitle{
    font-size: 20px;
    font-weight: 600;
  }
  .feBox .msgBox .msg{
    width: 100%;
    padding-left: 90px;
    box-sizing: border-box;
    font-size: 18px;
    margin: 20px 0;
  }
  .feBox .msgBox .time{
    font-size: 12px;
    color: #555555;
  }

  .conBox .btnItem{
    position: absolute;
    width: 160px;
    height: 35px;
    background-color: #00a4c4;
    font-size:14px ;
    color: #fff;
    line-height: 35px;
    box-sizing: border-box;
    padding: 0 26px;
    border-radius: 3px;
    right: 0;
    bottom: 50px;
    transition: all 300ms;
  }
  .conBox .btnItem:hover{
    transform: translateY(-10px);
  }
  .conBox .btnItem img{
    display: inline-block;
    height: 16px;
    display: block;
  }


  .feBox:nth-of-type(even){
    flex-direction: row-reverse;
  }

  .feBox:nth-of-type(even) .zfx{
    left: 0;
  }
  .feBox:nth-of-type(even) .tImg{
    clip-path: polygon(100% 0%, 30% 0%, 0% 50%,30% 100%,100% 100%);  
  }
  .feBox:nth-of-type(even) .msgBox{
    text-align: left;
    padding-right: 0px;
    padding-left: 15px;
  }
  .feBox:nth-of-type(even) .msg{
    padding-left: 0;
    padding-right: 90px;
  }
  .feBox:nth-of-type(even) .btnItem{
    left: 0;
  }
}
  

/* 内容区 */

@media screen and (max-width: 1000px){
  .conBox{
    background-color: #fff;
    overflow: hidden;
    min-height: 10rem;
    padding: .6rem 0;
  }
  .feBox{
    width: 100%;
    box-shadow:  0px 12px 32px 4px rgba(0, 0, 0, .04), 0px 8px 20px rgba(0, 0, 0, .08);
    background-color: #fff;
    position: relative;
    margin-bottom: .5333rem;
    display: block;
  }
  
  .feBox .tImg{
    width: 100%;
  }
  .feBox .zfx{
    display: none;
  }

  .feBox .msgBox{
    width: 100%;
    box-sizing: border-box;
    padding: .2rem;
    /* text-align: right; */
    box-sizing: border-box;
    padding-right: .2rem;
    padding-bottom: .7rem;
  }
  .feBox .msgBox .title{
    font-size: .4rem;
    font-weight: 600;
  }
  .feBox .msgBox .sTitle{
    font-size: .3733rem;
    font-weight: 600;
  }
  .feBox .msgBox .msg{
    width: 100%;
    box-sizing: border-box;
    font-size: .4rem;
    line-height: .7rem;
    margin: .2667rem 0;
  }
  .feBox .msgBox .time{
    font-size: .3733rem;
    color: #555555;
  }

  .conBox .btnItem{
    width: 2.8rem;
    height: .7rem;
    background-color: #00a4c4;
    font-size: .3467rem;
    color: #fff;
    line-height: .7rem;
    box-sizing: border-box;
    padding: 0 .2667rem;
    border-radius: .04rem;
    position: absolute;
    right: 0.2rem;
    bottom: .2rem;
  }
  .conBox .btnItem img{
    display: inline-block;
    height: .2667rem;
    display: block;
  }


  
}