123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- /* request Start */
- .request-content {
- background-color: #FAFAFA;
- }
- .request-content .main {
- position: relative;
- }
- .request-content .main h2,
- .request-content .main h3 {
- font-weight: normal;
- }
- .request-content .main .info-block {
- height: 100%;
- padding: 100px 50px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- position: absolute;
- left: 0;
- right: 0;
- z-index: 100;
- color: #fff;
- }
- .request-content .main .info-block h2 {
- font-size: 78px;
- }
- .request-content .main .info-block h3 {
- font-size: 20px;
- margin-top: 30px;
- }
- .request-content .main .info-block .ad-list {
- width: 100%;
- padding: 0 100px;
- }
- .request-content .main .info-block .ad-list p {
- padding-bottom: 10px;
- margin-bottom: 15px !important;
- text-align: center;
- border-bottom: 1px solid #fff;
- }
- .request-content .main .info-block .ad-list img {
- width: 100%;
- padding: 0 8px;
- }
- .request-content .main .img-block {
- position: relative;
- display: inline-block;
- /* 設置灰色遮罩 */
- }
- .request-content .main .img-block::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 99.9%;
- height: 100%;
- z-index: 1;
- background-color: rgba(0, 0, 0, 0.7);
- }
- .request-content .main .img-block .img-slider {
- width: 33.3%;
- height: 100vh;
- overflow: hidden;
- }
- .request-content .main .img-block .img-slider .img-slider-list {
- position: relative;
- }
- .request-content .main .img-block .img-slider .img-slider-list img {
- width: 100%;
- height: 310px;
- -o-object-fit: cover;
- object-fit: cover;
- }
- .request-content .main .logo {
- display: block;
- width: 100%;
- text-align: center;
- }
- .request-content .main .logo img {
- width: 100%;
- max-width: 300px;
- }
- .request-content .form-block .card {
- border: none;
- }
- .request-content .form-block .card .logo,
- .request-content .form-block .card .card-body {
- background-color: #FAFAFA;
- }
- .request-content .form-block form {
- color: #34404B;
- }
- .request-content .form-block form ::-moz-placeholder {
- color: #d3d3d3;
- opacity: 1;
- /* Firefox */
- }
- .request-content .form-block form ::placeholder {
- color: #d3d3d3;
- opacity: 1;
- /* Firefox */
- }
- .request-content .form-block form .invalid-feedback {
- display: none;
- height: 0px;
- text-align: end;
- }
- .request-content .form-block form .submit {
- padding: 10px;
- background-color: #EE751B;
- border: none;
- }
- .request-content .form-block form .type-items {
- height: 70px;
- padding: 5px 10px;
- align-items: center;
- border: 1px solid #aaaaaa;
- border-radius: 5px;
- transition: all 0.3s;
- }
- .request-content .form-block form .type-items:hover {
- border-color: #ee751b;
- }
- .request-content .form-block form .type-items span {
- width: 100px;
- }
- .request-content .form-block form .type-items span h4 {
- margin-bottom: 0;
- font-size: 18px;
- }
- .request-content .form-block form .type-items span p {
- font-size: 12px;
- color: #ee751b;
- }
- .request-content .form-block form .type-items small {
- display: inline-block;
- margin-left: 15px;
- font-size: 12px;
- color: #959595;
- }
- .request-content .form-block form .type-items label,
- .request-content .form-block form .type-items input {
- cursor: pointer;
- }
- .request-content .form-block form .type-items input {
- margin: 0 5px;
- border: 2px solid white;
- box-shadow: 0 0 0 1px #EE751B;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- border-radius: 50%;
- width: 12px;
- height: 12px;
- background-color: #fff;
- transition: all ease-in 0.2s;
- }
- .request-content .form-block form .type-items input:checked {
- background-color: #EE751B;
- }
- .request-content .form-block form .disclaimer {
- margin-top: 5px;
- font-size: 12px;
- text-align: center;
- }
- .request-content .form-block form .disclaimer a {
- color: #EE751B;
- text-decoration: underline;
- }
- .request-content .form-block form input[type=checkbox] {
- position: relative;
- border-color: #000;
- cursor: pointer;
- }
- .request-content .form-block form input[type=checkbox]:focus {
- box-shadow: unset;
- }
- .request-content .form-block form input[type=checkbox]:checked {
- background-color: white;
- }
- .request-content .form-block form input[type=checkbox]:checked::before {
- content: "✓";
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- font-size: 14px;
- color: black;
- }
- .request-content .loading-block {
- width: 100vw;
- height: 100vh;
- display: none;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- background: #fff;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 100;
- }
- .request-content .loading-block p {
- font-size: 16px;
- color: #EE751B;
- letter-spacing: 4.8px;
- }
- .request-content .loading-block .spinner {
- /* Size and position */
- font-size: 100px;
- /* 1em */
- width: 1em;
- height: 1em;
- margin-bottom: 20px;
- position: relative;
- /* Styles */
- list-style: none;
- border-radius: 50%;
- border: 0.01em solid rgba(150, 150, 150, 0.2);
- /* Subtle white line circling the dots */
- }
- .request-content .loading-block .spinner li {
- width: 0.2em;
- height: 0.2em;
- position: absolute;
- border-radius: 50%;
- }
- .request-content .loading-block .spinner li:nth-child(1) {
- background: #EE751B;
- /* Blue */
- top: 0;
- left: 50%;
- margin-left: -0.1em;
- transform-origin: 50% 250%;
- animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate;
- }
- .request-content .loading-block .spinner li:nth-child(2) {
- background: #FF505E;
- /* Red */
- top: 50%;
- right: 0;
- margin-top: -0.1em;
- transform-origin: -150% 50%;
- animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate;
- }
- .request-content .loading-block .spinner li:nth-child(3) {
- background: #FFCD26;
- /* Yellow */
- bottom: 0;
- left: 50%;
- margin-left: -0.1em;
- transform-origin: 50% -150%;
- animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate;
- }
- .request-content .loading-block .spinner li:nth-child(4) {
- background: #AAD647;
- /* Green */
- top: 50%;
- left: 0;
- margin-top: -0.1em;
- transform-origin: 250% 50%;
- animation: rota 1.72s linear infinite, opa 5.25s ease-in-out infinite alternate;
- }
- @keyframes rota {
- to {
- transform: rotate(360deg);
- }
- }
- @keyframes opa {
- 12.0% {
- opacity: 0.8;
- }
- 19.5% {
- opacity: 0.88;
- }
- 37.2% {
- opacity: 0.64;
- }
- 40.5% {
- opacity: 0.52;
- }
- 52.7% {
- opacity: 0.69;
- }
- 60.2% {
- opacity: 0.6;
- }
- 66.6% {
- opacity: 0.52;
- }
- 70.0% {
- opacity: 0.63;
- }
- 79.9% {
- opacity: 0.6;
- }
- 84.2% {
- opacity: 0.75;
- }
- 91.0% {
- opacity: 0.87;
- }
- }
- .request-content .logo,
- .result-content .logo {
- display: flex;
- justify-content: center;
- }
- .request-content .logo img,
- .result-content .logo img {
- width: 100%;
- max-width: 150px;
- }
- .result-content {
- display: none;
- padding: 20px 0 50px;
- }
- .result-content .logo {
- margin-bottom: 25px;
- }
- .result-content .line {
- padding: 25px 0;
- border-top: 1px solid #959595;
- border-bottom: 1px solid #959595;
- }
- .result-content .tab-list {
- margin: 0;
- padding: 0;
- display: none;
- justify-content: center;
- position: absolute;
- z-index: 1000;
- top: 15px;
- left: 0;
- right: 0;
- }
- .result-content .tab-list li {
- margin: 0 20px;
- }
- .result-content .tab-list li a {
- color: #959595;
- }
- .result-content .tab-list #underline {
- position: absolute;
- bottom: -1px;
- left: 40px;
- width: 40px;
- height: 1px;
- z-index: 1000;
- background-color: #fff;
- transition: width 0.3s;
- }
- .result-content .card-item {
- position: relative;
- width: 100%;
- height: 550px;
- background-image: url(../images/request/result-bg.png);
- background-size: auto;
- background-position: center;
- background-repeat: no-repeat;
- border-radius: 20px;
- }
- .result-content .card-item::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border-radius: 20px;
- background-color: rgba(5, 13, 21, 0.8);
- -webkit-backdrop-filter: blur(2px);
- backdrop-filter: blur(2px);
- }
- .result-content .card-item .chart-box {
- position: absolute;
- z-index: 100;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .result-content .card-item .chart-box #chart {
- width: 300px !important;
- }
- .result-content .chart-text {
- position: absolute;
- z-index: 100;
- font-size: 42px;
- font-weight: 500;
- color: #fff;
- }
- .result-content .chart-text.range {
- display: none;
- }
- .result-content .chart-text.range .tilde {
- position: absolute;
- left: 50px;
- transform: rotate(90deg);
- }
- .result-content .price-card {
- position: absolute;
- z-index: 100;
- color: #fff;
- }
- .result-content .price-card ul {
- width: 250px;
- max-width: 100%;
- margin-bottom: 0;
- padding: 15px 0 25px;
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: 20px;
- border-radius: 10px;
- border: 1px solid #fff;
- }
- .result-content .price-card ul li span {
- width: 90px;
- display: inline-block;
- text-align: center;
- border-bottom: 1px solid #fff;
- font-size: 28px;
- font-weight: 500;
- }
- .result-content .price-card small {
- margin-top: 20px;
- display: block;
- color: #B7B7B7;
- text-align: center;
- }
- .result-content .price-card .partial {
- width: 280px;
- display: none;
- }
- .result-content .price-card .partial li {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .result-content .price-card .partial li span {
- width: 120px;
- }
- .result-content .price-card .partial li p {
- width: 80px;
- text-align: center;
- }
- .result-content .info-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .result-content .info-item h3 {
- font-size: 24px;
- line-height: 32px;
- text-align: center;
- }
- @media (max-width: 1200px) {
- .result-content .info-item h3 {
- font-size: 20px;
- }
- }
- .result-content .info-item h4 {
- font-size: 16px;
- font-weight: 300;
- color: #34404B;
- }
- @media (max-width: 1200px) {
- .result-content .info-item h4 {
- font-size: 15px;
- }
- }
- .result-content .info-item img {
- width: 100%;
- height: 450px;
- max-width: 330px;
- -o-object-fit: cover;
- object-fit: cover;
- border-radius: 0 0 50% 0;
- }
- .result-content .info-card {
- width: 93%;
- margin: 30px;
- position: absolute;
- bottom: 0;
- background: #fff;
- border-radius: 10px;
- }
- .result-content .info-card .row {
- padding: 20px 0;
- }
- .result-content .info-card .row ul {
- margin: 0;
- padding: 0;
- }
- .result-content .info-card .row ul li {
- font-weight: 500;
- }
- .result-content .info-card .row .caption {
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- @media (max-width: 1200px) {
- .result-content .info-card .row .caption {
- flex-direction: column;
- }
- }
- .result-content .info-card .row .caption h3 {
- font-size: 18px;
- color: #34404B;
- margin-bottom: 0;
- }
- .result-content .info-card .row .caption small {
- font-size: 14px;
- color: #EE751B;
- }
- .result-content .info-card .row .caption p {
- max-width: 220px;
- font-size: 14px;
- color: #959595;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- }
- @media (max-width: 1200px) {
- .result-content .info-card .row .caption p {
- -webkit-line-clamp: 1;
- }
- }
- .result-content .info-card .row .reset-btn {
- width: 100%;
- height: 100%;
- border: none;
- border-radius: 10px;
- background-color: #B7B7B7;
- color: #fff;
- transition: all 0.3s;
- }
- .result-content .info-card .row .reset-btn:hover {
- background-color: #959595;
- }
- .result-content .style-list p {
- text-align: center;
- padding: 20px;
- font-size: 20px;
- font-weight: 500;
- color: #34404B;
- }
- .result-content .style-list a {
- display: block;
- position: relative;
- overflow: hidden;
- border-radius: 10px;
- }
- .result-content .style-list a:hover img {
- transform: scale(1.1);
- }
- .result-content .style-list a p {
- padding: 5px;
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- font-size: 18px;
- background: rgba(255, 255, 255, 0.75);
- }
- .result-content .style-list a img {
- width: 100%;
- height: 180px;
- -o-object-fit: cover;
- object-fit: cover;
- border-radius: 10px;
- transition: all 0.5s;
- box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
- }
- /* request End */
|