login.wxss 1.6 KB
/* pages/login/login.wxss */

page {
    background: #010938;
}

.login_box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* overflow-y: scroll; */
    height: 100%;
    width: 530rpx;
    margin: 170rpx auto 0 auto;
    color: #fff;
    font-size: 28rpx;
}

.input_item {
    padding: 16rpx 0;
    border-bottom: 1rpx solid #fff;
    margin: 0 0 26rpx 0;
}

.input_place {
    color: #fff;
    font-size: 28rpx;
}

.code {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code input {
    width: 60%;
}

.code_txt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rpx 10rpx 7rpx;
    box-sizing: border-box;
    width: 178rpx;
    height: 44rpx;
    border: 1rpx solid #fff;
    border-radius: 10rpx;
}

.agree {
    display: flex;
    justify-content: center;
    align-items: center;
}

.agree_txt {
    color: #009fe8;
}

.agree .iconfont {
    display: inline-block;
    border: 1rpx solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 13rpx 0 0;
    font-size: 20rpx;
    border-radius: 33%;
}

.goindex {
    position: fixed;
    padding: 27rpx 0;
    bottom: 300rpx;
    left: 50%;
    transform: translateX(-50%);
    width: 530rpx;
    display: flex;
    justify-items: center;
    justify-content: center;
    border-top: 1rpx solid #fff;
    border-bottom: 1rpx solid #fff;
}

.goindex_txt {
    padding: 4rpx 20rpx;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10rpx;
    color: rgba(255, 255, 255, 0.7);
}

.goindex_txt::active {
    opacity: 0.7;
}