123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- /* pages/resitor_scence/resitor_scence.wxss */
- .page {
- position: relative;
- width: 100%;
- min-height: 100vh;
- background-color: #2f6fd1;
- padding-top: 1rpx;
- }
- /* 左上角标题 */
- .title {
- font-size: 32rpx;
- color: white;
- }
- /* logo */
- .logo-area {
- display: flex;
- justify-content: center;
- margin-top: 40rpx;
- }
- .logo-area > image {
- width: 88rpx;
- height: 100rpx;
- }
- /* 内外宾选择区 */
- .radio-group {
- width: 100%;
- display: flex;
- justify-content: space-around;
- padding-top: 40rpx;
- padding-bottom: 15rpx;
- }
- .padding-sm {
- padding: 8rpx 30rpx;
- font-size: 30rpx;
- }
- .text-white {
- color: #f0f8fe !important;
- }
- .picker-area {
- position: relative;
- padding: 0 48rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #c7daf9;
- }
- .picker {
- position: relative;
- display: flex;
- align-items: center;
- }
- .picker::after {
- content: "";
- position: relative;
- width: 18rpx;
- height: 18rpx;
- border-top: 1rpx solid #c7daf9;
- border-right: 1rpx solid #c7daf9;
- transform: rotate(45deg);
- }
- /* 常访客按钮区 */
- .component-list {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 32rpx 40rpx;
- }
- .component-item {
- position: relative;
- width: 47%;
- height: 120rpx;
- }
- .component-item > image {
- width: 100%;
- height: 100%;
- }
- .tip {
- position: absolute;
- color: #e2edff;
- right: 12rpx;
- top: 0rpx;
- /* padding: 20rpx; */
- }
- .tip2 {
- position: absolute;
- color: #e2edff;
- right: 0rpx;
- top: 0rpx;
- padding: 20rpx;
- }
- /* 企业信息录入 */
- .btn-area {
- margin-left: 26rpx;
- margin-right: 26rpx;
- position: relative;
- }
- .btn-area > button {
- width: 252rpx;
- margin-top: 34rpx;
- background: linear-gradient(0deg, #3877d7, #3877d7), #3877d7;
- border: 0.7px solid #4881d9;
- border-radius: 6px;
- color: #cadbf9;
- font-size: 26rpx;
- margin-right: 0;
- padding-right: 60rpx;
- }
- .click {
- background-color: #6c9fec8a !important;
- }
- /* 提示区 */
- .tip-area {
- margin: 24rpx 42rpx;
- }
- .tip-area > text {
- color: #d8e5fc;
- font-size: 26rpx;
- line-height: 36rpx;
- }
- .logo2 {
- width: 227rpx;
- height: 57rpx;
- top: 10px;
- right: 16px;
- position: absolute;
- }
- .home-header-img {
- width: 680rpx;
- height: 180rpx;
- margin-left: 40rpx;
- margin-right: 40rpx;
- margin-top: 50rpx;
- }
- .home-header-img > image {
- width: 100%;
- height: 100%;
- }
- /* 功能区 */
- .component-area {
- position: relative;
- min-height: 190rpx;
- /* height: 100%; */
- background: #3877d7;
- border-radius: 6px;
- margin: 0 40rpx 100rpx;
- }
- .component-area > .component {
- width: 33.33%;
- height: 150rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- margin-top: 15rpx;
- margin-bottom: 15rpx;
- float: left;
- /* background: #3877D7; */
- }
- .component > image {
- width: 90rpx;
- height: 90rpx;
- }
- .component > text {
- color: #c6d3ef;
- font-size: 25rpx;
- margin-top: 4rpx;
- }
- .type {
- padding: 5rpx 10rpx;
- background: #4689ee;
- border-radius: 4px;
- color: #bcdefe;
- font-size: 12px;
- margin-left: 10rpx;
- }
- .height370 {
- height: 370rpx;
- }
- .margintop120 {
- margin-top: 120rpx;
- }
|