list-style-mb.scss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. $horizontal: 480px;
  2. body {
  3. font-family: 'Helvetica Neue';
  4. }
  5. a:focus {
  6. outline: none;
  7. }
  8. a:focus-visible {
  9. outline: none;
  10. }
  11. button:focus-visible {
  12. outline: none;
  13. }
  14. img:focus-visible {
  15. outline: none;
  16. }
  17. a {
  18. text-decoration: none;
  19. }
  20. .text-hhh {
  21. color: #EE7800;
  22. }
  23. .navbar {
  24. box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
  25. -webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
  26. -moz-box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
  27. padding-top: 5px;
  28. padding-bottom: 5px;
  29. background-color: white !important;
  30. z-index: 99;
  31. &-toggler {
  32. padding-left: 0;
  33. border-color: transparent !important;
  34. &:focus {
  35. box-shadow: none;
  36. }
  37. }
  38. &-toggler-icon {
  39. display: flex;
  40. justify-items: center;
  41. i {
  42. font-size: 25px;
  43. line-height: 30px;
  44. display: inline-block;
  45. }
  46. }
  47. &-search {
  48. padding-right: 2px;
  49. }
  50. &-brand {
  51. font-size: 1.5rem;
  52. }
  53. }
  54. .navbar-main.sticky {
  55. position: fixed;
  56. top: 0;
  57. width: 100%;
  58. }
  59. .navbar-main.sticky + .sec-01 {
  60. padding-top: 58px;
  61. }
  62. .fixed_menu {
  63. height: 78px;
  64. position: fixed;
  65. z-index: 4;
  66. bottom: 0;
  67. left: 0;
  68. width: 100%;
  69. background-color: #fff;
  70. box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  71. -webkit-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  72. -moz-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  73. //padding-bottom: 16px;
  74. @media (min-width: $horizontal) {
  75. height: 50px;
  76. }
  77. .row {
  78. @media (min-width: $horizontal) {
  79. height: 50px;
  80. }
  81. }
  82. &__box {
  83. @media (min-width: $horizontal) {
  84. width: 100%;
  85. height: 100%;
  86. }
  87. img {
  88. &:focus-visible {
  89. outline: none;
  90. }
  91. @media (min-width: $horizontal) {
  92. width: 100%;
  93. height: 100%;
  94. }
  95. }
  96. }
  97. }
  98. .sec-menu {
  99. display: none;
  100. z-index: 105;
  101. position: absolute;
  102. top: 0;
  103. left: 0;
  104. right: 0;
  105. font-size: 14px;
  106. &-block {
  107. padding-top: 61px;
  108. margin:0;
  109. // transform: translateX(-500px);
  110. transition: transform .5s;
  111. position: fixed;
  112. top: 0;
  113. left: -100%;
  114. right: 0;
  115. height: 100%;
  116. overflow-y: scroll;
  117. max-width: 100%;
  118. background-color: white;
  119. &.slidein {
  120. //transform: translateX(0px);
  121. -webkit-animation: slidein 0.3s forwards;
  122. animation: slidein 0.3s forwards;
  123. }
  124. &.slideout {
  125. //transform: translateX(0px);
  126. -webkit-animation: slideout 0.3s forwards;
  127. animation: slideout 0.3s forwards;
  128. }
  129. }
  130. &-list {
  131. background: white;
  132. margin-bottom: 0;
  133. .navbar-nav {
  134. padding: 0 2rem;
  135. width: 100%;
  136. .dropdown-menu {
  137. border: none;
  138. padding: 0;
  139. height: 0;
  140. opacity: 0;
  141. transition: all 1s;
  142. &.show {
  143. height: fit-content;
  144. opacity: 1;
  145. }
  146. .dropdown-item {
  147. padding-left: 3rem;
  148. &:active, &.active, &:focus {
  149. background-color: white;
  150. }
  151. &:hover {
  152. background-color: white;
  153. }
  154. }
  155. .sub-menu {
  156. .dropdown-item {
  157. padding-left: 6rem;
  158. }
  159. }
  160. }
  161. }
  162. .nav-item {
  163. font-size: 17px;
  164. display: block;
  165. width: 100%;
  166. }
  167. .nav-link {
  168. padding-top: 11px;
  169. padding-bottom: 8px;
  170. color: #707070;
  171. position: relative;
  172. .link_div {
  173. width: 25px;
  174. }
  175. a {
  176. color: #707070;
  177. text-decoration: none;
  178. }
  179. &.show {
  180. i {
  181. transform: rotate(-180deg);
  182. }
  183. }
  184. .expand {
  185. position: absolute;
  186. right: 10px;
  187. i {
  188. font-size: 11px;
  189. color: #D3D3D3;
  190. transition: all .5s;
  191. }
  192. }
  193. &.text-main {
  194. color: #EE7800;
  195. }
  196. }
  197. .sub-link {
  198. .expand {
  199. position: absolute;
  200. right: 20px;
  201. top: 8px;
  202. width: 1.5rem;
  203. text-align: center;
  204. }
  205. }
  206. .sub-menu {
  207. display: none;
  208. }
  209. .sub-menu.show {
  210. display: block;
  211. }
  212. hr {
  213. margin: 3px 0;
  214. background-color: rgb(187, 187, 187);
  215. }
  216. }
  217. &-follows {
  218. padding: 2rem 2.5rem;
  219. background-color: #e6e6e6ef;
  220. margin-top: -9px;
  221. &-title {
  222. color: #797979;
  223. font-size: 14px;
  224. }
  225. }
  226. &-links {
  227. margin-bottom: 2.5rem;
  228. a {
  229. color: #797979;
  230. text-decoration: none;
  231. display: inline-block;
  232. padding: 1px 0;
  233. border-bottom: 1px solid #acacac;
  234. margin: 0 .6rem;
  235. flex-wrap: nowrap;
  236. @media screen and(max-width: 385px) {
  237. margin: 0 .4rem;
  238. }
  239. }
  240. }
  241. .follows-fp {
  242. color: #797979;
  243. text-decoration: none;
  244. font-weight: 400;
  245. display: block;
  246. padding-left: .5rem;
  247. &:nth-of-type(1) {
  248. margin-bottom: .6rem;
  249. }
  250. }
  251. .copyright {
  252. color: #797979;
  253. font-size: 13px;
  254. }
  255. }
  256. @-webkit-keyframes slidein {
  257. 100% { left: 0; }
  258. }
  259. @keyframes slidein {
  260. 100% { left: 0; }
  261. }
  262. @-webkit-keyframes slideout {
  263. 100% { left: -100%; }
  264. }
  265. @keyframes slideout {
  266. 100% { left: -100%; }
  267. }
  268. .sec-search {
  269. display: none;
  270. z-index: 107;
  271. position: absolute;
  272. top: 0;
  273. left: 0;
  274. right: 0;
  275. font-size: 14px;
  276. &-block {
  277. padding-top: 61px;
  278. margin:0;
  279. position: fixed;
  280. top: 0;
  281. left: 0;
  282. right: 0;
  283. width: 100;
  284. height: 100%;
  285. overflow-y: scroll;
  286. background-color: rgba(0, 0, 0, 0.774);
  287. }
  288. &-list {
  289. background-color: #F3F3F3;
  290. padding: 1rem;
  291. padding-bottom: 1.4rem;
  292. hr {
  293. background-color: #aaaaaa;
  294. }
  295. }
  296. &-form {
  297. width: 100%;
  298. }
  299. .searchBar {
  300. font-size: 17px;
  301. padding: .5rem .3rem;
  302. display: inline-block;
  303. width: 88%;
  304. outline: none;
  305. border: 2px solid #EE7800;
  306. border-radius: 5px;
  307. }
  308. .searchBtn {
  309. outline: none;
  310. border: none;
  311. background-color: transparent;
  312. display: inline-block;
  313. width: 10%;
  314. }
  315. &-hots {
  316. padding: 1rem;
  317. background-color: white;
  318. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  319. &__title {
  320. color: #AAAAAA;
  321. font-size: 18px;
  322. font-weight: 400;
  323. padding-top: .5rem;
  324. }
  325. &__link {
  326. display: inline-block;
  327. text-decoration: none;
  328. color: #797979;
  329. border: 1px solid #797979;
  330. border-radius: 3rem;
  331. padding: .3rem .5rem;
  332. margin-right: .8rem;
  333. margin-bottom: .8rem;
  334. &:hover {
  335. color: #797979;
  336. }
  337. }
  338. }
  339. }
  340. .sec-login {
  341. display: none;
  342. z-index: 109;
  343. position: absolute;
  344. top: 0;
  345. left: 0;
  346. right: 0;
  347. font-size: 14px;
  348. &-block {
  349. padding-top: 61px;
  350. margin:0;
  351. position: fixed;
  352. top: 0;
  353. left: 0;
  354. right: 0;
  355. width: 100;
  356. height: 100%;
  357. overflow-y: hidden;
  358. background-color: #F3F3F3;
  359. }
  360. &-list {
  361. background-color: #F3F3F3;
  362. padding: 1rem;
  363. padding-bottom: 1.4rem;
  364. hr {
  365. background-color: #aaaaaa;
  366. }
  367. }
  368. &-btns {
  369. padding: 1rem;
  370. background-color: white;
  371. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  372. }
  373. }
  374. .text-main {
  375. color: #EE7800;
  376. }
  377. .text-phone {
  378. color: #EA068C;
  379. text-decoration: none;
  380. }
  381. .bg-white {
  382. background-color: #fff;
  383. }
  384. .mb__hero {
  385. margin-top: calc(52px);
  386. &__bgImg {
  387. height: 240px;
  388. background-repeat: no-repeat;
  389. background-size: cover;
  390. background-position: center center;
  391. }
  392. }
  393. .mb__content {
  394. background-color: rgba(244, 244, 244, 0.8);
  395. }
  396. .other {
  397. display: none;
  398. }
  399. .mb__infoCard {
  400. color: #727679;
  401. text-align: center;
  402. padding: 1rem;
  403. background-color: rgba(244, 244, 244, 0.8);
  404. margin: 3rem 0 0;
  405. &__name, &__span {
  406. font-size: 1.25rem;
  407. color: #43484C;
  408. font-weight: bold;
  409. }
  410. &__span {
  411. font-size: 1rem;
  412. }
  413. &__cmy {
  414. font-size: 1.125rem;
  415. font-weight: 400;
  416. }
  417. &__avatar {
  418. width: 188px;
  419. height: 188px;
  420. position: absolute;
  421. top: -120px;
  422. border: 3px solid #FFF;
  423. border-radius: 50%;
  424. background-size: cover;
  425. background-repeat: no-repeat;
  426. left: 50%;
  427. transform: translateX(-50%);
  428. }
  429. &__seo {
  430. font-size: 1.12rem;
  431. text-align: center;
  432. padding: 1rem;
  433. display: block;
  434. line-height: 1.2;
  435. font-weight: 400;
  436. }
  437. &__approve {
  438. color: #FF0000;
  439. }
  440. &__more {
  441. color: #FFAC73;
  442. text-align: center;
  443. cursor: pointer;
  444. }
  445. &__detail {
  446. aside {
  447. line-height: 2;
  448. font-size: 1rem;
  449. }
  450. &__l {
  451. flex-basis: 30%;
  452. display: flex;
  453. justify-content: flex-end;
  454. flex-grow: 0;
  455. max-width: 30%;
  456. &.title {
  457. color: #AAAAAA;
  458. font-size: 1.125rem;
  459. font-weight: bold;
  460. transform: translateX(-15px);
  461. }
  462. }
  463. &__r {
  464. flex-basis: 70%;
  465. text-align: start;
  466. flex-grow: 0;
  467. max-width: 70%;
  468. word-break: break-all;
  469. }
  470. }
  471. .scMedia {
  472. display: flex;
  473. padding: 1rem 0;
  474. width: 100%;
  475. margin-left: auto;
  476. margin-right: auto;
  477. justify-content: space-around;
  478. a {
  479. width: 16%;
  480. img {
  481. width: 100%;
  482. }
  483. }
  484. }
  485. }
  486. .infoContent {
  487. a {
  488. color: #727679;
  489. text-decoration: none;
  490. font-size: .9rem;
  491. &.active {
  492. color: #EE7800;
  493. }
  494. }
  495. &__navBlock {
  496. &.tab_sticky {
  497. position: fixed;
  498. top: 60px;
  499. width: 100%;
  500. z-index: 12;
  501. }
  502. }
  503. .nav-item {
  504. margin: 0;
  505. width: 25%;
  506. text-align: center;
  507. &-link {
  508. display: block;
  509. padding: 1rem 0.5rem;
  510. text-decoration: none;
  511. background-color: transparent;
  512. font-size: .9rem;
  513. color: #727679;
  514. text-align: center;
  515. font-size: 1.12rem;
  516. &.active {
  517. color: #EE7800;
  518. border-bottom: 2px solid #EE7800;
  519. }
  520. }
  521. }
  522. .likeSee {
  523. &__divider {
  524. height: 12px;
  525. display: inline-block;
  526. border: 0.5px solid #9d9d9d;
  527. }
  528. }
  529. .tab-content {
  530. padding: 0 1rem;
  531. }
  532. .tab-content .row > div {
  533. padding-left: 5px;
  534. padding-right: 5px;
  535. }
  536. .card {
  537. box-shadow: 0 1px 10px #eee;
  538. margin: 0 0 1.5rem;
  539. border: none;
  540. &__bgImg {
  541. height: 145px;
  542. background-repeat: no-repeat;
  543. background-size: cover;
  544. background-position: center;
  545. position: relative;
  546. display: flex;
  547. justify-content: center;
  548. -webkit-box-align: center;
  549. align-items: center;
  550. -webkit-box-pack: center;
  551. }
  552. &-body {
  553. padding: 0.5rem 1rem;
  554. }
  555. &__title {
  556. font-size: 1.125rem;
  557. -webkit-box-orient: vertical;
  558. box-orient: vertical;
  559. -webkit-line-clamp: 2;
  560. height: calc(18px * 2 * 1.5);
  561. overflow: hidden;
  562. text-overflow: ellipsis;
  563. display: -webkit-box;
  564. font-weight: bold;
  565. margin: 0.5rem 0;
  566. color: #727679;
  567. }
  568. &__tag {
  569. margin: 0 0.2rem 0 0;
  570. }
  571. }
  572. .company {
  573. &__block {
  574. margin: 0 0 2rem;
  575. }
  576. &__title {
  577. color: #AAAAAA;
  578. font-size: 1.125rem;
  579. font-weight: bold;
  580. }
  581. &__text {
  582. color: #43484C;
  583. }
  584. }
  585. }
  586. .infoContent__navBlock {
  587. padding-top: 0rem;
  588. }
  589. .infoContent__navBlock.tab_sticky + .tab-content {
  590. padding-top: 60.8px;
  591. }
  592. .freeCall {
  593. position: fixed;
  594. bottom: 78px;
  595. z-index: 11;
  596. width: 100%;
  597. text-align: center;
  598. background: linear-gradient(180deg, rgba(244, 244, 244, 0.9) 0%, rgba(244, 244, 244, 0.9) 100%);
  599. &__btn {
  600. color: #fff;
  601. background-color: #EE7800;
  602. border-color: #EE7800;
  603. }
  604. }
  605. .fixed-btn {
  606. position: fixed;
  607. right: 15px;
  608. bottom: 5.5rem;
  609. z-index: 15;
  610. @media (min-width: $horizontal) {
  611. bottom: 5rem;
  612. }
  613. .btn-gotop {
  614. padding: 1rem .65rem;
  615. background-color: rgba(255, 255, 255, 0.897);
  616. display: flex;
  617. align-items: center;
  618. box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  619. -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  620. -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  621. }
  622. }