123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /* pages/Components/campusBinding/campusBinding.wxss */
- .main {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- z-index: 2;
- }
- .background {
- position: fixed;
- z-index: -1;
- top: 0;
- left: 0;
- width: 750rpx;
- height: 1125rpx;
- }
- .logo{
- margin-top: 100rpx;
- margin-bottom: 100rpx;
- width: 290rpx;
- height: 290rpx;
- z-index: 3;
- }
- .button {
- /* margin: 0; */
- padding: 0;
- /* position: fixed; */
- /* left: 50%; */
- /* transform: translateX(-50%); */
- /* bottom: 120rpx; */
- width: 500rpx !important;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- background: rgba(255, 255, 255, 1);
- border: 1rpx solid #005033;
- /* box-shadow: 0rpx 20rpx 60rpx -15px #005033; */
- border-radius: 100rpx;
- font-size: 30rpx;
- letter-spacing: 10rpx;
- color: #005033;
- font-weight: 400;
- }
- .login-view{
- position: fixed;
- width: 500rpx;
- bottom: 240rpx;
- margin: 0 auto ;
- font-size: 32rpx;
- }
- .userName-view{
- display: flex;
- margin-bottom: 40rpx;
- }
- .isTitle{
- line-height: 60rpx;
- }
- .login-view input{
- border: 1px solid #ccc;
- width: 300rpx;
- margin-left: 10rpx;
- height: 40rpx;
- line-height: 40rpx;
- padding: 5px 15px;
- }
- .pwd-view{
- display: flex;
- }
- .tip{
- font-size: 26rpx;
- margin: 20rpx auto;
- color: red;
- text-align: center;
- }
- .login-tip{
- font-size: 24rpx;
- margin: 50rpx auto;
- color: #005033;
- text-align: center;
- letter-spacing: 2rpx;
- }
- .nbsp{
- margin: 0 10rpx;
- }
- .slogan-view{
- color: #005033;
- font-size: 24rpx;
-
- text-align: center;
- position: fixed;
- bottom: 140rpx;
- }
- .slogan-en{
- letter-spacing: 4rpx;
- }
- .slogan-zn{
- letter-spacing: 2rpx;
- font-size: 22rpx;
- }
- .slogan-view view:first-child{
- margin-bottom: 20rpx;
- }
- .agreement-view{
- margin-top: 100rpx;
- font-size: 18rpx;
- letter-spacing: 2rpx;
- text-align: center;
- }
- .agreement-text{
- color: #cc6031;
- letter-spacing: 1rpx;
- }
|