|
@@ -0,0 +1,3365 @@
|
|
|
+@charset "UTF-8";
|
|
|
+:root {
|
|
|
+ --main-color: #34404b;
|
|
|
+ --sub-color: #ee751b;
|
|
|
+}
|
|
|
+
|
|
|
+body {
|
|
|
+ font-family: "Noto Sans TC", sans-serif;
|
|
|
+}
|
|
|
+
|
|
|
+.scrollable {
|
|
|
+ overflow-x: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.unscrollable {
|
|
|
+ height: 100vh;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.loading-item {
|
|
|
+ background: #fff;
|
|
|
+ position: fixed;
|
|
|
+ height: 100vh;
|
|
|
+ width: 100vw;
|
|
|
+ z-index: 1000;
|
|
|
+ top: 0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.loading-hide {
|
|
|
+ animation-name: fadeOut;
|
|
|
+ animation-duration: 1s;
|
|
|
+ opacity: 0;
|
|
|
+ z-index: -1000;
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes fadeOut {
|
|
|
+ from {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ to {
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-00 {
|
|
|
+ background-color: rgb(202, 202, 202);
|
|
|
+ transition-property: height;
|
|
|
+ transition-duration: 300ms;
|
|
|
+}
|
|
|
+.sec-00 .slider-content {
|
|
|
+ padding: 0.75rem 0;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .sec-00 .slider-content {
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-00__close {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 20px;
|
|
|
+ width: 50px;
|
|
|
+ height: 30px;
|
|
|
+ background-color: hsla(0, 0%, 100%, 0.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;
|
|
|
+}
|
|
|
+.sec-00.bannerClose {
|
|
|
+ height: 0;
|
|
|
+ overflow: hidden;
|
|
|
+ transition-property: height;
|
|
|
+ transition-duration: 300ms;
|
|
|
+}
|
|
|
+.sec-00 .container-fluid {
|
|
|
+ background-color: rgb(202, 202, 202);
|
|
|
+}
|
|
|
+.sec-00__slider {
|
|
|
+ margin: 0 auto;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ max-width: 1310px;
|
|
|
+ padding-top: 20px;
|
|
|
+ padding-bottom: 24px;
|
|
|
+}
|
|
|
+@media (max-width: 1850px) {
|
|
|
+ .sec-00__slider {
|
|
|
+ max-width: 1310px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 1550px) {
|
|
|
+ .sec-00__slider {
|
|
|
+ max-width: 1310px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .sec-00__slider {
|
|
|
+ max-width: 100%;
|
|
|
+ height: auto;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-00__slider .slide-item {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ max-width: 1310px;
|
|
|
+ max-height: 300px;
|
|
|
+ -o-object-fit: contain;
|
|
|
+ object-fit: contain;
|
|
|
+ height: 300px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .sec-00__slider .slide-item {
|
|
|
+ max-width: 100%;
|
|
|
+ height: auto;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .sec-00 .slick-next {
|
|
|
+ right: 25px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-00 .slick-prev {
|
|
|
+ z-index: 100;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .sec-00 .slick-prev {
|
|
|
+ left: 25px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-00 .slick-prev:before,
|
|
|
+.sec-00 .slick-next:before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.sec-00-bulletList {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 10px;
|
|
|
+ left: calc(50% - 650px);
|
|
|
+ width: 1300px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ display: flex;
|
|
|
+ z-index: 10;
|
|
|
+ background-color: rgba(0, 0, 0, 0.1);
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .sec-00-bulletList {
|
|
|
+ width: 100%;
|
|
|
+ left: 0px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-00-bullet {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ height: 3px;
|
|
|
+ background-color: rgba(0, 0, 0, 0.1);
|
|
|
+ flex: 1 1 auto;
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+.sec-00-bullet::after {
|
|
|
+ content: "";
|
|
|
+ background: #ee7800;
|
|
|
+ position: absolute;
|
|
|
+ width: 0;
|
|
|
+ height: 100%;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ border-radius: 2px;
|
|
|
+}
|
|
|
+.sec-00 .bullet-active::after {
|
|
|
+ width: 0;
|
|
|
+ animation-name: progress;
|
|
|
+ animation-duration: 4s;
|
|
|
+ animation-timing-function: linear;
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes progress {
|
|
|
+ 0% {
|
|
|
+ width: 0%;
|
|
|
+ }
|
|
|
+ 25% {
|
|
|
+ width: 25%;
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ 75% {
|
|
|
+ width: 75%;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes slidein {
|
|
|
+ 100% {
|
|
|
+ height: 0px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.navbar-main.sticky + .sec-02 {
|
|
|
+ padding-top: 53.5px;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-02__slider {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.sec-02__slider .slide-item {
|
|
|
+ width: 100%;
|
|
|
+ height: 74vh;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.sec-02 .slick-prev:before,
|
|
|
+.sec-02 .slick-next:before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.sec-02 .slick-prev {
|
|
|
+ left: 15px;
|
|
|
+ z-index: 3;
|
|
|
+}
|
|
|
+.sec-02 .slick-next {
|
|
|
+ right: 15px;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-04 {
|
|
|
+ background-color: #f4f4f4;
|
|
|
+ padding: 4rem 1rem;
|
|
|
+}
|
|
|
+.sec-04 .container {
|
|
|
+ max-width: 950px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-04 .container {
|
|
|
+ width: 90%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-04 .card {
|
|
|
+ box-shadow: 1px 2px 8px 1px rgb(214, 214, 214);
|
|
|
+ text-decoration: none;
|
|
|
+ cursor: pointer;
|
|
|
+ transition: all 0.6s;
|
|
|
+}
|
|
|
+.sec-04 .card-title {
|
|
|
+ font-size: 1.4rem;
|
|
|
+ line-height: 1.8rem;
|
|
|
+ color: #4c4c4c;
|
|
|
+ font-weight: 500;
|
|
|
+ transition: all 2s;
|
|
|
+}
|
|
|
+.sec-04 .card__imgfr {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.sec-04 .card__imgfr img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.sec-04 .card:hover {
|
|
|
+ transform: scale(1.05);
|
|
|
+}
|
|
|
+
|
|
|
+.sec-guessLike .container {
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 2rem 2rem;
|
|
|
+ max-width: 1050px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-guessLike .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-guessLike__titlebox-h2 {
|
|
|
+ margin: 0 auto;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ font-weight: 600;
|
|
|
+ color: rgb(83, 83, 83);
|
|
|
+ padding: 0.8rem 0;
|
|
|
+ border-bottom: 6px solid #ee7800;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.sec-guessLike__title {
|
|
|
+ display: block;
|
|
|
+ text-align: center;
|
|
|
+ position: relative;
|
|
|
+ font-size: 1.2rem;
|
|
|
+ margin-bottom: 0.8rem;
|
|
|
+}
|
|
|
+.sec-guessLike__title::before, .sec-guessLike__title::after {
|
|
|
+ position: absolute;
|
|
|
+ content: " ";
|
|
|
+ width: 40%;
|
|
|
+ height: 0rem;
|
|
|
+ border-top: 1px solid black;
|
|
|
+ top: 50%;
|
|
|
+}
|
|
|
+.sec-guessLike__title::before {
|
|
|
+ left: 0;
|
|
|
+}
|
|
|
+.sec-guessLike__title::after {
|
|
|
+ left: 60%;
|
|
|
+}
|
|
|
+.sec-guessLike__article h5 {
|
|
|
+ font-size: 1.1rem;
|
|
|
+}
|
|
|
+.sec-guessLike__article p {
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+.sec-guessLike__case p {
|
|
|
+ font-size: 1.1rem;
|
|
|
+ font-weight: 500;
|
|
|
+}
|
|
|
+.sec-guessLike__card {
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ height: 26vh;
|
|
|
+ position: relative;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+}
|
|
|
+.sec-guessLike__card.special {
|
|
|
+ height: 45vh;
|
|
|
+}
|
|
|
+.sec-guessLike__card__img {
|
|
|
+ width: 100%;
|
|
|
+ transition: all 0.8s;
|
|
|
+}
|
|
|
+.sec-guessLike__card__txt {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 1rem;
|
|
|
+ left: 3rem;
|
|
|
+ color: white;
|
|
|
+ z-index: 2;
|
|
|
+ font-size: 600;
|
|
|
+ text-shadow: 1px 1px 2px gray;
|
|
|
+}
|
|
|
+.sec-guessLike__video__play {
|
|
|
+ position: absolute;
|
|
|
+ width: 2.5rem;
|
|
|
+ left: 50%;
|
|
|
+ top: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+}
|
|
|
+
|
|
|
+.sec-05 {
|
|
|
+ border-top: 1px solid rgb(187, 187, 187);
|
|
|
+ padding-bottom: 2rem;
|
|
|
+}
|
|
|
+.sec-05 .container {
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 0 2rem;
|
|
|
+ max-width: 1050px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-05 .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-05__tabdiv {
|
|
|
+ box-sizing: content-box;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .more {
|
|
|
+ padding-bottom: 0.4rem;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item {
|
|
|
+ position: relative;
|
|
|
+ padding-right: 18px;
|
|
|
+ padding-left: 18px;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item::after {
|
|
|
+ position: absolute;
|
|
|
+ content: " ";
|
|
|
+ width: 100%;
|
|
|
+ height: 30%;
|
|
|
+ left: 0;
|
|
|
+ top: 35%;
|
|
|
+ background-color: transparent;
|
|
|
+ border-right: 1px solid rgb(179, 179, 179);
|
|
|
+ z-index: -1;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item:nth-of-type(3)::after {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item-link {
|
|
|
+ color: black;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 1.6rem;
|
|
|
+ border: none;
|
|
|
+ position: relative;
|
|
|
+ padding: 1.5rem 0;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+@media (max-width: 385px) {
|
|
|
+ .sec-05__tabdiv .nav-item-link {
|
|
|
+ font-size: 1.1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item-link:focus {
|
|
|
+ outline: none !important;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item-link.active {
|
|
|
+ color: #ee7800;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item-link::before {
|
|
|
+ position: absolute;
|
|
|
+ content: " ";
|
|
|
+ width: 101%;
|
|
|
+ height: 100%;
|
|
|
+ left: -2px;
|
|
|
+ top: 0px;
|
|
|
+ background-color: transparent;
|
|
|
+ border-top: 3px solid #ee7800;
|
|
|
+ opacity: 0;
|
|
|
+}
|
|
|
+.sec-05__tabdiv .nav-item-link.active::before {
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+.sec-05 .tab-pane {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.sec-05tab-content {
|
|
|
+ height: 35vh;
|
|
|
+}
|
|
|
+.sec-05 .tabpar__card {
|
|
|
+ margin: 3px;
|
|
|
+ position: relative;
|
|
|
+ font-size: 14px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.sec-05 .tabpar__card__imgfr {
|
|
|
+ width: 100%;
|
|
|
+ height: 25vh;
|
|
|
+ position: relative;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-05 .tabpar__card__imgfr {
|
|
|
+ height: 20vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-05 .tabpar__card h5 {
|
|
|
+ font-size: 1rem;
|
|
|
+}
|
|
|
+.sec-05 .tabpar__card p {
|
|
|
+ font-size: 0.95rem;
|
|
|
+ font-weight: 300;
|
|
|
+ color: gray;
|
|
|
+}
|
|
|
+.sec-05 .tabpar__card__play {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ top: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 2.5rem;
|
|
|
+}
|
|
|
+.sec-05 .slick-prev {
|
|
|
+ top: 40%;
|
|
|
+ left: -2rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-05 .slick-next {
|
|
|
+ top: 40%;
|
|
|
+ right: -2rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-05 .slick-prev:before,
|
|
|
+.sec-05 .slick-next:before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-06 {
|
|
|
+ padding: 2rem 0;
|
|
|
+}
|
|
|
+.sec-06 .container {
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 1rem 2rem;
|
|
|
+ max-width: 1050px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-06 .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-06__title h3 {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 1.6rem;
|
|
|
+ padding-bottom: 0.5rem;
|
|
|
+ border-bottom: 6px solid #ee7800;
|
|
|
+ color: #535353;
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+.sec-06__video {
|
|
|
+ width: 100%;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.sec-06__video__imgfr {
|
|
|
+ width: 100%;
|
|
|
+ height: 34vh;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-06__video__imgfr {
|
|
|
+ height: 25vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-06__video__play {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ top: 50%;
|
|
|
+ width: 2.5rem;
|
|
|
+ height: 2.5rem;
|
|
|
+ z-index: 2;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+}
|
|
|
+.sec-06__videotxt {
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+ background-color: rgba(255, 255, 255, 0.842);
|
|
|
+ box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
|
|
|
+ padding: 0.4rem 0.8rem;
|
|
|
+ transform: translateY(-20%);
|
|
|
+ font-weight: 600;
|
|
|
+ font-size: 1.1rem;
|
|
|
+}
|
|
|
+.sec-06__btns {
|
|
|
+ display: block;
|
|
|
+ outline: none;
|
|
|
+ border: none;
|
|
|
+ padding: 0.4rem 1.2rem;
|
|
|
+ width: 88%;
|
|
|
+ margin: 0 auto;
|
|
|
+ background-color: #ea068c;
|
|
|
+ color: white;
|
|
|
+ border-radius: 3px;
|
|
|
+ box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
|
|
|
+ transition: all 0.4s;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+.sec-06__btns:hover {
|
|
|
+ transform: translate(2px, 2px);
|
|
|
+ color: white;
|
|
|
+}
|
|
|
+.sec-06__btns__txt {
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+.sec-06__btns:nth-of-type(2), .sec-06__btns:nth-of-type(3) {
|
|
|
+ padding: 1rem 1.2rem;
|
|
|
+}
|
|
|
+.sec-06__card {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.sec-06__card:hover .sec-06__card__imgfr {
|
|
|
+ transform: scale(1.1);
|
|
|
+}
|
|
|
+.sec-06__card h5 {
|
|
|
+ font-size: 1.1rem;
|
|
|
+ margin-bottom: 0.3rem;
|
|
|
+}
|
|
|
+.sec-06__card p {
|
|
|
+ font-size: 0.9rem;
|
|
|
+}
|
|
|
+.sec-06__card__outer {
|
|
|
+ width: 100%;
|
|
|
+ height: 48vh;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.sec-06__card__play {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ top: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 2.5rem;
|
|
|
+}
|
|
|
+.sec-06__card__imgfr {
|
|
|
+ width: 100%;
|
|
|
+ height: 48vh;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ transition: all 0.5s;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.sec-06 .slick-prev {
|
|
|
+ top: 40%;
|
|
|
+ left: 0.5rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-06 .slick-next {
|
|
|
+ top: 40%;
|
|
|
+ right: 0.5rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-06 .slick-prev:before,
|
|
|
+.sec-06 .slick-next:before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-08 {
|
|
|
+ padding-bottom: 2.5rem;
|
|
|
+}
|
|
|
+.sec-08 .container {
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 1rem 0rem;
|
|
|
+ max-width: 1050px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-08 .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-08__title {
|
|
|
+ border-bottom: 6px solid #ee7800;
|
|
|
+ color: #535353;
|
|
|
+}
|
|
|
+.sec-08__title h3 {
|
|
|
+ font-size: 1.6rem;
|
|
|
+}
|
|
|
+.sec-08__slider {
|
|
|
+ width: 100%;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.sec-08__imgfr {
|
|
|
+ width: 100%;
|
|
|
+ height: 28vh;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-08__imgfr {
|
|
|
+ height: 20vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-08__card h5 {
|
|
|
+ font-size: 1rem;
|
|
|
+}
|
|
|
+.sec-08__card p {
|
|
|
+ font-size: 0.9rem;
|
|
|
+}
|
|
|
+.sec-08__card__play {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ top: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 2.5rem;
|
|
|
+}
|
|
|
+.sec-08__cardtxt {
|
|
|
+ font-size: 14px;
|
|
|
+ padding-right: 0.6rem;
|
|
|
+}
|
|
|
+.sec-08 .slick-prev {
|
|
|
+ top: 40%;
|
|
|
+ left: -2rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-08 .slick-next {
|
|
|
+ top: 40%;
|
|
|
+ right: -2rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-08 .slick-prev:before,
|
|
|
+.sec-08 .slick-next:before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-09 {
|
|
|
+ background-color: #f4f4f4;
|
|
|
+}
|
|
|
+.sec-09 .container {
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 2rem 0rem;
|
|
|
+ max-width: 1050px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-09 .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-09__imgfr {
|
|
|
+ width: 100%;
|
|
|
+ height: 25vh;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-09__imgfr {
|
|
|
+ height: 20vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-09__card {
|
|
|
+ margin: 5px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.sec-09__card p {
|
|
|
+ font-size: 14px;
|
|
|
+ margin-top: 0.5rem;
|
|
|
+}
|
|
|
+.sec-09__card__play {
|
|
|
+ position: absolute;
|
|
|
+ right: 0.6rem;
|
|
|
+ bottom: 0.6rem;
|
|
|
+ width: 2.5rem;
|
|
|
+}
|
|
|
+.sec-09__title {
|
|
|
+ border-bottom: 6px solid #ee7800;
|
|
|
+ color: #535353;
|
|
|
+}
|
|
|
+.sec-09__title h3 {
|
|
|
+ font-size: 1.6rem;
|
|
|
+}
|
|
|
+.sec-09 .slick-prev {
|
|
|
+ top: 40%;
|
|
|
+ left: -2rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-09 .slick-next {
|
|
|
+ top: 40%;
|
|
|
+ right: -2rem;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.sec-09 .slick-prev:before,
|
|
|
+.sec-09 .slick-next:before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-10 {
|
|
|
+ padding: 2.5rem 0;
|
|
|
+}
|
|
|
+.sec-10 .container {
|
|
|
+ max-width: 1000px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-10 .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-10__titlebox {
|
|
|
+ border-bottom: 1px solid rgb(75, 75, 75);
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.sec-10__titlebox-h2 {
|
|
|
+ margin: 0 auto;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ font-weight: 600;
|
|
|
+ color: rgb(83, 83, 83);
|
|
|
+ padding: 0.8rem 0;
|
|
|
+ border-bottom: 6px solid #ee7800;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.sec-10__card {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.sec-10__card h5 {
|
|
|
+ font-size: 1rem;
|
|
|
+ margin-bottom: 0.3rem;
|
|
|
+}
|
|
|
+.sec-10__card p {
|
|
|
+ font-size: 0.95rem;
|
|
|
+ font-weight: 300;
|
|
|
+ color: gray;
|
|
|
+}
|
|
|
+.sec-10__card-img {
|
|
|
+ width: 100%;
|
|
|
+ height: 25vh;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-10__card-img {
|
|
|
+ height: 20vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-10__card__play {
|
|
|
+ position: absolute;
|
|
|
+ right: 1rem;
|
|
|
+ bottom: 1rem;
|
|
|
+ width: 2.5rem;
|
|
|
+ height: 2.5rem;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-11 {
|
|
|
+ padding: 2.5rem 0;
|
|
|
+ padding-top: 1rem;
|
|
|
+}
|
|
|
+.sec-11 .container {
|
|
|
+ max-width: 1000px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-11 .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-11__titlebox {
|
|
|
+ border-bottom: 1px solid rgb(75, 75, 75);
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.sec-11__titlebox-h2 {
|
|
|
+ margin: 0 auto;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ font-weight: 600;
|
|
|
+ color: rgb(83, 83, 83);
|
|
|
+ padding: 0.8rem 0;
|
|
|
+ border-bottom: 6px solid #ee7800;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.sec-11__card {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.sec-11__card h5 {
|
|
|
+ font-size: 1rem;
|
|
|
+ margin-bottom: 0.3rem;
|
|
|
+}
|
|
|
+.sec-11__card p {
|
|
|
+ font-size: 0.95rem;
|
|
|
+ font-weight: 300;
|
|
|
+ color: gray;
|
|
|
+}
|
|
|
+.sec-11__card-img {
|
|
|
+ width: 100%;
|
|
|
+ height: 25vh;
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-11__card-img {
|
|
|
+ height: 20vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-11__card__play {
|
|
|
+ position: absolute;
|
|
|
+ right: 1rem;
|
|
|
+ bottom: 1rem;
|
|
|
+ width: 2.5rem;
|
|
|
+ height: 2.5rem;
|
|
|
+}
|
|
|
+
|
|
|
+.footer {
|
|
|
+ padding: 2rem;
|
|
|
+ background-color: #F4F4F4;
|
|
|
+ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
|
|
|
+}
|
|
|
+.footer h2 {
|
|
|
+ text-align: center;
|
|
|
+ margin: 100px auto 0;
|
|
|
+ color: #707070;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 300;
|
|
|
+ letter-spacing: 0.05rem;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer h2 {
|
|
|
+ margin: 80px auto 30px;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer h4 {
|
|
|
+ color: #797979;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 50px;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer h4 {
|
|
|
+ text-align: left;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .about-list,
|
|
|
+ .footer .follow-list,
|
|
|
+ .footer .more-list {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ .footer .about-list section,
|
|
|
+ .footer .follow-list section,
|
|
|
+ .footer .more-list section {
|
|
|
+ width: 300px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .about-list a {
|
|
|
+ color: #707070;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+.footer .about-list a:hover {
|
|
|
+ opacity: 0.8;
|
|
|
+}
|
|
|
+.footer .about-list ul {
|
|
|
+ padding: 0;
|
|
|
+ letter-spacing: 0.05em;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .about-list ul {
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .about-list ul li {
|
|
|
+ margin: 5px 0;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .about-list ul li {
|
|
|
+ margin: 0;
|
|
|
+ height: 30px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .about-list ul li span {
|
|
|
+ color: #EA068C;
|
|
|
+}
|
|
|
+.footer .about-list img {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ margin-right: 7px;
|
|
|
+}
|
|
|
+.footer .follow-list img {
|
|
|
+ width: 45px;
|
|
|
+ height: 45px;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .footer .follow-list img {
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .follow-list .media {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .follow-list .media {
|
|
|
+ margin: 0 8px 10px 0;
|
|
|
+ }
|
|
|
+ .footer .follow-list .media section {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .follow-list .media a {
|
|
|
+ display: block;
|
|
|
+ margin: 0 5px;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .footer .follow-list .media a {
|
|
|
+ margin: 0 3px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .follow-list .media .media-item.after {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ opacity: 0;
|
|
|
+}
|
|
|
+.footer .follow-list .fb-list {
|
|
|
+ display: flex;
|
|
|
+ margin-top: 30px;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .follow-list .fb-list {
|
|
|
+ flex-direction: column;
|
|
|
+ margin-top: 5px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .follow-list .fb-list a {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding-right: 10px;
|
|
|
+ color: #797979;
|
|
|
+ font-size: 0.9rem;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .footer .follow-list .fb-list a {
|
|
|
+ padding-right: 5px;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .follow-list .fb-list a {
|
|
|
+ font-size: 15px;
|
|
|
+ height: 30px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .follow-list .fb-list a:hover {
|
|
|
+ opacity: 0.8;
|
|
|
+}
|
|
|
+.footer .follow-list .fb-list a img {
|
|
|
+ width: 20px;
|
|
|
+ margin-right: 5px;
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .footer .follow-list .fb-list a img {
|
|
|
+ width: 18px;
|
|
|
+ margin-right: 3px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .follow-list .fb-list a img {
|
|
|
+ width: 20px;
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .follow-list,
|
|
|
+.footer .more-list {
|
|
|
+ padding: 0;
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .follow-list,
|
|
|
+ .footer .more-list {
|
|
|
+ margin-top: 30px;
|
|
|
+ padding-top: 30px;
|
|
|
+ border-top: 1px solid #989898;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .follow-list::after,
|
|
|
+.footer .more-list::after {
|
|
|
+ content: "";
|
|
|
+ height: 100%;
|
|
|
+ display: block;
|
|
|
+ width: 1px;
|
|
|
+ background: #989898;
|
|
|
+ position: absolute;
|
|
|
+ top: 50px;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .follow-list::after,
|
|
|
+ .footer .more-list::after {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .more-list ::-moz-placeholder {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.footer .more-list ::placeholder {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.footer .more-list a {
|
|
|
+ display: inline-block;
|
|
|
+ margin: 5px;
|
|
|
+ padding-bottom: 2px;
|
|
|
+ color: #797979;
|
|
|
+ border-bottom: 1px solid;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+.footer .more-list a:hover {
|
|
|
+ opacity: 0.8;
|
|
|
+}
|
|
|
+.footer .more-list .input-focus {
|
|
|
+ border-color: var(--sub-color) !important;
|
|
|
+}
|
|
|
+.footer .more-list .input-focus button {
|
|
|
+ background-color: var(--sub-color) !important;
|
|
|
+}
|
|
|
+.footer .more-list .input-error {
|
|
|
+ border-color: #FF5252 !important;
|
|
|
+}
|
|
|
+.footer .more-list .input-error button {
|
|
|
+ background-color: #FF5252 !important;
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item {
|
|
|
+ width: 100%;
|
|
|
+ max-width: 300px;
|
|
|
+ margin: auto;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ border: 2px solid #34404B;
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item:hover {
|
|
|
+ border: 2px solid var(--sub-color);
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item:hover button {
|
|
|
+ background-color: var(--sub-color);
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .footer .more-list .subscriber-item {
|
|
|
+ max-width: 250px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .more-list .subscriber-item {
|
|
|
+ max-width: 300px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item input:focus {
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item input,
|
|
|
+.footer .more-list .subscriber-item button {
|
|
|
+ padding: 10px;
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item button {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #34404B;
|
|
|
+ transition: all 0.1s;
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item .spinner-border {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.footer .more-list .subscriber-item .show {
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.footer .more-list .link {
|
|
|
+ width: 230px;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .footer .more-list .link {
|
|
|
+ width: 310px;
|
|
|
+ margin-left: -3px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/* 舊 */
|
|
|
+#videoModal .modal-content {
|
|
|
+ background-color: transparent;
|
|
|
+ border: none;
|
|
|
+ width: -moz-fit-content;
|
|
|
+ width: fit-content;
|
|
|
+}
|
|
|
+
|
|
|
+#videoModal .modal-dialog {
|
|
|
+ max-width: 700px;
|
|
|
+}
|
|
|
+
|
|
|
+.modal-content {
|
|
|
+ letter-spacing: 1px;
|
|
|
+}
|
|
|
+.modal-content .fm-close {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.morelink {
|
|
|
+ text-decoration: none;
|
|
|
+ color: #ee7800;
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+.morelink:hover {
|
|
|
+ color: #ee7800;
|
|
|
+}
|
|
|
+
|
|
|
+.fixed-btn {
|
|
|
+ position: fixed;
|
|
|
+ right: 15px;
|
|
|
+ bottom: 2rem;
|
|
|
+}
|
|
|
+.fixed-btn .btn-gotop,
|
|
|
+.fixed-btn .btn-login,
|
|
|
+.fixed-btn .btn-favor {
|
|
|
+ cursor: pointer;
|
|
|
+ padding: 1.2rem 0.8rem;
|
|
|
+ background-color: rgba(255, 255, 255, 0.897);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
+ -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
+ -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
+}
|
|
|
+
|
|
|
+.sec-login-list {
|
|
|
+ background-color: #f3f3f3;
|
|
|
+ padding: 1rem;
|
|
|
+ padding-bottom: 1.4rem;
|
|
|
+}
|
|
|
+.sec-login-list hr {
|
|
|
+ background-color: #aaaaaa;
|
|
|
+}
|
|
|
+.sec-login-btns {
|
|
|
+ padding: 1rem;
|
|
|
+ background-color: white;
|
|
|
+ box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
|
|
|
+}
|
|
|
+
|
|
|
+#loginModal .btn-close {
|
|
|
+ position: absolute;
|
|
|
+ right: -2rem;
|
|
|
+ top: -2rem;
|
|
|
+}
|
|
|
+
|
|
|
+#favorModal .btn-close {
|
|
|
+ position: absolute;
|
|
|
+ right: -2rem;
|
|
|
+ top: -2rem;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-title {
|
|
|
+ color: #4c4c4c;
|
|
|
+ font-size: 18px;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-list {
|
|
|
+ background-color: #f3f3f3;
|
|
|
+ padding: 1rem;
|
|
|
+ padding-bottom: 1.4rem;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-list hr {
|
|
|
+ background-color: #aaaaaa;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-user, #favorModal .sec-favor-checklist .form-user {
|
|
|
+ width: 50%;
|
|
|
+ color: #707070;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-progressbar, #favorModal .sec-favor-checklist .form-progressbar {
|
|
|
+ width: 50%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-progressbar li, #favorModal .sec-favor-checklist .form-progressbar li {
|
|
|
+ width: 1.6rem;
|
|
|
+ height: 1.6rem;
|
|
|
+ border-radius: 50%;
|
|
|
+ border: 2px solid #d3d3d3;
|
|
|
+ line-height: 1.4rem;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ position: relative;
|
|
|
+ color: #d3d3d3;
|
|
|
+ background-color: #f3f3f3;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-progressbar li.active, #favorModal .sec-favor-checklist .form-progressbar li.active {
|
|
|
+ border: 2px solid #ee7800;
|
|
|
+ color: #ee7800;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-progressbar li.active::before, #favorModal .sec-favor-checklist .form-progressbar li.active::before {
|
|
|
+ border-top: 2px solid #ee7800;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-progressbar li::before, #favorModal .sec-favor-checklist .form-progressbar li::before {
|
|
|
+ position: absolute;
|
|
|
+ content: " ";
|
|
|
+ width: 4rem;
|
|
|
+ height: 0;
|
|
|
+ border-top: 2px dashed #d3d3d3;
|
|
|
+ right: 100%;
|
|
|
+ top: 50%;
|
|
|
+ z-index: 1;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-progressbar li:nth-of-type(1)::before, #favorModal .sec-favor-checklist .form-progressbar li:nth-of-type(1)::before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-step, #favorModal .sec-favor-checklist .form-step {
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 3px;
|
|
|
+ padding: 1.5rem 1rem;
|
|
|
+ padding-bottom: 1.5rem;
|
|
|
+ box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
|
|
|
+ overflow: visible;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-step .next, #favorModal .sec-favor-checklist .form-step .next {
|
|
|
+ padding: 0.6rem 5rem;
|
|
|
+ background-color: #ee7800;
|
|
|
+ border-radius: 3px;
|
|
|
+ color: white;
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-step1, #favorModal .sec-favor-checklist .form-step1 {
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-step2, #favorModal .sec-favor-checklist .form-step2 {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .form-step3, #favorModal .sec-favor-checklist .form-step3 {
|
|
|
+ display: none;
|
|
|
+ position: relative;
|
|
|
+ padding-bottom: 1.5rem;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form input[type=checkbox],
|
|
|
+#favorModal .sec-favor-form input[type=radio], #favorModal .sec-favor-checklist input[type=checkbox],
|
|
|
+#favorModal .sec-favor-checklist input[type=radio] {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .imgfr, #favorModal .sec-favor-checklist .imgfr {
|
|
|
+ background-position: center center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ width: 100%;
|
|
|
+ height: 4.5rem;
|
|
|
+ border-radius: 8px;
|
|
|
+ border: 2px solid transparent;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form h4, #favorModal .sec-favor-checklist h4 {
|
|
|
+ color: #aaaaaa;
|
|
|
+ font-size: 15px;
|
|
|
+ font-weight: 400;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form input[type=checkbox]:checked + .fs-label-info .imgfr, #favorModal .sec-favor-checklist input[type=checkbox]:checked + .fs-label-info .imgfr {
|
|
|
+ border: 2px solid #ee7800;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form input[type=checkbox]:checked + .fs-label-chbox, #favorModal .sec-favor-checklist input[type=checkbox]:checked + .fs-label-chbox {
|
|
|
+ border: 1px solid #ee7800;
|
|
|
+ color: #ee7800;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form input[type=radio]:checked + .fs-label-chbox, #favorModal .sec-favor-checklist input[type=radio]:checked + .fs-label-chbox {
|
|
|
+ border: 1px solid #ee7800;
|
|
|
+ color: #ee7800;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .step3-block, #favorModal .sec-favor-checklist .step3-block {
|
|
|
+ margin-bottom: 1rem;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .step3-block:nth-of-type(3), #favorModal .sec-favor-checklist .step3-block:nth-of-type(3) {
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .step3-block-title, #favorModal .sec-favor-checklist .step3-block-title {
|
|
|
+ color: #aaaaaa;
|
|
|
+ display: block;
|
|
|
+ margin-bottom: 0.5rem;
|
|
|
+ font-size: 1rem;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .step3-block .radio, #favorModal .sec-favor-checklist .step3-block .radio {
|
|
|
+ display: inline-block;
|
|
|
+ padding: 0.25rem 0.7rem;
|
|
|
+ margin-right: 0.4rem;
|
|
|
+ border: 1px solid #707070;
|
|
|
+ border-radius: 2rem;
|
|
|
+ color: #797979;
|
|
|
+ margin-bottom: 0.5rem;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .skip, #favorModal .sec-favor-checklist .skip {
|
|
|
+ padding: 0.3rem 1rem;
|
|
|
+ color: #aaaaaa;
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+ background-color: transparent;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .btngrp, #favorModal .sec-favor-checklist .btngrp {
|
|
|
+ /* position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ bottom: -6rem; */
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-form .btngrp .next, #favorModal .sec-favor-checklist .btngrp .next {
|
|
|
+ transform: translateY(0rem);
|
|
|
+}
|
|
|
+#favorModal .sec-favor-checklist .form-user {
|
|
|
+ margin: 0 auto;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 1rem;
|
|
|
+}
|
|
|
+#favorModal .sec-favor-btns {
|
|
|
+ padding: 1rem;
|
|
|
+ background-color: white;
|
|
|
+ box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
|
|
|
+}
|
|
|
+
|
|
|
+.test {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.test .cover {
|
|
|
+ width: 100%;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ display: block;
|
|
|
+ background-color: white;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.test .cover.slidein {
|
|
|
+ animation: slidein 2s forwards;
|
|
|
+}
|
|
|
+
|
|
|
+.title_back {
|
|
|
+ display: block;
|
|
|
+ position: relative;
|
|
|
+ width: 10em;
|
|
|
+ height: 1.75em;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.title_back .title {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: -1.75em;
|
|
|
+ display: block;
|
|
|
+ transition: all 1s;
|
|
|
+}
|
|
|
+
|
|
|
+.test_content {
|
|
|
+ opacity: 0;
|
|
|
+}
|
|
|
+.test_content.fadein {
|
|
|
+ animation: fadein 2s forwards;
|
|
|
+}
|
|
|
+@keyframes slidein {
|
|
|
+ 100% {
|
|
|
+ height: 0px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes fadein {
|
|
|
+ 100% {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .article__readMore::before {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ background: linear-gradient(0deg, #fcfcfc 0%, rgba(255, 255, 255, 0.454219) 100%);
|
|
|
+ width: 100%;
|
|
|
+ height: 25px;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+#hhh-cases .article__contexts_cases {
|
|
|
+ font-size: 1.1rem;
|
|
|
+ line-height: 1.8;
|
|
|
+ height: 50px;
|
|
|
+ overflow: hidden;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+ color: #727679;
|
|
|
+}
|
|
|
+#hhh-cases .article__readMore {
|
|
|
+ cursor: pointer;
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+ color: #ffac73;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 90%;
|
|
|
+ padding: 0 0 1rem;
|
|
|
+ transform: translateY(-20px);
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+#hhh-cases .article__readMore a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: #ffac73;
|
|
|
+}
|
|
|
+#hhh-cases .img-wrapper-desktop {
|
|
|
+ background-color: #6d6d6d;
|
|
|
+ display: flex;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+#hhh-cases .swiper-zoom-container-desktop {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+#hhh-cases .swiper-zoom-container-desktop img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ max-width: 100%;
|
|
|
+ max-height: 100%;
|
|
|
+ -o-object-fit: contain;
|
|
|
+ object-fit: contain;
|
|
|
+}
|
|
|
+#hhh-cases .swiper-zoom-container-sm-desktop {
|
|
|
+ width: 50%;
|
|
|
+ height: 70%;
|
|
|
+}
|
|
|
+#hhh-cases .swiper-zoom-container-sm-desktop {
|
|
|
+ width: 50%;
|
|
|
+ height: 70%;
|
|
|
+}
|
|
|
+#hhh-cases .slick-prev:before,
|
|
|
+#hhh-cases .slick-next:before {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+#hhh-cases .modal-body {
|
|
|
+ padding: 0 !important;
|
|
|
+}
|
|
|
+#hhh-cases .case-slick-box {
|
|
|
+ height: 100vh;
|
|
|
+ position: sticky;
|
|
|
+ top: 15px;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .case-slick-box {
|
|
|
+ height: 60vh;
|
|
|
+ position: static;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .img-wrapper-desktopp {
|
|
|
+ width: 95%;
|
|
|
+ margin: 0 auto;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+#hhh-cases .CaseDetail-slick {
|
|
|
+ height: 100vh;
|
|
|
+ width: 95%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .CaseDetail-slick {
|
|
|
+ height: 60vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .CaseDetail-slick .slick-slide {
|
|
|
+ height: 100vh;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .CaseDetail-slick .slick-slide {
|
|
|
+ height: 60vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .CaseDetail-slick img {
|
|
|
+ width: 100%;
|
|
|
+ height: auto;
|
|
|
+ max-width: 100%;
|
|
|
+ max-height: 100%;
|
|
|
+ -o-object-fit: contain;
|
|
|
+ object-fit: contain;
|
|
|
+}
|
|
|
+#hhh-cases .breadcrumb {
|
|
|
+ padding: 0.75rem 1rem;
|
|
|
+ letter-spacing: 1px;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .breadcrumb {
|
|
|
+ margin-bottom: 0;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
|
|
|
+ float: unset;
|
|
|
+ padding-right: 0.2rem;
|
|
|
+ color: #6c757d;
|
|
|
+ content: var(--bs-breadcrumb-divider, "/");
|
|
|
+}
|
|
|
+#hhh-cases .breadcrumb a {
|
|
|
+ font-size: 0.75rem;
|
|
|
+ color: #727679;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .breadcrumb li {
|
|
|
+ display: inline;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .breadcrumb .active a {
|
|
|
+ color: #aaaaaa;
|
|
|
+}
|
|
|
+#hhh-cases .breadcrumb-item + .breadcrumb-item {
|
|
|
+ padding-left: 0.2rem;
|
|
|
+}
|
|
|
+#hhh-cases .h4 {
|
|
|
+ font-weight: bold;
|
|
|
+ color: #34404b;
|
|
|
+}
|
|
|
+#hhh-cases .article {
|
|
|
+ color: #727679;
|
|
|
+}
|
|
|
+#hhh-cases .article .small {
|
|
|
+ padding: 0.5rem 0;
|
|
|
+ font-size: 80%;
|
|
|
+}
|
|
|
+#hhh-cases .shadow-sm {
|
|
|
+ box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08) !important;
|
|
|
+}
|
|
|
+#hhh-cases .container-width-column {
|
|
|
+ max-width: 1120px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+#hhh-cases .article__wrapper {
|
|
|
+ padding: 0.75rem 1rem;
|
|
|
+}
|
|
|
+#hhh-cases .shadow {
|
|
|
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
|
|
|
+}
|
|
|
+#hhh-cases .cases-content {
|
|
|
+ background: #fcfcfc;
|
|
|
+}
|
|
|
+#hhh-cases .cases-content .caseSlider {
|
|
|
+ background: #fff;
|
|
|
+ max-width: 1310px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 100px;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .cases-content .caseSlider {
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .cases-content .caseSlider .morePhotoTip {
|
|
|
+ cursor: pointer;
|
|
|
+ position: absolute;
|
|
|
+ color: #fff;
|
|
|
+ right: 120px;
|
|
|
+ bottom: 120px;
|
|
|
+ padding: 0.2rem 0.8rem;
|
|
|
+ background-color: rgba(0, 0, 0, 0.45);
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .cases-content .caseSlider .morePhotoTip {
|
|
|
+ bottom: 10px;
|
|
|
+ right: 10px;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .container--padding {
|
|
|
+ padding: 1.2rem 0;
|
|
|
+}
|
|
|
+#hhh-cases .info__items {
|
|
|
+ font-size: 1.2rem;
|
|
|
+ text-align: center;
|
|
|
+ color: #34404b;
|
|
|
+ font-weight: 800;
|
|
|
+ min-height: 4.5rem;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .info__items {
|
|
|
+ font-size: 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .info__items__title {
|
|
|
+ color: #727679;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 1rem;
|
|
|
+}
|
|
|
+#hhh-cases .case-scMedia__block {
|
|
|
+ width: 35%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .case-scMedia__block {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .case-scMedia__block .case-scMedia__list {
|
|
|
+ background-color: #fff;
|
|
|
+ box-shadow: 0 1px 10px #cecece;
|
|
|
+ border-radius: 45px;
|
|
|
+ padding: 1rem 2.8rem;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .case-scMedia__block .case-scMedia__list {
|
|
|
+ border-radius: 0px;
|
|
|
+ box-shadow: none;
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .relTag {
|
|
|
+ padding: 1rem;
|
|
|
+}
|
|
|
+#hhh-cases .relTag a {
|
|
|
+ margin: 0 0 0.6rem 0.6rem;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+#hhh-cases .relTag a:hover {
|
|
|
+ color: #ffac73;
|
|
|
+ border-color: #ffac73;
|
|
|
+}
|
|
|
+#hhh-cases .relTag__items__title {
|
|
|
+ width: 7%;
|
|
|
+}
|
|
|
+#hhh-cases .relTag__items {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: baseline;
|
|
|
+}
|
|
|
+#hhh-cases .relTag__items__tags {
|
|
|
+ width: 93%;
|
|
|
+}
|
|
|
+#hhh-cases .btn-outline-custom {
|
|
|
+ border-color: #707070;
|
|
|
+}
|
|
|
+#hhh-cases .caseData {
|
|
|
+ color: #727679;
|
|
|
+ padding: 0.5rem 0 0;
|
|
|
+ margin-bottom: 3rem;
|
|
|
+}
|
|
|
+#hhh-cases .caseData h4 {
|
|
|
+ font-weight: bold;
|
|
|
+ color: #34404b;
|
|
|
+ padding: 0.5rem;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .caseData h4 {
|
|
|
+ padding: 1rem 0.5rem 0.5rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .caseData .caseData__infoBlock {
|
|
|
+ position: relative;
|
|
|
+ box-shadow: 0 1px 10px #cecece;
|
|
|
+ padding: 1rem;
|
|
|
+}
|
|
|
+#hhh-cases .caseData .caseData__infoItems {
|
|
|
+ padding: 0.5rem;
|
|
|
+}
|
|
|
+#hhh-cases .caseData .caseData__infoItems__list {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+#hhh-cases .caseData .caseData__infoItems__list--lf {
|
|
|
+ justify-content: start;
|
|
|
+ -webkit-box-align: start;
|
|
|
+ display: flex;
|
|
|
+ flex-grow: 0;
|
|
|
+ max-width: 15%;
|
|
|
+ flex-basis: 15%;
|
|
|
+ -webkit-box-flex: 0;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .caseData .caseData__infoItems__list--lf {
|
|
|
+ max-width: 25%;
|
|
|
+ flex-basis: 25%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .caseData .caseData__infoItems__list--rt {
|
|
|
+ flex-basis: 80%;
|
|
|
+ flex-grow: 0;
|
|
|
+ max-width: 80%;
|
|
|
+ justify-content: start;
|
|
|
+ word-break: break-all;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .caseData .caseData__infoItems__list--rt {
|
|
|
+ flex-basis: 70%;
|
|
|
+ max-width: 70%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .caseData a {
|
|
|
+ text-decoration: none;
|
|
|
+ background-color: transparent;
|
|
|
+ color: #727679;
|
|
|
+}
|
|
|
+#hhh-cases .caseData__designerBlock {
|
|
|
+ display: flex;
|
|
|
+ box-shadow: 0 1px 10px #cecece;
|
|
|
+}
|
|
|
+#hhh-cases .caseData__designerBlock ul {
|
|
|
+ list-style-type: none;
|
|
|
+ padding: 0.6rem;
|
|
|
+}
|
|
|
+#hhh-cases .caseData__designerBlock__designer--pc {
|
|
|
+ padding: 1rem 0.9rem;
|
|
|
+ width: 50%;
|
|
|
+ height: 370px;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .caseData__designerBlock__designer {
|
|
|
+ width: 60%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .caseData__designerBlock__designer--above {
|
|
|
+ height: 70%;
|
|
|
+}
|
|
|
+#hhh-cases .caseData__designerBlock__designer--below {
|
|
|
+ height: 25%;
|
|
|
+ border-top: 1px solid #727679;
|
|
|
+}
|
|
|
+#hhh-cases .caseData__designerBlock__avatar--img {
|
|
|
+ height: 100%;
|
|
|
+ background-size: contain;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .caseData__designerBlock__avatar--img {
|
|
|
+ height: 190px;
|
|
|
+ background-size: contain;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .caseData__designerBlock__avatar {
|
|
|
+ width: 50%;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .caseData__designerBlock__avatar {
|
|
|
+ width: 40%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .tel {
|
|
|
+ color: #ee751b !important;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .tel {
|
|
|
+ font-size: 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__state {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__state h4 {
|
|
|
+ font-weight: bold;
|
|
|
+ color: #34404b;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__state .likeSee__state__filter--divider {
|
|
|
+ height: 12px;
|
|
|
+ display: inline-block;
|
|
|
+ border: 0.5px solid #9d9d9d;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__state a {
|
|
|
+ color: #727679;
|
|
|
+ text-decoration: none;
|
|
|
+ transition: 0.3s;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__state a:hover {
|
|
|
+ color: #ee7800;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__state .active {
|
|
|
+ color: #ee751b;
|
|
|
+}
|
|
|
+#hhh-cases .card {
|
|
|
+ border: none;
|
|
|
+ font-size: 0.75rem;
|
|
|
+}
|
|
|
+#hhh-cases .vue-waterfall {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+#hhh-cases .vue-waterfall a {
|
|
|
+ color: #727679;
|
|
|
+ text-decoration: none;
|
|
|
+ background-color: transparent;
|
|
|
+ font-size: 0.75rem;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+#hhh-cases .vue-waterfall a:hover {
|
|
|
+ color: #ffac73;
|
|
|
+}
|
|
|
+#hhh-cases .vue-waterfall .card-body {
|
|
|
+ padding: 0.5rem 0.5rem 0.5rem 0;
|
|
|
+}
|
|
|
+#hhh-cases .vue-waterfall .likeSee__tag--item {
|
|
|
+ margin: 0 0.2rem 0 0;
|
|
|
+ text-decoration: none !important;
|
|
|
+ color: #727679;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+#hhh-cases .vue-waterfall .likeSee__tag--item:hover {
|
|
|
+ color: #ffac73;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__tag {
|
|
|
+ padding: 0.5rem 0;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__tag--item {
|
|
|
+ margin: 0 0.2rem 0 0;
|
|
|
+ text-decoration: none !important;
|
|
|
+ color: #727679;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__tag--item:hover {
|
|
|
+ color: #ffac73;
|
|
|
+}
|
|
|
+#hhh-cases .likeSee__state__filter--item {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+#hhh-cases .formBtn .btn {
|
|
|
+ padding: 1.2rem 0.75rem;
|
|
|
+}
|
|
|
+#hhh-cases .btn-primary {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #ee7800;
|
|
|
+ border-color: #ee7800;
|
|
|
+}
|
|
|
+#hhh-cases .btn-block {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+#hhh-cases .container-width-ad {
|
|
|
+ max-width: 768px;
|
|
|
+}
|
|
|
+#hhh-cases .formBtn {
|
|
|
+ width: 47%;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .formBtn {
|
|
|
+ margin-top: 15px;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .ad__bgImg {
|
|
|
+ height: 80px;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ background-position: center;
|
|
|
+}
|
|
|
+#hhh-cases .container-width-ad {
|
|
|
+ max-width: 768px;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .container-width-ad {
|
|
|
+ margin-bottom: 100px;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .contact-section-avatar {
|
|
|
+ width: 75px;
|
|
|
+ height: 100px;
|
|
|
+}
|
|
|
+#hhh-cases .contact-section-company {
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #6d6d6d;
|
|
|
+ text-decoration: none;
|
|
|
+ height: 50.04px;
|
|
|
+}
|
|
|
+#hhh-cases .contact-section-detail-box {
|
|
|
+ color: #6d6d6d;
|
|
|
+ display: flex !important;
|
|
|
+}
|
|
|
+#hhh-cases .contact-section-detail-box .contact-section-detail-lf {
|
|
|
+ flex-basis: 7%;
|
|
|
+ flex-grow: 0;
|
|
|
+ max-width: 7%;
|
|
|
+ display: flex !important;
|
|
|
+ -webkit-box-align: start;
|
|
|
+ -webkit-box-flex: 0;
|
|
|
+}
|
|
|
+#hhh-cases .contact-section-detail-box a {
|
|
|
+ color: #6d6d6d;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+#hhh-cases .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);
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .info-area-title-desktop {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: bold;
|
|
|
+ padding: 0.6rem 0 0.6rem 0.6rem;
|
|
|
+ margin: 1.6rem 0 1rem 0;
|
|
|
+ background-color: #efefef;
|
|
|
+}
|
|
|
+#hhh-cases .info-area-title-desktop a {
|
|
|
+ color: #6d6d6d;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+#hhh-cases .info-area-data-desktop,
|
|
|
+#hhh-cases .info-area-other-case-desktop,
|
|
|
+#hhh-cases .info-area-same-case-desktop,
|
|
|
+#hhh-cases .info-area-contact-desktop {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #6d6d6d;
|
|
|
+}
|
|
|
+#hhh-cases .info-area-data-desktop a,
|
|
|
+#hhh-cases .info-area-other-case-desktop a,
|
|
|
+#hhh-cases .info-area-same-case-desktop a,
|
|
|
+#hhh-cases .info-area-contact-desktop a {
|
|
|
+ color: #6d6d6d;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+#hhh-cases .divider {
|
|
|
+ width: 100%;
|
|
|
+ height: 1px;
|
|
|
+ border-left: none;
|
|
|
+ border-bottom: 1px solid #9c9c9c;
|
|
|
+ margin: 10px 0;
|
|
|
+}
|
|
|
+#hhh-cases .data-table-desktop {
|
|
|
+ width: 100%;
|
|
|
+ font-size: 14px;
|
|
|
+ padding: 0.55rem 0;
|
|
|
+}
|
|
|
+#hhh-cases .data-table-lf {
|
|
|
+ flex-basis: 18%;
|
|
|
+ flex-grow: 0;
|
|
|
+ max-width: 25%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: start;
|
|
|
+ align-items: start;
|
|
|
+}
|
|
|
+#hhh-cases .contact-section-detail-desktop {
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+#hhh-cases .contact-section-detail-lf {
|
|
|
+ flex-basis: 7%;
|
|
|
+ flex-grow: 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: start;
|
|
|
+ max-width: 7%;
|
|
|
+}
|
|
|
+#hhh-cases .info {
|
|
|
+ margin: 0 0 1.8rem;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+#hhh-cases .info .info__option {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ min-height: 100%;
|
|
|
+}
|
|
|
+#hhh-cases .info .info__items--ellipse {
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ box-orient: vertical;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ line-break: after-white-space;
|
|
|
+ height: 28.8px;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ transition: all 300ms ease-in-out;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .info .info__items--ellipse {
|
|
|
+ height: 24px;
|
|
|
+ min-height: 0;
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .info .border-sidebar {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+#hhh-cases .info .border-sidebar::after {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 1px;
|
|
|
+ height: 120px;
|
|
|
+ background-color: #cecece;
|
|
|
+ transform: translate3d(0, 0, 0);
|
|
|
+ position: absolute;
|
|
|
+ left: 100%;
|
|
|
+ top: 12px;
|
|
|
+}
|
|
|
+#hhh-cases .info .mh {
|
|
|
+ min-height: 75px;
|
|
|
+}
|
|
|
+#hhh-cases .info .border-below {
|
|
|
+ border-bottom: 1px solid #cecece;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .info .container--padding {
|
|
|
+ padding: 0 1.875rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .display-pc {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #hhh-cases .CaseInfo-pc {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+#hhh-cases .info--shadow {
|
|
|
+ box-shadow: 0 1px 10px #cecece;
|
|
|
+}
|
|
|
+
|
|
|
+/* 舊版 */
|
|
|
+.fixed_menu {
|
|
|
+ height: 78px;
|
|
|
+ position: fixed;
|
|
|
+ z-index: 4;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
|
+ -webkit-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
|
+ -moz-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
|
+}
|
|
|
+@media (min-width: 480px) {
|
|
|
+ .fixed_menu {
|
|
|
+ height: 50px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (min-width: 480px) {
|
|
|
+ .fixed_menu .row {
|
|
|
+ height: 50px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (min-width: 480px) {
|
|
|
+ .fixed_menu__box {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.fixed_menu__box img:focus-visible {
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+@media (min-width: 480px) {
|
|
|
+ .fixed_menu__box img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/* 新版 */
|
|
|
+.footer-fix-block {
|
|
|
+ height: 65px;
|
|
|
+ padding: 5px 10px;
|
|
|
+ position: fixed;
|
|
|
+ z-index: 5;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
|
+ -webkit-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
|
+ -moz-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
|
+}
|
|
|
+.footer-fix-block .footer-fix-wrapper a {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.footer-fix-block .footer-fix-wrapper img {
|
|
|
+ margin: auto;
|
|
|
+ max-width: 65px;
|
|
|
+}
|
|
|
+
|
|
|
+.article--style {
|
|
|
+ background: #fff;
|
|
|
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .article--style {
|
|
|
+ box-shadow: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.article__title {
|
|
|
+ color: #34404b;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ font-weight: bold;
|
|
|
+ margin-bottom: 0.5rem;
|
|
|
+}
|
|
|
+
|
|
|
+.article__contexts {
|
|
|
+ font-size: 1.1rem;
|
|
|
+ line-height: 1.8;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .article__contexts {
|
|
|
+ max-width: calc(100vw - 32px);
|
|
|
+ height: auto !important;
|
|
|
+ word-break: break-word;
|
|
|
+ }
|
|
|
+}
|
|
|
+.article__contexts img {
|
|
|
+ max-width: 80%;
|
|
|
+ margin: 0.5rem 0;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .article__contexts img {
|
|
|
+ max-width: 100% !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.article__contexts p {
|
|
|
+ margin-bottom: 1rem !important;
|
|
|
+}
|
|
|
+.article__contexts a {
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+.article__contexts strong {
|
|
|
+ font-weight: bolder;
|
|
|
+}
|
|
|
+
|
|
|
+table {
|
|
|
+ width: 100% !important;
|
|
|
+ display: block;
|
|
|
+ overflow-x: auto;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+
|
|
|
+iframe {
|
|
|
+ width: 100%;
|
|
|
+ max-width: 640px;
|
|
|
+}
|
|
|
+
|
|
|
+.cardList__items {
|
|
|
+ box-shadow: 0 1px 10px #eee;
|
|
|
+ margin: 0 0 1.5rem;
|
|
|
+}
|
|
|
+.cardList__items img {
|
|
|
+ width: 100%;
|
|
|
+ height: 293px;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+.cardList__items .cardList__items__content {
|
|
|
+ padding: 0.5rem 1rem;
|
|
|
+}
|
|
|
+.cardList__items .cardList__items--title {
|
|
|
+ font-size: 1.125rem;
|
|
|
+ font-weight: bold;
|
|
|
+ margin: 0.5rem 0;
|
|
|
+ color: #727679;
|
|
|
+}
|
|
|
+.cardList__items .likeSee__tag--item {
|
|
|
+ margin: 0 0.2rem 0 0;
|
|
|
+}
|
|
|
+.cardList__items a {
|
|
|
+ font-size: 16px !important;
|
|
|
+}
|
|
|
+.cardList__items p {
|
|
|
+ margin-bottom: 1rem !important;
|
|
|
+}
|
|
|
+
|
|
|
+.article__contexts__note {
|
|
|
+ width: 99.5%;
|
|
|
+ margin: 1.8rem auto;
|
|
|
+ font-size: 1.125rem;
|
|
|
+ padding: 1rem;
|
|
|
+ border: 1px solid #727679;
|
|
|
+}
|
|
|
+.article__contexts__note p {
|
|
|
+ margin-bottom: 1rem !important;
|
|
|
+}
|
|
|
+
|
|
|
+.scMedia {
|
|
|
+ width: 100%;
|
|
|
+ max-width: 500px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .scMedia {
|
|
|
+ width: 100%;
|
|
|
+ padding: 1rem 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.scMedia .scMedia__list {
|
|
|
+ background-color: #fff;
|
|
|
+ box-shadow: 0 1px 10px #cecece;
|
|
|
+ border-radius: 45px;
|
|
|
+ padding: 1rem 2.8rem;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ .scMedia .scMedia__list {
|
|
|
+ border-radius: 0px;
|
|
|
+ box-shadow: none;
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.scMedia .scMedia__list a {
|
|
|
+ display: inline-block;
|
|
|
+ margin: 0 5px;
|
|
|
+}
|
|
|
+.scMedia .scMedia__list span {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.fixed-btn {
|
|
|
+ position: fixed;
|
|
|
+ right: 15px;
|
|
|
+ bottom: 8rem;
|
|
|
+}
|
|
|
+@media (min-width: 480px) {
|
|
|
+ .fixed-btn {
|
|
|
+ bottom: 5rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.fixed-btn .btn-gotop {
|
|
|
+ padding: 1.2rem 0.8rem;
|
|
|
+ background-color: rgba(255, 255, 255, 0.897);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
+ -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
+ -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
+}
|
|
|
+
|
|
|
+.sec-ads {
|
|
|
+ padding: 2rem 0;
|
|
|
+ background-color: #f4f4f4;
|
|
|
+}
|
|
|
+.sec-ads .slick-prev {
|
|
|
+ left: 15px;
|
|
|
+ z-index: 100;
|
|
|
+}
|
|
|
+.sec-ads .slick-next {
|
|
|
+ right: 15px;
|
|
|
+}
|
|
|
+.sec-ads .sec-slide-box {
|
|
|
+ width: 85%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.sec-ads .container {
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 0.8rem 1.2rem;
|
|
|
+ max-width: 1050px;
|
|
|
+ width: 60%;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-ads .container {
|
|
|
+ width: 90%;
|
|
|
+ padding: 0 1rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+.sec-ads__slider {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.sec-ads__slider .slide-item {
|
|
|
+ height: 23vh;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .sec-ads__slider .slide-item {
|
|
|
+ height: 20vh;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/* index Start */
|
|
|
+.info-item .logo-img {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 10;
|
|
|
+ top: 20px;
|
|
|
+ left: 50px;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .info-item .logo-img {
|
|
|
+ left: 100px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .info-item .logo-img {
|
|
|
+ left: 4%;
|
|
|
+ top: 5%;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .info-item .logo-img {
|
|
|
+ left: 1%;
|
|
|
+ top: 3%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item .logo-img img {
|
|
|
+ width: 100%;
|
|
|
+ -o-object-fit: contain;
|
|
|
+ object-fit: contain;
|
|
|
+}
|
|
|
+.info-item .logo-img .img-designer {
|
|
|
+ height: 50px;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .info-item .logo-img .img-designer {
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .info-item .logo-img .img-designer {
|
|
|
+ height: 26px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item .logo-img .img-renovation {
|
|
|
+ height: 60px;
|
|
|
+}
|
|
|
+.info-item .logo-img .img-glory {
|
|
|
+ height: 70px;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .info-item .logo-img .img-glory,
|
|
|
+ .info-item .logo-img .img-renovation {
|
|
|
+ height: 60px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .info-item .logo-img .img-glory,
|
|
|
+ .info-item .logo-img .img-renovation {
|
|
|
+ height: 34px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item section {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 10;
|
|
|
+ bottom: 70px;
|
|
|
+ left: 70px;
|
|
|
+ color: #fff;
|
|
|
+ text-shadow: 1px 1px 4px #333;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .info-item section {
|
|
|
+ left: 14%;
|
|
|
+ bottom: 10%;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .info-item section {
|
|
|
+ left: 6%;
|
|
|
+ bottom: 6%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item section h3 {
|
|
|
+ font-size: 18px;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .info-item section h3 {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item section div {
|
|
|
+ display: flex;
|
|
|
+ border: 1px solid #fff;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .info-item section div {
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item section div h2 {
|
|
|
+ margin: auto;
|
|
|
+ padding: 5px 30px;
|
|
|
+ font-size: 26px;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .info-item section div h2 {
|
|
|
+ font-size: 18px;
|
|
|
+ margin: 0;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item section div h2:first-child {
|
|
|
+ padding-bottom: 8px;
|
|
|
+ background-color: rgba(237, 237, 237, 0.3);
|
|
|
+}
|
|
|
+.info-item section div h2:last-child {
|
|
|
+ font-size: 24px;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .info-item section div h2:last-child {
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.info-item section div h2:last-child small {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 300;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .info-item section div h2:last-child small {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.banner-content {
|
|
|
+ max-width: 100%;
|
|
|
+ margin-top: 0.875rem;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .banner-content {
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-content img {
|
|
|
+ width: 1300px;
|
|
|
+ height: 535px;
|
|
|
+ margin: 0 7px;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .banner-content img {
|
|
|
+ width: 100%;
|
|
|
+ height: 400px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .banner-content img {
|
|
|
+ height: 50vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .banner-content img {
|
|
|
+ height: 65vw;
|
|
|
+ width: 93vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-content .slick-next:before,
|
|
|
+.banner-content .slick-prev:before {
|
|
|
+ content: "" !important;
|
|
|
+}
|
|
|
+.banner-content .slick-next {
|
|
|
+ right: 160px;
|
|
|
+ margin-left: auto;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .banner-content .slick-next {
|
|
|
+ right: 20px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-content .slick-prev {
|
|
|
+ left: -50px;
|
|
|
+ margin-right: auto;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .banner-content .slick-prev {
|
|
|
+ left: 20px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-content .slick-next,
|
|
|
+.banner-content .slick-prev {
|
|
|
+ top: 5vw;
|
|
|
+ z-index: 1000;
|
|
|
+}
|
|
|
+.banner-content .slick-next i,
|
|
|
+.banner-content .slick-prev i {
|
|
|
+ opacity: 0.6;
|
|
|
+ font-size: 32px;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+.banner-content .slick-next:hover i,
|
|
|
+.banner-content .slick-prev:hover i {
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .banner-content .slick-next,
|
|
|
+ .banner-content .slick-prev {
|
|
|
+ top: 1vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-content .slick-next i,
|
|
|
+.banner-content .slick-prev i {
|
|
|
+ padding: 200px 100px;
|
|
|
+}
|
|
|
+.banner-content .slick-dots {
|
|
|
+ bottom: 10px;
|
|
|
+}
|
|
|
+.banner-content .slick-dots li {
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+.banner-content .slick-dots li button:before {
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ content: "";
|
|
|
+ opacity: 1;
|
|
|
+ border: 1px solid #fff;
|
|
|
+ border-radius: 100px;
|
|
|
+}
|
|
|
+.banner-content .slick-dots .slick-active button:before {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.banner-content .banner-slider img {
|
|
|
+ filter: brightness(50%);
|
|
|
+}
|
|
|
+.banner-content .slick-now img {
|
|
|
+ filter: brightness(100%) !important;
|
|
|
+}
|
|
|
+.banner-content .slick-slide {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+/* 手機版進度條 */
|
|
|
+.progress {
|
|
|
+ display: none;
|
|
|
+ width: 50%;
|
|
|
+ height: 3px;
|
|
|
+ margin: 10px auto 0;
|
|
|
+ border-radius: 10px;
|
|
|
+ overflow: hidden;
|
|
|
+ background-color: #f5f5f5;
|
|
|
+ background-image: linear-gradient(to right, var(--sub-color), var(--sub-color));
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 0 100%;
|
|
|
+ transition: background-size 0.4s ease-in-out;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .progress {
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.index-content {
|
|
|
+ /* 手機版進度條 */
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .index-content {
|
|
|
+ max-width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.index-content * {
|
|
|
+ letter-spacing: 0.05em;
|
|
|
+ font-family: "Helvetica";
|
|
|
+}
|
|
|
+.index-content .fas {
|
|
|
+ font-family: Font Awesome\ 5 Free !important;
|
|
|
+}
|
|
|
+.index-content h3 {
|
|
|
+ color: #727272;
|
|
|
+ font-weight: bold;
|
|
|
+ line-height: 22px;
|
|
|
+}
|
|
|
+.index-content h5 {
|
|
|
+ padding: 0 10px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ font-size: 22px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: var(--main-color);
|
|
|
+}
|
|
|
+.index-content h5 span {
|
|
|
+ color: var(--sub-color);
|
|
|
+}
|
|
|
+.index-content .describe {
|
|
|
+ padding-top: 50px;
|
|
|
+ margin: 25px 0;
|
|
|
+ font-size: 32px;
|
|
|
+ font-weight: bold;
|
|
|
+ text-align: center;
|
|
|
+ color: #34404b;
|
|
|
+ line-height: 1.3em;
|
|
|
+ border-top: 1px solid #989898;
|
|
|
+}
|
|
|
+.index-content .describe span {
|
|
|
+ color: var(--sub-color);
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .index-content .describe {
|
|
|
+ padding-top: 1.3rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .index-content .describe {
|
|
|
+ font-size: 25px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.index-content .card-item {
|
|
|
+ padding: 0 10px;
|
|
|
+ margin-top: 1.3rem;
|
|
|
+}
|
|
|
+.index-content .card-item a {
|
|
|
+ height: 90px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ text-align: center;
|
|
|
+ color: #727272;
|
|
|
+ background-color: #ededed;
|
|
|
+ border-radius: 5px;
|
|
|
+ transition: all 0.3s;
|
|
|
+ line-height: 1.2rem;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .index-content .card-item a {
|
|
|
+ height: 60px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.index-content .top-card a,
|
|
|
+.index-content .center-card a {
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.index-content .top-card a span,
|
|
|
+.index-content .center-card a span {
|
|
|
+ position: absolute;
|
|
|
+ display: block;
|
|
|
+ width: 0px;
|
|
|
+ height: 0px;
|
|
|
+ border-radius: 100%;
|
|
|
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ z-index: -1;
|
|
|
+}
|
|
|
+.index-content .top-card a:hover,
|
|
|
+.index-content .center-card a:hover {
|
|
|
+ color: #fff;
|
|
|
+ text-shadow: 1px 2px 4px rgb(188, 84, 6);
|
|
|
+ background-color: transparent !important;
|
|
|
+}
|
|
|
+.index-content .top-card a:hover span,
|
|
|
+.index-content .center-card a:hover span {
|
|
|
+ width: 225%;
|
|
|
+ height: 500%;
|
|
|
+}
|
|
|
+
|
|
|
+.top-card a span {
|
|
|
+ background-color: var(--sub-color);
|
|
|
+}
|
|
|
+
|
|
|
+.center-card a:hover {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.center-card div:nth-child(1) a span,
|
|
|
+.center-card div:nth-child(2) a span {
|
|
|
+ background-color: #EA068C;
|
|
|
+}
|
|
|
+.center-card div:nth-child(3) a span {
|
|
|
+ background-color: #0F506D;
|
|
|
+}
|
|
|
+
|
|
|
+.more-link {
|
|
|
+ color: var(--sub-color);
|
|
|
+ transition: all 0.2s;
|
|
|
+}
|
|
|
+.more-link:hover {
|
|
|
+ color: var(--sub-color);
|
|
|
+ opacity: 0.7;
|
|
|
+}
|
|
|
+.more-link img {
|
|
|
+ width: 15px;
|
|
|
+ transform: rotate(90deg);
|
|
|
+ filter: invert(50%) sepia(97%) saturate(1293%) hue-rotate(348deg) brightness(95%) contrast(96%);
|
|
|
+}
|
|
|
+
|
|
|
+.options-content h3 {
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-list,
|
|
|
+.options-content .options-slider .slick-list {
|
|
|
+ padding-bottom: 5px;
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section,
|
|
|
+.options-content .options-slider .slick-slide section {
|
|
|
+ margin: 0 10px;
|
|
|
+ border-radius: 0 0 5px 5px;
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section span,
|
|
|
+.options-content .options-slider .slick-slide section span {
|
|
|
+ height: 170px;
|
|
|
+ display: block;
|
|
|
+ box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1607843137);
|
|
|
+ border-radius: 5px;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .options-content .space-slider .slick-slide section span,
|
|
|
+ .options-content .options-slider .slick-slide section span {
|
|
|
+ width: 155px;
|
|
|
+ height: 140px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section span img,
|
|
|
+.options-content .options-slider .slick-slide section span img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ border-radius: 5px 5px 0 0;
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section a,
|
|
|
+.options-content .options-slider .slick-slide section a {
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section a:hover h3,
|
|
|
+.options-content .options-slider .slick-slide section a:hover h3 {
|
|
|
+ color: var(--sub-color);
|
|
|
+ background-color: rgba(237, 237, 237, 0.9);
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section a:hover img,
|
|
|
+.options-content .options-slider .slick-slide section a:hover img {
|
|
|
+ transform: scale(1.1);
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section a h3,
|
|
|
+.options-content .options-slider .slick-slide section a h3 {
|
|
|
+ padding: 10px;
|
|
|
+ text-align: center;
|
|
|
+ color: var(--main-color);
|
|
|
+ background-color: rgba(237, 237, 237, 0.8);
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: -9px;
|
|
|
+ border-radius: 0 0 5px 5px;
|
|
|
+}
|
|
|
+.options-content .space-slider .slick-slide section a h3 strong,
|
|
|
+.options-content .options-slider .slick-slide section a h3 strong {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ line-break: after-white-space;
|
|
|
+ transition: all 0.2s;
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .options-content .space-slider .slick-slide section span {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .options-content .space-slider .slick-slide section span {
|
|
|
+ width: 41vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+.options-content .sr-only {
|
|
|
+ position: absolute;
|
|
|
+ width: 1px;
|
|
|
+ height: 1px;
|
|
|
+ padding: 0;
|
|
|
+ margin: -1px;
|
|
|
+ overflow: hidden;
|
|
|
+ clip: rect(0, 0, 0, 0);
|
|
|
+ border: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.options-content .slick-prev,
|
|
|
+.main-content .slick-prev {
|
|
|
+ left: -10px !important;
|
|
|
+}
|
|
|
+.options-content .slick-next,
|
|
|
+.main-content .slick-next {
|
|
|
+ right: -12px !important;
|
|
|
+}
|
|
|
+.options-content .slick-prev,
|
|
|
+.options-content .slick-next,
|
|
|
+.main-content .slick-prev,
|
|
|
+.main-content .slick-next {
|
|
|
+ width: 35px;
|
|
|
+ height: 35px;
|
|
|
+ z-index: 100;
|
|
|
+ box-shadow: 2px 2px 7px #979797;
|
|
|
+ background: rgba(255, 255, 255, 0.3);
|
|
|
+ border-radius: 100px;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+.options-content .slick-prev:hover,
|
|
|
+.options-content .slick-next:hover,
|
|
|
+.main-content .slick-prev:hover,
|
|
|
+.main-content .slick-next:hover {
|
|
|
+ background: rgba(255, 255, 255, 0.8);
|
|
|
+}
|
|
|
+.options-content .slick-prev .fa-chevron-right,
|
|
|
+.options-content .slick-prev .fa-chevron-left,
|
|
|
+.options-content .slick-next .fa-chevron-right,
|
|
|
+.options-content .slick-next .fa-chevron-left,
|
|
|
+.main-content .slick-prev .fa-chevron-right,
|
|
|
+.main-content .slick-prev .fa-chevron-left,
|
|
|
+.main-content .slick-next .fa-chevron-right,
|
|
|
+.main-content .slick-next .fa-chevron-left {
|
|
|
+ padding-top: 20px;
|
|
|
+ color: #989898 !important;
|
|
|
+ font-size: 15px !important;
|
|
|
+}
|
|
|
+.options-content .slick-prev .fa-chevron-right,
|
|
|
+.options-content .slick-next .fa-chevron-right,
|
|
|
+.main-content .slick-prev .fa-chevron-right,
|
|
|
+.main-content .slick-next .fa-chevron-right {
|
|
|
+ padding-left: 4px;
|
|
|
+}
|
|
|
+.options-content .slick-prev:before,
|
|
|
+.options-content .slick-next:before,
|
|
|
+.main-content .slick-prev:before,
|
|
|
+.main-content .slick-next:before {
|
|
|
+ content: "" !important;
|
|
|
+}
|
|
|
+
|
|
|
+.main-content {
|
|
|
+ margin-bottom: 100px;
|
|
|
+}
|
|
|
+.main-content h3 {
|
|
|
+ font-size: 18px;
|
|
|
+ line-height: 1.4em;
|
|
|
+ letter-spacing: 0.05em;
|
|
|
+}
|
|
|
+
|
|
|
+.slide-img {
|
|
|
+ display: block;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.slide-img img {
|
|
|
+ transition: all 0.5s;
|
|
|
+}
|
|
|
+.slide-img img:hover {
|
|
|
+ transform: scale(1.1);
|
|
|
+}
|
|
|
+
|
|
|
+.img-scale img {
|
|
|
+ transition: all 0.5s;
|
|
|
+ transform: scale(1.1);
|
|
|
+}
|
|
|
+
|
|
|
+.ad-content .ad-slider img {
|
|
|
+ width: 650px;
|
|
|
+ margin: auto;
|
|
|
+ padding: 0 10px;
|
|
|
+}
|
|
|
+.ad-content .ad-slider .slick-prev:before,
|
|
|
+.ad-content .ad-slider .slick-next:before {
|
|
|
+ content: "" !important;
|
|
|
+}
|
|
|
+.ad-content .ad-slider .slick-prev i,
|
|
|
+.ad-content .ad-slider .slick-next i {
|
|
|
+ opacity: 0.3;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+.ad-content .ad-slider .slick-prev i:hover,
|
|
|
+.ad-content .ad-slider .slick-next i:hover {
|
|
|
+ opacity: 0.8;
|
|
|
+}
|
|
|
+
|
|
|
+.ellipsis-title {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ line-break: after-white-space;
|
|
|
+ transition: all 0.2s;
|
|
|
+}
|
|
|
+.ellipsis-title:hover {
|
|
|
+ color: var(--sub-color) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.featured-content .slide-img,
|
|
|
+.topic-content .slide-img,
|
|
|
+.video-content .slide-img {
|
|
|
+ box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1607843137);
|
|
|
+}
|
|
|
+
|
|
|
+.video-content .slide-img a {
|
|
|
+ display: block;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.video-content .slide-img a:hover .play-btn img {
|
|
|
+ transform: scale(1.1);
|
|
|
+}
|
|
|
+.video-content .slide-img .play-btn {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 999;
|
|
|
+ bottom: 0;
|
|
|
+ right: 3px;
|
|
|
+}
|
|
|
+.video-content .slide-img .play-btn img {
|
|
|
+ width: 60px;
|
|
|
+ height: 60px;
|
|
|
+}
|
|
|
+
|
|
|
+.topic-content .img-box {
|
|
|
+ border-radius: 5px;
|
|
|
+}
|
|
|
+.topic-content .slick-track {
|
|
|
+ margin: 0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .topic-content .slick-track {
|
|
|
+ justify-content: start;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.designer-content h3 {
|
|
|
+ margin: 10px auto 5px;
|
|
|
+ text-align: center;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ line-break: after-white-space;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .designer-content h3 {
|
|
|
+ width: 160px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.designer-content .name {
|
|
|
+ margin-top: 5px;
|
|
|
+ display: block;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: normal;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ line-break: after-white-space;
|
|
|
+}
|
|
|
+.designer-content .name small {
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+.designer-content .slide-item {
|
|
|
+ -o-object-position: top;
|
|
|
+ object-position: top;
|
|
|
+ -o-object-fit: contain;
|
|
|
+ object-fit: contain;
|
|
|
+}
|
|
|
+.designer-content .slick-slide {
|
|
|
+ margin: 0 15px;
|
|
|
+}
|
|
|
+.designer-content section {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.designer-content section .slide-img {
|
|
|
+ margin: 0 auto 15px;
|
|
|
+ height: 130px;
|
|
|
+ width: 130px;
|
|
|
+ border-radius: 100px;
|
|
|
+ box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
|
|
|
+ transition: 0.3s all ease-in;
|
|
|
+ overflow: unset;
|
|
|
+}
|
|
|
+.designer-content section .slide-img a {
|
|
|
+ display: block;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.designer-content section .slide-img img {
|
|
|
+ height: 130px;
|
|
|
+ width: 130px;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ border-radius: 100px;
|
|
|
+ transform: scale(1) !important;
|
|
|
+}
|
|
|
+.designer-content section .slide-img img:hover {
|
|
|
+ transform: scale(1) !important;
|
|
|
+}
|
|
|
+.designer-content section .slide-img:hover .img-border {
|
|
|
+ opacity: 1 !important;
|
|
|
+}
|
|
|
+.designer-content section .slide-img .img-border {
|
|
|
+ opacity: 0;
|
|
|
+ display: block;
|
|
|
+ border: 2px solid var(--sub-color);
|
|
|
+ width: 140px;
|
|
|
+ height: 140px;
|
|
|
+ position: absolute;
|
|
|
+ top: -5px;
|
|
|
+ left: -5px;
|
|
|
+ border-radius: 100px;
|
|
|
+ z-index: 100;
|
|
|
+ transition: opacity 0.35s cubic-bezier(0.4, 0.8, 0.74, 1) 0s, transform 0.35s cubic-bezier(0.26, 1, 0.48, 1) 0s;
|
|
|
+}
|
|
|
+.designer-content .slick-track {
|
|
|
+ padding-top: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.topic-slider section,
|
|
|
+.featured-slider section,
|
|
|
+.popular-slider section {
|
|
|
+ padding: 0 10px;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .topic-slider section,
|
|
|
+ .featured-slider section,
|
|
|
+ .popular-slider section {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .topic-slider section,
|
|
|
+ .featured-slider section,
|
|
|
+ .popular-slider section {
|
|
|
+ width: 45vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 414px) {
|
|
|
+ .topic-slider section,
|
|
|
+ .featured-slider section,
|
|
|
+ .popular-slider section {
|
|
|
+ width: 75vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+.topic-slider img,
|
|
|
+.featured-slider img,
|
|
|
+.popular-slider img {
|
|
|
+ height: 185px;
|
|
|
+ width: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+@media (max-width: 1400px) {
|
|
|
+ .topic-slider img,
|
|
|
+ .featured-slider img,
|
|
|
+ .popular-slider img {
|
|
|
+ height: 11vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .topic-slider img,
|
|
|
+ .featured-slider img,
|
|
|
+ .popular-slider img {
|
|
|
+ height: 200px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .topic-slider img,
|
|
|
+ .featured-slider img,
|
|
|
+ .popular-slider img {
|
|
|
+ height: 145px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .topic-slider img,
|
|
|
+ .featured-slider img,
|
|
|
+ .popular-slider img {
|
|
|
+ height: 25vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 414px) {
|
|
|
+ .topic-slider img,
|
|
|
+ .featured-slider img,
|
|
|
+ .popular-slider img {
|
|
|
+ height: 42vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+.topic-slider .title,
|
|
|
+.featured-slider .title,
|
|
|
+.popular-slider .title {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
+.topic-slider .tab-block,
|
|
|
+.featured-slider .tab-block,
|
|
|
+.popular-slider .tab-block {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ height: 30px;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
+.topic-slider .tab-block a,
|
|
|
+.featured-slider .tab-block a,
|
|
|
+.popular-slider .tab-block a {
|
|
|
+ display: inline-block;
|
|
|
+ margin-right: 6px;
|
|
|
+}
|
|
|
+.topic-slider .tab-block a:hover h4,
|
|
|
+.featured-slider .tab-block a:hover h4,
|
|
|
+.popular-slider .tab-block a:hover h4 {
|
|
|
+ color: var(--sub-color);
|
|
|
+ border: 1px solid var(--sub-color);
|
|
|
+}
|
|
|
+.topic-slider .tab-block a h4,
|
|
|
+.featured-slider .tab-block a h4,
|
|
|
+.popular-slider .tab-block a h4 {
|
|
|
+ color: #ADADAD;
|
|
|
+ border: 1px solid #ADADAD;
|
|
|
+ border-radius: 5px;
|
|
|
+ padding: 4px 10px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+}
|
|
|
+
|
|
|
+.popular-slider .slide-img {
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+.popular-slider .slide-img a:first-child {
|
|
|
+ display: block;
|
|
|
+ overflow: hidden;
|
|
|
+ border-radius: 5px;
|
|
|
+ box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1607843137);
|
|
|
+}
|
|
|
+.popular-slider .slide-img a:first-child img {
|
|
|
+ border-radius: 5px;
|
|
|
+}
|
|
|
+.popular-slider .designer-item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin: -20px 0 10px 10px;
|
|
|
+}
|
|
|
+.popular-slider .designer-item img {
|
|
|
+ width: 80px;
|
|
|
+ height: 80px;
|
|
|
+ -o-object-position: top;
|
|
|
+ object-position: top;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
|
|
|
+ transform: scale(1) !important;
|
|
|
+}
|
|
|
+.popular-slider .designer-item h2 {
|
|
|
+ font-size: 16px;
|
|
|
+ margin: 5px 0 0 10px;
|
|
|
+ color: #707070;
|
|
|
+}
|
|
|
+
|
|
|
+.video-slider section {
|
|
|
+ margin: auto 10px;
|
|
|
+ max-width: 300px;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ .video-slider section {
|
|
|
+ width: 43vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 414px) {
|
|
|
+ .video-slider section {
|
|
|
+ width: 70vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+.video-slider .slide-img {
|
|
|
+ border-radius: 5px;
|
|
|
+}
|
|
|
+.video-slider .slide-img .slide-item {
|
|
|
+ height: 170px;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .video-slider .slide-img .slide-item {
|
|
|
+ height: 135px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 414px) {
|
|
|
+ .video-slider .slide-img .slide-item {
|
|
|
+ height: 39.5vw;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#youtubeModal .modal-content {
|
|
|
+ background-color: transparent;
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+#youtubeModal .modal-content .modal-header {
|
|
|
+ border-bottom: none;
|
|
|
+}
|
|
|
+#youtubeModal .modal-content .modal-title {
|
|
|
+ padding: 0;
|
|
|
+ font-size: 30px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+#youtubeModal .modal-body {
|
|
|
+ padding: 10px 0;
|
|
|
+}
|
|
|
+#youtubeModal .modal-body section {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+#youtubeModal .modal-body section h2 {
|
|
|
+ color: #fff;
|
|
|
+ font-size: 20px;
|
|
|
+ margin-top: 15px;
|
|
|
+ border-bottom: 1px solid #fff;
|
|
|
+ text-align: center;
|
|
|
+ padding-bottom: 3px;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ line-break: after-white-space;
|
|
|
+ transition: all 0.2s;
|
|
|
+}
|
|
|
+#youtubeModal .video-box {
|
|
|
+ display: flex;
|
|
|
+ margin: auto;
|
|
|
+ position: relative;
|
|
|
+ width: 80%;
|
|
|
+ height: 0;
|
|
|
+ padding-bottom: 45%;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ #youtubeModal .video-box {
|
|
|
+ width: 100%;
|
|
|
+ padding-bottom: 55%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#youtubeModal .video-box iframe {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.featured-slider .slide-img {
|
|
|
+ border-radius: 5px;
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .search-modal .modal-dialog {
|
|
|
+ max-width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.search-modal .modal-content {
|
|
|
+ border: none;
|
|
|
+ background: transparent;
|
|
|
+}
|
|
|
+.search-modal .modal-content .input-group {
|
|
|
+ height: 50px;
|
|
|
+}
|
|
|
+.search-modal .form-control:focus {
|
|
|
+ box-shadow: none;
|
|
|
+}
|
|
|
+.search-modal .keyword-list {
|
|
|
+ display: flex;
|
|
|
+ padding: 0 20px;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .search-modal .keyword-list {
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+}
|
|
|
+.search-modal .keyword-list span {
|
|
|
+ color: #fff;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+.search-modal .keyword-list ul {
|
|
|
+ padding: 0;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.search-modal .keyword-list ul li {
|
|
|
+ margin: 5px 10px 5px 0;
|
|
|
+ cursor: pointer;
|
|
|
+ transition: all 0.3s;
|
|
|
+}
|
|
|
+.search-modal .keyword-list ul li:hover {
|
|
|
+ opacity: 0.8;
|
|
|
+}
|
|
|
+@media (max-width: 991px) {
|
|
|
+ .search-modal .keyword-list ul li {
|
|
|
+ border-bottom: 1px solid #fff;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.modal-backdrop.show {
|
|
|
+ opacity: 0.7 !important;
|
|
|
+}
|
|
|
+
|
|
|
+#adModal .modal-header {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 1;
|
|
|
+ right: 0;
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+#adModal .btn-close {
|
|
|
+ transition: all 0.3s;
|
|
|
+ opacity: 1 !important;
|
|
|
+}
|
|
|
+#adModal .btn-close:hover {
|
|
|
+ opacity: 0.7 !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* index End *//*# sourceMappingURL=style.css.map */
|