| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- 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: 20px;
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- position: relative; /* Ensure absolute children are relative to this or use page */
- }
- .top-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 290px; /* Reduced height */
- background: linear-gradient(180deg, #9f7fff 0%, #7b68ee 100%);
- z-index: 0;
- }
- .title-section {
- margin-top: 40px;
- margin-bottom: 60px;
- position: relative;
- z-index: 1;
- }
- .main-title {
- font-size: 28px;
- font-weight: 500;
- color: #fff;
- margin-bottom: 20px;
- }
- .sub-title {
- font-size: 14px;
- color: rgba(255, 255, 255, 0.9);
- line-height: 1.6;
- }
- .order-btn-section {
- margin-bottom: 60px;
- position: relative;
- z-index: 1;
- }
- .order-btn {
- background-color: #fff;
- color: #7b68ee; /* Theme purple */
- font-weight: 600;
- border: none;
- height: 56px;
- line-height: 56px;
- font-size: 18px;
- border-radius: 28px; /* Fully rounded */
- width: 180px;
- box-shadow: 0 8px 20px rgba(123, 104, 238, 0.2); /* Soft purple shadow */
- position: relative;
- overflow: hidden;
- }
- .order-btn::after {
- border: none;
- }
- .order-btn:active {
- transform: scale(0.98);
- box-shadow: 0 4px 10px rgba(123, 104, 238, 0.15);
- background-color: #fcfcfc;
- }
- .help-section {
- margin-bottom: 10px;
- }
- .section-title {
- font-size: 18px;
- color: #333;
- margin-bottom: 20px;
- padding-bottom: 10px;
- border-bottom: 1px solid #eee;
- }
- .help-grid {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .help-item {
- width: 48%;
- background-color: #fff;
- border: 1px solid #eee;
- border-radius: 12px;
- padding: 20px 0;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 15px;
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
- }
- .help-icon {
- width: 36px;
- height: 36px;
- margin-right: 10px;
- }
- .help-item text {
- font-size: 16px;
- color: #333;
- }
- .banner-section {
- width: 100%;
- margin-top: -10px; /* Pull banner up */
- margin-bottom: 20px;
- position: relative;
- z-index: 1;
- }
- .banner-img {
- width: 100%;
- border-radius: 12px;
- }
|