12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .container {
- position: relative;
- }
- .block {
- width: 700rpx;
- background-color: #fff;
- position: absolute;
- top: 100rpx;
- left: 50%;
- transform: translateX(-50%);
- border-radius: 20rpx;
- padding-bottom: 30rpx;
- }
- .logo {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- top: 30rpx;
- }
- .name {
- color: #6b6b6b;
- font-size: 35rpx;
- text-align: center;
- font-weight: bold;
- margin-top: 140rpx;
- }
- .EnglishName {
- color: #a1a1a1;
- font-size: 25rpx;
- text-align: center;
- margin: 20rpx 0;
- }
- .title {
- text-align: center;
- font-size: 36rpx;
- color: #6B6B6B;
- }
- .content {
- font-size: 26rpx;
- text-indent: 52rpx;
- line-height: 60rpx;
- margin: 40rpx;
- /*width: 640rpx;*/
- color: #A1A1A1;
- }
|