123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page {
- background: #a3a3a3;
- height: 100%;
- }
- .container {
- width: 100%;
- }
- .container .posters-box {
- width: 100%;
- height: 1000rpx;
- margin-top: 40rpx;
- }
- .container .posters-box .slide-image {
- width: 100%;
- height: 100%;
- border-radius: 15rpx;
- }
- .container .posters-box .slide-image.active {
- -webkit-transform: none;
- transform: none;
- transition: all 0.2s ease-in 0s;
- }
- .container .posters-box .slide-image.quiet {
- -webkit-transform: scale(0.83333);
- transform: scale(0.83333);
- transition: all 0.2s ease-in 0s;
- }
- .container .keep {
- font-size: 30rpx;
- background: #24a17d;
- color: #fff;
- width: 600rpx;
- height: 80rpx;
- border-radius: 50rpx;
- text-align: center;
- line-height: 80rpx;
- margin: 38rpx auto;
- }
- .preserve {
- color: #fff;
- text-align: center;
- margin-top: 38rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .preserve .line {
- width: 100rpx;
- height: 1px;
- background-color: #fff;
- }
- .preserve .tip {
- margin: 0 20rpx;
- font-size: 28rpx;
- }
|