weatherCalendarCard40.vue 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. <template>
  2. <view>
  3. <div :class="container" :style="{ 'width': width, 'height': height }">
  4. <div :class="date" :style="{'font-size':dateFontSize,'margin-top':marginTop}">{{ newDate }}</div>
  5. <div class="temperature" :style="{'font-size':otherFontSize,'margin-top':marginTop}">{{ weatherProphetData_40.temperature1 }}/{{ weatherProphetData_40.temperature2 }}℃</div>
  6. <div class="weather" :style="{'font-size':otherFontSize, height: weatherHeight,'margin-top':marginTop}">
  7. <div :class="[weatherClassName, weatherIconTotalClass]" :style="{ width: iconWidth, height: iconHeight }"></div>
  8. {{ weather }}
  9. </div>
  10. <div class="wind" :style="{'font-size':otherFontSize,'margin-top':marginTop}">{{ weatherProphetData_40.winddirection1 }}风</div>
  11. </div>
  12. </view>
  13. </template>
  14. <script>
  15. import utils from '../../../../tools/shoyu-date/utils.filter.js';
  16. Date.prototype.Format = function(fmt) {
  17. var o = {
  18. 'M+': this.getMonth() + 1, //月份
  19. 'd+': this.getDate(), //日
  20. 'h+': this.getHours(), //小时
  21. 'm+': this.getMinutes(), //分
  22. 's+': this.getSeconds(), //秒
  23. 'q+': Math.floor((this.getMonth() + 3) / 3), //季度
  24. S: this.getMilliseconds() //毫秒
  25. };
  26. if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
  27. for (var k in o) if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length));
  28. return fmt;
  29. };
  30. //调用--
  31. // var mytime=new Date(后台传来的毫秒格式的时间);
  32. // var newtime=mytime.Format("需转化的时间格式比如--yyyy-MM-hh");
  33. export default {
  34. data() {
  35. return {
  36. container: '',
  37. date: 'dateGray',
  38. newDate: '',
  39. classNameWeatherBackgroundColor: "threeGradeBlue",
  40. weatherIconTotalClass: 'WeatherIconTotalClass',
  41. weatherClassName: '',
  42. width: '',
  43. height: '',
  44. margin: '2px',
  45. weatherProphetData_40:"",
  46. weather:"",
  47. // 直接使用需要进行声明
  48. utils: utils,
  49. // 直接使用需要进行声明 End
  50. timestamp:"",
  51. windowWidth:"",
  52. windowHeight:"",
  53. dateFontSize:"",
  54. otherFontSize:"",
  55. weatherHeight:"",
  56. iconWidth:"",
  57. iconHeight:"",
  58. marginTop:""
  59. };
  60. },
  61. created:function(){
  62. //this.getWeatherData("79","100",this.classNameWeatherBackgroundColor,this.weatherClassName,this.weatherProphetData_40)
  63. this.windowWidth=uni.getSystemInfoSync().windowWidth;
  64. this.windowHeight=uni.getSystemInfoSync().windowHeight;
  65. if(this.windowWidth>=768){
  66. this.dateFontSize="20px";
  67. this.otherFontSize="16px";
  68. this.weatherHeight="34px";
  69. this.iconWidth="40px";
  70. this.iconHeight="34px";
  71. this.marginTop="5px";
  72. }else{
  73. this.dateFontSize="16px";
  74. this.otherFontSize="12px";
  75. this.weatherHeight="30px";
  76. this.iconWidth="29px";
  77. this.iconHeight="30px";
  78. this.marginTop="0";
  79. }
  80. },
  81. methods: {
  82. getWeatherData: function(width, height, classNameWeatherBackgroundColor, classNameWeatherIcon, weatherProphetData_40) {
  83. this.width = "calc("+width+"% - 4px)";
  84. this.height = height + 'px';
  85. this.classNameWeatherBackgroundColor = classNameWeatherBackgroundColor;
  86. this.weatherClassName = classNameWeatherIcon;
  87. this.weatherProphetData_40 = weatherProphetData_40;
  88. if(this.weatherProphetData_40.weather.search("大部分") != -1){
  89. this.weather=this.weatherProphetData_40.weather;
  90. this.weather=this.weather.replace("大部分","")
  91. }else if(this.weatherProphetData_40.weather.search("间歇性") != -1){
  92. this.weather=this.weatherProphetData_40.weather;
  93. this.weather=this.weather.replace("间歇性","")
  94. }else{
  95. this.weather=this.weatherProphetData_40.weather;
  96. }
  97. this.setDate();
  98. this.setBackgroundColor();
  99. },
  100. setDate: function() {
  101. // var newDate = new Date(this.weatherProphetData_40.recodedata).Format("dd");
  102. // this.newDate = newDate;
  103. this.timestamp = new Date(this.weatherProphetData_40.recodedata).getTime();
  104. this.newDate=this.utils.timeTodate('d',this.timestamp);
  105. //console.log(this.newDate);
  106. //this.timestamp = 1582560000000;
  107. //console.log(this.timestamp);
  108. },
  109. setBackgroundColor: function() {
  110. if (this.classNameWeatherBackgroundColor == 'firstGradeBlue') {
  111. this.container = 'containerFirstGradeBlue';
  112. } else if (this.classNameWeatherBackgroundColor == 'twoGradeBlue') {
  113. this.container = 'containerTwoGradeBlue';
  114. } else if (this.classNameWeatherBackgroundColor == 'threeGradeBlue') {
  115. this.container = 'containerThreeGradeBlue';
  116. } else if (this.classNameWeatherBackgroundColor == 'white') {
  117. this.container = 'containerWhite';
  118. this.date = 'dateBlack';
  119. }
  120. }
  121. }
  122. };
  123. </script>
  124. <style scoped="scoped">
  125. .containerFirstGradeBlue {
  126. width: 103px;
  127. height: 132px;
  128. margin: 2px;
  129. background-color: #205ac6;
  130. color: white;
  131. }
  132. .containerTwoGradeBlue {
  133. width: 103px;
  134. height: 132px;
  135. margin: 2px;
  136. background-color: #427ce8;
  137. color: white;
  138. }
  139. /* .containerThreeGradeBlue {
  140. width: 103px;
  141. height: 132px;
  142. margin: 2px;
  143. background-color: transparent;
  144. color: white;
  145. border: 0.5px solid #698086;
  146. } */
  147. .containerThreeGradeBlue {
  148. /* width: 90px; */
  149. /* height: 132px; */
  150. margin: 2px;
  151. background-color: #535252;
  152. color: white;
  153. }
  154. .containerWhite {
  155. width: 103px;
  156. height: 132px;
  157. margin: 2px;
  158. background-color: white;
  159. color: #757575;
  160. }
  161. .dateBlack {
  162. width: 30px;
  163. height: 25px;
  164. /* margin-left: 2px; */
  165. text-align: center;
  166. font-family: 'microsoft yahei';
  167. font-size: 16px;
  168. font-weight: bold;
  169. line-height: 25px;
  170. color: black;
  171. }
  172. .dateGray {
  173. width: 30px;
  174. height: 25px;
  175. /* margin-left: 2px; */
  176. text-align: center;
  177. font-family: 'microsoft yahei';
  178. font-size: 16px;
  179. font-weight: bold;
  180. line-height: 25px;
  181. }
  182. .temperature {
  183. width: 99%;
  184. height: 23px;
  185. text-align: right;
  186. line-height: 23px;
  187. font-family: 'microsoft yahei';
  188. font-size: 12px;
  189. }
  190. .weather {
  191. width: 99%;
  192. height: 30px;
  193. text-align: right;
  194. font-family: 'microsoft yahei';
  195. font-size: 12px;
  196. line-height: 30px;
  197. margin-right: 8px;
  198. }
  199. .WeatherIconTotalClass {
  200. width: 29px;
  201. height: 30px;
  202. float: left;
  203. /* margin-left: 6px; */
  204. }
  205. .wind {
  206. width: 99%;
  207. height: 25px;
  208. text-align: right;
  209. font-family: 'microsoft yahei';
  210. font-size: 12px;
  211. line-height: 25px;
  212. clear: both;
  213. }
  214. /*blue22第一行*/
  215. .weatherCardList40_weatherCard40_blue22_taiYang {
  216. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat 4px 2px;
  217. }
  218. .weatherCardList40_weatherCard40_blue22_yunTaiyang {
  219. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -75px 2px;
  220. }
  221. .weatherCardList40_weatherCard40_blue22_yunYun {
  222. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -156px 2px;
  223. }
  224. .weatherCardList40_weatherCard40_blue22_taiYangYunShui {
  225. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -235px 2px;
  226. }
  227. .weatherCardList40_weatherCard40_blue22_yunShanDian {
  228. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -314px 2px;
  229. }
  230. .weatherCardList40_weatherCard40_blue22_yunShanDianShui {
  231. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -396px 2px;
  232. }
  233. .weatherCardList40_weatherCard40_blue22_yunShuiXue {
  234. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -476px 2px;
  235. }
  236. .weatherCardList40_weatherCard40_blue22_yunShui {
  237. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -556px 2px;
  238. }
  239. .weatherCardList40_weatherCard40_blue22_yunShuiShui {
  240. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -635px 2px;
  241. }
  242. .weatherCardList40_weatherCard40_blue22_sanHengGang {
  243. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -715px 2px;
  244. }
  245. .weatherCardList40_weatherCard40_blue22_liangdianliangyuan {
  246. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -798px 2px;
  247. }
  248. .weatherCardList40_weatherCard40_blue22_yunYunShui {
  249. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -876px 2px;
  250. }
  251. /*blue22第二行*/
  252. .weatherCardList40_weatherCard40_blue22_yunSanShui {
  253. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat 4px -78px;
  254. }
  255. .weatherCardList40_weatherCard40_blue22_yunYunSiShui {
  256. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -75px -78px;
  257. }
  258. .weatherCardList40_weatherCard40_blue22_yunYunWuShui {
  259. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -156px -78px;
  260. }
  261. .weatherCardList40_weatherCard40_blue22_yunYunLiuShui {
  262. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -235px -78px;
  263. }
  264. .weatherCardList40_weatherCard40_blue22_taiYangYunXue {
  265. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -314px -78px;
  266. }
  267. .weatherCardList40_weatherCard40_blue22_yunXue {
  268. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -396px -78px;
  269. }
  270. .weatherCardList40_weatherCard40_blue22_yunXueXue {
  271. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -476px -78px;
  272. }
  273. .weatherCardList40_weatherCard40_blue22_yunSanXue {
  274. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -556px -78px;
  275. }
  276. .weatherCardList40_weatherCard40_blue22_yunYunSiXue {
  277. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -635px -78px;
  278. }
  279. .weatherCardList40_weatherCard40_blue22_sanHengGang {
  280. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -715px -78px;
  281. }
  282. .weatherCardList40_weatherCard40_blue22_sanDianSanYuan {
  283. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -798px -78px;
  284. }
  285. .weatherCardList40_weatherCard40_blue22_yunYunXueXue {
  286. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -876px -78px;
  287. }
  288. /*blue22第三行*/
  289. .weatherCardList40_weatherCard40_blue22_sanHengGang {
  290. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat 4px -157px;
  291. }
  292. .weatherCardList40_weatherCard40_blue22_boLang {
  293. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -75px -157px;
  294. }
  295. .weatherCardList40_weatherCard40_blue22_sYouJianTou {
  296. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -156px -157px;
  297. }
  298. .weatherCardList40_weatherCard40_blue22_yunShuiShui {
  299. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -235px -157x;
  300. }
  301. .weatherCardList40_weatherCard40_blue22_yunSanShui {
  302. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -314px -157px;
  303. }
  304. .weatherCardList40_weatherCard40_blue22_yunYunSiShui {
  305. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -396px -157px;
  306. }
  307. .weatherCardList40_weatherCard40_blue22_yunYunWuShui {
  308. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -476px -157px;
  309. }
  310. .weatherCardList40_weatherCard40_blue22_yunyunLiuShui {
  311. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -556px -157px;
  312. }
  313. .weatherCardList40_weatherCard40_blue22_yunXueXue {
  314. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -635px -157px;
  315. }
  316. .weatherCardList40_weatherCard40_blue22_sanHengGang {
  317. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -715px -157px;
  318. }
  319. /*blue22第四行*/
  320. .weatherCardList40_weatherCard40_blue22_yunSanXue {
  321. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat 4px -237px;
  322. }
  323. .weatherCardList40_weatherCard40_blue22_yunYunSiXue {
  324. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -75px -237px;
  325. }
  326. .weatherCardList40_weatherCard40_blue22_s {
  327. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -156px -237px;
  328. }
  329. .weatherCardList40_weatherCard40_blue22_sShangJianTou {
  330. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -235px -237px;
  331. }
  332. .weatherCardList40_weatherCard40_blue22_sYouJianTou {
  333. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -314px -237px;
  334. }
  335. .weatherCardList40_weatherCard40_blue22_yunShuiShui {
  336. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -396px -237px;
  337. }
  338. .weatherCardList40_weatherCard40_blue22_yunXueXue {
  339. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -476px -237px;
  340. }
  341. .weatherCardList40_weatherCard40_blue22_quanQuan {
  342. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -556px -237px;
  343. }
  344. /*blue22第五行*/
  345. .weatherCardList40_weatherCard40_blue22_yueLiang {
  346. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat 4px -318px;
  347. }
  348. .weatherCardList40_weatherCard40_blue22_yueLiangYun {
  349. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -75px -318px;
  350. }
  351. .weatherCardList40_weatherCard40_blue22_yueLiangYunYun {
  352. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -156px -318px;
  353. }
  354. .weatherCardList40_weatherCard40_blue22_yueLiangYunShuiShui {
  355. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -235px -318px;
  356. }
  357. .weatherCardList40_weatherCard40_blue22_yunShanDianShui {
  358. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -314px -318px;
  359. }
  360. .weatherCardList40_weatherCard40_blue22_yunShanDianShuiShui {
  361. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -396px -318px;
  362. }
  363. .weatherCardList40_weatherCard40_blue22_yunShuiXue {
  364. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -476px -318px;
  365. }
  366. .weatherCardList40_weatherCard40_blue22_yunShui {
  367. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -556px -318px;
  368. }
  369. .weatherCardList40_weatherCard40_blue22_yunShuiShui {
  370. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -635px -318px;
  371. }
  372. .weatherCardList40_weatherCard40_blue22_yunYunShuiShui {
  373. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -876px -318px;
  374. }
  375. /*blue22第六行*/
  376. .weatherCardList40_weatherCard40_blue22_yueLiangYunXueXue {
  377. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/blue22.png) no-repeat -314px -396px;
  378. }
  379. /*white22第一行*/
  380. .weatherCardList40_weatherCard40_white22_taiYang {
  381. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat 4px 2px;
  382. }
  383. .weatherCardList40_weatherCard40_white22_yunTaiyang {
  384. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -75px 2px;
  385. }
  386. .weatherCardList40_weatherCard40_white22_yunYun {
  387. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -156px 2px;
  388. }
  389. .weatherCardList40_weatherCard40_white22_taiYangYunShui {
  390. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -235px 2px;
  391. }
  392. .weatherCardList40_weatherCard40_white22_yunShanDian {
  393. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -314px 2px;
  394. }
  395. .weatherCardList40_weatherCard40_white22_yunShanDianShui {
  396. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -396px 2px;
  397. }
  398. .weatherCardList40_weatherCard40_white22_yunShuiXue {
  399. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -476px 2px;
  400. }
  401. .weatherCardList40_weatherCard40_white22_yunShui {
  402. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -556px 2px;
  403. }
  404. .weatherCardList40_weatherCard40_white22_yunShuiShui {
  405. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -635px 2px;
  406. }
  407. .weatherCardList40_weatherCard40_white22_sanHengGang {
  408. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -715px 2px;
  409. }
  410. .weatherCardList40_weatherCard40_white22_liangdianliangyuan {
  411. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -798px 2px;
  412. }
  413. .weatherCardList40_weatherCard40_white22_yunYunShui {
  414. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -876px 2px;
  415. }
  416. /*white22第二行*/
  417. .weatherCardList40_weatherCard40_white22_yunSanShui {
  418. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat 4px -78px;
  419. }
  420. .weatherCardList40_weatherCard40_white22_yunYunSiShui {
  421. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -75px -78px;
  422. }
  423. .weatherCardList40_weatherCard40_white22_yunYunWuShui {
  424. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -156px -78px;
  425. }
  426. .weatherCardList40_weatherCard40_white22_yunYunLiuShui {
  427. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -235px -78px;
  428. }
  429. .weatherCardList40_weatherCard40_white22_taiYangYunXue {
  430. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -314px -78px;
  431. }
  432. .weatherCardList40_weatherCard40_white22_yunXue {
  433. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -396px -78px;
  434. }
  435. .weatherCardList40_weatherCard40_white22_yunXueXue {
  436. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -476px -78px;
  437. }
  438. .weatherCardList40_weatherCard40_white22_yunSanXue {
  439. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -556px -78px;
  440. }
  441. .weatherCardList40_weatherCard40_white22_yunYunSiXue {
  442. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -635px -78px;
  443. }
  444. .weatherCardList40_weatherCard40_white22_sanHengGang {
  445. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -715px -78px;
  446. }
  447. .weatherCardList40_weatherCard40_white22_sanDianSanYuan {
  448. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -798px -78px;
  449. }
  450. .weatherCardList40_weatherCard40_white22_yunYunXueXue {
  451. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -876px -78px;
  452. }
  453. /*white22第三行*/
  454. .weatherCardList40_weatherCard40_white22_sanHengGang {
  455. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat 4px -157px;
  456. }
  457. .weatherCardList40_weatherCard40_white22_boLang {
  458. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -75px -157px;
  459. }
  460. .weatherCardList40_weatherCard40_white22_sYouJianTou {
  461. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -156px -157px;
  462. }
  463. .weatherCardList40_weatherCard40_white22_yunShuiShui {
  464. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -235px -157x;
  465. }
  466. .weatherCardList40_weatherCard40_white22_yunSanShui {
  467. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -314px -157px;
  468. }
  469. .weatherCardList40_weatherCard40_white22_yunYunSiShui {
  470. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -396px -157px;
  471. }
  472. .weatherCardList40_weatherCard40_white22_yunYunWuShui {
  473. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -476px -157px;
  474. }
  475. .weatherCardList40_weatherCard40_white22_yunyunLiuShui {
  476. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -556px -157px;
  477. }
  478. .weatherCardList40_weatherCard40_white22_yunXueXue {
  479. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -635px -157px;
  480. }
  481. .weatherCardList40_weatherCard40_white22_sanHengGang {
  482. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -715px -157px;
  483. }
  484. /*white22第四行*/
  485. .weatherCardList40_weatherCard40_white22_yunSanXue {
  486. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat 4px -237px;
  487. }
  488. .weatherCardList40_weatherCard40_white22_yunYunSiXue {
  489. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -75px -237px;
  490. }
  491. .weatherCardList40_weatherCard40_white22_s {
  492. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -156px -237px;
  493. }
  494. .weatherCardList40_weatherCard40_white22_sShangJianTou {
  495. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -235px -237px;
  496. }
  497. .weatherCardList40_weatherCard40_white22_sYouJianTou {
  498. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -314px -237px;
  499. }
  500. .weatherCardList40_weatherCard40_white22_yunShuiShui {
  501. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -396px -237px;
  502. }
  503. .weatherCardList40_weatherCard40_white22_yunXueXue {
  504. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -476px -237px;
  505. }
  506. .weatherCardList40_weatherCard40_white22_quanQuan {
  507. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -556px -237px;
  508. }
  509. /*white22第五行*/
  510. .weatherCardList40_weatherCard40_white22_yueLiang {
  511. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat 4px -318px;
  512. }
  513. .weatherCardList40_weatherCard40_white22_yueLiangYun {
  514. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -75px -318px;
  515. }
  516. .weatherCardList40_weatherCard40_white22_yueLiangYunYun {
  517. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -156px -318px;
  518. }
  519. .weatherCardList40_weatherCard40_white22_yueLiangYunShuiShui {
  520. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -235px -318px;
  521. }
  522. .weatherCardList40_weatherCard40_white22_yunShanDianShui {
  523. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -314px -318px;
  524. }
  525. .weatherCardList40_weatherCard40_white22_yunShanDianShuiShui {
  526. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -396px -318px;
  527. }
  528. .weatherCardList40_weatherCard40_white22_yunShuiXue {
  529. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -476px -318px;
  530. }
  531. .weatherCardList40_weatherCard40_white22_yunShui {
  532. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -556px -318px;
  533. }
  534. .weatherCardList40_weatherCard40_white22_yunShuiShui {
  535. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -635px -318px;
  536. }
  537. .weatherCardList40_weatherCard40_white22_yunYunShuiShui {
  538. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -715px -318px;
  539. }
  540. /*white22第六行*/
  541. .weatherCardList40_weatherCard40_white22_yueLiangYunXueXue {
  542. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white22.png) no-repeat -314px -396px;
  543. }
  544. /*white30第一行*/
  545. .weatherCardList40_weatherCard40_white30_taiYang {
  546. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat 4px 2px;
  547. }
  548. .weatherCardList40_weatherCard40_white30_taiYangYun {
  549. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -75px 2px;
  550. }
  551. .weatherCardList40_weatherCard40_white30_yunYun {
  552. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -156px 2px;
  553. }
  554. .weatherCardList40_weatherCard40_white30_taiYangYunShui {
  555. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -235px 2px;
  556. }
  557. .weatherCardList40_weatherCard40_white30_taiYangShanDianShui {
  558. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -314px 2px;
  559. }
  560. .weatherCardList40_weatherCard40_white30_taiYangShanDianShuiShui {
  561. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -396px 2px;
  562. }
  563. .weatherCardList40_weatherCard40_white30_yunShuiXue {
  564. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -476px 2px;
  565. }
  566. .weatherCardList40_weatherCard40_white30_yunShui {
  567. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -556px 2px;
  568. }
  569. .weatherCardList40_weatherCard40_white30_yunLiangShui {
  570. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -635px 2px;
  571. }
  572. .weatherCardList40_weatherCard40_white30_sanHengGang {
  573. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -715px 2px;
  574. }
  575. .weatherCardList40_weatherCard40_white30_liangDianLiangQuan {
  576. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -796px 2px;
  577. }
  578. .weatherCardList40_weatherCard40_white30_yunYunShuiShui {
  579. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -876px 2px;
  580. }
  581. /*white30第二行*/
  582. .weatherCardList40_weatherCard40_white30_yunSanShui {
  583. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat 4px -78px;
  584. }
  585. .weatherCardList40_weatherCard40_white30_yunYunSiShui {
  586. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -75px -78px;
  587. }
  588. .weatherCardList40_weatherCard40_white30_yunYunWuShui {
  589. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -156px -78px;
  590. }
  591. .weatherCardList40_weatherCard40_white30_yunYunLiuShui {
  592. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -235px -78px;
  593. }
  594. .weatherCardList40_weatherCard40_white30_taiYangYunXueXue {
  595. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -314px -78px;
  596. }
  597. .weatherCardList40_weatherCard40_white30_yunXue {
  598. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -396px -78px;
  599. }
  600. .weatherCardList40_weatherCard40_white30_yunXueXue {
  601. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -476px -78px;
  602. }
  603. .weatherCardList40_weatherCard40_white30_yunSanXue {
  604. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -556px -78px;
  605. }
  606. .weatherCardList40_weatherCard40_white30_yunYunSiXue {
  607. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -635px -78px;
  608. }
  609. .weatherCardList40_weatherCard40_white30_sanHengGang {
  610. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -715px -78px;
  611. }
  612. .weatherCardList40_weatherCard40_white30_sanDianSanQuan {
  613. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -798px -78px;
  614. }
  615. .weatherCardList40_weatherCard40_white30_yunYunXueXue {
  616. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -876px -78px;
  617. }
  618. /* white30第三行*/
  619. .weatherCardList40_weatherCard40_white30_sanHengGang {
  620. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat 4px -157px;
  621. }
  622. .weatherCardList40_weatherCard40_white30_boLang {
  623. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -75px -157px;
  624. }
  625. .weatherCardList40_weatherCard40_white30_sYouJianTou {
  626. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -156px -157px;
  627. }
  628. .weatherCardList40_weatherCard40_white30_yunShuiShui {
  629. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -235px -157px;
  630. }
  631. .weatherCardList40_weatherCard40_white30_yunSanShui {
  632. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -314px -157px;
  633. }
  634. .weatherCardList40_weatherCard40_white30_yunYunSiShui {
  635. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -396px -157px;
  636. }
  637. .weatherCardList40_weatherCard40_white30_yunYunWuShui {
  638. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -476px -157px;
  639. }
  640. .weatherCardList40_weatherCard40_white30_yunYunLiuShui {
  641. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -556px -157px;
  642. }
  643. .weatherCardList40_weatherCard40_white30_yunXueXue {
  644. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -635px -157px;
  645. }
  646. /* white30第四行*/
  647. .weatherCardList40_weatherCard40_white30_yunSanXue {
  648. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat 0px -237px;
  649. }
  650. .weatherCardList40_weatherCard40_white30_yunYunSiXue {
  651. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -75px -237px;
  652. }
  653. .weatherCardList40_weatherCard40_white30_s {
  654. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -156px -237px;
  655. }
  656. .weatherCardList40_weatherCard40_white30_sShangJianTou {
  657. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -235px -237px;
  658. }
  659. .weatherCardList40_weatherCard40_white30_sYouJianTou {
  660. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -314px -237px;
  661. }
  662. .weatherCardList40_weatherCard40_white30_yunShuiShui {
  663. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -396px -237px;
  664. }
  665. .weatherCardList40_weatherCard40_white30_yunXueXue {
  666. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -476px -237px;
  667. }
  668. /*white30第五行*/
  669. .weatherCardList40_weatherCard40_white30_yueLiang {
  670. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat 4px -318px;
  671. }
  672. .weatherCardList40_weatherCard40_white30_yueLiangYun {
  673. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -75px -318px;
  674. }
  675. .weatherCardList40_weatherCard40_white30_yunYueLiangYun {
  676. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -156px -318px;
  677. }
  678. .weatherCardList40_weatherCard40_white30_yueLiangYunShui {
  679. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -235px -318px;
  680. }
  681. .weatherCardList40_weatherCard40_white30_yunShanDianShui {
  682. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -314px -318px;
  683. }
  684. .weatherCardList40_weatherCard40_white30_yueShanDianShuiShui {
  685. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -396px -318px;
  686. }
  687. .weatherCardList40_weatherCard40_white30_yunShuiXue {
  688. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -476px -318px;
  689. }
  690. .weatherCardList40_weatherCard40_white30_yunShui {
  691. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -556px -318px;
  692. }
  693. .weatherCardList40_weatherCard40_white30_yunShuiShui {
  694. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -635px -318px;
  695. }
  696. .weatherCardList40_weatherCard40_white30_yunYunShuiShui {
  697. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -876px -318px;
  698. }
  699. /* white30第六行*/
  700. .weatherCardList40_weatherCard40_white30_yueLiangYunXueXue {
  701. background: url(../../../../../static/picture/weatherProphet_40/weatherCalendarCardList40/weatherCalendarCard40/white30.png) no-repeat -314px -396px;
  702. }
  703. </style>