12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**app.wxss**/
- /* 引入icon样式库 */
- @import 'icon.wxss';
- /* 登录样式 */
- .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;
- }
- /* 公共类 */
- .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;
- }
|