1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .main {
- position: relative;
- width: 100%;
- min-width: 1200px;
- overflow-x: hidden;
- }
- .main .wrapper {
- position: relative;
- z-index: 1;
- }
- .main .tit {
- padding: 100px 0 50px;
- }
- .main .tit h2 {
- text-align: center;
- font-size: 26px;
- font-family: PingFangSC-Semibold, PingFang SC;
- }
- .main .tit p {
- color: #999999;
- font-size: 18px;
- text-align: center;
- }
- .main .tit p a {
- color: #02AB79;
- }
- .main dl {
- box-sizing: border-box;
- line-height: 34px;
- margin-bottom: 30px;
- }
- .main dl dt h5 {
- font-size: 18px;
- font-family: PingFangSC-Semibold, PingFang SC;
- }
- .main dl dt > div {
- display: -ms-flexbox;
- display: flex;
- -ms-flex-pack: justify;
- justify-content: space-between;
- font-size: 16px;
- }
- .main dl dd {
- font-size: 16px;
- text-indent: 2em;
- color: #999999;
- }
- .main .pagation {
- margin: 100px 0 50px;
- }
|