| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .deekSeek {
- width: 100%;
- /* 使用 fill-available 确保兼容性 */
- height: -webkit-fill-available;
- height: 100dvh;
- /* 新的动态视口单位,推荐使用 */
- background: linear-gradient(90.52deg, rgba(24, 126, 255, 1) 1.54%, rgba(23, 66, 255, 1) 99.26%);
- padding-bottom: env(safe-area-inset-bottom);
- /* 适配底部安全区域 */
- &-header {
- width: 100%;
- height: 60px;
- border: 1px solid rgba(24, 126, 255, 0.5);
- display: flex;
- color: #FFFFFF;
- // justify-content: center;
- justify-content: space-between;
- align-items: center;
- overflow-x: auto;
- overflow-y: hidden;
- box-sizing: border-box;
- // position: relative;
- background-color: blur(10px);
- background: rgba(24, 126, 255, 0.3);
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- }
- }
- &-content {
- width: 100%;
- height: calc(100% - 80px - env(safe-area-inset-bottom));
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- &-title {
- display: flex;
- justify-content: center;
- margin-bottom: 5px;
- img {
- width: 200px;
- }
- }
- &-title-sm {
- font-size: 20px;
- color: #FFFFFF;
- @media (max-width: 768px) {
- font-size: 16px;
- }
- @media (max-width: 480px) {
- font-size: 14px;
- }
- }
- &-pc {
- width: 36%;
- min-width: 400px;
- height: 78%;
- background: #FFFFFF;
- border-radius: 12px;
- overflow: hidden;
- }
- &-mobile {
- width: 90%;
- height: 82%;
- background: #FFFFFF;
- border-radius: 12px;
- overflow: hidden;
- }
- }
- }
- // 开放平台按钮样式
- .open-platform-btn {
- @media (max-width: 768px) {
- display: none; // 移动端隐藏
- }
- background: #FFFFFF;
- color: #1890FF;
- border: 1px solid #1890FF;
- border-radius: 6px;
- padding: 8px 16px;
- font-size: 14px;
- font-weight: 500;
- cursor: pointer;
- transition: all 0.3s ease;
- white-space: nowrap;
-
- &:hover {
- background: #F0F8FF;
- border-color: #40A9FF;
- }
-
- &:active {
- background: #E6F7FF;
- border-color: #1890FF;
- }
- }
|