ui.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html {
  6. font-size: 13px;
  7. font-family: Helvetica, "Microsoft Yahei", Menlo, Monaco, Consolas, "Courier New", monospace;
  8. -ms-text-size-adjust: 100%;
  9. -webkit-text-size-adjust: 100%;
  10. line-height: 24px;
  11. color: #444444;
  12. background-color: #fafafa;
  13. }
  14. input,
  15. textarea,
  16. select,
  17. option,
  18. button {
  19. font-family: Helvetica, "Microsoft Yahei", Menlo, Monaco, Consolas, "Courier New", monospace;
  20. }
  21. article,
  22. aside,
  23. details,
  24. figcaption,
  25. figure,
  26. footer,
  27. header,
  28. main,
  29. nav,
  30. section,
  31. summary,
  32. .block {
  33. display: block;
  34. }
  35. .inline {
  36. display: inline;
  37. }
  38. .inline-block {
  39. display: inline-block;
  40. }
  41. .dis-table {
  42. display: table;
  43. }
  44. .dis-table-cell {
  45. display: table-cell;
  46. }
  47. .dis-flex {
  48. display: flex;
  49. }
  50. audio,
  51. canvas,
  52. progress,
  53. video {
  54. display: inline-block;
  55. vertical-align: baseline;
  56. }
  57. audio:not([controls]) {
  58. display: none;
  59. height: 0;
  60. }
  61. [hidden],
  62. template,
  63. .hidden {
  64. display: none;
  65. }
  66. .opacity {
  67. opacity: 0;
  68. }
  69. .opacity-half {
  70. opacity: .5;
  71. }
  72. a,
  73. .text-link {
  74. color: #428bca;
  75. text-decoration: none;
  76. cursor: pointer;
  77. }
  78. a:hover,
  79. .text-link:hover {
  80. color: #399ade;
  81. text-decoration: none;
  82. }
  83. a:focus,
  84. .text-link:focus {
  85. outline: none;
  86. }
  87. b,
  88. strong,
  89. .text-bold {
  90. font-weight: bold;
  91. }
  92. dfn,
  93. .text-italic {
  94. font-style: italic;
  95. }
  96. h1,
  97. .text-h1 {
  98. font-size: 2em;
  99. margin-bottom: 0.67em;
  100. }
  101. h2,
  102. .text-h2 {
  103. font-size: 1.6em;
  104. margin-bottom: 0.625em;
  105. }
  106. h3,
  107. .text-h3 {
  108. font: 1.2em;
  109. margin-bottom: 0.5em;
  110. }
  111. h4,
  112. h5,
  113. h6,
  114. .text-h4,
  115. .text-h5,
  116. .text-h6 {
  117. font-size: 1em;
  118. margin-bottom: .3em;
  119. }
  120. small,
  121. .text-small {
  122. font-size: .8em;
  123. }
  124. sub,
  125. sup,
  126. .text-sup,
  127. .text-sub {
  128. font-size: .7em;
  129. line-height: 0;
  130. position: relative;
  131. vertical-align: baseline;
  132. }
  133. sup,
  134. .text-sup {
  135. top: -0.5em;
  136. }
  137. sub,
  138. .text-sub {
  139. bottom: -0.25em;
  140. }
  141. .figure,
  142. .blockquote {
  143. margin: 1em 1.5em;
  144. }
  145. pre {
  146. overflow: auto;
  147. margin: 0;
  148. padding: .4em 1em;
  149. }
  150. code,
  151. kbd,
  152. pre,
  153. samp {
  154. font-family: monospace, monospace;
  155. font-size: 1em;
  156. }
  157. .text-left {
  158. text-align: left;
  159. }
  160. .text-right {
  161. text-align: right;
  162. }
  163. .text-center {
  164. text-align: center;
  165. }
  166. .list-no-style {
  167. list-style: none;
  168. }
  169. img {
  170. border: none;
  171. }
  172. svg:not(:root) {
  173. overflow: hidden;
  174. }
  175. label {
  176. font-weight: bold;
  177. }
  178. textarea,
  179. input,
  180. .ipt {
  181. padding: .6em;
  182. line-height: normal;
  183. border: 1px solid #bbbbbb;
  184. }
  185. textarea:focus,
  186. input:focus,
  187. .ipt:focus {
  188. background-color: #f2fffc;
  189. outline: none;
  190. }
  191. button {
  192. overflow: visible;
  193. padding: .6em 1.2em;
  194. }
  195. button,
  196. select {
  197. text-transform: none;
  198. }
  199. button:focus,
  200. select:focus {
  201. outline: none;
  202. }
  203. button,
  204. input[type="button"],
  205. input[type="reset"],
  206. input[type="submit"] {
  207. -webkit-appearance: button;
  208. -moz-appearance: button;
  209. cursor: pointer;
  210. background-color: #888888;
  211. color: #fafafa;
  212. border: none;
  213. }
  214. button:hover,
  215. input[type="button"]:hover,
  216. input[type="reset"]:hover,
  217. input[type="submit"]:hover {
  218. background-color: #444444;
  219. color: #ffffff;
  220. }
  221. button[disabled],
  222. html input[disabled] {
  223. cursor: default;
  224. }
  225. button::-moz-focus-inner,
  226. input::-moz-focus-inner {
  227. border: 0;
  228. padding: 0;
  229. }
  230. input[type="checkbox"],
  231. input[type="radio"] {
  232. box-sizing: border-box;
  233. padding: 0;
  234. }
  235. input[type="search"] {
  236. -webkit-appearance: textfield;
  237. -moz-appearance: textfield;
  238. -moz-box-sizing: content-box;
  239. -webkit-box-sizing: content-box;
  240. box-sizing: content-box;
  241. }
  242. fieldset {
  243. border: 1px solid #bbbbbb;
  244. margin: 0 2px;
  245. padding: 0.4em 0.8em 0.8em;
  246. }
  247. legend {
  248. border: 0;
  249. padding: 0;
  250. }
  251. textarea {
  252. overflow: auto;
  253. border: 1px solid #bbbbbb;
  254. padding: .6em;
  255. }
  256. textarea:focus {
  257. background-color: #f2fffc;
  258. outline: none;
  259. }
  260. optgroup {
  261. font-weight: bold;
  262. }
  263. table {
  264. background-color: transparent;
  265. border-collapse: collapse;
  266. border-spacing: 0;
  267. }
  268. td,
  269. th {
  270. padding: 0;
  271. }
  272. hr {
  273. -moz-box-sizing: content-box;
  274. box-sizing: content-box;
  275. height: 0;
  276. border: none;
  277. border-bottom: 1px solid #dddddd;
  278. margin-bottom: .75em;
  279. }
  280. .radius {
  281. border-radius: .25em;
  282. }
  283. .text-truncate {
  284. overflow: hidden;
  285. text-overflow: ellipsis;
  286. white-space: nowrap;
  287. display: inline-block;
  288. vertical-align: top;
  289. }
  290. pre {
  291. line-height: 1.6;
  292. overflow: auto;
  293. padding: 0;
  294. }
  295. dt {
  296. font-weight: bold;
  297. }
  298. .left {
  299. float: left;
  300. }
  301. .right {
  302. float: right;
  303. }
  304. .clear::after {
  305. clear: both;
  306. content: " ";
  307. width: 0;
  308. height: 0;
  309. display: block;
  310. }
  311. .hide {
  312. display: none;
  313. }
  314. .grid-1-12 {
  315. width: 8.33%;
  316. }
  317. .grid-2-12,
  318. .grid-1-6 {
  319. width: 16.67%;
  320. }
  321. .grid-3-12,
  322. .grid-1-4 {
  323. width: 25%;
  324. }
  325. .grid-4-12,
  326. .grid-1-3 {
  327. width: 33%;
  328. }
  329. .grid-5-12 {
  330. width: 41.67%;
  331. }
  332. .grid-6-12,
  333. .grid-1-2 {
  334. width: 50%;
  335. }
  336. .grid-7-12 {
  337. width: 58.33%;
  338. }
  339. .grid-8-12,
  340. .grid-2-3 {
  341. width: 66.67%;
  342. }
  343. .grid-9-12,
  344. .grid-3-4 {
  345. width: 75%;
  346. }
  347. .grid-10-12,
  348. .grid-5-6 {
  349. width: 83.33%;
  350. }
  351. .grid-11-12 {
  352. width: 91.67%;
  353. }
  354. *[class*="grid-"] {
  355. box-sizing: content-box;
  356. }
  357. .grid-1-5 {
  358. width: 20%;
  359. }
  360. .grid-2-5 {
  361. width: 40%;
  362. }
  363. .grid-3-5 {
  364. width: 60%;
  365. }
  366. .grid-4-5 {
  367. width: 80%;
  368. }
  369. .btn-small {
  370. font-size: 10.8px;
  371. padding: .4em .9em;
  372. }
  373. .btn-medium {
  374. font-size: 12px;
  375. padding: .4em .9em;
  376. }
  377. .btn-large {
  378. font-size: 14.4px;
  379. }
  380. .btn-green {
  381. background-color: #65ad4e;
  382. border: 1px solid #65ad4e;
  383. }
  384. .btn-green:hover {
  385. background-color: #71bf57;
  386. color: #FFF;
  387. }
  388. .btn-blue {
  389. background-color: #428bca;
  390. border: 1px solid #428bca;
  391. }
  392. .btn-blue:hover {
  393. background-color: #539cdb;
  394. color: #FFF;
  395. }
  396. .btn-red {
  397. color: #FFF;
  398. background-color: #d9453d;
  399. border: 1px solid #d9453d;
  400. }
  401. .btn-red:hover {
  402. background-color: #ff635a;
  403. color: #FFF;
  404. }
  405. .btn-orange {
  406. background-color: #df7514;
  407. border: 1px solid #df7514;
  408. }
  409. .btn-orange:hover {
  410. background-color: #df8229;
  411. color: #FFF;
  412. }
  413. .btn-black {
  414. background-color: #444444;
  415. border: 1px solid #444444;
  416. }
  417. .btn-black:hover {
  418. background-color: #383838;
  419. color: #FFF;
  420. }
  421. .btn-gray {
  422. background-color: #f0f0f0;
  423. color: #444444;
  424. border: 1px solid #d0d0d0;
  425. }
  426. .btn-gray:hover {
  427. background-color: #fafafa;
  428. color: #444444;
  429. }
  430. .btn-active {
  431. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset, 0 0 4px rgba(0, 0, 0, 0.15) inset;
  432. }
  433. .btn-header {
  434. margin-top: -1px;
  435. color: white;
  436. padding: 0 10px;
  437. }
  438. .btn-link {
  439. overflow: visible;
  440. color: white;
  441. padding: .6em 1.2em;
  442. }
  443. .btn-radius {
  444. border-radius: .25em;
  445. }
  446. .btn-left-radius {
  447. border-top-left-radius: .25em;
  448. border-bottom-left-radius: .25em;
  449. }
  450. .btn-right-radius {
  451. border-top-right-radius: .25em;
  452. border-bottom-right-radius: .25em;
  453. }
  454. .btn-block {
  455. display: block;
  456. width: 100%;
  457. box-sizing: content-box;
  458. text-align: center;
  459. }
  460. .btn-disabled {
  461. opacity: .6;
  462. cursor: not-allowed;
  463. box-shadow: none;
  464. background-image: none !important;
  465. border: none;
  466. }
  467. .btn-disabled:hover {
  468. background-image: none !important;
  469. color: #ffffff;
  470. }
  471. .ipt:focus {
  472. border-color: #428bca;
  473. }
  474. .ipt-radius {
  475. border-radius: .25em;
  476. }
  477. .ipt-small {
  478. font-size: 9.6px;
  479. }
  480. .ipt-large {
  481. font-size: 14.4px;
  482. }
  483. .ipt-textarea {
  484. height: auto !important;
  485. width: auto;
  486. }
  487. .ipt-disabled,
  488. input[disabled] {
  489. background-color: #f2f2f2 !important;
  490. color: #888;
  491. cursor: not-allowed;
  492. }
  493. .ipt-disabled:focus,
  494. input[disabled]:focus {
  495. background-color: #f2f2f2 !important;
  496. }
  497. .ipt-readonly:focus,
  498. input[readonly]:focus {
  499. background-color: #f2f2f2 !important;
  500. }
  501. .ipt-error {
  502. border-color: #b63b2c !important;
  503. background-color: #fff0f0 !important;
  504. }
  505. .form label {
  506. margin-right: 1em;
  507. }
  508. .form .help {
  509. color: #999999;
  510. padding-top: .6em;
  511. display: inline-block;
  512. }
  513. .form-stack label {
  514. display: block;
  515. }
  516. .form-stack .field {
  517. margin-bottom: 1em;
  518. }
  519. .form-align label,
  520. .form-align .form-label {
  521. display: inline-block;
  522. width: 120px;
  523. text-align: right;
  524. margin-right: 1em;
  525. }
  526. .form-align .field {
  527. margin-bottom: 1em;
  528. }
  529. label.text-left {
  530. text-align: left;
  531. }
  532. label.req:after {
  533. content: "*";
  534. color: #d9453d;
  535. }
  536. ul.menu > li {
  537. list-style: none;
  538. }
  539. ul.menu > li > a {
  540. padding: .8em 1.2em;
  541. }
  542. ul.menu > li > a:hover {
  543. background-color: #eaeaea;
  544. color: #444444;
  545. }
  546. ul.menu > li.current > a,
  547. ul.menu > li.hover > a {
  548. color: #444444;
  549. }
  550. ul.menu > li.head {
  551. font-weight: bold;
  552. padding: .8em 1.2em;
  553. }
  554. ul.menu > li.down:hover > ul.menu-down {
  555. display: block;
  556. }
  557. ul.menu > li.border-bottom {
  558. border-bottom: 1px solid #bbbbbb;
  559. height: 0;
  560. margin: .5em 0;
  561. }
  562. ul.menu-line > li,
  563. ul.menu-line > li > a {
  564. display: inline-block;
  565. }
  566. ul.menu-line > li.down {
  567. position: relative;
  568. }
  569. ul.menu-line > li.down > a:after {
  570. content: "\25BE";
  571. margin-left: .4em;
  572. }
  573. ul.menu-line > li.down > ul.menu-down {
  574. top: 2.1em;
  575. width: 150%;
  576. }
  577. ul.menu-line > li.hover {
  578. position: relative;
  579. }
  580. ul.menu-line > li.hover > a:after {
  581. position: absolute;
  582. content: "\25B4";
  583. left: 50%;
  584. bottom: -1.1em;
  585. margin-left: -4px;
  586. }
  587. ul.menu-vertical > li > a,
  588. ul.menu-down > li > a,
  589. ul.menu-vertical > li.head,
  590. ul.menu-down > li.head {
  591. display: block;
  592. padding: .4em 1.2em;
  593. }
  594. ul.menu-vertical > li.down,
  595. ul.menu-down > li.down {
  596. position: relative;
  597. }
  598. ul.menu-vertical > li.down > a:after,
  599. ul.menu-down > li.down > a:after {
  600. content: "\25B8";
  601. position: absolute;
  602. right: .6em;
  603. }
  604. ul.menu-vertical > li.hover,
  605. ul.menu-down > li.hover {
  606. position: relative;
  607. }
  608. ul.menu-vertical > li.hover > a:after,
  609. ul.menu-down > li.hover > a:after {
  610. content: "\25B8";
  611. position: absolute;
  612. left: .5em;
  613. }
  614. ul.menu-border,
  615. ul.menu-down {
  616. border: 1px solid #bbbbbb;
  617. }
  618. ul.menu-border > li.head,
  619. ul.menu-down > li.head {
  620. border-bottom: 1px solid #bbbbbb;
  621. }
  622. ul.menu-down {
  623. position: absolute;
  624. display: none;
  625. z-index: 99;
  626. box-shadow: 0 0 2px #666666;
  627. background-color: #ffffff;
  628. }
  629. ul.menu-down-show {
  630. position: absolute;
  631. z-index: 99;
  632. box-shadow: 0 0 2px #666666;
  633. background-color: #ffffff;
  634. }
  635. ul.menu-radius {
  636. border-radius: .3em;
  637. }
  638. ul.menu-radius > li:first-child {
  639. border-top-left-radius: .3em;
  640. border-top-right-radius: .3em;
  641. }
  642. ul.menu-radius > li:first-child > a {
  643. border-top-left-radius: .2em;
  644. border-top-right-radius: .2em;
  645. }
  646. ul.menu-radius > li:last-child {
  647. border-bottom-left-radius: .3em;
  648. border-bottom-right-radius: .3em;
  649. }
  650. ul.menu-radius > li:last-child > a {
  651. border-bottom-left-radius: .2em;
  652. border-bottom-right-radius: .2em;
  653. }
  654. .drop {
  655. position: relative;
  656. }
  657. .drop:hover > .drop-down {
  658. position: absolute;
  659. top: 0;
  660. left: 0;
  661. width: 200%;
  662. display: block;
  663. }
  664. .drop > .drop-down {
  665. display: none;
  666. border: 1px solid #bbbbbb;
  667. box-shadow: 0 0 3px #666666;
  668. background-color: #ffffff;
  669. }
  670. .drop-bottom:after {
  671. content: "\25BE";
  672. margin-left: .4em;
  673. }
  674. .drop-top:after {
  675. content: "\25B4";
  676. margin-left: .4em;
  677. }
  678. .panel {
  679. border: 1px solid #cccccc;
  680. }
  681. .panel .panel-header {
  682. font-size: 16px;
  683. padding: .6em 1.2em;
  684. background-color: #eeeeee;
  685. border-bottom: 1px solid #cccccc;
  686. }
  687. .panel .panel-body {
  688. background-color: white;
  689. }
  690. .panel .panel-body .panel-desc {
  691. padding: 0 40px 20px 40px;
  692. }
  693. .panel .panel-content {
  694. padding: 1em 1.2em;
  695. }
  696. .panel .panel-footer {
  697. padding: .6em 1.2em;
  698. background-color: #eeeeee;
  699. border-top: 1px solid #cccccc;
  700. }
  701. .panel.panel-radius {
  702. border-radius: .3em;
  703. }
  704. .panel.panel-radius .panel-header {
  705. border-top-left-radius: .3em;
  706. border-top-right-radius: .3em;
  707. }
  708. .panel.panel-radius .panel-footer {
  709. border-bottom-left-radius: .3em;
  710. border-bottom-right-radius: .3em;
  711. }
  712. .panel.panel-radius .panel-content {
  713. border-bottom-left-radius: .3em;
  714. border-bottom-right-radius: .3em;
  715. }
  716. .panel.panel-info {
  717. border-color: #85c5e5;
  718. }
  719. .panel.panel-info > .panel-header {
  720. color: #31708f;
  721. background-color: #d9edf7;
  722. border-color: #85c5e5;
  723. }
  724. .panel.panel-warning {
  725. border-color: #F0C36D;
  726. }
  727. .panel.panel-warning > .panel-header {
  728. background-color: #F9EDBE;
  729. border-color: #F0C36D;
  730. }
  731. .label {
  732. padding: 2px 6px;
  733. color: #ffffff;
  734. }
  735. .label-red {
  736. background-color: #d9453d;
  737. }
  738. .label-blue {
  739. background-color: #428bca;
  740. }
  741. .label-gray {
  742. background-color: #999999;
  743. }
  744. .label-green {
  745. background-color: #65ad4e;
  746. }
  747. .label-green:hover {
  748. background-color: #71bf57;
  749. color: #FFF;
  750. }
  751. .label-orange {
  752. background-color: #df7514;
  753. }
  754. .label-black {
  755. background-color: #444444;
  756. }
  757. .label-radius {
  758. border-radius: .2em;
  759. }
  760. .label-link {
  761. color: #ffffff;
  762. }
  763. .label-link:hover {
  764. color: #ffffff;
  765. }
  766. .breads .bread:after {
  767. content: "/";
  768. font-weight: bold;
  769. margin: 0 4px 0 7px;
  770. color: #444444;
  771. }
  772. .breads .bread:last-child:after {
  773. content: "";
  774. margin: 0;
  775. }
  776. .alert {
  777. padding: .6em 1.5em;
  778. margin-bottom: 10px;
  779. }
  780. .alert i {
  781. margin-right: 8px;
  782. }
  783. .alert-radius {
  784. border-radius: .25em;
  785. }
  786. .alert-red {
  787. color: #d9453d;
  788. border: 1px solid #be2d25;
  789. background-color: #fae9e8;
  790. }
  791. .alert-blue {
  792. color: #428bca;
  793. border: 1px solid #3071a9;
  794. background-color: #f5f9fc;
  795. }
  796. .alert-green {
  797. color: #65ad4e;
  798. border: 1px solid #508a3e;
  799. background-color: #edf6eb;
  800. }
  801. .alert-gray {
  802. color: #999999;
  803. border: 1px solid #808080;
  804. background-color: #f2f2f2;
  805. }
  806. .alert-orange {
  807. color: #df7514;
  808. border: 1px solid #b05c10;
  809. background-color: #fcecdd;
  810. }
  811. .white-popup-block {
  812. background: #FFF;
  813. padding: 20px 30px;
  814. text-align: left;
  815. max-width: 650px;
  816. margin: 40px auto;
  817. position: relative;
  818. }
  819. .white-popup-block p {
  820. font-size: 14px;
  821. }
  822. table th,
  823. table td {
  824. padding: .3em .6em;
  825. line-height: 30px;
  826. }
  827. .table-border {
  828. border: 1px solid #d6d6d6;
  829. }
  830. .table-border tr {
  831. border-top: 1px solid #eaeaea;
  832. }
  833. .table-border tr th,
  834. .table-border tr td {
  835. border-top: 1px solid #eaeaea;
  836. }
  837. .table-border tr:first-child {
  838. border-top: none;
  839. }
  840. .table-border thead {
  841. border-bottom: 1px solid #d6d6d6;
  842. }
  843. .table-block {
  844. width: 100%;
  845. box-sizing: border-box;
  846. }
  847. .table-radius {
  848. border-collapse: separate !important;
  849. border-radius: .3em;
  850. }
  851. .table-radius thead:first-child {
  852. border-top-left-radius: .3em;
  853. border-top-right-radius: .3em;
  854. }
  855. .table-radius thead:first-child tr:first-child {
  856. border-top-left-radius: .3em;
  857. }
  858. .table-radius thead:first-child tr:first-child > th:first-child {
  859. border-top-left-radius: .3em;
  860. }
  861. .table-radius thead:first-child tr:first-child > th:last-child {
  862. border-top-right-radius: .3em;
  863. }
  864. .table-radius tbody {
  865. border-bottom-left-radius: .3em;
  866. border-bottom-right-radius: .3em;
  867. }
  868. .table-radius tbody tr:last-child {
  869. border-bottom-left-radius: .3em;
  870. border-bottom-right-radius: .3em;
  871. }
  872. .table-radius tbody tr:last-child > td:first-child {
  873. border-bottom-left-radius: .3em;
  874. }
  875. .table-radius tbody tr:last-child > td:last-child {
  876. border-bottom-right-radius: .3em;
  877. }