12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037 |
- body {
- font-family: 'Helvetica Neue';
- }
- .sec-00 {
- background-color: rgb(202, 202, 202);
- transition-property: height;
- transition-duration: 300ms;
-
- &__close {
- position: absolute;
- top: 0;
- right: 20px;
- width: 50px;
- height: 30px;
- background-color: hsla(0,0%,100%,.66);
- border-radius: 0 0 50px 50px;
- color: #888;
- border: none;
- outline: none;
- font-size: 11px;
- box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
- line-height: 12px;
- z-index: 3;
- }
- &.bannerClose {
- height: 0;
- overflow: hidden;
- transition-property: height;
- transition-duration: 300ms;
- }
- .container-fluid {
- background-color: rgb(202, 202, 202);
- // height: 295px;
- // @media (max-width: 1850px) {
- // height: 260px;
- // }
- // @media (max-width: 1550px) {
- // height: 230px;
- // }
- // @media (max-width: 1100px) {
- // height: 200px;
- // }
- }
- &__slider {
- margin: 0 auto;
- width: 100%;
- height: 100%;
- max-width: 1310px;
- padding-top: 20px;
- padding-bottom: 24px;
- @media (max-width: 1850px) {
- max-width: 1310px;
- }
- @media (max-width: 1550px) {
- max-width: 1310px;
- }
- @media screen and(max-width:576px) {
- max-width: 100%;
- height: auto;
- }
- .slide-item {
- width: 100%;
- height: 100%;
- max-width: 1310px;
- max-height: 300px;
- -o-object-fit: contain;
- object-fit: contain;
- height: 300px;
- cursor: pointer;
- @media screen and(max-width:576px) {
- max-width: 100%;
- height: auto;
- }
- }
- }
- .slick-next{
- @media screen and(max-width:576px) {
- right:25px;
-
- }
-
- }
- .slick-prev{
- z-index: 100;
- @media screen and(max-width:576px) {
- left:25px;
- }
-
- }
- .slick-prev:before, .slick-next:before {
- display: none;
- }
- &__bulletList {
- position: absolute;
- bottom: 21px;
- left: calc(50% - 655px);
- width: 1310px;
- box-sizing: border-box;
- display: flex;
- z-index: 10;
- background-color: rgba(0,0,0,.1);
- @media screen and(max-width:576px) {
- width:100%;
- left: 0px;
- }
- }
- &__bullet {
- position: relative;
- width: 100%;
- height: 3px;
- background-color: rgba(0,0,0,.1);
- flex: 1 1 auto;
- opacity: 1;
- &::after {
- content: "";
- background: #ee7800;
- position: absolute;
- width: 0;
- height: 100%;
- left: 0;
- top: 0;
- border-radius: 2px;
- }
- }
- .bullet-active::after {
- width: 0;
- -webkit-animation-name: progress;
- animation-name: progress;
- -webkit-animation-duration: 4s;
- animation-duration: 4s;
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- }
- }
- @keyframes progress{
- 0%{
- width: 0%;
- }
- 25%{
- width: 25%;
- }
- 50%{
- width: 50%;
- }
- 75%{
- width: 75%;
- }
- 100%{
- width: 100%;
- }
- };
- @-webkit-keyframes progress{
- 0%{
- width: 0%;
- }
- 25%{
- width: 25%;
- }
- 50%{
- width: 50%;
- }
- 75%{
- width: 75%;
- }
- 100%{
- width: 100%;
- }
- };
- @-webkit-keyframes slidein {
- 100% {
- height: 0px;
- }
- }
- @keyframes slidein {
- 100% {
- height: 0px;
- }
- }
- .navbar {
- 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);
- -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);
- -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);
- padding-top: 5px;
- padding-bottom: 5px;
- background-color: white !important;
- z-index: 99;
- .container-fluid {
- padding:0 2.5rem;
- @media (max-width: 1100px) {
- padding:0 .6rem;
- }
- }
- &-toggler {
- padding-left: 0;
- border-color: transparent !important;
- &:focus {
- box-shadow: none;
- }
- }
- &-toggler-icon {
- display: flex;
- justify-items: center;
- i {
- font-size: 25px;
- line-height: 30px;
- display: inline-block;
- }
- }
- &-search, &-login {
- padding-right: 2px;
- }
- &-login {
- cursor: pointer;
- }
- &-search {
- &-magnify {
- cursor: pointer;
- }
- }
- &-brand {
- font-size: 1.5rem;
- &.navbar-logo {
- display: flex;
- align-items: center;
- }
- .navbar-login {
- font-size: 1rem;
- color: #EE7800;
- text-decoration: none;
- }
- }
- .nav-link {
- cursor: pointer;
- @media (max-width: 1100px) {
- padding: .5rem .5rem;
- font-size: .9rem;
- }
- }
- .navbar-nav {
- .nav-item {
- -webkit-appearance : none !important;
- margin: 0 .5rem;
- @media (max-width: 1100px) {
- margin: 0 0rem;
- }
- .dropbox {
- visibility: hidden;
- opacity: 0;
- transition: all .4s;
- position: absolute;
- width: 100vw;
- top: 100%;
- left: 0;
- background-color: rgba(255, 255, 255, 0.932);
- padding-top: 1.5rem;
- padding-bottom: 3rem;
- z-index: 1012;
- ul {
- padding-left: 0;
- }
- &-item {
- margin-bottom: .5rem;
- &.first {
- font-size: 1.1rem;
- font-weight: 600;
- .dropbox-link {
- color: black;
- }
- }
- }
- &-link {
- text-decoration: none;
- color: rgb(146, 146, 146);
- font-size: .85rem;
- &:hover {
- color: #EE7800;
- }
- &.dropbox-btn {
- border: 1px solid rgb(146, 146, 146);
- padding: .5rem 2rem;
- border-radius: 5px;
- width: 85%;
- min-width: 7rem;
- max-width: 11rem;
- }
- }
- &-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .container {
- max-width: 900px;
- width: 70%;
- &.stylebox {
- transform: translateX(-30%);
- }
- &.designerbox {
- transform: translateX(-5%);
- }
- &.newbox {
- transform: translateX(15%);
- }
- &.forumbox {
- transform: translateX(50%);
- }
- }
- }
- .nav-link {
- position: relative;
- -webkit-appearance : none !important;
- color: rgba(0, 0, 0, 0.87);
- font-size: 1.17rem;
- padding: 1.075rem 10px;
- }
- .nav-link:after {
- position: absolute;
- content: " ";
- width: 100%;
- height: 90%;
- top: 10px;
- right: 0;
- border-bottom: 4px solid #EE7800;
- opacity: 0;
- transform: opacity 1s;
- }
- &:hover {
- .nav-link:after {
- opacity: 1;
- }
- >.dropbox {
- visibility: visible;
- opacity: 1;
- }
- }
-
- }
- .nav-item.lg {
- .container {
- max-width: 1200px;
- width: 90%;
- }
- .dropbox-link {
- text-decoration: none;
- color: rgb(146, 146, 146);
- font-size: .7rem;
- &:hover {
- color: #EE7800;
- }
- }
- .dropbox-item {
- margin-bottom: .1rem;
- &.first {
- .dropbox-link {
- font-size: .85rem;
- }
- }
- }
- }
- }
- &-search {
- .container {
- max-width: 900px;
- width: 70%;
- @media (max-width: 1100px) {
- width: 90%;
- }
- }
- .dropbox {
- visibility: hidden;
- opacity: 0;
- transition: all .2s;
- position: absolute;
- width: 100vw;
- top: 100%;
- left: 0;
- background-color: rgba(255, 255, 255, 0.932);
- padding-top: 1.5rem;
- padding-bottom: 3rem;
- &.open {
- visibility: visible;
- opacity: 1;
- }
- &__searchtab {
- width: 100%;
- background-color: gray;
- border-radius: 3px;
- padding: .2rem 1rem;
- padding-bottom: 1rem;
- }
- &__hots {
- &__title {
- font-size: 1rem;
- color: rgb(107, 107, 107);
- }
- &__link {
- font-size: .9rem;
- color: rgb(146, 146, 146);
- text-decoration: none;
- cursor: pointer;
- margin: 0 .2rem;
- }
- }
- &__searchBar {
- &__input {
- width: 100%;
- outline: none;
- border: 2px solid #EE7800;
- border-radius: 5rem;
- padding: .3rem 1.2rem;
- font-size: .9rem;
- }
- &__submit {
- outline: none;
- border: none;
- font-size: .9rem;
- background-color: transparent;
- color: #EE7800;
- margin-left: -1rem;
- transform: translateX(-100%);
- padding: 0 .6rem;
- }
- }
- &__tab {
- .nav-item {
- margin: 0 .6rem;
-
- -webkit-appearance : none ;
- }
- }
- .nav-item-link {
- -webkit-appearance : none !important;
- background: none !important;
- border: none !important;
- outline: none !important;
- font-size: 1rem;
- color: white;
- padding: 3px;
- position: relative;
- &::after {
- position: absolute;
- content: "";
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border-bottom: 3px solid #EE7800;
- opacity: 0;
- }
- &.active::after {
- opacity: 1;
- }
- }
-
- }
- .dropbox-tab-content {
- .tabpar {
- display: flex;
- padding-top: .5rem;
- .col {
- margin: 0 .6rem;
- }
- .select {
- font-size: 1rem;
- padding: .6rem;
- border-radius: 3px;
- color: rgb(116, 116, 116);
- }
- button {
- border: none;
- outline: none;
- background-color: #EE7800;
- border-radius: 3px;
- color: white;
- font-size: 1rem;
- padding: .6rem;
- }
- .image-search {
- border: none;
- outline: none;
- background-color: #EE7800;
- border-radius: 3px;
- color: white;
- font-size: 1rem;
- }
- .article-btn {
- border: none;
- outline: none;
- background-color: #EE7800;
- border-radius: 3px;
- color: white;
- font-size: 1rem;
- padding: .6rem;
- }
- .home-btn {
- border: none;
- outline: none;
- background-color: #EE7800;
- border-radius: 3px;
- color: white;
- font-size: 1rem;
- padding: .6rem;
- }
- }
- }
- }
- }
- .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
- opacity: 1;
- }
- .navbar-main.sticky {
- position: fixed;
- top: 0;
- width: 100%;
- }
- .navbar-main.sticky + .sec-02 {
- padding-top: 53.5px;
- }
- .sec-02 {
- &__slider {
- width: 100%;
- height: 100%;
- .slide-item {
- width: 100%;
- height: 74vh;
- background-position: center center;
- background-size: cover;
- background-repeat: no-repeat;
- cursor: pointer;
- }
-
- }
- .slick-prev:before, .slick-next:before {
- display: none;
- }
- .slick-prev {
- left: 15px;
- z-index: 3;
- }
- .slick-next {
- right: 15px;
- }
- }
- a {
- text-decoration: none;
- }
- .text-hhh {
- color: #EE7800;
- }
- .content {
- background-color: #FCFCFC;
- padding: 1rem 30px 0.5rem;
- .infoCard {
- color: #727679;
- text-align: center;
- padding: 1rem;
- background-color: rgba(244, 244, 244, 0.8);
- box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
- transform: translateY(-150px);
- &__seo {
- font-size: .9rem;
- text-align: center;
- padding: 1rem;
- display: block;
- line-height: 1.2;
- }
- &__approve {
- color: #FF0000;
- }
- &__avatar {
- width: 200px;
- height: 200px;
- border: 3px solid #FFF;
- border-radius: 50%;
- background-size: cover;
- background-repeat: no-repeat;
-
- }
- &__detail {
- aside {
- line-height: 2;
- font-size: .9rem;
- }
- &__l {
- flex-basis: 30%;
- display: flex;
- justify-content: flex-end;
- flex-grow: 0;
- max-width: 30%;
- &.title {
- color: #AAAAAA;
- font-size: 1.125rem;
- font-weight: 400;
- transform: translateX(-15px);
-
- }
- }
- &__r {
- flex-basis: 70%;
- text-align: start;
- flex-grow: 0;
- max-width: 70%;
- word-break: break-all;
- a {
- color: #727679;
- &:hover {
- color: #EE7800;
- }
- }
- }
- }
- .scMedia {
- display: flex;
- padding: 1rem 0;
- width: 100%;
- margin-left: auto;
- margin-right: auto;
- justify-content: space-around;
- a {
- width: 16%;
- img {
- width: 100%;
- }
- }
- span {
- width: 16%;
- cursor: pointer;
- img {
- width: 100%;
- }
- }
- }
- }
- }
- .infoContent {
- a {
- color: #727679;
- text-decoration: none;
- font-size: .9rem;
- &.active {
- color: #EE7800;
- }
- }
- .nav-item {
- margin: 0 0.8rem;
- width: auto;
- &-link {
- display: block;
- padding: 0.5rem 2.5rem;
- text-decoration: none;
- background-color: transparent;
- font-size: 1rem;
- color: #727679;
- transition: all .3s;
- -webkit-appearance : none !important;
- appearance: none;
- border-radius: 0;
- @media screen and (max-width: 1200px) {
- padding: 0.5rem .8rem;
- }
- &:hover {
- color: #EE7800;
- -webkit-appearance : none !important;
- appearance: none;
- }
- &.active {
- color: #EE7800;
- border-bottom: 2px solid #EE7800;
- -webkit-appearance : none !important;
- appearance: none;
- }
- }
- }
- .likeSee {
- margin-top: .8rem;
- @media screen and (max-width: 1200px) {
- width: 12%;
- position: absolute;
- right: -1.5rem;
- bottom: -1.5rem;
- }
- span {
- color: #727679;
- font-size: .9rem;
- cursor: pointer;
- &:hover {
- color: #EE7800;
- }
- }
- &__divider {
- height: 12px;
- display: inline-block;
- border: 0.5px solid #9d9d9d;
- }
- }
- .card {
- box-shadow: 0 1px 10px #eee;
- margin: 0 0 1.5rem;
- border: none;
- overflow: hidden;
- &:hover .card__bgImg {
- transform: scale(1.1);
- }
- &__bgImg {
- height: 293px;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center;
- position: relative;
- display: flex;
- justify-content: center;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- transition: all .4s;
- }
- &-body {
- padding: 0.5rem 1rem;
- }
- &__title {
- font-size: 1.125rem;
- -webkit-box-orient: vertical;
- box-orient: vertical;
- -webkit-line-clamp: 2;
- height: calc(18px * 2 * 1.5);
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- font-weight: bold;
- margin: 0.5rem 0;
- color: #727679;
- }
- &__tag {
- margin: 0 0.2rem 0 0;
- &:hover {
- color: #EE7800;
- }
- }
- }
- .company {
- &__block {
- margin: 0 0 2rem;
- }
- &__title {
- color: #AAAAAA;
- font-size: 2rem;
- font-weight: bold;
- }
- &__text {
- color: #43484C;
- }
- }
- }
- .nav-collapse-fixed {
- position: fixed;
- top: 52px;
- z-index: -1;
- width: 100%;
- @media screen and (max-width: 1200px) {
- width: auto;
- }
- opacity: 0;
- transition: opacity .5s;
- &.sticky {
- display: block;
- opacity: 1;
- z-index: 20;
- }
- .nav-collpase {
- padding: 1rem 0;
- background-color: #FCFCFC;
- box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15)
- }
- }
- .navbar-main.sticky + .hero {
- padding-top: 53px;
- }
- .fixed-btn {
- position: fixed;
- right: 15px;
- bottom: 2rem;
- .btn-gotop, .btn-login, .btn-favor {
- cursor: pointer;
- padding: 1.2rem .8rem;
- background-color: rgba(255, 255, 255, 0.897);
- display: flex;
- align-items: center;
- 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);
- -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);
- -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);
- }
-
- }
- .footer {
- background: #e9e9e9;
- padding: 2.5rem 0;
- .container {
- @media (max-width: 1100px) {
- width: 98%;
- max-width: 950px;
- }
- }
- &__block {
- padding: 1rem 3rem;
- border-left: 1px solid rgb(143, 143, 143);
- @media (max-width: 1100px) {
- padding: 1rem 1rem;
- }
- &-title {
- font-size: 1.3rem;
- margin-bottom: 1.5rem;
- }
- &-list {
- padding-left: 0;
- }
- &:nth-of-type(1) {
- border-left: none;
- }
- &:nth-of-type(2) {
- padding: 1rem 4rem;
- @media (max-width: 1100px) {
- padding: 1rem 1rem;
- }
- }
- &-socials {
- padding-left: 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- img {
- @media (max-width: 1100px) {
- width: 30px;
- }
- }
- }
- .follows-fp {
- text-decoration: none;
- color: #696969;
- font-size: .9rem;
- display: flex;
- align-items: center;
- @media (max-width: 1100px) {
- font-size: .8rem;
- }
- }
- &-phone {
- p {
- display: inline;
- @media (max-width: 900px) {
- display: block;
- }
- }
- p, span {
- font-size: .9rem;
- }
- .text-phone {
- color: #EE7800;
- text-decoration: none;
- }
- }
- &-links {
- display: flex;
- align-items: center;
- margin-top: 1rem;
- justify-content: center;
- &-grp {
- padding: .3rem;
- border-left: 1px solid rgb(185, 185, 185);
- &:nth-of-type(1) {
- border-left: none;
- }
- a {
- display: block;
- text-decoration: none;
- color: #696969;
- font-size: .9rem;
- margin-bottom: .4rem;
- @media (max-width: 1100px) {
- font-size: .8rem;
- }
- }
- }
- }
- &-subscribe {
- width: 100%;
- margin-top: 1rem;
- .subscribeBar {
- font-size: .8rem;
- width: 70%;
- margin-left: 7%;
- @media (max-width: 900px) {
- width: 75%;
- margin-left: 3%;
- font-size: .7rem;
- }
- }
- .subscribeBtn {
- width: 20%;
- padding: .4rem .6rem;
- padding-bottom: 9px;
- border: none;
- outline: none;
- background-color: rgb(41, 41, 41);
- color: white;
- border-radius: 0 3px 3px 0;
- margin-left: -.4rem;
- @media (max-width: 900px) {
- margin-left: -.3rem;
- font-size: .8rem;
- padding-top: 9px;
- padding-bottom: 10px;
- }
- }
- }
- }
- &__list-item {
- display: flex;
- align-items: center;
- text-decoration: none;
- margin-bottom: .5rem;
- p {
- color: #696969;
- font-size: .9rem;
- font-weight: 300;
- }
- }
- &__list-icon {
- width: 30px;
- display: flex;
- justify-content: center;
- margin-right: .3rem;
- }
- .bottom-box {
- padding: 1rem 0;
- border-top: 1px solid rgb(185, 185, 185);
- margin-top: 2.5rem;
- }
- }
- .like {
- display: none;
- }
- // #pills-intro {
- // .work__row {
- // .col-md-4:nth-of-type(3n-1) {
- // margin-top: .5rem;
- // }
- // .col-md-4:nth-of-type(3n) {
- // margin-top: -1rem;
- // }
- // .col-md-4:nth-of-type(3n+1) {
- // margin-top: -1rem;
- // }
- // .col-md-4:nth-of-type(2) {
- // margin-top: .5rem;
- // }
- // }
- // }
- .emodal {
- &-title {
- color: #EE7800;
- margin: 0 auto;
- font-size: 18px;;
- }
- .form-control:focus {
- border-color: #ffb76f;
- box-shadow: none;
- }
- .btn-plus {
- color: #aaa;
- border-color: #aaa;
- }
- .btn-send {
- background-color: #ee7800;
- color: white;
- width: 30%;
- border: none;
- padding: 0.875rem 1rem;
- border-radius: 2px;
- }
- .btn-dismiss {
- width: 30%;
- border: none;
- padding: 0.875rem 1rem;
- background-color: #d1d2d3;
- border-radius: 2px;
- color: #fff;
- }
- }
- #putEmail_hidden {
- border: 1px solid;
- border-radius: 28px;
- color: #EE7800 !important;
- .fm-email-btn {
- padding: 2px 5px 2px 5px;
- }
- }
- .loading-move {
- animation-name: move;
- animation-duration: 2s;
- animation-delay: 0;
- animation-iteration-count: infinite;
- animation-direction: normal;
- animation-timing-function: linear;
- }
- @keyframes move {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
|