| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- page {
- background-color: #fff;
- font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica,
- Segoe UI, Arial, Roboto, "PingFang SC", "miui", "Hiragino Sans GB",
- "Microsoft Yahei", sans-serif;
- }
- .container {
- padding: 24px;
- position: relative;
- }
- .top-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 220px;
- background: linear-gradient(180deg, #9f7fff 0%, #7b68ee 100%);
- z-index: 0;
- }
- .intro-section {
- margin-top: 20px;
- margin-bottom: 40px;
- position: relative;
- z-index: 1;
- }
- .intro-text {
- font-size: 14px;
- color: #fff;
- line-height: 1.8;
- text-align: justify;
- }
- .team-section {
- width: 100%;
- margin-top: 40px;
- position: relative;
- z-index: 1;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: flex-start;
- }
- .section-header {
- width: 100%;
- border-bottom: 1px solid #eee;
- padding-bottom: 12px;
- margin-bottom: 24px;
- }
- .section-title {
- font-size: 18px;
- color: #333;
- font-weight: 500;
- }
- .advantage-list {
- display: flex;
- flex-direction: column;
- }
- .advantage-item {
- width: 100%;
- background-color: #fff;
- border: 1px solid #eee;
- border-radius: 12px;
- padding: 20px;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- margin-bottom: 15px;
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
- box-sizing: border-box;
- }
- .adv-icon {
- width: 24px;
- height: 24px;
- margin-right: 12px;
- }
- .adv-text {
- font-size: 16px;
- color: #333;
- }
|