share.wxss 2.53 KB
@charset "UTF-8";
@font-face {
	font-family: 'iconfont';
	/* project id 2125414 */
	src: url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.eot');
	src: url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.eot?#iefix') format('embedded-opentype'),
		url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.woff2') format('woff2'),
		url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.woff') format('woff'),
		url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.ttf') format('truetype'),
		url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.svg#iconfont') format('svg');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 32rpx;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-weixin:before {
	content: "\e677";
}

.icon-pic:before {
	content: "\e620";
}

.container {
	background-color: white;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,.5);
	z-index: 100;
}
.container-wrap {
	background-color: white;
	position: absolute;
	bottom: 0;
	width: 100%;
}
.flex {
	display: flex;
}

.btn {
	box-sizing: border-box;
	width: 50%;
	padding: 30rpx;
	text-align: center;
}

.icon-container {
	width: 80rpx;
	height: 80rpx;
	line-height: 80rpx;
	color: white;
	border-radius: 50%;
	text-align: center;
	margin: 0 auto;
}

.iconfont {
	font-size: 40rpx;
}

.bg-green {
	background-color: #2ECB38;
}

.bg-red {
	background-color: #F86C6C;
}

.title {
	font-size: 28rpx;
	color: #7b7b7b;
	padding-top: 10rpx;
}

.btn-cancel {
	padding: 20rpx;
	text-align: center;
	color: #7b7b7b;
	background-color: #f9f9f9;
	font-size: 28rpx;
	line-height: 2;
}

.animated {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

@-webkit-keyframes slideInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		-ms-transform: translateY(100px);
		transform: translateY(100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

button{
	border: none;
}

button::after {
  border: none;
}