styles.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  1. @charset "utf-8";
  2. * {
  3. scrollbar-width: thin;
  4. scrollbar-track-color: transparent;
  5. }
  6. ::-webkit-scrollbar {
  7. width: 6px;
  8. height: 6px;
  9. }
  10. ::-webkit-scrollbar-track {
  11. background-color: transparent;
  12. }
  13. ::-webkit-scrollbar-thumb {
  14. min-width: 50px;
  15. min-height: 50px;
  16. background-color: #c1c1c1;
  17. border-radius: 5px;
  18. }
  19. ::-webkit-scrollbar-thumb:hover {
  20. background-color: rgba(0, 0, 0, 0.46);
  21. }
  22. html,
  23. body {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. body {
  28. padding: 0;
  29. margin: 0;
  30. font-weight: normal;
  31. font-style: normal;
  32. font-size: 12px;
  33. font-family: "微软雅黑", "Tahoma";
  34. vertical-align: baseline;
  35. text-align: justify;
  36. word-wrap: break-word;
  37. text-justify: inter-ideograph;
  38. color: #000000cc;
  39. }
  40. .navBody {
  41. background: rgba(33, 33, 41, 1);
  42. height: 36px;
  43. color: #fff;
  44. }
  45. .globalNav a {
  46. float: left;
  47. height: 36px;
  48. line-height: 36px;
  49. padding: 0 10px;
  50. color: #eee;
  51. position: relative;
  52. cursor: pointer;
  53. }
  54. .globalNav a:hover {
  55. background: #666e70;
  56. color: #fff;
  57. text-decoration: none;
  58. }
  59. .globalNav a.now {
  60. background: #008fff;
  61. color: #fff;
  62. font-weight: 600;
  63. }
  64. .globalNav .zhzd {
  65. float: left;
  66. height: 36px;
  67. position: relative;
  68. z-index: 999;
  69. }
  70. .globalNav .zhzd a b {
  71. border-color: #ffddc9 transparent transparent;
  72. border-right: 3px dashed transparent;
  73. border-style: solid dashed dashed;
  74. border-width: 3px 3px 0;
  75. display: inline-block;
  76. font-size: 0;
  77. height: 0;
  78. line-height: 0;
  79. width: 0;
  80. position: relative;
  81. top: -1px;
  82. left: 4px;
  83. }
  84. .globalNav .zhzd .zhzdMenu {
  85. position: absolute;
  86. left: 0;
  87. top: 29px;
  88. background: #fff;
  89. border: 1px solid #ccc;
  90. border-top: none;
  91. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  92. z-index: 0;
  93. display: none;
  94. }
  95. .globalNav .zhzd .zhzdMenu a {
  96. width: 100%;
  97. padding: 0;
  98. text-align: center;
  99. color: #3366cc;
  100. }
  101. .globalNav .zhzd .zhzdMenu a:hover {
  102. background: #f2f2f2;
  103. }
  104. .globalNav .zhzd a.now {
  105. background: #fff;
  106. border: 1px solid #ccc;
  107. border-bottom: none;
  108. border-top: none;
  109. color: #3366cc;
  110. z-index: 10;
  111. }
  112. .width1200 {
  113. max-width: 1200px;
  114. margin: 0 auto;
  115. }
  116. .logoCon {
  117. width: 100%;
  118. height: 60px;
  119. background: #fff;
  120. box-shadow: 0px -1px #0000001a inset;
  121. }
  122. .logo,
  123. .buttonCon {
  124. height: 60px;
  125. display: table;
  126. text-align: center;
  127. }
  128. .btn-login {
  129. background: rgba(47, 84, 235, 1);
  130. }
  131. .logoText {
  132. padding-left: 10px;
  133. font-weight: 500;
  134. font-size: 24px;
  135. }
  136. .table-cell {
  137. display: table-cell;
  138. vertical-align: middle;
  139. }
  140. .btnText {
  141. padding-right: 10px;
  142. font-size: 16px;
  143. font-weight: 500;
  144. }
  145. .bannerBox {
  146. /* height: 900px; */
  147. height: calc(100% - 96px);
  148. background: rgba(245, 247, 253, 1);
  149. }
  150. .banner {
  151. position: relative;
  152. width: 100%;
  153. height: 100%;
  154. /* max-height: 950px; */
  155. /*background: url(img/image_banner_01.png) no-repeat right -110px;*/
  156. }
  157. .banner .lottie {
  158. position: relative;
  159. z-index: 50;
  160. width: 100%;
  161. height: calc(100% - 83px);
  162. }
  163. .bannerTitleBox {
  164. position: absolute;
  165. top: 30%;
  166. z-index: 60;
  167. }
  168. .bannerTitle {
  169. font-size: 64px;
  170. font-weight: 600;
  171. }
  172. .bannerTitle1 {
  173. color: rgba(47, 84, 235, 1);
  174. /*transition: all 0.4s ease-in 0s;
  175. transform: translateX(-400px);*/
  176. }
  177. .bannerTitle2 {
  178. color: rgba(0, 0, 0, 0.8);
  179. /*transition: all 0.8s ease-in 0s;
  180. transform: translateX(-600px);*/
  181. }
  182. .bannerTitle3 {
  183. color: rgba(0, 0, 0, 0.5);
  184. font-size: 24px;
  185. /*transition: all 1.2s ease-in 0s;
  186. transform: translateX(-600px);*/
  187. }
  188. .btnHand {
  189. font-size: 24px;
  190. font-weight: 500;
  191. padding: 16px 32px;
  192. background: rgba(47, 84, 235, 1);
  193. /*transition: all 1.6s ease-in 0s;
  194. transform: translateX(-400px);*/
  195. }
  196. .moreBox {
  197. /*height: 83px;*/
  198. }
  199. .moreBox h4 {
  200. font-size: 14px;
  201. color: rgba(47, 84, 235, 1);
  202. }
  203. .moreBox .iconMore {
  204. width: 32px;
  205. height: 54px;
  206. background: url(img/css_sprites.png) no-repeat -80px -1078px;
  207. }
  208. #moreBox{
  209. margin: 1rem auto 0 auto;
  210. width: 2.4rem;
  211. height: 4rem;
  212. }
  213. .slogan {
  214. height: 320px;
  215. text-align: center;
  216. background: #00000099 url(img/image_banner_02.png) no-repeat;
  217. color: #fff;
  218. }
  219. .sloganSmall {
  220. padding-top: 100px;
  221. font-size: 18px;
  222. color: #ffffffcc;
  223. }
  224. .sloganBig {
  225. padding-top: 30px;
  226. font-size: 48px;
  227. }
  228. .sloganBig .blueBg {
  229. background: #2f54eb;
  230. border-radius: 8px;
  231. margin: 0 8px;
  232. padding: 3px 12px;
  233. }
  234. .videoListCon {
  235. padding: 120px 0;
  236. background: #f5f7fd;
  237. }
  238. .videoLeft {
  239. max-width: 843px;
  240. height: 474px;
  241. /*background: #000 url(img/image_video_cover_07.png) no-repeat;*/
  242. }
  243. .videoRight {
  244. max-width: 357px;
  245. height: 474px;
  246. }
  247. .videoRight .vjs-playlist {
  248. height: 474px;
  249. overflow-y: auto;
  250. }
  251. .videoRight ul li {
  252. width: 280px;
  253. list-style-type: none;
  254. padding: 0;
  255. margin: 0 0 20px 0;
  256. }
  257. .videoList img {
  258. width: 130px;
  259. height: 72px;
  260. }
  261. .videoList .videoImg {
  262. }
  263. .videoList .videoTitle {
  264. font-size: 14px;
  265. font-weight: 500px;
  266. line-height: 20px;
  267. }
  268. .videoList .textRrey {
  269. color: #00000099;
  270. }
  271. .productCon {
  272. margin: 120px 0 0 0;
  273. }
  274. .bigtTitle h4 {
  275. font-size: 48px;
  276. font-weight: 500;
  277. }
  278. .bigtTitle span {
  279. font-size: 18px;
  280. }
  281. .productList {
  282. padding: 48px 48px 0 48px;
  283. }
  284. .productLine {
  285. /*border-left: 2px solid rgba(0, 0, 0, 0.1);*/
  286. }
  287. .product {
  288. position: relative;
  289. }
  290. .productOne {
  291. height: 800px !important;
  292. }
  293. .productOne,
  294. .productTwo {
  295. height: 730px;
  296. border-left: 2px solid rgba(0, 0, 0, 0.1);
  297. }
  298. .productThree {
  299. height: 700px;
  300. }
  301. .productIco {
  302. position: absolute;
  303. top: -5px;
  304. left: -24px;
  305. width: 48px;
  306. height: 48px;
  307. }
  308. .productOneIco {
  309. background: url(img/css_sprites.png) no-repeat -113px -1068px;
  310. }
  311. .productTwoIco {
  312. background: url(img/css_sprites.png) no-repeat -160px -1068px;
  313. }
  314. .productThreeIco {
  315. background: url(img/css_sprites.png) no-repeat 0px -1148px;
  316. }
  317. .prodectLeftTitle {
  318. margin: 0 0 0 35px;
  319. }
  320. .prodectLeftTitle h3 {
  321. font-size: 36px;
  322. line-height: 48px;
  323. }
  324. .prodectLeftTitle .productText {
  325. font-size: 18px;
  326. line-height: 35px;
  327. }
  328. .productImg {
  329. width: 224px;
  330. height: 224px;
  331. }
  332. .showCartoon {
  333. transform: translateY(0px) !important;
  334. -webkit-transition-timing-function: ease-in-out;
  335. transition-timing-function: ease-in-out;
  336. opacity: 1 !important;
  337. }
  338. .hiddenTranX1 {
  339. opacity: 0;
  340. transition: all 0.8s ease-in 0s;
  341. transform: translateX(-200px);
  342. }
  343. .hiddenTranX2 {
  344. opacity: 0;
  345. transition: all 0.8s ease-in 0s;
  346. transform: translateX(200px);
  347. }
  348. .hiddenTranY1 {
  349. opacity: 0;
  350. transition: all 0.8s ease-in 0s;
  351. transform: translateY(-200px);
  352. }
  353. .hiddenTranY2 {
  354. opacity: 0;
  355. transition: all 0.8s ease-in 0s;
  356. transform: translateX(200px);
  357. }
  358. .productOneImg {
  359. /*background: url(img/css_sprites.png) no-repeat 0 0;*/
  360. /*transition-delay: 0.2s;*/
  361. }
  362. .productOneFree{
  363. position: absolute;
  364. top: -45px;
  365. right: -30px;
  366. }
  367. #productOneFree{
  368. width: 260px;
  369. height: 260px;
  370. }
  371. #productOneImg,
  372. #productTwoImg,
  373. #productThreeImg {
  374. position: relative;
  375. z-index: 50;
  376. width: 100%;
  377. height: 100%;
  378. }
  379. .productTwoImg {
  380. /*background: url(img/css_sprites.png) no-repeat 0 -224px;
  381. transition-delay: 0.2s;*/
  382. }
  383. .productThreeImg {
  384. /*background: url(img/css_sprites.png) no-repeat 0 -448px;
  385. transition-delay: 0.8s;*/
  386. }
  387. .productRImg {
  388. position: absolute;
  389. top: 0;
  390. left: 0;
  391. }
  392. .productOneRImg {
  393. width: 843px;
  394. height: 600px;
  395. background: url(img/image_cpgn_0103_bg.png) no-repeat;
  396. transition-delay: 0.2s;
  397. -webkit-transition-timing-function: ease-in-out;
  398. transition-timing-function: ease-in-out;
  399. }
  400. .productTwoRImg1 {
  401. width: 790px;
  402. height: 560px;
  403. background: url(img/image_cpgn_02_01.png) no-repeat;
  404. /*box-shadow: -20px -20px 40px -15px rgba(0, 0, 0, 0.24);*/
  405. transition-delay: 0.2s;
  406. -webkit-transition-timing-function: ease-in-out;
  407. transition-timing-function: ease-in-out;
  408. transform: translateX(200px);
  409. }
  410. .productTwoRImg2 {
  411. top: 64px;
  412. left: 95px;
  413. width: 695px;
  414. height: 496px;
  415. background: url(img/image_cpgn_02_02.png) no-repeat;
  416. box-shadow: -20px -20px 40px -10px rgba(0, 0, 0, 0.24);
  417. transition-delay: 0.4s;
  418. -webkit-transition-timing-function: ease-in-out;
  419. transition-timing-function: ease-in-out;
  420. transform: translateX(600px);
  421. }
  422. .productTwoRImg3 {
  423. top: 180px;
  424. left: 190px;
  425. width: 600px;
  426. height: 380px;
  427. background: url(img/image_cpgn_02_03.png) no-repeat;
  428. box-shadow: -20px -20px 40px -10px rgba(0, 0, 0, 0.24);
  429. transition-delay: 0.6s;
  430. -webkit-transition-timing-function: ease-in-out;
  431. transition-timing-function: ease-in-out;
  432. transform: translateX(600px);
  433. /*box-shadow: 0px 13.3px 53.3px rgba(0, 0, 0, 0.24);*/
  434. }
  435. .productThreeRImg1 {
  436. width: 843px;
  437. height: 600px;
  438. background: url(img/image_cpgn_0103_bg.png) no-repeat;
  439. transition-delay: 0.2s;
  440. -webkit-transition-timing-function: ease-in-out;
  441. transition-timing-function: ease-in-out;
  442. }
  443. .productThreeRImg2 {
  444. top: 107px;
  445. left: 171px;
  446. width: 502px;
  447. height: 386px;
  448. background: url(img/iamge_cpgn_03.png) no-repeat;
  449. box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.24);
  450. transition-delay: 0.4s;
  451. -webkit-transition-timing-function: ease-in-out;
  452. transition-timing-function: ease-in-out;
  453. }
  454. .productRT {
  455. transition-delay: 0.4s;
  456. -webkit-transition-timing-function: ease-in-out;
  457. transition-timing-function: ease-in-out;
  458. }
  459. /*.productOneR1{
  460. transition-delay: 0.4s;
  461. }
  462. .productOneR2{
  463. transition-delay: 0.6s;
  464. }
  465. .productOneR3{
  466. transition-delay: 0.8s;
  467. }
  468. .productOneR4{
  469. transition-delay:1s;
  470. }
  471. .productOneR5{
  472. transition-delay: 1.2s;
  473. }
  474. .productOneR6{
  475. transition-delay: 1.4s;
  476. }*/
  477. .productRT {
  478. position: absolute;
  479. top: 120px;
  480. left: 180px;
  481. width: 480px;
  482. height: 360px;
  483. background: rgba(255, 255, 255, 1);
  484. border-radius: 8px;
  485. }
  486. .productRT h4 {
  487. text-align: center;
  488. font-size: 18px;
  489. }
  490. .productRT ul {
  491. padding-top: 2.5rem;
  492. padding-left: 1.8rem;
  493. }
  494. .productRT ul li {
  495. float: left;
  496. list-style-type: none;
  497. width: 140px;
  498. height: 120px;
  499. text-align: center;
  500. padding: 20px 0;
  501. }
  502. .productRLImg {
  503. margin: 0 auto;
  504. }
  505. .productOneRLImg1 {
  506. width: 48px;
  507. height: 48px;
  508. background: url(img/css_sprites.png) no-repeat -48px -1152px;
  509. }
  510. .productOneRLImg2 {
  511. width: 48px;
  512. height: 48px;
  513. background: url(img/css_sprites.png) no-repeat -193px -1152px;
  514. }
  515. .productOneRLImg3 {
  516. width: 48px;
  517. height: 48px;
  518. background: url(img/css_sprites.png) no-repeat -144px -1152px;
  519. }
  520. .productOneRLImg4 {
  521. width: 48px;
  522. height: 48px;
  523. background: url(img/css_sprites.png) no-repeat -96px -1152px;
  524. }
  525. .productOneRLImg5 {
  526. width: 48px;
  527. height: 48px;
  528. background: url(img/css_sprites.png) no-repeat 0px -1194px;
  529. }
  530. .productOneRLImg6 {
  531. width: 140px;
  532. height: 48px;
  533. background: url(img/css_sprites.png) no-repeat -48px -1200px;
  534. }
  535. .productRight {
  536. width: 100%;
  537. height: 730px;
  538. overflow: hidden;
  539. }
  540. .classify {
  541. padding: 120px 0 120px 0;
  542. background: rgba(245, 247, 253, 1);
  543. }
  544. .classifyList ul li {
  545. float: left;
  546. list-style-type: none;
  547. width: 275px;
  548. height: 275px;
  549. border-radius: 24px;
  550. text-align: center;
  551. background: #fff;
  552. }
  553. .classifyImg {
  554. margin: 80px 0 0 0;
  555. width: 80px;
  556. height: 80px;
  557. }
  558. .classifyImg1 {
  559. background: url(img/css_sprites.png) no-repeat -80px -835px;
  560. }
  561. .classifyImg2 {
  562. background: url(img/css_sprites.png) no-repeat -80px -672px;
  563. }
  564. .classifyImg3 {
  565. background: url(img/css_sprites.png) no-repeat 0px -752px;
  566. }
  567. .classifyImg4 {
  568. background: url(img/css_sprites.png) no-repeat -80px -990px;
  569. }
  570. .classifyImg5 {
  571. background: url(img/css_sprites.png) no-repeat -160px -915px;
  572. }
  573. .classifyImg6 {
  574. background: url(img/css_sprites.png) no-repeat 0px -1073px;
  575. }
  576. .classifyImg7 {
  577. background: url(img/css_sprites.png) no-repeat 0px -915px;
  578. }
  579. .classifyImg8 {
  580. background: url(img/css_sprites.png) no-repeat -160px -752px;
  581. }
  582. .classifyList ul li:hover h4 {
  583. color: rgba(47, 84, 235, 1);
  584. }
  585. .classifyList ul li:hover .classifyImg1 {
  586. background: url(img/css_sprites.png) no-repeat 0px -835px;
  587. }
  588. .classifyList ul li:hover .classifyImg2 {
  589. background: url(img/css_sprites.png) no-repeat 0px -672px;
  590. }
  591. .classifyList ul li:hover .classifyImg3 {
  592. background: url(img/css_sprites.png) no-repeat -160px -672px;
  593. }
  594. .classifyList ul li:hover .classifyImg4 {
  595. background: url(img/css_sprites.png) no-repeat 0px -990px;
  596. }
  597. .classifyList ul li:hover .classifyImg5 {
  598. background: url(img/css_sprites.png) no-repeat -80px -915px;
  599. }
  600. .classifyList ul li:hover .classifyImg6 {
  601. background: url(img/css_sprites.png) no-repeat -160px -993px;
  602. }
  603. .classifyList ul li:hover .classifyImg7 {
  604. background: url(img/css_sprites.png) no-repeat -160px -835px;
  605. }
  606. .classifyList ul li:hover .classifyImg8 {
  607. background: url(img/css_sprites.png) no-repeat -80px -752px;
  608. }
  609. .classifyList h4 {
  610. font-size: 24px;
  611. color: rgba(155, 162, 204, 1);
  612. }
  613. .version {
  614. margin: 120px 0 120px 0;
  615. }
  616. .versionTable {
  617. margin-top: 65px;
  618. }
  619. .versionTableItem {
  620. height: 75px;
  621. color: #fff;
  622. border-radius: 24px 24px 0 0;
  623. }
  624. .versionBgYellow {
  625. background: rgba(250, 173, 20, 1);
  626. }
  627. .versionBgBlue {
  628. background: rgba(47, 84, 235, 1);
  629. }
  630. .versionBigtitle {
  631. padding-top: 7px;
  632. font-size: 24px;
  633. font-weight: 600;
  634. }
  635. .versionMeta {
  636. font-size: 16px;
  637. }
  638. .versionTableTd {
  639. display: flex;
  640. justify-content: center;
  641. align-items: center;
  642. height: 75px;
  643. font-size: 16px;
  644. }
  645. /*.versionTableItemW, .versionTableBodyW{
  646. width: 280px;
  647. }*/
  648. .versionTableTdBig {
  649. font-size: 18px;
  650. font-weight: 600;
  651. }
  652. .versionTableBodyBox {
  653. border-radius: 0 0 24px 24px;
  654. padding: 0 0 30px 0;
  655. box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  656. }
  657. .iconWidth {
  658. display: inline-block;
  659. width: 24px;
  660. height: 24px;
  661. }
  662. .iconVersion {
  663. background: url(img/css_sprites.png) no-repeat -200px -1126px;
  664. }
  665. .iconCorrect {
  666. background: url(img/css_sprites.png) no-repeat -210px -1090px;
  667. }
  668. .iconWrong {
  669. background: url(img/css_sprites.png) no-repeat -83px -1125px;
  670. }
  671. .iconPhone {
  672. background: url(img/css_sprites.png) no-repeat -106px -1124px;
  673. }
  674. .iconQQ {
  675. background: url(img/css_sprites.png) no-repeat -153px -1124px;
  676. }
  677. .bottomBox {
  678. width: 100%;
  679. text-align: center;
  680. padding: 80px 0 20px 0;
  681. background: rgba(5, 13, 22, 1);
  682. color: #fff;
  683. }
  684. .bottomItem {
  685. text-align: left;
  686. }
  687. .bottomItem h4 {
  688. font-size: 18px;
  689. }
  690. .bottomList {
  691. padding: 0;
  692. }
  693. .bottomList .phone {
  694. font-size: 16px;
  695. color: rgba(255, 255, 255, 1);
  696. }
  697. .bottomList img {
  698. width: 160px;
  699. height: 160px;
  700. }
  701. .bottomList li {
  702. font-size: 16px;
  703. list-style-type: none;
  704. display: flex;
  705. /*justify-content: center;*/
  706. align-items: center;
  707. line-height: 24px;
  708. padding: 10px 0;
  709. color: rgba(255, 255, 255, 0.6);
  710. }
  711. .bottomList li a {
  712. color: rgba(255, 255, 255, 0.6);
  713. }
  714. .bottomList li a:hover {
  715. color: rgba(255, 255, 255, 1);
  716. }
  717. .backTop {
  718. display: none;
  719. position: fixed;
  720. bottom: 150px;
  721. right: 20px;
  722. z-index: 99;
  723. background: rgba(47, 84, 235, 1);
  724. color: #fff;
  725. width: 76px;
  726. height: 76px;
  727. cursor: pointer;
  728. }
  729. .backTopBox {
  730. width: 76px;
  731. height: 76px;
  732. display: flex;
  733. justify-content: center;
  734. align-items: center;
  735. }
  736. .backTop:hover {
  737. background: rgba(30, 67, 222, 1);
  738. }
  739. .iconImgBox {
  740. text-align: center;
  741. }
  742. .iconTop {
  743. background: url(img/css_sprites.png) no-repeat -208px -1072px;
  744. }
  745. @media (min-width: 576px){
  746. .modal-dialog.modal-midell-dialog{
  747. width: 595px !important;
  748. max-width: 595px !important;
  749. }
  750. }
  751. /*.modal.show .modal-midell-dialog{
  752. width: 595px !important;
  753. max-width: 595px !important;
  754. }*/