index.wxss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .expertimages {
  28. width: 100%;
  29. height: 200rpx;
  30. margin-top: 88rpx;
  31. }
  32. .expert_details {
  33. width: 100%;
  34. height: 120rpx;
  35. display: flex;
  36. margin: 20rpx 0 30rpx;
  37. }
  38. .expert_details .details_item {
  39. width: 20%;
  40. padding: 10rpx 20rpx;
  41. text-align: center;
  42. font-size: 24rpx;
  43. }
  44. .expert_details .details_item image {
  45. width: 70%;
  46. height: 84rpx;
  47. }
  48. .cooperation {
  49. width: 100%;
  50. margin: 20rpx 0 60rpx;
  51. }
  52. .cooperation .cooperation_item {
  53. width: 95%;
  54. margin: 20rpx auto;
  55. }
  56. .cooperation .cooperation_item .cooperation_item_title {
  57. border-left: 8rpx solid #18B566;
  58. text-indent: 16rpx;
  59. }
  60. .cooperation .cooperation_item .zooid {
  61. width: 100%;
  62. display: flex;
  63. flex-wrap: wrap;
  64. margin-top: 20rpx;
  65. }
  66. .cooperation .cooperation_item .zooid .zooid_item {
  67. width: 22%;
  68. margin: 10rpx;
  69. }
  70. .cooperation .cooperation_item .zooid .zooid_item image {
  71. width: 100%;
  72. height: 154rpx;
  73. }
  74. .cooperation .cooperation_item .zooid .zooid_item ._p {
  75. font-size: 24rpx;
  76. text-align: center;
  77. margin: 10rpx 0;
  78. }