1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .B1exhibit {
- padding-bottom: 120px;
- overflow-y: auto;
- :global {
- .B1top {
- width: 100%;
- height: auto;
- position: relative;
- img {
- object-fit: fill !important;
- }
- .B1topBack {
- position: absolute;
- pointer-events: auto;
- top: 30px;
- left: 34px;
- }
- }
- .B1tit {
- font-size: 24px;
- font-weight: 700;
- color: var(--themeColor);
- margin: 10px 0 24px;
- text-align: center;
- }
- .B1txt {
- padding: 0 30px;
- color: #303030;
- font-size: 16px;
- letter-spacing: 3px;
- line-height: 24px;
- }
- .B1btn {
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- max-width: 500px;
- width: 100%;
- height: 100px;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 30px;
- & > div {
- height: 54px;
- line-height: 54px;
- text-align: center;
- font-size: 20px;
- font-weight: 700;
- border-radius: 5px;
- background-color: var(--themeColor);
- width: 30%;
- color: #fff;
- }
- .B1btn2 {
- background-color: var(--themeColor2);
- }
- .B1btn3 {
- background-color: var(--themeColor3);
- }
- }
- }
- }
|