twentyFour.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989
  1. <template>
  2. <el-container class="content">
  3. <el-header style="text-align: center">
  4. <div @click="goTo('/index')" class="return"></div>
  5. <div style="margin: 0 auto">入门级</div>
  6. </el-header>
  7. <el-main>
  8. <div class="main">
  9. <div class="top">
  10. <div style="color: #fff">
  11. 当前为第<span style="color: #2c628a; margin: 0 5px">{{
  12. count + 1
  13. }}</span
  14. >关
  15. </div>
  16. <!-- <div class="left"></div> -->
  17. <div class="right">
  18. <div class="ts" @click="reduceTs"></div>
  19. <div class="howPlay" @click="dialogVisible1 = true"></div>
  20. </div>
  21. </div>
  22. <!-- 计算公式 -->
  23. <!-- <el-card shadow="always">
  24. {{ result }}
  25. </el-card> -->
  26. <!-- 随机数字 -->
  27. <el-row :gutter="20">
  28. <el-col :span="12" v-for="(num, index) in randomNum" :key="index">
  29. <div class="card-sep">
  30. <el-card
  31. v-if="index == 0"
  32. class="cardF"
  33. v-show="!num == '' || num === 0"
  34. :class="{
  35. xuanFIsClick:
  36. (num1 == num && nIndex == index) ||
  37. (num2 == num && nIndex2 == index),
  38. }"
  39. shadow="always"
  40. @click.native="getVal(num, index)"
  41. >
  42. {{ num }}
  43. </el-card>
  44. <el-card
  45. v-else-if="index == 1"
  46. class="cardS"
  47. v-show="!num == '' || num === 0"
  48. :class="{
  49. xuanSIsClick:
  50. (num1 == num && nIndex == index) ||
  51. (num2 == num && nIndex2 == index),
  52. }"
  53. shadow="always"
  54. @click.native="getVal(num, index)"
  55. >
  56. {{ num }}
  57. </el-card>
  58. <el-card
  59. v-else-if="index == 2"
  60. class="cardT"
  61. v-show="!num == '' || num === 0"
  62. :class="{
  63. xuanTIsClick:
  64. (num1 == num && nIndex == index) ||
  65. (num2 == num && nIndex2 == index),
  66. }"
  67. shadow="always"
  68. @click.native="getVal(num, index)"
  69. >
  70. {{ num }}
  71. </el-card>
  72. <el-card
  73. v-else
  74. class="cardFour"
  75. v-show="!num == '' || num === 0"
  76. :class="{
  77. xuanFourIsClick:
  78. (num1 == num && nIndex == index) ||
  79. (num2 == num && nIndex2 == index),
  80. }"
  81. shadow="always"
  82. @click.native="getVal(num, index)"
  83. >
  84. {{ num }}
  85. </el-card>
  86. </div>
  87. </el-col>
  88. <!-- <el-col :span="12">
  89. <el-card shadow="hover">
  90. 3
  91. </el-card>
  92. </el-col>
  93. </el-row>
  94. <el-row :gutter="20">
  95. <el-col :span="12">
  96. <el-card shadow="always">
  97. 8
  98. </el-card>
  99. </el-col>
  100. <el-col :span="12">
  101. <el-card shadow="hover">
  102. 9
  103. </el-card>
  104. </el-col> -->
  105. </el-row>
  106. <!-- 运算符选择 -->
  107. <div class="operator">
  108. <div
  109. class="add"
  110. :class="{ addIsClick: calc == '+' }"
  111. @click="add"
  112. ></div>
  113. <div
  114. class="inc"
  115. :class="{ reduceIsClick: calc == '-' }"
  116. @click="inc"
  117. ></div>
  118. </div>
  119. <!-- <el-row class="h-sep">
  120. <el-col :span="4"> -->
  121. <!-- <el-button type="primary" plain icon="el-icon-plus" @click="add"
  122. >加</el-button
  123. > -->
  124. <!-- <div class="add" @click="add"></div>
  125. </el-col> -->
  126. <!-- <el-col :span="4"> -->
  127. <!-- <el-button type="primary" plain icon="el-icon-minus" @click="inc"
  128. >减</el-button
  129. > -->
  130. <!-- <div class="inc" @click="inc"></div>
  131. </el-col> -->
  132. <!-- <el-col :span="4">
  133. <el-button type="primary" plain icon="el-icon-close" @click="mul"
  134. >乘</el-button
  135. >
  136. </el-col>
  137. <el-col :span="4">
  138. <el-button type="primary" plain icon="" @click="div"
  139. >/&nbsp;&nbsp;除</el-button
  140. >
  141. </el-col>
  142. <el-col :span="4">
  143. <el-button
  144. type="primary"
  145. plain
  146. icon="el-icon-arrow-left"
  147. @click="left"
  148. >括</el-button
  149. >
  150. </el-col>
  151. <el-col :span="4">
  152. <el-button
  153. type="primary"
  154. plain
  155. icon="el-icon-arrow-right"
  156. @click="right"
  157. >号</el-button
  158. >
  159. </el-col> -->
  160. <!-- </el-row> -->
  161. <!-- <el-row :gutter="20" class="footBtn">
  162. <el-col :span="4">
  163. <el-button
  164. type="primary"
  165. plain
  166. icon="el-icon-success"
  167. @click="confirm"
  168. >确定</el-button
  169. >
  170. </el-col>
  171. <el-col :span="4">
  172. <el-button
  173. type="primary"
  174. plain
  175. icon="el-icon-refresh-right"
  176. @click="clean"
  177. >清除</el-button
  178. >
  179. </el-col>
  180. <el-col :span="4">
  181. <el-button
  182. type="primary"
  183. plain
  184. icon="el-icon-refresh"
  185. @click="resert"
  186. >换题</el-button
  187. >
  188. </el-col>
  189. </el-row> -->
  190. <div class="bottom">
  191. <div class="bottomT">
  192. <div class="answer" @click="reduceTs"></div>
  193. <div class="clean" @click="clean"></div>
  194. </div>
  195. <div class="next" @click="confirm"></div>
  196. </div>
  197. </div>
  198. </el-main>
  199. <!-- <div
  200. id="cas"
  201. style="
  202. position: absolute;
  203. width: 200px;
  204. height: 200px;
  205. left: 200px;
  206. z-index: 99999;
  207. "
  208. ></div> -->
  209. <el-dialog
  210. title="提示"
  211. :visible.sync="dialogVisible"
  212. :append-to-body="true"
  213. width="80%"
  214. :before-close="handleClose"
  215. class="dialog_diy"
  216. >
  217. <div class="tsAnswer">{{ rightAnswer }}</div>
  218. <dir class="haveCount">今天还剩{{ ts }}次提示喔</dir>
  219. </el-dialog>
  220. <el-dialog
  221. title="入门级玩法介绍"
  222. :visible.sync="dialogVisible1"
  223. :append-to-body="true"
  224. width="80%"
  225. :before-close="handleClose"
  226. class="dialog_diy1"
  227. >
  228. <div style="font-size: 0.9rem">
  229. 24 点是把 4 个整数(一般是正整数)通过加减乘除运算,使最后的计算结果是 24
  230. 的一个数学游戏,可以考验人的智力和数学敏感性。任意抽取4个数字,用加、减、乘、除(可加括号)把牌面上的数算成
  231. 24。
  232. </div>
  233. </el-dialog>
  234. <el-dialog
  235. title="提示"
  236. :visible.sync="dialogVisible2"
  237. :append-to-body="true"
  238. width="80%"
  239. :before-close="handleClose"
  240. class="dialog_diy1"
  241. >
  242. <div style="margin-bottom: 15px">您已成功算成24点,恭喜你!</div>
  243. <div
  244. style="
  245. width: 90px;
  246. height: 25px;
  247. border: 1px solid #75a8da;
  248. text-align: center;
  249. margin: 0 auto;
  250. background: #75a8da;
  251. color: #fff;
  252. line-height: 25px;
  253. "
  254. @click="dialogVisible2 = false"
  255. >
  256. 确定
  257. </div>
  258. </el-dialog>
  259. <el-dialog
  260. title="提示"
  261. :visible.sync="dialogVisible3"
  262. :append-to-body="true"
  263. width="80%"
  264. :before-close="handleClose"
  265. class="dialog_diy1"
  266. >
  267. <div style="margin-bottom: 15px">计算错误!</div>
  268. <div
  269. style="
  270. width: 90px;
  271. height: 25px;
  272. border: 1px solid #75a8da;
  273. text-align: center;
  274. margin: 0 auto;
  275. background: #75a8da;
  276. color: #fff;
  277. line-height: 25px;
  278. "
  279. @click="dialogVisible3 = false"
  280. >
  281. 确定
  282. </div>
  283. </el-dialog>
  284. <audio ref="source">
  285. <source src="../../assets/twentyFour/clickM.mp3" type="audio/mpeg" />
  286. </audio>
  287. <audio ref="vm">
  288. <source src="../../assets/twentyFour/vM.mp3" type="audio/mpeg" />
  289. </audio>
  290. <audio ref="errs">
  291. <source src="../../assets/twentyFour/err.mp3" type="audio/mpeg" />
  292. </audio>
  293. </el-container>
  294. </template>
  295. <script>
  296. export default {
  297. data() {
  298. return {
  299. randomNum: ["", "", "", ""],
  300. result: "",
  301. tempResult: "",
  302. flag0: false,
  303. flag1: false,
  304. flag2: false,
  305. flag3: false,
  306. calc: "",
  307. num1: "",
  308. nIndex: "",
  309. nIndex2: "",
  310. num2: "",
  311. saveRandomNum: ["", "", "", ""],
  312. count: 0,
  313. rightAnswer: "",
  314. dialogVisible: false,
  315. dialogVisible1: false,
  316. dialogVisible2: false,
  317. dialogVisible3: false,
  318. ts: 3,
  319. tiMu: [],
  320. nowGq: 0,
  321. };
  322. },
  323. mounted() {
  324. this.getRandomNum();
  325. },
  326. watch: {},
  327. methods: {
  328. cards(randomNum) {
  329. var array = randomNum;
  330. var args = [];
  331. if (array.length == 4) {
  332. for (var i = 0; i < 4; i++) {
  333. var j = parseInt(array[i]);
  334. if (isNaN(j)) {
  335. return;
  336. }
  337. args[i] = j;
  338. }
  339. var ret = this.find(args, 24);
  340. var a = args.sort().toString();
  341. if (ret.length == 0) {
  342. this.getRandomNum();
  343. } else {
  344. if (this.tiMu.length > 0) {
  345. for (var i = 0; i < this.tiMu.length; i++) {
  346. if (this.tiMu[i] == a) {
  347. this.getRandomNum();
  348. }
  349. }
  350. this.rightAnswer = ret + "=24";
  351. } else {
  352. this.rightAnswer = ret + "=24";
  353. }
  354. }
  355. } else {
  356. console.log("len: " + array.length);
  357. }
  358. },
  359. handleClose(done) {
  360. done();
  361. },
  362. goTo(path) {
  363. this.$router.push(path);
  364. },
  365. reduceTs() {
  366. this.dialogVisible = true;
  367. if (this.nowGq > 0) {
  368. return;
  369. }
  370. this.ts -= 1;
  371. this.nowGq++;
  372. if (this.ts == -1) {
  373. this.rightAnswer = "今日提示已达上限";
  374. this.ts = 0;
  375. }
  376. },
  377. find3(a, b, target) {
  378. if (a + b === target) {
  379. return a + "+" + b;
  380. } else if (a - b == target) {
  381. return a + "-" + b;
  382. } else if (b - a == target) {
  383. return b + "-" + a;
  384. }
  385. return "";
  386. },
  387. remove(array, index) {
  388. var out = [];
  389. var j = 0;
  390. for (var i = 0; i < array.length; i++) {
  391. if (i == index) {
  392. continue;
  393. }
  394. out[j] = array[i];
  395. j++;
  396. }
  397. return out;
  398. },
  399. find(array, target) {
  400. // js 中必须用var声明,限制作用域。
  401. var out = "";
  402. var ret = "";
  403. var i = 0;
  404. var left;
  405. if (array.length == 2) {
  406. out = this.find3(array[0], array[1], target);
  407. if (out.length > 0) {
  408. return "(" + out + ")";
  409. }
  410. return "";
  411. }
  412. var x;
  413. for (i = 0; i < array.length; i++) {
  414. x = array[i];
  415. left = this.remove(array, i);
  416. // if (target != 0 && (target % x == 0 || x % target == 0)) {
  417. // if (target > x) {
  418. // ret = find(left, target / x);
  419. // if (ret.length > 0) {
  420. // out = x + "*" + ret;
  421. // break;
  422. // }
  423. // } else {
  424. // ret = find(left, x / target);
  425. // if (ret.length > 0) {
  426. // out = x + "/" + ret;
  427. // break;
  428. // }
  429. // }
  430. // }
  431. if (target > x) {
  432. ret = this.find(left, target - x);
  433. if (ret.length > 0) {
  434. out = x + "+" + ret;
  435. break;
  436. }
  437. } else {
  438. ret = this.find(left, x - target);
  439. if (ret.length > 0) {
  440. out = x + "-" + ret;
  441. break;
  442. }
  443. }
  444. // ret = this.find(left, x * target);
  445. // if (ret.length > 0) {
  446. // out = ret + "/" + x;
  447. // break;
  448. // }
  449. ret = this.find(left, target + x);
  450. if (ret.length > 0) {
  451. out = ret + "-" + x;
  452. break;
  453. }
  454. }
  455. if (out.length > 0) {
  456. if (array.length == 4) {
  457. return out;
  458. } else {
  459. return "(" + out + ")";
  460. }
  461. }
  462. return "";
  463. },
  464. getRandomNum() {
  465. this.randomNum = [];
  466. for (var i = 0; i < 4; i++) {
  467. // 生成1-9的随机数
  468. this.randomNum.push(Math.floor(Math.random(9) * 10 + 1));
  469. }
  470. this.saveRandomNum = [...this.randomNum];
  471. this.cards(this.randomNum);
  472. },
  473. // isTrue(){
  474. // },
  475. getVal(num, index) {
  476. var num = parseInt(num);
  477. var b = 0;
  478. let a = 0;
  479. this.$refs.source.play();
  480. if (this.num1 && this.calc) {
  481. this.num2 = num;
  482. } else {
  483. this.num1 = num;
  484. }
  485. if (this.nIndex === index) {
  486. this.nIndex = "";
  487. this.num1 = "";
  488. } else if (this.nIndex === "") {
  489. this.nIndex = index;
  490. } else if (this.nIndex !== "" && this.calc) {
  491. this.nIndex2 = index;
  492. } else {
  493. this.nIndex = index;
  494. }
  495. if (
  496. (this.nIndex || this.nIndex === 0) &&
  497. (this.nIndex2 || this.nIndex2 === 0) &&
  498. this.calc
  499. ) {
  500. // this.result += num;
  501. if (this.calc === "+") {
  502. this.result = this.num1 + this.num2;
  503. this.randomNum[this.nIndex] = "";
  504. this.randomNum[this.nIndex2] = this.result;
  505. if (this.result == "24") {
  506. for (var i = 0; i < this.randomNum.length; i++) {
  507. if (this.randomNum[i] != "") {
  508. b++;
  509. } else {
  510. a++;
  511. }
  512. }
  513. if (b == 1) {
  514. this.dialogVisible2 = true;
  515. this.$refs.vm.play();
  516. } else if (a == this.randomNum.length - 1) {
  517. this.dialogVisible3 = true;
  518. this.$refs.errs.play();
  519. }
  520. } else {
  521. for (var i = 0; i < this.randomNum.length; i++) {
  522. if (this.randomNum[i] == "") {
  523. a++;
  524. }
  525. }
  526. if (a == this.randomNum.length - 1) {
  527. this.dialogVisible3 = true;
  528. this.$refs.errs.play();
  529. }
  530. }
  531. this.resertFlag();
  532. } else if (this.calc === "-") {
  533. this.result = this.num1 - this.num2;
  534. this.randomNum[this.nIndex] = "";
  535. this.randomNum[this.nIndex2] = this.result;
  536. if (this.result == "24") {
  537. for (var i = 0; i < this.randomNum.length; i++) {
  538. if (this.randomNum[i] != "") {
  539. b++;
  540. } else {
  541. a++;
  542. }
  543. }
  544. if (b == 1) {
  545. this.dialogVisible2 = true;
  546. this.$refs.vm.play();
  547. } else if (a == this.randomNum.length - 1) {
  548. this.dialogVisible3 = true;
  549. this.$refs.errs.play();
  550. }
  551. } else {
  552. for (var i = 0; i < this.randomNum.length; i++) {
  553. if (this.randomNum[i] == "") {
  554. a++;
  555. }
  556. }
  557. if (a == this.randomNum.length - 1) {
  558. this.dialogVisible3 = true;
  559. this.$refs.errs.play();
  560. }
  561. }
  562. this.resertFlag();
  563. }
  564. }
  565. // this.randomNum[0] = num;
  566. },
  567. // 重置flag标识
  568. resertFlag() {
  569. this.nIndex = "";
  570. this.nIndex2 = "";
  571. this.calc = "";
  572. this.num2 = "";
  573. this.num1 = "";
  574. },
  575. add() {
  576. this.$refs.source.play();
  577. if (this.calc == "+") {
  578. this.calc = "";
  579. } else {
  580. this.result += "+";
  581. this.calc = "+";
  582. }
  583. },
  584. inc() {
  585. this.$refs.source.play();
  586. if (this.calc == "-") {
  587. this.calc = "";
  588. } else {
  589. this.result += "-";
  590. this.calc = "-";
  591. }
  592. },
  593. // mul() {
  594. // this.result += "*";
  595. // },
  596. // div() {
  597. // this.result += "/";
  598. // },
  599. // left() {
  600. // this.result += "(";
  601. // },
  602. // right() {
  603. // this.result += ")";
  604. // },
  605. clean() {
  606. this.result = "";
  607. this.randomNum = [...this.saveRandomNum];
  608. this.resertFlag();
  609. },
  610. confirm() {
  611. // 计算结果:直接将字符串转成js语句执行, 也可以用队列来实现
  612. var count = 0;
  613. for (var i = 0; i < this.randomNum.length; i++) {
  614. if (this.randomNum[i] == "") {
  615. count++;
  616. }
  617. }
  618. this.tempResult = eval(this.result);
  619. if (count == 3) {
  620. if (this.tempResult === 24) {
  621. this.$message.success("计算正确!");
  622. this.tiMu.push([...this.saveRandomNum].sort().toString());
  623. // this.$message({
  624. // showClose: true,
  625. // message: '正确',
  626. // type: 'success'
  627. // });
  628. this.nowGq = 0;
  629. this.result = "";
  630. this.count += 1;
  631. if (this.count == 4) {
  632. this.$message.success("恭喜你通关成功");
  633. this.$router.push("/index");
  634. } else {
  635. this.getRandomNum();
  636. }
  637. } else {
  638. this.$message.error("计算错误!");
  639. this.result = "";
  640. this.resertFlag();
  641. }
  642. } else {
  643. this.$message.error("每个数字都要用到!");
  644. }
  645. },
  646. resert() {
  647. //刷新题目
  648. this.getRandomNum();
  649. this.resertFlag();
  650. this.result = "";
  651. },
  652. },
  653. created() {
  654. this.getRandomNum();
  655. },
  656. };
  657. </script>
  658. <style scoped>
  659. html,
  660. body,
  661. #app {
  662. text-align: center;
  663. height: 100%;
  664. margin: 0;
  665. padding: 0;
  666. }
  667. .el-header {
  668. height: 40px !important;
  669. background: #f4f4f4;
  670. text-align: center;
  671. display: flex;
  672. flex-direction: row;
  673. align-items: center;
  674. position: relative;
  675. }
  676. .el-container {
  677. height: 100%;
  678. }
  679. .el-row {
  680. margin-top: 2.5rem;
  681. height: 260px;
  682. }
  683. .el-col-12 {
  684. height: 130px;
  685. }
  686. .el-card__body {
  687. height: 3.75rem;
  688. font-size: xx-large;
  689. line-height: 3.75rem;
  690. }
  691. .footBtn {
  692. margin-left: 0 !important;
  693. }
  694. .card-sep {
  695. margin-bottom: 0.5rem;
  696. }
  697. .cardF {
  698. background-image: url("../../assets/twentyFour/xuanF.png");
  699. height: 120px;
  700. opacity: 0.4;
  701. }
  702. .cardS {
  703. background-image: url("../../assets/twentyFour/xuanS.png");
  704. height: 120px;
  705. opacity: 0.4;
  706. }
  707. .cardT {
  708. background-image: url("../../assets/twentyFour/xuanT.png");
  709. height: 120px;
  710. opacity: 0.4;
  711. }
  712. .cardFour {
  713. background-image: url("../../assets/twentyFour/xuanFour.png");
  714. height: 120px;
  715. opacity: 0.4;
  716. }
  717. .h-sep {
  718. margin-top: 1.375rem;
  719. }
  720. .top {
  721. height: 35px;
  722. width: 100%;
  723. display: flex;
  724. flex-direction: row;
  725. align-items: center;
  726. justify-content: space-between;
  727. }
  728. .content,
  729. .left,
  730. .ts,
  731. .howPlay,
  732. .cardF,
  733. .cardS,
  734. .cardT,
  735. .cardFour,
  736. .add,
  737. .inc,
  738. .answer,
  739. .clean,
  740. .next,
  741. .xuanFIsClick,
  742. .xuanSIsClick,
  743. .xuanTIsClick,
  744. .xuanFourIsClick,
  745. .addIsClick,
  746. .reduceIsClick {
  747. background-size: 100% 100%;
  748. background-repeat: no-repeat;
  749. }
  750. .content {
  751. background-image: url("../../assets/twentyFour/gameBg.png");
  752. position: relative;
  753. }
  754. .content >>> .el-main {
  755. padding: 0 !important;
  756. overflow: unset !important;
  757. }
  758. .left {
  759. background-image: url("../../assets/twentyFour/now.png");
  760. width: 40%;
  761. height: 20px;
  762. }
  763. .right {
  764. width: 60%;
  765. display: flex;
  766. flex-direction: row;
  767. justify-content: flex-end;
  768. height: 35px;
  769. }
  770. .ts {
  771. background-image: url("../../assets/twentyFour/ts.png");
  772. width: 35px;
  773. }
  774. .howPlay {
  775. background-image: url("../../assets/twentyFour/howPlay.png");
  776. width: 35px;
  777. margin-left: 5px;
  778. }
  779. .card-sep >>> .is-always-shadow {
  780. box-shadow: none !important;
  781. }
  782. .card-sep >>> .el-card {
  783. border: none !important;
  784. background-color: transparent !important;
  785. }
  786. .card-sep >>> .el-card__body {
  787. color: #fff;
  788. text-align: center;
  789. height: 120px;
  790. line-height: 120px;
  791. font-size: 60px;
  792. padding: 0 !important;
  793. }
  794. .add {
  795. background-image: url("../../assets/twentyFour/add.png");
  796. height: 60px;
  797. width: 60px;
  798. }
  799. .inc {
  800. background-image: url("../../assets/twentyFour/reduce.png");
  801. height: 60px;
  802. width: 60px;
  803. }
  804. .operator {
  805. display: flex;
  806. flex-direction: row;
  807. justify-content: space-evenly;
  808. align-items: center;
  809. margin-top: 35px;
  810. }
  811. .bottom {
  812. display: flex;
  813. flex-direction: column;
  814. flex-wrap: nowrap;
  815. margin-top: 25px;
  816. }
  817. .bottomT {
  818. display: flex;
  819. flex-direction: row;
  820. align-items: center;
  821. justify-content: center;
  822. }
  823. .answer {
  824. background-image: url("../../assets/twentyFour/answer.png");
  825. height: 45px;
  826. width: 50%;
  827. }
  828. .clean {
  829. background-image: url("../../assets/twentyFour/clean.png");
  830. height: 45px;
  831. width: 50%;
  832. }
  833. .next {
  834. background-image: url("../../assets/twentyFour/next.png");
  835. height: 50px;
  836. width: 100%;
  837. margin-top: 10px;
  838. }
  839. .xuanFIsClick {
  840. background-image: url("../../assets/twentyFour/xuanFIsClick.png") !important;
  841. opacity: 1;
  842. }
  843. .xuanSIsClick {
  844. background-image: url("../../assets/twentyFour/xuanSIsClick.png") !important;
  845. opacity: 1;
  846. }
  847. .xuanTIsClick {
  848. background-image: url("../../assets/twentyFour/xuanTIsClick.png") !important;
  849. opacity: 1;
  850. }
  851. .xuanFourIsClick {
  852. background-image: url("../../assets/twentyFour/xuanFourIsClick.png") !important;
  853. opacity: 1;
  854. }
  855. .addIsClick {
  856. background-image: url("../../assets/twentyFour/addIsClick.png") !important;
  857. opacity: 1;
  858. }
  859. .reduceIsClick {
  860. background-image: url("../../assets/twentyFour/reduceIsClick.png") !important;
  861. opacity: 1;
  862. }
  863. .dialog_diy >>> .el-dialog__header {
  864. background: #fa7258;
  865. text-align: center;
  866. padding: 10px 0 !important;
  867. }
  868. .dialog_diy1 >>> .el-dialog__header {
  869. background: #f6c14a;
  870. text-align: center;
  871. padding: 10px 0 !important;
  872. }
  873. .dialog_diy1 >>> .el-dialog__body {
  874. padding: 20px;
  875. }
  876. .dialog_diy1 >>> .el-dialog__title {
  877. color: #fff !important;
  878. }
  879. .dialog_diy >>> .el-dialog__title {
  880. color: #fff !important;
  881. }
  882. .tsAnswer {
  883. color: #fa7258;
  884. font-size: 20px;
  885. text-align: center;
  886. }
  887. .haveCount {
  888. text-align: center;
  889. padding: 0;
  890. margin-top: 20px;
  891. font-size: 11px;
  892. color: #cbcbcb;
  893. font-family: FZShuTi;
  894. }
  895. .dialog_diy >>> .el-dialog__headerbtn {
  896. background: url("../../assets/twentyFour/close.png");
  897. background-repeat: no-repeat;
  898. background-size: 100% 100%;
  899. top: 13px !important;
  900. right: 13px !important;
  901. }
  902. .dialog_diy1 >>> .el-dialog__headerbtn {
  903. background: url("../../assets/twentyFour/close.png");
  904. background-repeat: no-repeat;
  905. background-size: 100% 100%;
  906. top: 13px !important;
  907. right: 13px !important;
  908. }
  909. .dialog_diy >>> .el-dialog__close,
  910. .dialog_diy1 >>> .el-dialog__close {
  911. color: transparent !important;
  912. }
  913. .return {
  914. background: url("../../assets/twentyFour/fanhui.png");
  915. background-repeat: no-repeat;
  916. background-size: 100% 100%;
  917. width: 25px;
  918. height: 25px;
  919. position: absolute;
  920. }
  921. </style>