123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <template>
- <view class="container">
- <view class="header">
-
- </view>
-
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- </script>
- <style>
- .container {
- font-family:Arial, Helvetica, sans-serif;
- font-size: 12px;
-
-
- }
- .header {
- font-size: 30rpx;
- font-weight: bold;
- height: 30px;
- background-color: #1296db;
- color: #ffffff;
- text-align: center;
- padding-top: 20px;
-
- }
- .service-back{
- display: flex;
- flex-wrap: wrap;
- background-color: white;
- border-radius: 0px 0px 10px 10px ;
- width: 100%;
- margin-bottom: 20rpx;
- padding-bottom: 10px;
-
- background-color: #1296db;
-
- }
- .services {
-
- display: flex;
- flex-wrap: wrap;
- background-color: white;
- border-radius: 10px;
- padding: 5px;
- margin: 20rpx;
-
-
- }
- .service-item {
- width: 25%;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .service-item image {
- width: 80rpx;
- height: 80rpx;
- }
- .service-item text {
- font-size: 24rpx;
- margin-top: 20rpx;
- }
- .sections {
- display: flex;
- justify-content: space-between;
- margin: 20rpx;
-
- }
- .section-item {
- width: 30%;
- position: relative;
- height:130px;
- }
- .section-item image {
- width: 100%;
- height: 150px;
- border-radius: 6px;
- }
- .section-item text {
- position: absolute;
- bottom: 30%;
- left: 30%;
- color: #ffffff;
- font-size: 24rpx;
- }
- .company{
- display: flex;
- justify-content: space-between;
- height: 170px;
- border-radius: 10px;
- margin: 10px ;
- margin-top: 30px;
- overflow: hidden;
- }
- .company-image {
- width: 100%;
- display: flex;
- height: 170px;
-
- }
- .tab-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 100rpx;
- display: flex;
- background-color: #ffffff;
- border-top: 1rpx solid #e0e0e0;
- }
- .tab-item {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .tab-item image {
- width: 40rpx;
- height: 40rpx;
- }
- .tab-item text {
- font-size: 24rpx;
- margin-top: 5rpx;
- }
- .tab-item.active {
- color: #1296db;
- }
- </style>
|