ApplyInfo.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  1. <template>
  2. <div class="apply-info">
  3. <div class="apply-info-title">
  4. <p>最新求购信息</p>
  5. <span>海量求购,一网打尽</span>
  6. <div>
  7. <input type="text" class="form-control" v-model="keyWord" @keyup.13="searchList" placeholder="型号/品牌" />
  8. <span @click="searchList">查询</span>
  9. </div>
  10. </div>
  11. <div class="apply-info-list">
  12. <p>
  13. <span>发布时间
  14. <a href="javascript:void(0)" @click="sortListByParam('releaseDate')">
  15. <!--<i class=" fa fa-long-arrow-up" :class="{active: sorting.releaseDate == 'ASC'}"></i>-->
  16. <!--<i class=" fa fa-long-arrow-down" :class="{active: sorting.releaseDate == 'DESC'}"></i>-->
  17. </a>
  18. </span>
  19. <span>买家</span>
  20. <span>型号</span>
  21. <span>品牌</span>
  22. <span>截止时间
  23. <a href="javascript:void(0)" @click="sortListByParam('deadline')">
  24. <!--<i class=" fa fa-long-arrow-up" :class="{active: sorting.deadline == 'ASC'}"></i>-->
  25. <!--<i class=" fa fa-long-arrow-down" :class="{active: sorting.deadline == 'DESC'}"></i>-->
  26. </a>
  27. </span>
  28. <span>已报价
  29. <a href="javascript:void(0)" @click="sortListByParam('offerAmount')">
  30. <!--<i class=" fa fa-long-arrow-up" :class="{active: sorting.offerAmount == 'ASC'}"></i>-->
  31. <!--<i class=" fa fa-long-arrow-down" :class="{active: sorting.offerAmount == 'DESC'}"></i>-->
  32. </a>
  33. </span>
  34. <span>操作</span>
  35. </p>
  36. <ul>
  37. <li v-for="(purchaseMan, index) in purchaseManList.content" :class="{'active': purchaseMan.active}">
  38. <div>{{purchaseMan.date| date}}</div>
  39. <div v-if="purchaseMan.inquiry.enterprise && purchaseMan.inquiry.enterprise.enName">{{purchaseMan.inquiry.enterprise.enName | enterpriseFilter}}</div>
  40. <div v-else>{{purchaseMan.userName | userNameFilter}}</div>
  41. <div :title="purchaseMan.cmpCode">{{purchaseMan.cmpCode || '-'}}</div>
  42. <div :title="purchaseMan.inbrand">{{purchaseMan.inbrand || '-'}}</div>
  43. <div class="date-content">
  44. <div v-if="purchaseMan.remainingTime > 0">
  45. <span>剩余&nbsp;</span>
  46. <span v-if="getDay(purchaseMan.remainingTime) > 0" v-text="getDay(purchaseMan.remainingTime)"></span>
  47. <i v-if="getDay(purchaseMan.remainingTime) > 0">&nbsp;天&nbsp;</i>
  48. <span v-if="getDay(purchaseMan.remainingTime) <= 0" v-text="getHours(purchaseMan.remainingTime)"></span>
  49. <i v-if="getDay(purchaseMan.remainingTime) <= 0" >&nbsp;小时</i>
  50. </div>
  51. <span v-if="!purchaseMan.remainingTime || purchaseMan.remainingTime <= 0">已截止</span>
  52. </div>
  53. <div class="number-content"><img src="/images/applyPurchase/hot-fire.png" alt="" v-if="purchaseMan.offerAmount > 10"><span :style="purchaseMan.offerAmount > 10 ? 'color: #ff9a00': ''">{{purchaseMan.offerAmount || 0}}</span>&nbsp;条</div>
  54. <div class="btn-content">
  55. <!--<a @click="setLinkBoxIndex(index)">联系买家</a>-->
  56. <a v-if="purchaseMan.remainingTime > 0 && (!purchaseMan.quoted || purchaseMan.quoted != 1)" @click="sayPrice(purchaseMan, index)">我要报价</a>
  57. <div class="is-say-price" v-if="purchaseMan.remainingTime > 0 && purchaseMan.quoted == 1">已报价 <img src="/images/applyPurchase/green-check.png" alt="">
  58. </div>
  59. </div>
  60. <div class="expand-content">
  61. <div>
  62. 封装:{{purchaseMan.encapsulation || '-'}}
  63. </div>
  64. <div>
  65. 采购数量:<span>{{purchaseMan.needquantity || '-'}}</span><span v-if="purchaseMan.needquantity">个</span>
  66. </div>
  67. <div>
  68. 单价预算:<span>{{purchaseMan.unitPrice ? (purchaseMan.currency == 'RMB' ? '¥' : '$') + purchaseMan.unitPrice : '-'}}</span>
  69. </div>
  70. <div>
  71. 生产日期:{{purchaseMan.produceDate || '-'}}
  72. </div>
  73. </div>
  74. <!--<div class="say-price">
  75. <div>报价</div>
  76. <div>
  77. <i>*</i>单价
  78. <select v-if="!purchaseMan.currency" v-model="sayPriceObj.currency">
  79. <option value="RMB">¥</option>
  80. <option value="USD">$</option>
  81. </select>
  82. <div v-if="purchaseMan.currency" v-text="purchaseMan.currency == 'RMB' ? '¥' : '$'"></div>
  83. <input type="number" v-model="sayPriceObj.unitPrice" class="form-control" @blur="onUnitPriceBlur" @input="onUnitPriceChange">
  84. </div>
  85. <div>
  86. <i>*</i>交期&nbsp;
  87. <input type="number" v-model="sayPriceObj.minDay" @blur="onMinDayInput" @input="onMinDayChange" class="form-control">&nbsp;-&nbsp;<input type="number" v-model="sayPriceObj.maxDay" @blur="onMaxDayInput" @input="onMaxDayChange" class="form-control">&nbsp;天
  88. </div>
  89. <div>
  90. 生产日期&nbsp;<input v-model="sayPriceObj.produceDate" @input="onProduceDateChange" type="text" class="form-control">
  91. </div>
  92. <div>
  93. <span @click="cancelSayPrice(purchaseMan)">取消</span>
  94. <span @click="commitSayPrice(purchaseMan)">提交</span>
  95. </div>
  96. </div>-->
  97. </li>
  98. </ul>
  99. </div>
  100. <say-price :current="currentSayPriceIndex"
  101. :purchase="purchaseManList"
  102. @cancelSayPriceAction="cancelSayPrice"
  103. @resetListAction="resetList"
  104. @sayPriceIndexAction="setIndex(index)"
  105. ></say-price>
  106. <page :total="totalCount" :page-size="pageSize"
  107. :current="nowPage" v-on:childEvent="listenPage"></page>
  108. <div class="com-del-box link-saler-box" v-if="linkBoxIndex > -1">
  109. <div class="title">
  110. <i @click="setLinkBoxIndex(-1)"></i>
  111. </div>
  112. <div class="content">
  113. <p><i class="fa fa-exclamation-circle"></i>抱歉,暂时无法与买家在线沟通!</p>
  114. <p>买家联系电话:<span v-text="purchaseManList.content[linkBoxIndex].userTel"></span></p>
  115. <div>
  116. <a @click="setLinkBoxIndex(-1)">我知道了</a>
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. </template>
  122. <script>
  123. import Page from '~components/common/page/pageComponent.vue'
  124. import SayPrice from './SayPrice.vue'
  125. export default {
  126. data () {
  127. return {
  128. pageSize: 10,
  129. nowPage: 1,
  130. keyWord: '',
  131. sorting: {},
  132. currentSayPriceIndex: -1,
  133. linkBoxIndex: -1
  134. }
  135. },
  136. components: {
  137. Page,
  138. SayPrice
  139. },
  140. filters: {
  141. date: function (date) {
  142. const d = new Date(Number(date))
  143. const year = d.getFullYear()
  144. const monthTemp = d.getMonth() + 1
  145. const month = monthTemp < 10 ? '0' + monthTemp : '' + monthTemp
  146. const hour = d.getHours() < 10 ? '0' + d.getHours() : '' + d.getHours()
  147. const minutes = d.getMinutes() < 10 ? '0' + d.getMinutes() : '' + d.getMinutes() + ' '
  148. const day = d.getDate() < 10 ? '0' + d.getDate() : '' + d.getDate() + ' '
  149. return year + '-' + month + '-' + day + ' ' + hour + ':' + minutes
  150. },
  151. phone: function (str) {
  152. return str.substring(0, 3) + '****' + str.substring(7, 11)
  153. },
  154. enterpriseFilter (str) {
  155. return str.length > 4 ? str.substring(0, 2) + '**' + str.substring(str.length - 2, str.length) : str
  156. },
  157. userNameFilter (str) {
  158. return str.substring(0, 1) + '**'
  159. }
  160. },
  161. computed: {
  162. purchaseManList () {
  163. return this.$store.state.applyPurchase.purchaseManList.purchaseManList.data
  164. },
  165. totalCount () {
  166. return this.purchaseManList.totalElements
  167. },
  168. user () {
  169. return this.$store.state.option.user
  170. }
  171. },
  172. methods: {
  173. setIndex: function (index) {
  174. this.currentSayPriceIndex = index
  175. },
  176. getDay: function (timeStamp) {
  177. return Math.floor(timeStamp / (1000 * 60 * 60 * 24))
  178. },
  179. getHours: function (timeStamp) {
  180. return Math.floor((timeStamp / (1000 * 60 * 60)) % 24)
  181. },
  182. listenPage: function (page) {
  183. this.nowPage = page
  184. this.resetList()
  185. },
  186. sayPrice: function (purchaseMan, index) {
  187. // let _this = this
  188. // for (let i = 0; i < this.purchaseManList.content.length; i++) {
  189. // _this.purchaseManList.content[i].active = false
  190. // }
  191. if (this.user.logged) {
  192. if (this.user.data.enterprise.uu) {
  193. if (this.user.data.enterprise.isVendor && this.user.data.enterprise.isVendor !== '1690') {
  194. // this.resetSayPrice()
  195. purchaseMan.active = true
  196. this.currentSayPriceIndex = index
  197. } else {
  198. this.$message.error('抱歉,您需开通卖家功能才可报价')
  199. }
  200. } else {
  201. this.$message.error('个人账户不可报价')
  202. }
  203. } else {
  204. this.$router.push('/auth/login?returnUrl=' + window.location.href)
  205. }
  206. },
  207. cancelSayPrice: function () {
  208. this.purchaseManList.content[this.currentSayPriceIndex].active = false
  209. this.currentSayPriceIndex = -1
  210. },
  211. resetList: function () {
  212. this.currentSayPriceIndex = -1
  213. this.$store.dispatch('applyPurchase/loadPurchaseManList', {pageNumber: this.nowPage, pageSize: this.pageSize, keyword: this.keyWord, sorting: !this.sorting || JSON.stringify(this.sorting) === '{}' ? {releaseDate: 'DESC'} : this.sorting, enUU: this.user.data.enterprise ? this.user.data.enterprise.uu : null})
  214. },
  215. searchList: function () {
  216. this.nowPage = 1
  217. this.resetList()
  218. },
  219. sortListByParam: function (param) {
  220. if (this.sorting[param]) {
  221. if (this.sorting[param] === 'ASC') {
  222. this.$set(this.sorting, param, 'DESC')
  223. } else {
  224. this.$delete(this.sorting, param)
  225. }
  226. } else {
  227. this.sorting = {}
  228. this.$set(this.sorting, param, 'ASC')
  229. }
  230. this.nowPage = 1
  231. this.resetList()
  232. },
  233. setLinkBoxIndex: function (index) {
  234. if (!this.user.logged) {
  235. this.$router.push('/auth/login?returnUrl=' + window.location.href)
  236. } else {
  237. this.linkBoxIndex = index
  238. }
  239. }
  240. }
  241. }
  242. </script>
  243. <style lang="scss" scoped>
  244. .apply-info {
  245. width: 1190px;
  246. margin: 0 auto;
  247. .apply-info-title {
  248. border-bottom: 1px solid #3975f4;
  249. >p {
  250. display: inline-block;
  251. width: 156px;
  252. height: 33px;
  253. line-height: 33px;
  254. color: #fff;
  255. background: #3975f4;
  256. font-size: 18px;
  257. text-align: center;
  258. border: {
  259. top-left-radius: 3px;
  260. top-right-radius: 3px;
  261. }
  262. margin: 0;
  263. }
  264. >span {
  265. color: #999;
  266. margin-left: 16px;
  267. }
  268. >div {
  269. float: right;
  270. height: 25px;
  271. line-height: 25px;
  272. >input {
  273. width: 241px;
  274. height: 25px;
  275. line-height: 25px;
  276. font-size: 13px;
  277. border: {
  278. top-right-radius: 0;
  279. bottom-right-radius: 0;
  280. }
  281. }
  282. >span {
  283. display: inline-block;
  284. width: 69px;
  285. color: #fff;
  286. background: #3975f4;
  287. text-align: center;
  288. margin: 0 6px 0 -1px;
  289. border: {
  290. top-right-radius: 3px;
  291. bottom-right-radius: 3px;
  292. }
  293. cursor: pointer;
  294. }
  295. >a {
  296. background: #ffa200;
  297. color: #fff;
  298. width: 79px;
  299. border-radius: 3px;
  300. text-align: center;
  301. display: inline-block;
  302. }
  303. }
  304. }
  305. .apply-info-list {
  306. >p {
  307. background: #ededed;
  308. height: 40px;
  309. line-height: 40px;
  310. margin: 9px 0 0 0;
  311. span {
  312. display: inline-block;
  313. text-align: center;
  314. a {
  315. i {
  316. color: #333;
  317. &.active {
  318. color: #5078cb;
  319. }
  320. }
  321. }
  322. &:nth-child(1) {
  323. width: 186px;
  324. }
  325. &:nth-child(2) {
  326. width: 106px;
  327. }
  328. &:nth-child(3) {
  329. width: 200px;
  330. }
  331. &:nth-child(4) {
  332. width: 174px;
  333. }
  334. &:nth-child(5) {
  335. width: 152px;
  336. }
  337. &:nth-child(6) {
  338. width: 158px;
  339. }
  340. &:nth-child(7) {
  341. width: 180px;
  342. margin-left: 30px;
  343. }
  344. }
  345. }
  346. >ul {
  347. margin-bottom: 29px;
  348. > li {
  349. position: relative;
  350. min-height: 67px;
  351. line-height: 67px;
  352. border: 1px solid #ededed;
  353. >div {
  354. overflow-x: hidden;
  355. text-overflow: ellipsis;
  356. white-space: nowrap;
  357. display: inline-block;
  358. text-align: center;
  359. color: #3c3c3c;
  360. vertical-align: middle;
  361. &:nth-child(1) {
  362. width: 186px;
  363. }
  364. &:nth-child(2) {
  365. width: 106px;
  366. }
  367. &:nth-child(3) {
  368. width: 200px;
  369. }
  370. &:nth-child(4) {
  371. width: 174px;
  372. }
  373. &:nth-child(5) {
  374. width: 152px;
  375. }
  376. &:nth-child(6) {
  377. width: 158px;
  378. }
  379. &:nth-child(7) {
  380. width: 180px;
  381. margin-left: 32px;
  382. float: right;
  383. }
  384. &.date-content {
  385. span {
  386. &:first-child {
  387. font-size: 12px;
  388. color: #666;
  389. }
  390. color: #f71026;
  391. }
  392. i {
  393. font-style: normal;
  394. }
  395. }
  396. &.number-content {
  397. span {
  398. color: #5392f9;
  399. &.active {
  400. color: #ff9a00;
  401. }
  402. }
  403. >img {
  404. margin-bottom: 5px;
  405. margin-right: 2px;
  406. }
  407. }
  408. &.btn-content {
  409. > a {
  410. display: inline-block;
  411. width: 71px;
  412. height: 28px;
  413. line-height: 28px;
  414. color: #fff;
  415. background: #3c7cf5;
  416. border-radius: 3px;
  417. cursor: pointer;
  418. /* &:first-child {
  419. background: #ffa200;
  420. float: left;
  421. margin-top: 19px;
  422. }*/
  423. }
  424. .is-say-price {
  425. display: inline-block;
  426. color: #39ae05;
  427. margin-left: 11px;
  428. img {
  429. margin-bottom: 2px;
  430. }
  431. .say-price-history {
  432. position: absolute;
  433. top: 53px;
  434. right: 11px;
  435. line-height: normal;
  436. width: 198px;
  437. height: 0;
  438. background: #fff;
  439. border: 1px solid #fab89a;
  440. z-index: 1;
  441. overflow: hidden;
  442. transition: height 1s;
  443. -moz-transition: height 1s; /* Firefox 4 */
  444. -webkit-transition: height 1s; /* Safari 和 Chrome */
  445. -o-transition: height 1s; /* Opera */
  446. opacity: 0;
  447. p {
  448. color: #020202;
  449. font-weight: bold;
  450. margin: 0;
  451. &.price-title {
  452. background: #fee6db;
  453. height: 28px;
  454. line-height: 28px;
  455. }
  456. &.price-level {
  457. margin: 6px 0;
  458. text-align: left;
  459. }
  460. }
  461. > div {
  462. padding: 9px 12px;
  463. > div {
  464. display: inline-block;
  465. text-align: left;
  466. &:nth-child(1) {
  467. float: left;
  468. }
  469. &:nth-child(2) {
  470. margin-left: 32px;
  471. }
  472. span {
  473. color: #020202;
  474. margin: 0;
  475. &.red-text {
  476. color: #f62d37;
  477. }
  478. }
  479. &.pre-line {
  480. display: block;
  481. padding: 13px 0;
  482. border-bottom: 1px dashed #fee6db;
  483. }
  484. }
  485. ul {
  486. li {
  487. color: #333;
  488. height: 22px;
  489. line-height: 22px;
  490. padding: 0 6px;
  491. &:nth-child(odd) {
  492. background: #f6f5f4;
  493. }
  494. span {
  495. color: #333;
  496. display: inline-block;
  497. text-align: left;
  498. width: 50%;
  499. margin: 0;
  500. }
  501. &:last-child {
  502. span {
  503. color: #4290f7;
  504. }
  505. }
  506. }
  507. }
  508. }
  509. }
  510. &:hover {
  511. .say-price-history {
  512. opacity: 1;
  513. /* animation: expand 1s infinite;
  514. -webkit-animation: expand 1s infinite; !*Safari and Chrome*!
  515. animation-iteration-count: 1;
  516. -webkit-animation-iteration-count: 1;*/
  517. height: 210px;
  518. }
  519. }
  520. /* @keyframes expand {
  521. from {bottom: 58px}
  522. to {bottom: auto}
  523. }
  524. @-webkit-keyframes expand {
  525. from {bottom: 58px}
  526. to {bottom: auto}
  527. }*/
  528. }
  529. }
  530. }
  531. .expand-content {
  532. display: none;
  533. justify-content: space-between;
  534. padding: 0 236px 0 36px;
  535. background: #fffbf0;
  536. height: 45px;
  537. line-height: 45px;
  538. color: #020202;
  539. div {
  540. display: inline-block;
  541. span {
  542. color: #f71026;
  543. }
  544. }
  545. }
  546. &:hover {
  547. box-shadow: 1.5px 3px 7px 0 rgb( 178, 178, 179 );
  548. .expand-content {
  549. display: flex;
  550. }
  551. }
  552. .say-price {
  553. background-color: #e7eef9;
  554. height: 64px;
  555. line-height: 64px;
  556. display: none;
  557. >div {
  558. display: inline-block;
  559. position: relative;
  560. height: 64px;
  561. line-height: 64px;
  562. input {
  563. border-radius: 3px;
  564. }
  565. &:nth-child(1) {
  566. width: 282px;
  567. background: url('/images/applyPurchase/say-price.png')no-repeat;
  568. text-align: center;
  569. margin-right: 44px;
  570. }
  571. &:nth-child(2) {
  572. margin-right: 39px;
  573. input {
  574. width: 118px;
  575. height: 26px;
  576. border: 1px solid #5392f9;
  577. }
  578. select {
  579. position: absolute;
  580. top: 19px;
  581. width: 32px;
  582. height: 26px;
  583. background: url('/images/applyPurchase/arrow-down.png')no-repeat right center;
  584. -webkit-box-shadow: none;
  585. -moz-box-shadow: none;
  586. box-shadow: none;
  587. border: {
  588. left: none;
  589. top: none;
  590. bottom: none;
  591. right: 1px solid #5392f9;
  592. bottom-left-radius: 4px;
  593. top-left-radius: 4px;
  594. }
  595. color: #5392f9;
  596. font: small-caption;
  597. padding-left: 8px;
  598. & + input {
  599. padding-left: 34px;
  600. }
  601. }
  602. div {
  603. position: absolute;
  604. top: 19px;
  605. left: 38px;
  606. width: 32px;
  607. height: 26px;
  608. line-height: 26px;
  609. text-align: center;
  610. border: {
  611. left: none;
  612. top: none;
  613. bottom: none;
  614. right: 1px solid #5392f9;
  615. bottom-left-radius: 4px;
  616. top-left-radius: 4px;
  617. }
  618. color: #5392f9;
  619. & + input {
  620. padding-left: 34px;
  621. }
  622. }
  623. }
  624. &:nth-child(3) {
  625. margin-right: 37px;
  626. input {
  627. width: 32px;
  628. height: 26px;
  629. padding: 0 0 0 6px;
  630. }
  631. }
  632. &:nth-child(4) {
  633. margin-right: 132px;
  634. input {
  635. width: 118px;
  636. height: 26px;
  637. }
  638. }
  639. &:nth-child(5) {
  640. span {
  641. width: 71px;
  642. height: 28px;
  643. line-height: 28px;
  644. text-align: center;
  645. display: inline-block;
  646. cursor: pointer;
  647. &:first-child {
  648. background: #dedddd;
  649. margin-right: 10px;
  650. }
  651. &:last-child {
  652. background: #fa4701;
  653. color: #fff;
  654. }
  655. }
  656. }
  657. i {
  658. color: #e41515;
  659. position: relative;
  660. top: 2px;
  661. right: 3px;
  662. }
  663. }
  664. }
  665. &.active {
  666. border-color: #f71026;
  667. box-shadow: none;
  668. .expand-content {
  669. display: flex;
  670. -webkit-box-shadow: none;
  671. -moz-box-shadow: none;
  672. box-shadow: none;
  673. }
  674. .say-price {
  675. display: block;
  676. }
  677. }
  678. }
  679. }
  680. }
  681. .page-wrap {
  682. text-align: right;
  683. float: none;
  684. }
  685. .link-saler-box {
  686. width: 289px;
  687. height: auto;
  688. min-height: auto;
  689. border-radius: 2px;
  690. .title {
  691. background-color: #4290f7;
  692. height: 22px;
  693. line-height: 22px;
  694. margin-bottom: 20px;
  695. }
  696. .content {
  697. p {
  698. line-height: 20px;
  699. padding-top: 0;
  700. i {
  701. color: #4290f7;
  702. margin-right: 4px;
  703. }
  704. span {
  705. color: #f62d37;
  706. }
  707. }
  708. div {
  709. a {
  710. width: 78px;
  711. background: #4290f7;
  712. margin: 18px 0 13px 0;
  713. border-radius: 2px;
  714. }
  715. }
  716. }
  717. }
  718. }
  719. </style>