| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- .detail {
- width: 100%;
- height: 100%;
- position: relative;
- :global {
- .selectContainner {
- position: absolute;
- z-index: 1;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 170px;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- gap: 30px;
- .detail_line {
- position: absolute;
- top: 42%;
- left: 73%;
- transform: translate(-50%, -50%);
- width: 4px;
- height: 84%;
- &>img {
- transition: all 0.5s;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- object-fit: contain;
- }
- }
- .detail_top,
- .detail_bottom {
- width: 100%;
- height: fit-content;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 10px;
- .topL {
- width: 100px;
- height: fit-content;
- display: flex;
- flex-direction: column;
- gap: 10px;
- .item {
- width: 100px;
- height: 27px;
- font-size: 18px;
- line-height: 15px;
- text-align: right;
- color: rgba(255, 233, 182, 1);
- cursor: pointer;
- position: relative;
- transition: all 0.5s;
- .selectedBg {
- width: 120px;
- height: 100%;
- position: absolute;
- top: -30%;
- left: 31%;
- z-index: -1;
- transition: all 0.5s;
- &>img {
- width: 100%;
- height: 100%;
- object-fit: contain;
- }
- }
- }
- .active {
- color: rgb(255, 252, 246);
- text-shadow: 3px 0px 10px rgba(255, 255, 255, 1);
- }
- }
- .topR {
- width: 40px;
- height: 100%;
- display: flex;
- align-items: center;
- .split {
- width: 2px;
- height: 100%;
- }
- .txt {
- width: 40px;
- font-size: 18px;
- writing-mode: vertical-rl;
- text-orientation: upright;
- text-align: right;
- color: rgba(255, 252, 246, 0.8);
- transition: all 0.5s;
- }
- .txtActive {
-
- color: rgba(255, 233, 182, 1);
- }
- }
- }
- }
- }
- }
- // ---------英文版
- .detailEn {
- :global {
- .topL .item {
- height: auto !important;
- font-size: 16px !important;
- }
- }
- }
|