123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /* 公共样式 */
- /*
- ==========
- bar相关
- ==========
- */
- .marginTopBottom {
- margin-top: 20rpx;
- margin-bottom: 30rpx;
- }
- .barTitle {
- width: 100%;
- height: 56rpx;
- padding: 20rpx 0rpx;
- text-align: center;
- }
- .Title-left {
- float: left;
- font-size: 37rpx;
- font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
- font-weight: 800;
- color: #333;
- }
- .Title-right {
- float: right;
- font-size: 26rpx;
- color: #aaa;
- }
- /*
- ===========
- 登录样式
- ===========
- */
- .logo {
- width: 128rpx;
- height: 128rpx;
- margin: 0rpx auto;
- position: relative;
- top: 200rpx;
- }
- .logoImg {
- width: 100%;
- height: 100%;
- }
- .loginButton {
- width: 80%;
- margin: 0rpx auto;
- position: relative;
- top: 500rpx;
- }
- .wechatLogin, .phoneLogin {
- width: 100%;
- height: 80rpx;
- border-radius: 50rpx;
- border: 0rpx;
- outline: none;
- }
- .wechatLogin button {
- background-color: #70e500;
- border-radius: 50rpx;
- border: none;
- color: #fff;
- }
- .phoneLogin {
- margin-top: 40rpx;
- }
- .phoneLogin button {
- border-radius: 50rpx;
- border: 1rpx solid #70e500;
- background-color: #fff;
- color: #70e500;
- }
- /*
- ===========
- 搜索部分
- ===========
- */
- .title{
- width: 100%;
- height: 50rpx;
- /* padding-right: 20rpx; */
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: border-box;
- }
- .title-text{
- color: #000;
- font-weight: 700;
- }
- /*
- ==========
- 蒙板
- ==========
- */
- .cover{
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 9000;
- background: rgba(0, 0, 0, 0.6);
- opacity: 0.7;
- }
- /*
- ==========
- 颜色类
- ==========
- */
- .text-red{
- color: #f00;
- }
- .text-orange{
- color: orange;
- }
- .text-gray{
- color: #aaaaaa;
- }
|