123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /* .container {
- flex: 1;
- flex-direction: column;
- box-sizing: border-box;
- padding: 0;
- align-items: initial;
- justify-content: first baseline;
- }
- .container-fill {
- height: 100%;
- overflow: hidden;
- }
- .scroll-fullpage {
- height: 100%;
- }
- .section {
- height: 100%;
- }
- .active .cont {
- -webkit-animation-duration: 1.8s;
- animation-duration: 1.8s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-name: fadeInUp;
- animation-name: fadeInUp;
- }
- .cont {
- width: 100%;
- height: 100%;
- margin: 0 auto;
- position: relative;
- }
- .cont .cont-body {
- width: 75%;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- .tabbar {
- width: 750rpx;
- box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
- height: 100rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- display: flex;
- font-size: 28rpx;
- }
- .tab1 {
- height: 100rpx;
- width: 250rpx;
- text-align: center;
- color: #999999;
- }
- #red {
- background: none;
- color: #999999;
- font-weight: normal;
- width: 250rpx;
- height: 100rpx;
- line-height: 125rpx;
- font-size: 28rpx;
- position: absolute;
- bottom: 0;
- } */
- page {
- background: #f7f7f7f7;
- }
- .imageContainer {
- width: 100%;
- height: 420rpx;
- }
- .item {
- height: 500rpx;
- }
- .itemImg {
- position: absolute;
- width: 100%;
- height: 350rpx;
- border-radius: 15rpx;
- z-index: 5;
- opacity: 0.7;
- top: 30rpx;
- padding-left: 10rpx;
- }
- .active {
- opacity: 1;
- z-index: 10;
- height: 400rpx;
- top:10rpx;
- transition: all .15s ease-in 0s;
- }
- .box{
- width: 650rpx;
- height: 530rpx;
- margin: 25rpx;
- box-shadow:0 0 10rpx 10rpx #eceafa;
- padding:25rpx
- }
- .top{
- display: flex;
- }
- .text{
- /* border: 1px solid red; */
- width: 460rpx;
- }
- .title{
- color: #999999;
- font-size: 28rpx;
- margin-left: 30rpx;
- }
- .remark{
- color: #4d4d4d;
- font-size: 28rpx;
- margin-left: 30rpx;
- margin-top: 10rpx;
- }
- .btn{
- width:150rpx;
- height:50rpx;
- text-align: center;
- font-weight: bold;
- line-height: 50rpx;
- font-size: 28rpx;
- border-radius: 30rpx;
- margin-top: 10rpx;
- }
- .btn1{
- border: 1px solid #1bb610;
- color: #1bb610;
- }
- .btn2{
- border: 1px solid #216deb;
- color: #216deb;
- }
- .btn3{
- border: 1px solid #f1252e;
- color: #f1252e;
- }
- .img2{
- width: 100%;
- height: 300rpx;
- margin-top: 30rpx;
- }
- .p1{
- display: flex;
- color: #999999;
- margin-top: 15rpx;
- font-size: 28rpx;
- }
|