|
|
@@ -11,14 +11,26 @@
|
|
|
&-header {
|
|
|
width: 100%;
|
|
|
height: 60px;
|
|
|
- border: 1px solid rgba(24, 126, 255, 1);
|
|
|
+ border: 1px solid rgba(24, 126, 255, 0.5);
|
|
|
display: flex;
|
|
|
color: #FFFFFF;
|
|
|
- justify-content: center;
|
|
|
+ // 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 {
|
|
|
@@ -69,4 +81,32 @@
|
|
|
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;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|