@media screen and (max-width: 800px){ 
 /* 设置了浏览器宽度小于500px时  手机 */ 
  .ImageNew{
   position: relative;/相对定位/
    width: 100%; /* 色块的宽度 */
    background-color: #f8fbe8; /* 色块的背景颜色 */
    margin-top: 1px;
    margin-bottom: 20px;
	padding: 20px 0;
  }
  .ImageNew{
   border-radius:25px;
   }

   .texta {
    text-align: center;     /* 文本居中 */
    margin: 0 10px;         /* 设置列表项之间的间距 */
    font-size: 30px;
    color: #79b552;
    margin-bottom: 5px;
	font-weight: bold; 

  }
  .textb{
     text-align: center;     /* 文本居中 */
    margin: 0 10px;         /* 设置列表项之间的间距 */
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
   
  }
   .textc {
      text-align: center;     /* 文本居中 */
     margin: 0 10px;         /* 设置列表项之间的间距 */
    font-size: 30px;
   
     color: #79b552;
     margin-bottom: 5px;
	 font-weight: bold; 
/*     line-height: 20px;*/


  }
    .textd{
    text-align: center;     /* 文本居中 */
    margin: 0 10px;         /* 设置列表项之间的间距 */
    font-size: 15px;
    
    color: #666666;
    margin-bottom: 5px;
  }
}  
  




@media screen and (min-width: 800px) { 
 
 /* 设置了浏览器宽度不小于800px 电脑 */ 

 .ImageNew{
   position: relative;/相对定位/
    width: 100%; /* 色块的宽度 */
    height: 200px; /* 色块的高度 */
    background-color: #f8fbe8; /* 色块的背景颜色 */
    margin-top: 1px;
    margin-bottom: 20px;
  }
  .ImageNew{
   border-radius:25px;
   }
   .texta {
         position: absolute;
         top: 60px;
         margin-bottom: 20px;
        left: 60px;
        font-size: 50px;
        font-weight: 700;
        color: #79b552;

  }
  .textb{
         position: absolute;
         top: 130px;
         left: 92px;
        font-size: 20px;
        font-weight: 100;
        color: #666666;
  }
   .textc {
         position: absolute;
         top: 60px;
         margin-bottom: 20px;
        left: 750px;
        font-size: 50px;
        font-weight: 700;
        color: #79b552;

  }
    .textd{
         position: absolute;
         top: 130px;
         left: 782px;
        font-size: 20px;
        font-weight: 100;
        color: #666666;
  }
  
  }